blob: 2c538d2e6d81d40658426873bd48cea723a0c644 [file] [log] [blame]
[email protected]34a907732012-01-20 06:33:271// Copyright (c) 2012 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commitd7cae122008-07-26 21:49:384
[email protected]39be4242008-08-07 18:31:405#ifndef BASE_LOGGING_H_
6#define BASE_LOGGING_H_
initial.commitd7cae122008-07-26 21:49:387
[email protected]e7972d12011-06-18 11:53:148#include <cassert>
initial.commitd7cae122008-07-26 21:49:389#include <string>
10#include <cstring>
11#include <sstream>
12
[email protected]0bea7252011-08-05 15:34:0013#include "base/base_export.h"
initial.commitd7cae122008-07-26 21:49:3814#include "base/basictypes.h"
[email protected]ddb9b332011-12-02 07:31:0915#include "base/debug/debugger.h"
[email protected]90509cb2011-03-25 18:46:3816#include "build/build_config.h"
initial.commitd7cae122008-07-26 21:49:3817
18//
19// Optional message capabilities
20// -----------------------------
21// Assertion failed messages and fatal errors are displayed in a dialog box
22// before the application exits. However, running this UI creates a message
23// loop, which causes application messages to be processed and potentially
24// dispatched to existing application windows. Since the application is in a
25// bad state when this assertion dialog is displayed, these messages may not
26// get processed and hang the dialog, or the application might go crazy.
27//
28// Therefore, it can be beneficial to display the error dialog in a separate
29// process from the main application. When the logging system needs to display
30// a fatal error dialog box, it will look for a program called
31// "DebugMessage.exe" in the same directory as the application executable. It
32// will run this application with the message as the command line, and will
33// not include the name of the application as is traditional for easier
34// parsing.
35//
36// The code for DebugMessage.exe is only one line. In WinMain, do:
37// MessageBox(NULL, GetCommandLineW(), L"Fatal Error", 0);
38//
39// If DebugMessage.exe is not found, the logging code will use a normal
40// MessageBox, potentially causing the problems discussed above.
41
42
43// Instructions
44// ------------
45//
46// Make a bunch of macros for logging. The way to log things is to stream
47// things to LOG(<a particular severity level>). E.g.,
48//
49// LOG(INFO) << "Found " << num_cookies << " cookies";
50//
51// You can also do conditional logging:
52//
53// LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
54//
initial.commitd7cae122008-07-26 21:49:3855// The CHECK(condition) macro is active in both debug and release builds and
56// effectively performs a LOG(FATAL) which terminates the process and
57// generates a crashdump unless a debugger is attached.
58//
59// There are also "debug mode" logging macros like the ones above:
60//
61// DLOG(INFO) << "Found cookies";
62//
63// DLOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
64//
65// All "debug mode" logging is compiled away to nothing for non-debug mode
66// compiles. LOG_IF and development flags also work well together
67// because the code can be compiled away sometimes.
68//
69// We also have
70//
71// LOG_ASSERT(assertion);
72// DLOG_ASSERT(assertion);
73//
74// which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
75//
[email protected]99b7c57f2010-09-29 19:26:3676// There are "verbose level" logging macros. They look like
77//
78// VLOG(1) << "I'm printed when you run the program with --v=1 or more";
79// VLOG(2) << "I'm printed when you run the program with --v=2 or more";
80//
81// These always log at the INFO log level (when they log at all).
82// The verbose logging can also be turned on module-by-module. For instance,
[email protected]b0d38d4c2010-10-29 00:39:4883// --vmodule=profile=2,icon_loader=1,browser_*=3,*/chromeos/*=4 --v=0
[email protected]99b7c57f2010-09-29 19:26:3684// will cause:
85// a. VLOG(2) and lower messages to be printed from profile.{h,cc}
86// b. VLOG(1) and lower messages to be printed from icon_loader.{h,cc}
87// c. VLOG(3) and lower messages to be printed from files prefixed with
88// "browser"
[email protected]e11de722010-11-01 20:50:5589// d. VLOG(4) and lower messages to be printed from files under a
[email protected]b0d38d4c2010-10-29 00:39:4890// "chromeos" directory.
[email protected]e11de722010-11-01 20:50:5591// e. VLOG(0) and lower messages to be printed from elsewhere
[email protected]99b7c57f2010-09-29 19:26:3692//
93// The wildcarding functionality shown by (c) supports both '*' (match
[email protected]b0d38d4c2010-10-29 00:39:4894// 0 or more characters) and '?' (match any single character)
95// wildcards. Any pattern containing a forward or backward slash will
96// be tested against the whole pathname and not just the module.
97// E.g., "*/foo/bar/*=2" would change the logging level for all code
98// in source files under a "foo/bar" directory.
[email protected]99b7c57f2010-09-29 19:26:3699//
100// There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
101//
102// if (VLOG_IS_ON(2)) {
103// // do some logging preparation and logging
104// // that can't be accomplished with just VLOG(2) << ...;
105// }
106//
107// There is also a VLOG_IF "verbose level" condition macro for sample
108// cases, when some extra computation and preparation for logs is not
109// needed.
110//
111// VLOG_IF(1, (size > 1024))
112// << "I'm printed when size is more than 1024 and when you run the "
113// "program with --v=1 or more";
114//
initial.commitd7cae122008-07-26 21:49:38115// We also override the standard 'assert' to use 'DLOG_ASSERT'.
116//
[email protected]d8617a62009-10-09 23:52:20117// Lastly, there is:
118//
119// PLOG(ERROR) << "Couldn't do foo";
120// DPLOG(ERROR) << "Couldn't do foo";
121// PLOG_IF(ERROR, cond) << "Couldn't do foo";
122// DPLOG_IF(ERROR, cond) << "Couldn't do foo";
123// PCHECK(condition) << "Couldn't do foo";
124// DPCHECK(condition) << "Couldn't do foo";
125//
126// which append the last system error to the message in string form (taken from
127// GetLastError() on Windows and errno on POSIX).
128//
initial.commitd7cae122008-07-26 21:49:38129// The supported severity levels for macros that allow you to specify one
[email protected]fb62a532009-02-12 01:19:05130// are (in increasing order of severity) INFO, WARNING, ERROR, ERROR_REPORT,
131// and FATAL.
initial.commitd7cae122008-07-26 21:49:38132//
133// Very important: logging a message at the FATAL severity level causes
134// the program to terminate (after the message is logged).
[email protected]fb62a532009-02-12 01:19:05135//
136// Note the special severity of ERROR_REPORT only available/relevant in normal
137// mode, which displays error dialog without terminating the program. There is
138// no error dialog for severity ERROR or below in normal mode.
139//
140// There is also the special severity of DFATAL, which logs FATAL in
[email protected]081bd4c2010-06-24 01:01:04141// debug mode, ERROR in normal mode.
initial.commitd7cae122008-07-26 21:49:38142
143namespace logging {
144
[email protected]5e3f7c22013-06-21 21:15:33145// TODO(avi): do we want to do a unification of character types here?
146#if defined(OS_WIN)
147typedef wchar_t PathChar;
148#else
149typedef char PathChar;
150#endif
151
152// Where to record logging output? A flat file and/or system debug log
153// via OutputDebugString.
154enum LoggingDestination {
155 LOG_NONE = 0,
156 LOG_TO_FILE = 1 << 0,
157 LOG_TO_SYSTEM_DEBUG_LOG = 1 << 1,
158
159 LOG_TO_ALL = LOG_TO_FILE | LOG_TO_SYSTEM_DEBUG_LOG,
160
161 // On Windows, use a file next to the exe; on POSIX platforms, where
162 // it may not even be possible to locate the executable on disk, use
163 // stderr.
164#if defined(OS_WIN)
165 LOG_DEFAULT = LOG_TO_FILE,
166#elif defined(OS_POSIX)
167 LOG_DEFAULT = LOG_TO_SYSTEM_DEBUG_LOG,
168#endif
169};
initial.commitd7cae122008-07-26 21:49:38170
171// Indicates that the log file should be locked when being written to.
[email protected]5e3f7c22013-06-21 21:15:33172// Unless there is only one single-threaded process that is logging to
173// the log file, the file should be locked during writes to make each
[email protected]3ee50d12014-03-05 01:43:27174// log output atomic. Other writers will block.
initial.commitd7cae122008-07-26 21:49:38175//
176// All processes writing to the log file must have their locking set for it to
[email protected]5e3f7c22013-06-21 21:15:33177// work properly. Defaults to LOCK_LOG_FILE.
initial.commitd7cae122008-07-26 21:49:38178enum LogLockingState { LOCK_LOG_FILE, DONT_LOCK_LOG_FILE };
179
180// On startup, should we delete or append to an existing log file (if any)?
181// Defaults to APPEND_TO_OLD_LOG_FILE.
182enum OldFileDeletionState { DELETE_OLD_LOG_FILE, APPEND_TO_OLD_LOG_FILE };
183
[email protected]7c10f7552011-01-11 01:03:36184enum DcheckState {
185 DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS,
186 ENABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS
187};
188
[email protected]5e3f7c22013-06-21 21:15:33189struct BASE_EXPORT LoggingSettings {
190 // The defaults values are:
191 //
192 // logging_dest: LOG_DEFAULT
193 // log_file: NULL
194 // lock_log: LOCK_LOG_FILE
195 // delete_old: APPEND_TO_OLD_LOG_FILE
196 // dcheck_state: DISABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS
197 LoggingSettings();
198
199 LoggingDestination logging_dest;
200
201 // The three settings below have an effect only when LOG_TO_FILE is
202 // set in |logging_dest|.
203 const PathChar* log_file;
204 LogLockingState lock_log;
205 OldFileDeletionState delete_old;
206
207 DcheckState dcheck_state;
208};
[email protected]ff3d0c32010-08-23 19:57:46209
210// Define different names for the BaseInitLoggingImpl() function depending on
211// whether NDEBUG is defined or not so that we'll fail to link if someone tries
212// to compile logging.cc with NDEBUG but includes logging.h without defining it,
213// or vice versa.
214#if NDEBUG
215#define BaseInitLoggingImpl BaseInitLoggingImpl_built_with_NDEBUG
216#else
217#define BaseInitLoggingImpl BaseInitLoggingImpl_built_without_NDEBUG
218#endif
219
220// Implementation of the InitLogging() method declared below. We use a
221// more-specific name so we can #define it above without affecting other code
222// that has named stuff "InitLogging".
[email protected]5e3f7c22013-06-21 21:15:33223BASE_EXPORT bool BaseInitLoggingImpl(const LoggingSettings& settings);
[email protected]ff3d0c32010-08-23 19:57:46224
initial.commitd7cae122008-07-26 21:49:38225// Sets the log file name and other global logging state. Calling this function
226// is recommended, and is normally done at the beginning of application init.
227// If you don't call it, all the flags will be initialized to their default
228// values, and there is a race condition that may leak a critical section
229// object if two threads try to do the first log at the same time.
230// See the definition of the enums above for descriptions and default values.
231//
232// The default log file is initialized to "debug.log" in the application
233// directory. You probably don't want this, especially since the program
234// directory may not be writable on an enduser's system.
[email protected]064aa162011-12-03 00:30:08235//
236// This function may be called a second time to re-direct logging (e.g after
237// loging in to a user partition), however it should never be called more than
238// twice.
[email protected]5e3f7c22013-06-21 21:15:33239inline bool InitLogging(const LoggingSettings& settings) {
240 return BaseInitLoggingImpl(settings);
[email protected]ff3d0c32010-08-23 19:57:46241}
initial.commitd7cae122008-07-26 21:49:38242
243// Sets the log level. Anything at or above this level will be written to the
244// log file/displayed to the user (if applicable). Anything below this level
[email protected]162ac0f2010-11-04 15:50:49245// will be silently ignored. The log level defaults to 0 (everything is logged
246// up to level INFO) if this function is not called.
247// Note that log messages for VLOG(x) are logged at level -x, so setting
248// the min log level to negative values enables verbose logging.
[email protected]0bea7252011-08-05 15:34:00249BASE_EXPORT void SetMinLogLevel(int level);
initial.commitd7cae122008-07-26 21:49:38250
[email protected]8a2986ca2009-04-10 19:13:42251// Gets the current log level.
[email protected]0bea7252011-08-05 15:34:00252BASE_EXPORT int GetMinLogLevel();
initial.commitd7cae122008-07-26 21:49:38253
[email protected]162ac0f2010-11-04 15:50:49254// Gets the VLOG default verbosity level.
[email protected]0bea7252011-08-05 15:34:00255BASE_EXPORT int GetVlogVerbosity();
[email protected]162ac0f2010-11-04 15:50:49256
[email protected]99b7c57f2010-09-29 19:26:36257// Gets the current vlog level for the given file (usually taken from
258// __FILE__).
[email protected]2f4e9a62010-09-29 21:25:14259
260// Note that |N| is the size *with* the null terminator.
[email protected]0bea7252011-08-05 15:34:00261BASE_EXPORT int GetVlogLevelHelper(const char* file_start, size_t N);
[email protected]2f4e9a62010-09-29 21:25:14262
[email protected]99b7c57f2010-09-29 19:26:36263template <size_t N>
264int GetVlogLevel(const char (&file)[N]) {
265 return GetVlogLevelHelper(file, N);
266}
initial.commitd7cae122008-07-26 21:49:38267
268// Sets the common items you want to be prepended to each log message.
269// process and thread IDs default to off, the timestamp defaults to on.
270// If this function is not called, logging defaults to writing the timestamp
271// only.
[email protected]0bea7252011-08-05 15:34:00272BASE_EXPORT void SetLogItems(bool enable_process_id, bool enable_thread_id,
273 bool enable_timestamp, bool enable_tickcount);
initial.commitd7cae122008-07-26 21:49:38274
[email protected]81e0a852010-08-17 00:38:12275// Sets whether or not you'd like to see fatal debug messages popped up in
276// a dialog box or not.
277// Dialogs are not shown by default.
[email protected]0bea7252011-08-05 15:34:00278BASE_EXPORT void SetShowErrorDialogs(bool enable_dialogs);
[email protected]81e0a852010-08-17 00:38:12279
initial.commitd7cae122008-07-26 21:49:38280// Sets the Log Assert Handler that will be used to notify of check failures.
[email protected]fb62a532009-02-12 01:19:05281// The default handler shows a dialog box and then terminate the process,
282// however clients can use this function to override with their own handling
283// (e.g. a silent one for Unit Tests)
initial.commitd7cae122008-07-26 21:49:38284typedef void (*LogAssertHandlerFunction)(const std::string& str);
[email protected]0bea7252011-08-05 15:34:00285BASE_EXPORT void SetLogAssertHandler(LogAssertHandlerFunction handler);
[email protected]64e5cc02010-11-03 19:20:27286
[email protected]fb62a532009-02-12 01:19:05287// Sets the Log Report Handler that will be used to notify of check failures
288// in non-debug mode. The default handler shows a dialog box and continues
289// the execution, however clients can use this function to override with their
290// own handling.
291typedef void (*LogReportHandlerFunction)(const std::string& str);
[email protected]0bea7252011-08-05 15:34:00292BASE_EXPORT void SetLogReportHandler(LogReportHandlerFunction handler);
initial.commitd7cae122008-07-26 21:49:38293
[email protected]2b07b8412009-11-25 15:26:34294// Sets the Log Message Handler that gets passed every log message before
295// it's sent to other log destinations (if any).
296// Returns true to signal that it handled the message and the message
297// should not be sent to other log destinations.
[email protected]162ac0f2010-11-04 15:50:49298typedef bool (*LogMessageHandlerFunction)(int severity,
299 const char* file, int line, size_t message_start, const std::string& str);
[email protected]0bea7252011-08-05 15:34:00300BASE_EXPORT void SetLogMessageHandler(LogMessageHandlerFunction handler);
301BASE_EXPORT LogMessageHandlerFunction GetLogMessageHandler();
[email protected]2b07b8412009-11-25 15:26:34302
initial.commitd7cae122008-07-26 21:49:38303typedef int LogSeverity;
[email protected]162ac0f2010-11-04 15:50:49304const LogSeverity LOG_VERBOSE = -1; // This is level 1 verbosity
305// Note: the log severities are used to index into the array of names,
306// see log_severity_names.
initial.commitd7cae122008-07-26 21:49:38307const LogSeverity LOG_INFO = 0;
308const LogSeverity LOG_WARNING = 1;
309const LogSeverity LOG_ERROR = 2;
[email protected]fb62a532009-02-12 01:19:05310const LogSeverity LOG_ERROR_REPORT = 3;
311const LogSeverity LOG_FATAL = 4;
312const LogSeverity LOG_NUM_SEVERITIES = 5;
initial.commitd7cae122008-07-26 21:49:38313
[email protected]521b0c42010-10-01 23:02:36314// LOG_DFATAL is LOG_FATAL in debug mode, ERROR in normal mode
initial.commitd7cae122008-07-26 21:49:38315#ifdef NDEBUG
[email protected]521b0c42010-10-01 23:02:36316const LogSeverity LOG_DFATAL = LOG_ERROR;
initial.commitd7cae122008-07-26 21:49:38317#else
[email protected]521b0c42010-10-01 23:02:36318const LogSeverity LOG_DFATAL = LOG_FATAL;
initial.commitd7cae122008-07-26 21:49:38319#endif
320
321// A few definitions of macros that don't generate much code. These are used
322// by LOG() and LOG_IF, etc. Since these are used all over our code, it's
323// better to have compact code for these operations.
[email protected]d8617a62009-10-09 23:52:20324#define COMPACT_GOOGLE_LOG_EX_INFO(ClassName, ...) \
325 logging::ClassName(__FILE__, __LINE__, logging::LOG_INFO , ##__VA_ARGS__)
326#define COMPACT_GOOGLE_LOG_EX_WARNING(ClassName, ...) \
327 logging::ClassName(__FILE__, __LINE__, logging::LOG_WARNING , ##__VA_ARGS__)
328#define COMPACT_GOOGLE_LOG_EX_ERROR(ClassName, ...) \
329 logging::ClassName(__FILE__, __LINE__, logging::LOG_ERROR , ##__VA_ARGS__)
330#define COMPACT_GOOGLE_LOG_EX_ERROR_REPORT(ClassName, ...) \
331 logging::ClassName(__FILE__, __LINE__, \
332 logging::LOG_ERROR_REPORT , ##__VA_ARGS__)
333#define COMPACT_GOOGLE_LOG_EX_FATAL(ClassName, ...) \
334 logging::ClassName(__FILE__, __LINE__, logging::LOG_FATAL , ##__VA_ARGS__)
335#define COMPACT_GOOGLE_LOG_EX_DFATAL(ClassName, ...) \
[email protected]521b0c42010-10-01 23:02:36336 logging::ClassName(__FILE__, __LINE__, logging::LOG_DFATAL , ##__VA_ARGS__)
[email protected]d8617a62009-10-09 23:52:20337
initial.commitd7cae122008-07-26 21:49:38338#define COMPACT_GOOGLE_LOG_INFO \
[email protected]d8617a62009-10-09 23:52:20339 COMPACT_GOOGLE_LOG_EX_INFO(LogMessage)
initial.commitd7cae122008-07-26 21:49:38340#define COMPACT_GOOGLE_LOG_WARNING \
[email protected]d8617a62009-10-09 23:52:20341 COMPACT_GOOGLE_LOG_EX_WARNING(LogMessage)
initial.commitd7cae122008-07-26 21:49:38342#define COMPACT_GOOGLE_LOG_ERROR \
[email protected]d8617a62009-10-09 23:52:20343 COMPACT_GOOGLE_LOG_EX_ERROR(LogMessage)
[email protected]fb62a532009-02-12 01:19:05344#define COMPACT_GOOGLE_LOG_ERROR_REPORT \
[email protected]d8617a62009-10-09 23:52:20345 COMPACT_GOOGLE_LOG_EX_ERROR_REPORT(LogMessage)
initial.commitd7cae122008-07-26 21:49:38346#define COMPACT_GOOGLE_LOG_FATAL \
[email protected]d8617a62009-10-09 23:52:20347 COMPACT_GOOGLE_LOG_EX_FATAL(LogMessage)
initial.commitd7cae122008-07-26 21:49:38348#define COMPACT_GOOGLE_LOG_DFATAL \
[email protected]d8617a62009-10-09 23:52:20349 COMPACT_GOOGLE_LOG_EX_DFATAL(LogMessage)
initial.commitd7cae122008-07-26 21:49:38350
[email protected]8d127302013-01-10 02:41:57351#if defined(OS_WIN)
initial.commitd7cae122008-07-26 21:49:38352// wingdi.h defines ERROR to be 0. When we call LOG(ERROR), it gets
353// substituted with 0, and it expands to COMPACT_GOOGLE_LOG_0. To allow us
354// to keep using this syntax, we define this macro to do the same thing
355// as COMPACT_GOOGLE_LOG_ERROR, and also define ERROR the same way that
356// the Windows SDK does for consistency.
357#define ERROR 0
[email protected]d8617a62009-10-09 23:52:20358#define COMPACT_GOOGLE_LOG_EX_0(ClassName, ...) \
359 COMPACT_GOOGLE_LOG_EX_ERROR(ClassName , ##__VA_ARGS__)
360#define COMPACT_GOOGLE_LOG_0 COMPACT_GOOGLE_LOG_ERROR
[email protected]521b0c42010-10-01 23:02:36361// Needed for LOG_IS_ON(ERROR).
362const LogSeverity LOG_0 = LOG_ERROR;
[email protected]8d127302013-01-10 02:41:57363#endif
[email protected]521b0c42010-10-01 23:02:36364
[email protected]deba0ff2010-11-03 05:30:14365// As special cases, we can assume that LOG_IS_ON(ERROR_REPORT) and
366// LOG_IS_ON(FATAL) always hold. Also, LOG_IS_ON(DFATAL) always holds
367// in debug mode. In particular, CHECK()s will always fire if they
368// fail.
[email protected]521b0c42010-10-01 23:02:36369#define LOG_IS_ON(severity) \
370 ((::logging::LOG_ ## severity) >= ::logging::GetMinLogLevel())
371
372// We can't do any caching tricks with VLOG_IS_ON() like the
373// google-glog version since it requires GCC extensions. This means
374// that using the v-logging functions in conjunction with --vmodule
375// may be slow.
376#define VLOG_IS_ON(verboselevel) \
377 ((verboselevel) <= ::logging::GetVlogLevel(__FILE__))
378
379// Helper macro which avoids evaluating the arguments to a stream if
380// the condition doesn't hold.
381#define LAZY_STREAM(stream, condition) \
382 !(condition) ? (void) 0 : ::logging::LogMessageVoidify() & (stream)
initial.commitd7cae122008-07-26 21:49:38383
384// We use the preprocessor's merging operator, "##", so that, e.g.,
385// LOG(INFO) becomes the token COMPACT_GOOGLE_LOG_INFO. There's some funny
386// subtle difference between ostream member streaming functions (e.g.,
387// ostream::operator<<(int) and ostream non-member streaming functions
388// (e.g., ::operator<<(ostream&, string&): it turns out that it's
389// impossible to stream something like a string directly to an unnamed
390// ostream. We employ a neat hack by calling the stream() member
391// function of LogMessage which seems to avoid the problem.
[email protected]521b0c42010-10-01 23:02:36392#define LOG_STREAM(severity) COMPACT_GOOGLE_LOG_ ## severity.stream()
initial.commitd7cae122008-07-26 21:49:38393
[email protected]521b0c42010-10-01 23:02:36394#define LOG(severity) LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity))
395#define LOG_IF(severity, condition) \
396 LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity) && (condition))
397
initial.commitd7cae122008-07-26 21:49:38398#define SYSLOG(severity) LOG(severity)
[email protected]521b0c42010-10-01 23:02:36399#define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
400
[email protected]162ac0f2010-11-04 15:50:49401// The VLOG macros log with negative verbosities.
402#define VLOG_STREAM(verbose_level) \
403 logging::LogMessage(__FILE__, __LINE__, -verbose_level).stream()
404
405#define VLOG(verbose_level) \
406 LAZY_STREAM(VLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
407
408#define VLOG_IF(verbose_level, condition) \
409 LAZY_STREAM(VLOG_STREAM(verbose_level), \
410 VLOG_IS_ON(verbose_level) && (condition))
[email protected]99b7c57f2010-09-29 19:26:36411
[email protected]fb879b1a2011-03-06 18:16:31412#if defined (OS_WIN)
413#define VPLOG_STREAM(verbose_level) \
414 logging::Win32ErrorLogMessage(__FILE__, __LINE__, -verbose_level, \
415 ::logging::GetLastSystemErrorCode()).stream()
416#elif defined(OS_POSIX)
417#define VPLOG_STREAM(verbose_level) \
418 logging::ErrnoLogMessage(__FILE__, __LINE__, -verbose_level, \
419 ::logging::GetLastSystemErrorCode()).stream()
420#endif
421
422#define VPLOG(verbose_level) \
423 LAZY_STREAM(VPLOG_STREAM(verbose_level), VLOG_IS_ON(verbose_level))
424
425#define VPLOG_IF(verbose_level, condition) \
426 LAZY_STREAM(VPLOG_STREAM(verbose_level), \
427 VLOG_IS_ON(verbose_level) && (condition))
428
[email protected]99b7c57f2010-09-29 19:26:36429// TODO(akalin): Add more VLOG variants, e.g. VPLOG.
initial.commitd7cae122008-07-26 21:49:38430
initial.commitd7cae122008-07-26 21:49:38431#define LOG_ASSERT(condition) \
432 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
433#define SYSLOG_ASSERT(condition) \
434 SYSLOG_IF(FATAL, !(condition)) << "Assert failed: " #condition ". "
435
[email protected]d8617a62009-10-09 23:52:20436#if defined(OS_WIN)
[email protected]521b0c42010-10-01 23:02:36437#define LOG_GETLASTERROR_STREAM(severity) \
[email protected]d8617a62009-10-09 23:52:20438 COMPACT_GOOGLE_LOG_EX_ ## severity(Win32ErrorLogMessage, \
439 ::logging::GetLastSystemErrorCode()).stream()
[email protected]521b0c42010-10-01 23:02:36440#define LOG_GETLASTERROR(severity) \
441 LAZY_STREAM(LOG_GETLASTERROR_STREAM(severity), LOG_IS_ON(severity))
442#define LOG_GETLASTERROR_MODULE_STREAM(severity, module) \
[email protected]d8617a62009-10-09 23:52:20443 COMPACT_GOOGLE_LOG_EX_ ## severity(Win32ErrorLogMessage, \
444 ::logging::GetLastSystemErrorCode(), module).stream()
[email protected]521b0c42010-10-01 23:02:36445#define LOG_GETLASTERROR_MODULE(severity, module) \
446 LAZY_STREAM(LOG_GETLASTERROR_STREAM(severity, module), \
447 LOG_IS_ON(severity))
448// PLOG_STREAM is used by PLOG, which is the usual error logging macro
449// for each platform.
450#define PLOG_STREAM(severity) LOG_GETLASTERROR_STREAM(severity)
[email protected]d8617a62009-10-09 23:52:20451#elif defined(OS_POSIX)
[email protected]521b0c42010-10-01 23:02:36452#define LOG_ERRNO_STREAM(severity) \
[email protected]d8617a62009-10-09 23:52:20453 COMPACT_GOOGLE_LOG_EX_ ## severity(ErrnoLogMessage, \
454 ::logging::GetLastSystemErrorCode()).stream()
[email protected]521b0c42010-10-01 23:02:36455#define LOG_ERRNO(severity) \
456 LAZY_STREAM(LOG_ERRNO_STREAM(severity), LOG_IS_ON(severity))
457// PLOG_STREAM is used by PLOG, which is the usual error logging macro
458// for each platform.
459#define PLOG_STREAM(severity) LOG_ERRNO_STREAM(severity)
[email protected]d8617a62009-10-09 23:52:20460#endif
461
[email protected]521b0c42010-10-01 23:02:36462#define PLOG(severity) \
463 LAZY_STREAM(PLOG_STREAM(severity), LOG_IS_ON(severity))
464
[email protected]d8617a62009-10-09 23:52:20465#define PLOG_IF(severity, condition) \
[email protected]521b0c42010-10-01 23:02:36466 LAZY_STREAM(PLOG_STREAM(severity), LOG_IS_ON(severity) && (condition))
[email protected]d8617a62009-10-09 23:52:20467
[email protected]65b0819e2013-06-21 15:24:00468#if !defined(NDEBUG)
469// Debug builds always include DCHECK and DLOG.
470#undef LOGGING_IS_OFFICIAL_BUILD
471#define LOGGING_IS_OFFICIAL_BUILD 0
472#elif defined(OFFICIAL_BUILD)
473// Official release builds always disable and remove DCHECK and DLOG.
474#undef LOGGING_IS_OFFICIAL_BUILD
[email protected]ddb9b332011-12-02 07:31:09475#define LOGGING_IS_OFFICIAL_BUILD 1
[email protected]65b0819e2013-06-21 15:24:00476#elif !defined(LOGGING_IS_OFFICIAL_BUILD)
477// Unless otherwise specified, unofficial release builds include
478// DCHECK and DLOG.
[email protected]ddb9b332011-12-02 07:31:09479#define LOGGING_IS_OFFICIAL_BUILD 0
480#endif
481
482// The actual stream used isn't important.
483#define EAT_STREAM_PARAMETERS \
484 true ? (void) 0 : ::logging::LogMessageVoidify() & LOG_STREAM(FATAL)
485
initial.commitd7cae122008-07-26 21:49:38486// CHECK dies with a fatal error if condition is not true. It is *not*
487// controlled by NDEBUG, so the check will be executed regardless of
488// compilation mode.
[email protected]521b0c42010-10-01 23:02:36489//
490// We make sure CHECK et al. always evaluates their arguments, as
491// doing CHECK(FunctionWithSideEffect()) is a common idiom.
[email protected]ddb9b332011-12-02 07:31:09492
493#if LOGGING_IS_OFFICIAL_BUILD
494
495// Make all CHECK functions discard their log strings to reduce code
496// bloat for official builds.
497
498// TODO(akalin): This would be more valuable if there were some way to
499// remove BreakDebugger() from the backtrace, perhaps by turning it
500// into a macro (like __debugbreak() on Windows).
501#define CHECK(condition) \
502 !(condition) ? ::base::debug::BreakDebugger() : EAT_STREAM_PARAMETERS
503
504#define PCHECK(condition) CHECK(condition)
505
506#define CHECK_OP(name, op, val1, val2) CHECK((val1) op (val2))
507
508#else
509
[email protected]521b0c42010-10-01 23:02:36510#define CHECK(condition) \
511 LAZY_STREAM(LOG_STREAM(FATAL), !(condition)) \
512 << "Check failed: " #condition ". "
initial.commitd7cae122008-07-26 21:49:38513
[email protected]d8617a62009-10-09 23:52:20514#define PCHECK(condition) \
[email protected]521b0c42010-10-01 23:02:36515 LAZY_STREAM(PLOG_STREAM(FATAL), !(condition)) \
516 << "Check failed: " #condition ". "
[email protected]d8617a62009-10-09 23:52:20517
[email protected]ddb9b332011-12-02 07:31:09518// Helper macro for binary operators.
519// Don't use this macro directly in your code, use CHECK_EQ et al below.
520//
521// TODO(akalin): Rewrite this so that constructs like if (...)
522// CHECK_EQ(...) else { ... } work properly.
523#define CHECK_OP(name, op, val1, val2) \
524 if (std::string* _result = \
525 logging::Check##name##Impl((val1), (val2), \
526 #val1 " " #op " " #val2)) \
527 logging::LogMessage(__FILE__, __LINE__, _result).stream()
528
529#endif
530
initial.commitd7cae122008-07-26 21:49:38531// Build the error message string. This is separate from the "Impl"
532// function template because it is not performance critical and so can
[email protected]9c7132e2011-02-08 07:39:08533// be out of line, while the "Impl" code should be inline. Caller
534// takes ownership of the returned string.
initial.commitd7cae122008-07-26 21:49:38535template<class t1, class t2>
536std::string* MakeCheckOpString(const t1& v1, const t2& v2, const char* names) {
537 std::ostringstream ss;
538 ss << names << " (" << v1 << " vs. " << v2 << ")";
539 std::string* msg = new std::string(ss.str());
540 return msg;
541}
542
[email protected]6d445d32010-09-30 19:10:03543// MSVC doesn't like complex extern templates and DLLs.
[email protected]dc72da32011-10-24 20:20:30544#if !defined(COMPILER_MSVC)
[email protected]6d445d32010-09-30 19:10:03545// Commonly used instantiations of MakeCheckOpString<>. Explicitly instantiated
546// in logging.cc.
[email protected]dc72da32011-10-24 20:20:30547extern template BASE_EXPORT std::string* MakeCheckOpString<int, int>(
[email protected]6d445d32010-09-30 19:10:03548 const int&, const int&, const char* names);
[email protected]dc72da32011-10-24 20:20:30549extern template BASE_EXPORT
550std::string* MakeCheckOpString<unsigned long, unsigned long>(
[email protected]6d445d32010-09-30 19:10:03551 const unsigned long&, const unsigned long&, const char* names);
[email protected]dc72da32011-10-24 20:20:30552extern template BASE_EXPORT
553std::string* MakeCheckOpString<unsigned long, unsigned int>(
[email protected]6d445d32010-09-30 19:10:03554 const unsigned long&, const unsigned int&, const char* names);
[email protected]dc72da32011-10-24 20:20:30555extern template BASE_EXPORT
556std::string* MakeCheckOpString<unsigned int, unsigned long>(
[email protected]6d445d32010-09-30 19:10:03557 const unsigned int&, const unsigned long&, const char* names);
[email protected]dc72da32011-10-24 20:20:30558extern template BASE_EXPORT
559std::string* MakeCheckOpString<std::string, std::string>(
[email protected]6d445d32010-09-30 19:10:03560 const std::string&, const std::string&, const char* name);
561#endif
initial.commitd7cae122008-07-26 21:49:38562
[email protected]71512602010-11-01 22:19:56563// Helper functions for CHECK_OP macro.
564// The (int, int) specialization works around the issue that the compiler
565// will not instantiate the template version of the function on values of
566// unnamed enum type - see comment below.
567#define DEFINE_CHECK_OP_IMPL(name, op) \
568 template <class t1, class t2> \
569 inline std::string* Check##name##Impl(const t1& v1, const t2& v2, \
570 const char* names) { \
571 if (v1 op v2) return NULL; \
572 else return MakeCheckOpString(v1, v2, names); \
573 } \
574 inline std::string* Check##name##Impl(int v1, int v2, const char* names) { \
575 if (v1 op v2) return NULL; \
576 else return MakeCheckOpString(v1, v2, names); \
577 }
578DEFINE_CHECK_OP_IMPL(EQ, ==)
579DEFINE_CHECK_OP_IMPL(NE, !=)
580DEFINE_CHECK_OP_IMPL(LE, <=)
581DEFINE_CHECK_OP_IMPL(LT, < )
582DEFINE_CHECK_OP_IMPL(GE, >=)
583DEFINE_CHECK_OP_IMPL(GT, > )
584#undef DEFINE_CHECK_OP_IMPL
[email protected]e150c0382010-03-02 00:41:12585
586#define CHECK_EQ(val1, val2) CHECK_OP(EQ, ==, val1, val2)
587#define CHECK_NE(val1, val2) CHECK_OP(NE, !=, val1, val2)
588#define CHECK_LE(val1, val2) CHECK_OP(LE, <=, val1, val2)
589#define CHECK_LT(val1, val2) CHECK_OP(LT, < , val1, val2)
590#define CHECK_GE(val1, val2) CHECK_OP(GE, >=, val1, val2)
591#define CHECK_GT(val1, val2) CHECK_OP(GT, > , val1, val2)
592
[email protected]ddb9b332011-12-02 07:31:09593#if LOGGING_IS_OFFICIAL_BUILD
[email protected]e3cca332009-08-20 01:20:29594// In order to have optimized code for official builds, remove DLOGs and
595// DCHECKs.
[email protected]d15e56c2010-09-30 21:12:33596#define ENABLE_DLOG 0
597#define ENABLE_DCHECK 0
598
599#elif defined(NDEBUG)
600// Otherwise, if we're a release build, remove DLOGs but not DCHECKs
601// (since those can still be turned on via a command-line flag).
602#define ENABLE_DLOG 0
603#define ENABLE_DCHECK 1
604
605#else
606// Otherwise, we're a debug build so enable DLOGs and DCHECKs.
607#define ENABLE_DLOG 1
608#define ENABLE_DCHECK 1
[email protected]e3cca332009-08-20 01:20:29609#endif
610
[email protected]d15e56c2010-09-30 21:12:33611// Definitions for DLOG et al.
612
[email protected]d926c202010-10-01 02:58:24613#if ENABLE_DLOG
614
[email protected]5e987802010-11-01 19:49:22615#define DLOG_IS_ON(severity) LOG_IS_ON(severity)
[email protected]d926c202010-10-01 02:58:24616#define DLOG_IF(severity, condition) LOG_IF(severity, condition)
617#define DLOG_ASSERT(condition) LOG_ASSERT(condition)
[email protected]d926c202010-10-01 02:58:24618#define DPLOG_IF(severity, condition) PLOG_IF(severity, condition)
[email protected]521b0c42010-10-01 23:02:36619#define DVLOG_IF(verboselevel, condition) VLOG_IF(verboselevel, condition)
[email protected]fb879b1a2011-03-06 18:16:31620#define DVPLOG_IF(verboselevel, condition) VPLOG_IF(verboselevel, condition)
[email protected]d926c202010-10-01 02:58:24621
622#else // ENABLE_DLOG
623
[email protected]521b0c42010-10-01 23:02:36624// If ENABLE_DLOG is off, we want to avoid emitting any references to
625// |condition| (which may reference a variable defined only if NDEBUG
626// is not defined). Contrast this with DCHECK et al., which has
627// different behavior.
[email protected]d926c202010-10-01 02:58:24628
[email protected]5e987802010-11-01 19:49:22629#define DLOG_IS_ON(severity) false
[email protected]ddb9b332011-12-02 07:31:09630#define DLOG_IF(severity, condition) EAT_STREAM_PARAMETERS
631#define DLOG_ASSERT(condition) EAT_STREAM_PARAMETERS
632#define DPLOG_IF(severity, condition) EAT_STREAM_PARAMETERS
633#define DVLOG_IF(verboselevel, condition) EAT_STREAM_PARAMETERS
634#define DVPLOG_IF(verboselevel, condition) EAT_STREAM_PARAMETERS
[email protected]d926c202010-10-01 02:58:24635
636#endif // ENABLE_DLOG
637
[email protected]d15e56c2010-09-30 21:12:33638// DEBUG_MODE is for uses like
639// if (DEBUG_MODE) foo.CheckThatFoo();
640// instead of
641// #ifndef NDEBUG
642// foo.CheckThatFoo();
643// #endif
644//
645// We tie its state to ENABLE_DLOG.
646enum { DEBUG_MODE = ENABLE_DLOG };
647
648#undef ENABLE_DLOG
649
[email protected]521b0c42010-10-01 23:02:36650#define DLOG(severity) \
651 LAZY_STREAM(LOG_STREAM(severity), DLOG_IS_ON(severity))
652
653#if defined(OS_WIN)
654#define DLOG_GETLASTERROR(severity) \
655 LAZY_STREAM(LOG_GETLASTERROR_STREAM(severity), DLOG_IS_ON(severity))
656#define DLOG_GETLASTERROR_MODULE(severity, module) \
657 LAZY_STREAM(LOG_GETLASTERROR_STREAM(severity, module), \
658 DLOG_IS_ON(severity))
659#elif defined(OS_POSIX)
660#define DLOG_ERRNO(severity) \
661 LAZY_STREAM(LOG_ERRNO_STREAM(severity), DLOG_IS_ON(severity))
662#endif
663
664#define DPLOG(severity) \
665 LAZY_STREAM(PLOG_STREAM(severity), DLOG_IS_ON(severity))
666
[email protected]c3ab11c2011-10-25 06:28:45667#define DVLOG(verboselevel) DVLOG_IF(verboselevel, VLOG_IS_ON(verboselevel))
[email protected]521b0c42010-10-01 23:02:36668
[email protected]fb879b1a2011-03-06 18:16:31669#define DVPLOG(verboselevel) DVPLOG_IF(verboselevel, VLOG_IS_ON(verboselevel))
670
[email protected]521b0c42010-10-01 23:02:36671// Definitions for DCHECK et al.
[email protected]d926c202010-10-01 02:58:24672
[email protected]d15e56c2010-09-30 21:12:33673#if ENABLE_DCHECK
[email protected]e3cca332009-08-20 01:20:29674
[email protected]521b0c42010-10-01 23:02:36675#if defined(NDEBUG)
[email protected]d926c202010-10-01 02:58:24676
[email protected]3ee50d12014-03-05 01:43:27677BASE_EXPORT extern DcheckState g_dcheck_state;
[email protected]f12e596a2013-05-21 01:42:10678BASE_EXPORT void set_dcheck_state(DcheckState state);
[email protected]20960e072011-09-20 20:59:01679
680#if defined(DCHECK_ALWAYS_ON)
681
682#define DCHECK_IS_ON() true
683#define COMPACT_GOOGLE_LOG_EX_DCHECK(ClassName, ...) \
684 COMPACT_GOOGLE_LOG_EX_FATAL(ClassName , ##__VA_ARGS__)
685#define COMPACT_GOOGLE_LOG_DCHECK COMPACT_GOOGLE_LOG_FATAL
686const LogSeverity LOG_DCHECK = LOG_FATAL;
687
688#else
689
[email protected]deba0ff2010-11-03 05:30:14690#define COMPACT_GOOGLE_LOG_EX_DCHECK(ClassName, ...) \
691 COMPACT_GOOGLE_LOG_EX_ERROR_REPORT(ClassName , ##__VA_ARGS__)
692#define COMPACT_GOOGLE_LOG_DCHECK COMPACT_GOOGLE_LOG_ERROR_REPORT
[email protected]521b0c42010-10-01 23:02:36693const LogSeverity LOG_DCHECK = LOG_ERROR_REPORT;
[email protected]3ee50d12014-03-05 01:43:27694
695#define DCHECK_IS_ON() \
696 UNLIKELY(::logging::g_dcheck_state == \
697 ::logging::ENABLE_DCHECK_FOR_NON_OFFICIAL_RELEASE_BUILDS) && \
698 LOG_IS_ON(DCHECK)
[email protected]d926c202010-10-01 02:58:24699
[email protected]20960e072011-09-20 20:59:01700#endif // defined(DCHECK_ALWAYS_ON)
701
[email protected]521b0c42010-10-01 23:02:36702#else // defined(NDEBUG)
703
[email protected]5e987802010-11-01 19:49:22704// On a regular debug build, we want to have DCHECKs enabled.
[email protected]deba0ff2010-11-03 05:30:14705#define COMPACT_GOOGLE_LOG_EX_DCHECK(ClassName, ...) \
706 COMPACT_GOOGLE_LOG_EX_FATAL(ClassName , ##__VA_ARGS__)
707#define COMPACT_GOOGLE_LOG_DCHECK COMPACT_GOOGLE_LOG_FATAL
[email protected]521b0c42010-10-01 23:02:36708const LogSeverity LOG_DCHECK = LOG_FATAL;
[email protected]deba0ff2010-11-03 05:30:14709#define DCHECK_IS_ON() true
[email protected]521b0c42010-10-01 23:02:36710
711#endif // defined(NDEBUG)
712
713#else // ENABLE_DCHECK
714
[email protected]deba0ff2010-11-03 05:30:14715// These are just dummy values since DCHECK_IS_ON() is always false in
716// this case.
717#define COMPACT_GOOGLE_LOG_EX_DCHECK(ClassName, ...) \
718 COMPACT_GOOGLE_LOG_EX_INFO(ClassName , ##__VA_ARGS__)
719#define COMPACT_GOOGLE_LOG_DCHECK COMPACT_GOOGLE_LOG_INFO
720const LogSeverity LOG_DCHECK = LOG_INFO;
[email protected]5e987802010-11-01 19:49:22721#define DCHECK_IS_ON() false
[email protected]521b0c42010-10-01 23:02:36722
723#endif // ENABLE_DCHECK
[email protected]5e987802010-11-01 19:49:22724#undef ENABLE_DCHECK
[email protected]521b0c42010-10-01 23:02:36725
[email protected]deba0ff2010-11-03 05:30:14726// DCHECK et al. make sure to reference |condition| regardless of
[email protected]521b0c42010-10-01 23:02:36727// whether DCHECKs are enabled; this is so that we don't get unused
728// variable warnings if the only use of a variable is in a DCHECK.
729// This behavior is different from DLOG_IF et al.
730
[email protected]deba0ff2010-11-03 05:30:14731#define DCHECK(condition) \
732 LAZY_STREAM(LOG_STREAM(DCHECK), DCHECK_IS_ON() && !(condition)) \
[email protected]521b0c42010-10-01 23:02:36733 << "Check failed: " #condition ". "
734
[email protected]deba0ff2010-11-03 05:30:14735#define DPCHECK(condition) \
736 LAZY_STREAM(PLOG_STREAM(DCHECK), DCHECK_IS_ON() && !(condition)) \
[email protected]521b0c42010-10-01 23:02:36737 << "Check failed: " #condition ". "
[email protected]d926c202010-10-01 02:58:24738
739// Helper macro for binary operators.
740// Don't use this macro directly in your code, use DCHECK_EQ et al below.
[email protected]521b0c42010-10-01 23:02:36741#define DCHECK_OP(name, op, val1, val2) \
[email protected]5e987802010-11-01 19:49:22742 if (DCHECK_IS_ON()) \
[email protected]9c7132e2011-02-08 07:39:08743 if (std::string* _result = \
[email protected]521b0c42010-10-01 23:02:36744 logging::Check##name##Impl((val1), (val2), \
745 #val1 " " #op " " #val2)) \
746 logging::LogMessage( \
747 __FILE__, __LINE__, ::logging::LOG_DCHECK, \
748 _result).stream()
initial.commitd7cae122008-07-26 21:49:38749
[email protected]deba0ff2010-11-03 05:30:14750// Equality/Inequality checks - compare two values, and log a
751// LOG_DCHECK message including the two values when the result is not
752// as expected. The values must have operator<<(ostream, ...)
753// defined.
initial.commitd7cae122008-07-26 21:49:38754//
755// You may append to the error message like so:
756// DCHECK_NE(1, 2) << ": The world must be ending!";
757//
758// We are very careful to ensure that each argument is evaluated exactly
759// once, and that anything which is legal to pass as a function argument is
760// legal here. In particular, the arguments may be temporary expressions
761// which will end up being destroyed at the end of the apparent statement,
762// for example:
763// DCHECK_EQ(string("abc")[1], 'b');
764//
765// WARNING: These may not compile correctly if one of the arguments is a pointer
766// and the other is NULL. To work around this, simply static_cast NULL to the
767// type of the desired pointer.
768
769#define DCHECK_EQ(val1, val2) DCHECK_OP(EQ, ==, val1, val2)
770#define DCHECK_NE(val1, val2) DCHECK_OP(NE, !=, val1, val2)
771#define DCHECK_LE(val1, val2) DCHECK_OP(LE, <=, val1, val2)
772#define DCHECK_LT(val1, val2) DCHECK_OP(LT, < , val1, val2)
773#define DCHECK_GE(val1, val2) DCHECK_OP(GE, >=, val1, val2)
774#define DCHECK_GT(val1, val2) DCHECK_OP(GT, > , val1, val2)
775
[email protected]7c67fbe2013-09-26 07:55:21776#if defined(NDEBUG) && defined(OS_CHROMEOS)
777#define NOTREACHED() LOG(ERROR) << "NOTREACHED() hit in " << \
778 __FUNCTION__ << ". "
779#else
initial.commitd7cae122008-07-26 21:49:38780#define NOTREACHED() DCHECK(false)
[email protected]7c67fbe2013-09-26 07:55:21781#endif
initial.commitd7cae122008-07-26 21:49:38782
783// Redefine the standard assert to use our nice log files
784#undef assert
785#define assert(x) DLOG_ASSERT(x)
786
787// This class more or less represents a particular log message. You
788// create an instance of LogMessage and then stream stuff to it.
789// When you finish streaming to it, ~LogMessage is called and the
790// full message gets streamed to the appropriate destination.
791//
792// You shouldn't actually use LogMessage's constructor to log things,
793// though. You should use the LOG() macro (and variants thereof)
794// above.
[email protected]0bea7252011-08-05 15:34:00795class BASE_EXPORT LogMessage {
initial.commitd7cae122008-07-26 21:49:38796 public:
797 LogMessage(const char* file, int line, LogSeverity severity, int ctr);
798
799 // Two special constructors that generate reduced amounts of code at
800 // LOG call sites for common cases.
801 //
802 // Used for LOG(INFO): Implied are:
803 // severity = LOG_INFO, ctr = 0
804 //
805 // Using this constructor instead of the more complex constructor above
806 // saves a couple of bytes per call site.
807 LogMessage(const char* file, int line);
808
809 // Used for LOG(severity) where severity != INFO. Implied
810 // are: ctr = 0
811 //
812 // Using this constructor instead of the more complex constructor above
813 // saves a couple of bytes per call site.
814 LogMessage(const char* file, int line, LogSeverity severity);
815
[email protected]9c7132e2011-02-08 07:39:08816 // A special constructor used for check failures. Takes ownership
817 // of the given string.
initial.commitd7cae122008-07-26 21:49:38818 // Implied severity = LOG_FATAL
[email protected]9c7132e2011-02-08 07:39:08819 LogMessage(const char* file, int line, std::string* result);
initial.commitd7cae122008-07-26 21:49:38820
[email protected]fb62a532009-02-12 01:19:05821 // A special constructor used for check failures, with the option to
[email protected]9c7132e2011-02-08 07:39:08822 // specify severity. Takes ownership of the given string.
[email protected]fb62a532009-02-12 01:19:05823 LogMessage(const char* file, int line, LogSeverity severity,
[email protected]9c7132e2011-02-08 07:39:08824 std::string* result);
[email protected]fb62a532009-02-12 01:19:05825
initial.commitd7cae122008-07-26 21:49:38826 ~LogMessage();
827
828 std::ostream& stream() { return stream_; }
829
830 private:
831 void Init(const char* file, int line);
832
833 LogSeverity severity_;
834 std::ostringstream stream_;
[email protected]c88873922008-07-30 13:02:03835 size_t message_start_; // Offset of the start of the message (past prefix
836 // info).
[email protected]162ac0f2010-11-04 15:50:49837 // The file and line information passed in to the constructor.
838 const char* file_;
839 const int line_;
840
[email protected]3f85caa2009-04-14 16:52:11841#if defined(OS_WIN)
842 // Stores the current value of GetLastError in the constructor and restores
843 // it in the destructor by calling SetLastError.
844 // This is useful since the LogMessage class uses a lot of Win32 calls
845 // that will lose the value of GLE and the code that called the log function
846 // will have lost the thread error value when the log call returns.
847 class SaveLastError {
848 public:
849 SaveLastError();
850 ~SaveLastError();
851
852 unsigned long get_error() const { return last_error_; }
853
854 protected:
855 unsigned long last_error_;
856 };
857
858 SaveLastError last_error_;
859#endif
initial.commitd7cae122008-07-26 21:49:38860
[email protected]39be4242008-08-07 18:31:40861 DISALLOW_COPY_AND_ASSIGN(LogMessage);
initial.commitd7cae122008-07-26 21:49:38862};
863
864// A non-macro interface to the log facility; (useful
865// when the logging level is not a compile-time constant).
866inline void LogAtLevel(int const log_level, std::string const &msg) {
867 LogMessage(__FILE__, __LINE__, log_level).stream() << msg;
868}
869
870// This class is used to explicitly ignore values in the conditional
871// logging macros. This avoids compiler warnings like "value computed
872// is not used" and "statement has no effect".
[email protected]23bb71f2011-04-21 22:22:10873class LogMessageVoidify {
initial.commitd7cae122008-07-26 21:49:38874 public:
875 LogMessageVoidify() { }
876 // This has to be an operator with a precedence lower than << but
877 // higher than ?:
878 void operator&(std::ostream&) { }
879};
880
[email protected]d8617a62009-10-09 23:52:20881#if defined(OS_WIN)
882typedef unsigned long SystemErrorCode;
883#elif defined(OS_POSIX)
884typedef int SystemErrorCode;
885#endif
886
887// Alias for ::GetLastError() on Windows and errno on POSIX. Avoids having to
888// pull in windows.h just for GetLastError() and DWORD.
[email protected]0bea7252011-08-05 15:34:00889BASE_EXPORT SystemErrorCode GetLastSystemErrorCode();
[email protected]d8617a62009-10-09 23:52:20890
891#if defined(OS_WIN)
892// Appends a formatted system message of the GetLastError() type.
[email protected]0bea7252011-08-05 15:34:00893class BASE_EXPORT Win32ErrorLogMessage {
[email protected]d8617a62009-10-09 23:52:20894 public:
895 Win32ErrorLogMessage(const char* file,
896 int line,
897 LogSeverity severity,
898 SystemErrorCode err,
899 const char* module);
900
901 Win32ErrorLogMessage(const char* file,
902 int line,
903 LogSeverity severity,
904 SystemErrorCode err);
905
[email protected]d8617a62009-10-09 23:52:20906 // Appends the error message before destructing the encapsulated class.
907 ~Win32ErrorLogMessage();
908
[email protected]a502bbe72011-01-07 18:06:45909 std::ostream& stream() { return log_message_.stream(); }
910
[email protected]d8617a62009-10-09 23:52:20911 private:
912 SystemErrorCode err_;
913 // Optional name of the module defining the error.
914 const char* module_;
915 LogMessage log_message_;
916
917 DISALLOW_COPY_AND_ASSIGN(Win32ErrorLogMessage);
918};
919#elif defined(OS_POSIX)
920// Appends a formatted system message of the errno type
[email protected]0bea7252011-08-05 15:34:00921class BASE_EXPORT ErrnoLogMessage {
[email protected]d8617a62009-10-09 23:52:20922 public:
923 ErrnoLogMessage(const char* file,
924 int line,
925 LogSeverity severity,
926 SystemErrorCode err);
927
[email protected]d8617a62009-10-09 23:52:20928 // Appends the error message before destructing the encapsulated class.
929 ~ErrnoLogMessage();
930
[email protected]a502bbe72011-01-07 18:06:45931 std::ostream& stream() { return log_message_.stream(); }
932
[email protected]d8617a62009-10-09 23:52:20933 private:
934 SystemErrorCode err_;
935 LogMessage log_message_;
936
937 DISALLOW_COPY_AND_ASSIGN(ErrnoLogMessage);
938};
939#endif // OS_WIN
940
initial.commitd7cae122008-07-26 21:49:38941// Closes the log file explicitly if open.
942// NOTE: Since the log file is opened as necessary by the action of logging
943// statements, there's no guarantee that it will stay closed
944// after this call.
[email protected]0bea7252011-08-05 15:34:00945BASE_EXPORT void CloseLogFile();
initial.commitd7cae122008-07-26 21:49:38946
[email protected]e36ddc82009-12-08 04:22:50947// Async signal safe logging mechanism.
[email protected]0bea7252011-08-05 15:34:00948BASE_EXPORT void RawLog(int level, const char* message);
[email protected]e36ddc82009-12-08 04:22:50949
950#define RAW_LOG(level, message) logging::RawLog(logging::LOG_ ## level, message)
951
952#define RAW_CHECK(condition) \
953 do { \
954 if (!(condition)) \
955 logging::RawLog(logging::LOG_FATAL, "Check failed: " #condition "\n"); \
956 } while (0)
957
[email protected]f01b88a2013-02-27 22:04:00958#if defined(OS_WIN)
959// Returns the default log file path.
960BASE_EXPORT std::wstring GetLogFileFullPath();
961#endif
962
[email protected]39be4242008-08-07 18:31:40963} // namespace logging
initial.commitd7cae122008-07-26 21:49:38964
[email protected]46ce5b562010-06-16 18:39:53965// These functions are provided as a convenience for logging, which is where we
966// use streams (it is against Google style to use streams in other places). It
967// is designed to allow you to emit non-ASCII Unicode strings to the log file,
968// which is normally ASCII. It is relatively slow, so try not to use it for
969// common cases. Non-ASCII characters will be converted to UTF-8 by these
970// operators.
[email protected]0bea7252011-08-05 15:34:00971BASE_EXPORT std::ostream& operator<<(std::ostream& out, const wchar_t* wstr);
[email protected]46ce5b562010-06-16 18:39:53972inline std::ostream& operator<<(std::ostream& out, const std::wstring& wstr) {
973 return out << wstr.c_str();
974}
975
[email protected]0dfc81b2008-08-25 03:44:40976// The NOTIMPLEMENTED() macro annotates codepaths which have
977// not been implemented yet.
978//
979// The implementation of this macro is controlled by NOTIMPLEMENTED_POLICY:
980// 0 -- Do nothing (stripped by compiler)
981// 1 -- Warn at compile time
982// 2 -- Fail at compile time
983// 3 -- Fail at runtime (DCHECK)
984// 4 -- [default] LOG(ERROR) at runtime
985// 5 -- LOG(ERROR) at runtime, only once per call-site
986
987#ifndef NOTIMPLEMENTED_POLICY
[email protected]f5c7758a2012-07-25 16:17:57988#if defined(OS_ANDROID) && defined(OFFICIAL_BUILD)
989#define NOTIMPLEMENTED_POLICY 0
990#else
[email protected]0dfc81b2008-08-25 03:44:40991// Select default policy: LOG(ERROR)
992#define NOTIMPLEMENTED_POLICY 4
993#endif
[email protected]f5c7758a2012-07-25 16:17:57994#endif
[email protected]0dfc81b2008-08-25 03:44:40995
[email protected]f6cda752008-10-30 23:54:26996#if defined(COMPILER_GCC)
997// On Linux, with GCC, we can use __PRETTY_FUNCTION__ to get the demangled name
998// of the current function in the NOTIMPLEMENTED message.
999#define NOTIMPLEMENTED_MSG "Not implemented reached in " << __PRETTY_FUNCTION__
1000#else
1001#define NOTIMPLEMENTED_MSG "NOT IMPLEMENTED"
1002#endif
1003
[email protected]0dfc81b2008-08-25 03:44:401004#if NOTIMPLEMENTED_POLICY == 0
[email protected]38227292012-01-30 19:41:541005#define NOTIMPLEMENTED() EAT_STREAM_PARAMETERS
[email protected]0dfc81b2008-08-25 03:44:401006#elif NOTIMPLEMENTED_POLICY == 1
1007// TODO, figure out how to generate a warning
1008#define NOTIMPLEMENTED() COMPILE_ASSERT(false, NOT_IMPLEMENTED)
1009#elif NOTIMPLEMENTED_POLICY == 2
1010#define NOTIMPLEMENTED() COMPILE_ASSERT(false, NOT_IMPLEMENTED)
1011#elif NOTIMPLEMENTED_POLICY == 3
1012#define NOTIMPLEMENTED() NOTREACHED()
1013#elif NOTIMPLEMENTED_POLICY == 4
[email protected]f6cda752008-10-30 23:54:261014#define NOTIMPLEMENTED() LOG(ERROR) << NOTIMPLEMENTED_MSG
[email protected]0dfc81b2008-08-25 03:44:401015#elif NOTIMPLEMENTED_POLICY == 5
1016#define NOTIMPLEMENTED() do {\
[email protected]b70ff012013-02-13 08:32:141017 static bool logged_once = false;\
1018 LOG_IF(ERROR, !logged_once) << NOTIMPLEMENTED_MSG;\
1019 logged_once = true;\
1020} while(0);\
1021EAT_STREAM_PARAMETERS
[email protected]0dfc81b2008-08-25 03:44:401022#endif
1023
[email protected]39be4242008-08-07 18:31:401024#endif // BASE_LOGGING_H_