1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_DEVICE_EVENT_LOG_DEVICE_EVENT_LOG_H_
6 #define COMPONENTS_DEVICE_EVENT_LOG_DEVICE_EVENT_LOG_H_
11 #include "base/basictypes.h"
12 #include "base/logging.h"
13 #include "base/timer/elapsed_timer.h"
14 #include "components/device_event_log/device_event_log_export.h"
16 // These macros can be used to log device related events.
18 // NOTE: If these macros are called from a thread other than the thread that
19 // device_event_log::Initialize() was called from (i.e. the UI thread), a task
20 // will be posted to the UI thread to log the event.
22 // The following values should be used for |level| in these macros:
23 // ERROR Unexpected events, or device level failures. Use sparingly.
24 // USER Events initiated directly by a user (or Chrome) action.
25 // EVENT Default event type.
26 // DEBUG Debugging details that are usually not interesting.
29 // NET_LOG(EVENT) << "NetworkState Changed " << name << ": " << state;
30 // POWER_LOG(USER) << "Suspend requested";
32 #define NET_LOG(level) \
33 DEVICE_LOG(::device_event_log::LOG_TYPE_NETWORK, \
34 ::device_event_log::LOG_LEVEL_##level)
35 #define POWER_LOG(level) \
36 DEVICE_LOG(::device_event_log::LOG_TYPE_POWER, \
37 ::device_event_log::LOG_LEVEL_##level)
38 #define LOGIN_LOG(level) \
39 DEVICE_LOG(::device_event_log::LOG_TYPE_LOGIN, \
40 ::device_event_log::LOG_LEVEL_##level)
41 #define USB_LOG(level) \
42 DEVICE_LOG(::device_event_log::LOG_TYPE_USB, \
43 ::device_event_log::LOG_LEVEL_##level)
44 #define USB_PLOG(level) \
45 DEVICE_PLOG(::device_event_log::LOG_TYPE_USB, \
46 ::device_event_log::LOG_LEVEL_##level)
47 #define HID_LOG(level) \
48 DEVICE_LOG(::device_event_log::LOG_TYPE_HID, \
49 ::device_event_log::LOG_LEVEL_##level)
50 #define HID_PLOG(level) \
51 DEVICE_PLOG(::device_event_log::LOG_TYPE_HID, \
52 ::device_event_log::LOG_LEVEL_##level)
54 // Generally prefer the above macros unless |type| or |level| is not constant.
56 #define DEVICE_LOG(type, level) \
57 ::device_event_log::internal::DeviceEventLogInstance(__FILE__, __LINE__, \
59 #define DEVICE_PLOG(type, level) \
60 ::device_event_log::internal::DeviceEventSystemErrorLogInstance( \
61 __FILE__, __LINE__, type, level, ::logging::GetLastSystemErrorCode()) \
64 // Declare {Type_LOG_IF_SLOW() at the top of a method to log slow methods
65 // where "slow" is defined by kSlowMethodThresholdMs in the .cc file.
66 #define SCOPED_NET_LOG_IF_SLOW() \
67 SCOPED_DEVICE_LOG_IF_SLOW(::device_event_log::LOG_TYPE_NETWORK)
69 // Generally prefer the above macros unless |type| is not constant.
71 #define SCOPED_DEVICE_LOG_IF_SLOW(type) \
72 ::device_event_log::internal::ScopedDeviceLogIfSlow \
73 scoped_device_log_if_slow(type, __FILE__, __func__)
75 namespace device_event_log
{
77 // Used to specify the type of event. NOTE: Be sure to update LogTypeFromString
78 // and GetLogTypeString when adding entries to this enum. Also consider
79 // updating chrome://device-log (see device_log_ui.cc).
81 // Shill / network configuration related events.
83 // Power manager related events.
85 // Login related events.
87 // USB device related events (i.e. device/usb).
89 // Human-interface device related events (i.e. device/hid).
95 // Used to specify the detail level for logging. In GetAsString, used to
96 // specify the maximum detail level (i.e. EVENT will include USER and ERROR).
97 // See top-level comment for guidelines for each type.
105 // Used to specify which order to output event entries in GetAsString.
106 enum StringOrder
{ OLDEST_FIRST
, NEWEST_FIRST
};
108 // Initializes / shuts down device event logging. If |max_entries| = 0 the
109 // default value will be used.
110 void DEVICE_EVENT_LOG_EXPORT
Initialize(size_t max_entries
);
111 bool DEVICE_EVENT_LOG_EXPORT
IsInitialized();
112 void DEVICE_EVENT_LOG_EXPORT
Shutdown();
114 // If the global instance is initialized, adds an entry to it. Regardless of
115 // whether the global instance was intitialzed, this logs the event to
116 // LOG(ERROR) if |type| = ERROR or VLOG(1) otherwise.
117 void DEVICE_EVENT_LOG_EXPORT
AddEntry(const char* file
,
121 const std::string
& event
);
123 // For backwards compatibility with network_event_log. Combines |event| and
124 // |description| and calls AddEntry().
125 void DEVICE_EVENT_LOG_EXPORT
126 AddEntryWithDescription(const char* file
,
130 const std::string
& event
,
131 const std::string
& description
);
133 // Outputs the log to a formatted string.
134 // |order| determines which order to output the events.
135 // |format| is a comma-separated string that determines which elements to show.
136 // e.g. "time,desc". Note: order of the strings does not affect the output.
137 // "time" - Include a timestamp.
138 // "file" - Include file and line number.
139 // "type" - Include the event type.
140 // "html" - Include html tags.
141 // "json" - Return JSON format dictionaries containing entries for timestamp,
142 // level, type, file, and event.
143 // |types| lists the types included in the output. Prepend "non-" to disclude
144 // a type. e.g. "network,login" or "non-network". Use an empty string for
146 // |max_level| determines the maximum log level to be included in the output.
147 // |max_events| limits how many events are output if > 0, otherwise all events
149 std::string DEVICE_EVENT_LOG_EXPORT
GetAsString(StringOrder order
,
150 const std::string
& format
,
151 const std::string
& types
,
155 DEVICE_EVENT_LOG_EXPORT
extern const LogLevel kDefaultLogLevel
;
159 // Implementation class for DEVICE_LOG macros. Provides a stream for creating
160 // a log string and adds the event using device_event_log::AddEntry on
162 class DEVICE_EVENT_LOG_EXPORT DeviceEventLogInstance
{
164 DeviceEventLogInstance(const char* file
,
166 device_event_log::LogType type
,
167 device_event_log::LogLevel level
);
168 ~DeviceEventLogInstance();
170 std::ostream
& stream() { return stream_
; }
175 device_event_log::LogType type_
;
176 device_event_log::LogLevel level_
;
177 std::ostringstream stream_
;
179 DISALLOW_COPY_AND_ASSIGN(DeviceEventLogInstance
);
182 // Implementation class for DEVICE_PLOG macros. Provides a stream for creating
183 // a log string and adds the event, including system error code, using
184 // device_event_log::AddEntry on destruction.
185 class DEVICE_EVENT_LOG_EXPORT DeviceEventSystemErrorLogInstance
{
187 DeviceEventSystemErrorLogInstance(const char* file
,
189 device_event_log::LogType type
,
190 device_event_log::LogLevel level
,
191 logging::SystemErrorCode err
);
192 ~DeviceEventSystemErrorLogInstance();
194 std::ostream
& stream() { return log_instance_
.stream(); }
197 logging::SystemErrorCode err_
;
198 // Constructor parameters are passed to |log_instance_| which will update the
199 // log when it is destroyed (after a string description of |err_| is appended
201 DeviceEventLogInstance log_instance_
;
203 DISALLOW_COPY_AND_ASSIGN(DeviceEventSystemErrorLogInstance
);
206 // Implementation class for SCOPED_LOG_IF_SLOW macros. Tests the elapsed time on
207 // destruction and adds a Debug or Error log entry if it exceeds the
208 // corresponding expected maximum elapsed time.
209 class DEVICE_EVENT_LOG_EXPORT ScopedDeviceLogIfSlow
{
211 ScopedDeviceLogIfSlow(LogType type
,
213 const std::string
& name
);
214 ~ScopedDeviceLogIfSlow();
220 base::ElapsedTimer timer_
;
223 } // namespace internal
225 } // namespace device_event_log
227 #endif // DEVICE_EVENT_LOG_DEVICE_EVENT_LOG_H_