[email protected] | 3b63f8f4 | 2011-03-28 01:54:15 | [diff] [blame] | 1 | // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 4 | |
[email protected] | 946d1b2 | 2009-07-22 23:57:21 | [diff] [blame] | 5 | #ifndef IPC_IPC_LOGGING_H_ |
| 6 | #define IPC_IPC_LOGGING_H_ |
[email protected] | 32b76ef | 2010-07-26 23:08:24 | [diff] [blame] | 7 | #pragma once |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 8 | |
[email protected] | 946d1b2 | 2009-07-22 23:57:21 | [diff] [blame] | 9 | #include "ipc/ipc_message.h" // For IPC_MESSAGE_LOG_ENABLED. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 10 | |
| 11 | #ifdef IPC_MESSAGE_LOG_ENABLED |
| 12 | |
[email protected] | 7bf73095 | 2009-05-29 09:31:15 | [diff] [blame] | 13 | #include <vector> |
| 14 | |
[email protected] | 21fa3a1 | 2010-12-08 23:34:16 | [diff] [blame] | 15 | #include "base/hash_tables.h" |
[email protected] | 3b63f8f4 | 2011-03-28 01:54:15 | [diff] [blame] | 16 | #include "base/memory/scoped_ptr.h" |
| 17 | #include "base/memory/singleton.h" |
[email protected] | 100897a | 2009-02-26 02:27:11 | [diff] [blame] | 18 | #include "base/message_loop.h" |
[email protected] | 7c85437 | 2011-08-15 20:41:46 | [diff] [blame] | 19 | #include "ipc/ipc_export.h" |
[email protected] | cee1dfa | 2008-08-14 09:21:50 | [diff] [blame] | 20 | |
[email protected] | 21fa3a1 | 2010-12-08 23:34:16 | [diff] [blame] | 21 | // Logging function. |name| is a string in ASCII and |params| is a string in |
| 22 | // UTF-8. |
| 23 | typedef void (*LogFunction)(std::string* name, |
| 24 | const IPC::Message* msg, |
| 25 | std::string* params); |
| 26 | |
| 27 | typedef base::hash_map<uint32, LogFunction > LogFunctionMap; |
| 28 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 29 | namespace IPC { |
| 30 | |
| 31 | class Message; |
| 32 | |
| 33 | // One instance per process. Needs to be created on the main thread (the UI |
| 34 | // thread in the browser) but OnPreDispatchMessage/OnPostDispatchMessage |
| 35 | // can be called on other threads. |
[email protected] | 7c85437 | 2011-08-15 20:41:46 | [diff] [blame] | 36 | class IPC_EXPORT Logging { |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 37 | public: |
| 38 | // Implemented by consumers of log messages. |
| 39 | class Consumer { |
| 40 | public: |
[email protected] | f91cb99 | 2009-02-04 20:10:12 | [diff] [blame] | 41 | virtual void Log(const LogData& data) = 0; |
[email protected] | 20cb5f48 | 2009-12-16 01:01:25 | [diff] [blame] | 42 | |
| 43 | protected: |
| 44 | virtual ~Consumer() {} |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 45 | }; |
| 46 | |
| 47 | void SetConsumer(Consumer* consumer); |
| 48 | |
| 49 | ~Logging(); |
[email protected] | 8e8bb6d | 2010-12-13 08:18:55 | [diff] [blame] | 50 | static Logging* GetInstance(); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 51 | |
[email protected] | d55aaa13 | 2009-09-28 21:08:04 | [diff] [blame] | 52 | // Enable and Disable are NOT cross-process; they only affect the |
| 53 | // current thread/process. If you want to modify the value for all |
| 54 | // processes, perhaps your intent is to call |
| 55 | // g_browser_process->SetIPCLoggingEnabled(). |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 56 | void Enable(); |
| 57 | void Disable(); |
[email protected] | e707d5e6 | 2009-02-12 04:00:08 | [diff] [blame] | 58 | bool Enabled() const { return enabled_; } |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 59 | |
| 60 | // Called by child processes to give the logger object the channel to send |
| 61 | // logging data to the browser process. |
[email protected] | 57319ce | 2012-06-11 22:35:26 | [diff] [blame^] | 62 | void SetIPCSender(Sender* sender); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 63 | |
| 64 | // Called in the browser process when logging data from a child process is |
| 65 | // received. |
| 66 | void OnReceivedLoggingMessage(const Message& message); |
| 67 | |
[email protected] | 9a3a293b | 2009-06-04 22:28:16 | [diff] [blame] | 68 | void OnSendMessage(Message* message, const std::string& channel_id); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 69 | void OnPreDispatchMessage(const Message& message); |
| 70 | void OnPostDispatchMessage(const Message& message, |
[email protected] | 9a3a293b | 2009-06-04 22:28:16 | [diff] [blame] | 71 | const std::string& channel_id); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 72 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 73 | // Like the *MsgLog functions declared for each message class, except this |
| 74 | // calls the correct one based on the message type automatically. Defined in |
| 75 | // ipc_logging.cc. |
[email protected] | 252cad6 | 2010-08-18 18:33:57 | [diff] [blame] | 76 | static void GetMessageText(uint32 type, std::string* name, |
| 77 | const Message* message, std::string* params); |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 78 | |
[email protected] | 21fa3a1 | 2010-12-08 23:34:16 | [diff] [blame] | 79 | static void set_log_function_map(LogFunctionMap* functions) { |
| 80 | log_function_map_ = functions; |
| 81 | } |
[email protected] | 3335d87 | 2009-02-11 05:38:41 | [diff] [blame] | 82 | |
[email protected] | 21fa3a1 | 2010-12-08 23:34:16 | [diff] [blame] | 83 | static LogFunctionMap* log_function_map() { |
| 84 | return log_function_map_; |
| 85 | } |
[email protected] | d5dfa5a | 2009-02-10 19:38:55 | [diff] [blame] | 86 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 87 | private: |
[email protected] | ea7744a | 2011-10-20 19:34:43 | [diff] [blame] | 88 | typedef enum { |
| 89 | ANSI_COLOR_RESET = -1, |
| 90 | ANSI_COLOR_BLACK, |
| 91 | ANSI_COLOR_RED, |
| 92 | ANSI_COLOR_GREEN, |
| 93 | ANSI_COLOR_YELLOW, |
| 94 | ANSI_COLOR_BLUE, |
| 95 | ANSI_COLOR_MAGENTA, |
| 96 | ANSI_COLOR_CYAN, |
| 97 | ANSI_COLOR_WHITE |
| 98 | } ANSIColor; |
| 99 | const char* ANSIEscape(ANSIColor color); |
| 100 | ANSIColor DelayColor(double delay); |
| 101 | |
[email protected] | f91cb99 | 2009-02-04 20:10:12 | [diff] [blame] | 102 | friend struct DefaultSingletonTraits<Logging>; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 103 | Logging(); |
| 104 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 105 | void OnSendLogs(); |
| 106 | void Log(const LogData& data); |
| 107 | |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 108 | bool enabled_; |
[email protected] | d55aaa13 | 2009-09-28 21:08:04 | [diff] [blame] | 109 | bool enabled_on_stderr_; // only used on POSIX for now |
[email protected] | ea7744a | 2011-10-20 19:34:43 | [diff] [blame] | 110 | bool enabled_color_; // only used on POSIX for now |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 111 | |
| 112 | std::vector<LogData> queued_logs_; |
| 113 | bool queue_invoke_later_pending_; |
| 114 | |
[email protected] | 57319ce | 2012-06-11 22:35:26 | [diff] [blame^] | 115 | Sender* sender_; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 116 | MessageLoop* main_thread_; |
| 117 | |
| 118 | Consumer* consumer_; |
[email protected] | d5dfa5a | 2009-02-10 19:38:55 | [diff] [blame] | 119 | |
[email protected] | 21fa3a1 | 2010-12-08 23:34:16 | [diff] [blame] | 120 | static LogFunctionMap* log_function_map_; |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 121 | }; |
| 122 | |
[email protected] | 3178f4e2 | 2008-08-05 21:20:41 | [diff] [blame] | 123 | } // namespace IPC |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 124 | |
| 125 | #endif // IPC_MESSAGE_LOG_ENABLED |
| 126 | |
[email protected] | 946d1b2 | 2009-07-22 23:57:21 | [diff] [blame] | 127 | #endif // IPC_IPC_LOGGING_H_ |