1 // Copyright (c) 1999, Google Inc.
2 // All rights reserved.
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above
11 // copyright notice, this list of conditions and the following disclaimer
12 // in the documentation and/or other materials provided with the
14 // * Neither the name of Google Inc. nor the names of its
15 // contributors may be used to endorse or promote products derived from
16 // this software without specific prior written permission.
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 // This file contains #include information about logging-related stuff.
33 // Pretty much everybody needs to #include this file so that they can
34 // log various happenings.
46 #if @ac_cv_have_unistd_h@
51 // Annoying stuff for windows -- makes sure clients can import these functions
52 #ifndef GOOGLE_GLOG_DLL_DECL
53 # if defined(_WIN32) && !defined(__CYGWIN__)
54 # define GOOGLE_GLOG_DLL_DECL __declspec(dllimport)
56 # define GOOGLE_GLOG_DLL_DECL
60 #define GLOG_MSVC_PUSH_DISABLE_WARNING(n) __pragma(warning(push)) \
61 __pragma(warning(disable:n))
62 #define GLOG_MSVC_POP_WARNING() __pragma(warning(pop))
64 #define GLOG_MSVC_PUSH_DISABLE_WARNING(n)
65 #define GLOG_MSVC_POP_WARNING()
68 // We care a lot about number of bits things take up. Unfortunately,
69 // systems define their bit-specific ints in a lot of different ways.
70 // We use our own way, and have a typedef to get there.
71 // Note: these commands below may look like "#if 1" or "#if 0", but
72 // that's because they were constructed that way at ./configure time.
73 // Look at logging.h.in to see how they're calculated (based on your config).
74 #if @ac_cv_have_stdint_h@
75 #include <stdint.h> // the normal place uint16_t is defined
77 #if @ac_cv_have_systypes_h@
78 #include <sys/types.h> // the normal place u_int16_t is defined
80 #if @ac_cv_have_inttypes_h@
81 #include <inttypes.h> // a third place for uint16_t or u_int16_t
84 #if @ac_cv_have_libgflags@
85 #include <gflags/gflags.h>
88 @ac_google_start_namespace@
90 #if @ac_cv_have_uint16_t@ // the C99 format
91 typedef int32_t int32;
92 typedef uint32_t uint32;
93 typedef int64_t int64;
94 typedef uint64_t uint64;
95 #elif @ac_cv_have_u_int16_t@ // the BSD format
96 typedef int32_t int32;
97 typedef u_int32_t uint32;
98 typedef int64_t int64;
99 typedef u_int64_t uint64;
100 #elif @ac_cv_have___uint16@ // the windows (vc7) format
101 typedef __int32 int32;
102 typedef unsigned __int32 uint32;
103 typedef __int64 int64;
104 typedef unsigned __int64 uint64;
106 #error Do not know how to define a 32-bit integer quantity on your system
109 @ac_google_end_namespace@
111 // The global value of GOOGLE_STRIP_LOG. All the messages logged to
112 // LOG(XXX) with severity less than GOOGLE_STRIP_LOG will not be displayed.
113 // If it can be determined at compile time that the message will not be
114 // printed, the statement will be compiled out.
116 // Example: to strip out all INFO and WARNING messages, use the value
117 // of 2 below. To make an exception for WARNING messages from a single
118 // file, add "#define GOOGLE_STRIP_LOG 1" to that file _before_ including
120 #ifndef GOOGLE_STRIP_LOG
121 #define GOOGLE_STRIP_LOG 0
124 // GCC can be told that a certain branch is not likely to be taken (for
125 // instance, a CHECK failure), and use that information in static analysis.
126 // Giving it this information can help it optimize for the common case in
127 // the absence of better information (ie. -fprofile-arcs).
129 #ifndef GOOGLE_PREDICT_BRANCH_NOT_TAKEN
130 #if @ac_cv_have___builtin_expect@
131 #define GOOGLE_PREDICT_BRANCH_NOT_TAKEN(x) (__builtin_expect(x, 0))
132 #define GOOGLE_PREDICT_FALSE(x) (__builtin_expect(x, 0))
133 #define GOOGLE_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1))
135 #define GOOGLE_PREDICT_BRANCH_NOT_TAKEN(x) x
136 #define GOOGLE_PREDICT_FALSE(x) x
137 #define GOOGLE_PREDICT_TRUE(x) x
141 // Make a bunch of macros for logging. The way to log things is to stream
142 // things to LOG(<a particular severity level>). E.g.,
144 // LOG(INFO) << "Found " << num_cookies << " cookies";
146 // You can capture log messages in a string, rather than reporting them
149 // vector<string> errors;
150 // LOG_STRING(ERROR, &errors) << "Couldn't parse cookie #" << cookie_num;
152 // This pushes back the new error onto 'errors'; if given a NULL pointer,
153 // it reports the error via LOG(ERROR).
155 // You can also do conditional logging:
157 // LOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
159 // You can also do occasional logging (log every n'th occurrence of an
162 // LOG_EVERY_N(INFO, 10) << "Got the " << google::COUNTER << "th cookie";
164 // The above will cause log messages to be output on the 1st, 11th, 21st, ...
165 // times it is executed. Note that the special google::COUNTER value is used
166 // to identify which repetition is happening.
168 // You can also do occasional conditional logging (log every n'th
169 // occurrence of an event, when condition is satisfied):
171 // LOG_IF_EVERY_N(INFO, (size > 1024), 10) << "Got the " << google::COUNTER
172 // << "th big cookie";
174 // You can log messages the first N times your code executes a line. E.g.
176 // LOG_FIRST_N(INFO, 20) << "Got the " << google::COUNTER << "th cookie";
178 // Outputs log messages for the first 20 times it is executed.
180 // Analogous SYSLOG, SYSLOG_IF, and SYSLOG_EVERY_N macros are available.
181 // These log to syslog as well as to the normal logs. If you use these at
182 // all, you need to be aware that syslog can drastically reduce performance,
183 // especially if it is configured for remote logging! Don't use these
184 // unless you fully understand this and have a concrete need to use them.
185 // Even then, try to minimize your use of them.
187 // There are also "debug mode" logging macros like the ones above:
189 // DLOG(INFO) << "Found cookies";
191 // DLOG_IF(INFO, num_cookies > 10) << "Got lots of cookies";
193 // DLOG_EVERY_N(INFO, 10) << "Got the " << google::COUNTER << "th cookie";
195 // All "debug mode" logging is compiled away to nothing for non-debug mode
200 // LOG_ASSERT(assertion);
201 // DLOG_ASSERT(assertion);
203 // which is syntactic sugar for {,D}LOG_IF(FATAL, assert fails) << assertion;
205 // There are "verbose level" logging macros. They look like
207 // VLOG(1) << "I'm printed when you run the program with --v=1 or more";
208 // VLOG(2) << "I'm printed when you run the program with --v=2 or more";
210 // These always log at the INFO log level (when they log at all).
211 // The verbose logging can also be turned on module-by-module. For instance,
212 // --vmodule=mapreduce=2,file=1,gfs*=3 --v=0
214 // a. VLOG(2) and lower messages to be printed from mapreduce.{h,cc}
215 // b. VLOG(1) and lower messages to be printed from file.{h,cc}
216 // c. VLOG(3) and lower messages to be printed from files prefixed with "gfs"
217 // d. VLOG(0) and lower messages to be printed from elsewhere
219 // The wildcarding functionality shown by (c) supports both '*' (match
220 // 0 or more characters) and '?' (match any single character) wildcards.
222 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
224 // if (VLOG_IS_ON(2)) {
225 // // do some logging preparation and logging
226 // // that can't be accomplished with just VLOG(2) << ...;
229 // There are also VLOG_IF, VLOG_EVERY_N and VLOG_IF_EVERY_N "verbose level"
230 // condition macros for sample cases, when some extra computation and
231 // preparation for logs is not needed.
232 // VLOG_IF(1, (size > 1024))
233 // << "I'm printed when size is more than 1024 and when you run the "
234 // "program with --v=1 or more";
235 // VLOG_EVERY_N(1, 10)
236 // << "I'm printed every 10th occurrence, and when you run the program "
237 // "with --v=1 or more. Present occurence is " << google::COUNTER;
238 // VLOG_IF_EVERY_N(1, (size > 1024), 10)
239 // << "I'm printed on every 10th occurence of case when size is more "
240 // " than 1024, when you run the program with --v=1 or more. ";
241 // "Present occurence is " << google::COUNTER;
243 // The supported severity levels for macros that allow you to specify one
244 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
245 // Note that messages of a given severity are logged not only in the
246 // logfile for that severity, but also in all logfiles of lower severity.
247 // E.g., a message of severity FATAL will be logged to the logfiles of
248 // severity FATAL, ERROR, WARNING, and INFO.
250 // There is also the special severity of DFATAL, which logs FATAL in
251 // debug mode, ERROR in normal mode.
253 // Very important: logging a message at the FATAL severity level causes
254 // the program to terminate (after the message is logged).
256 // Unless otherwise specified, logs will be written to the filename
257 // "<program name>.<hostname>.<user name>.log.<severity level>.", followed
258 // by the date, time, and pid (you can't prevent the date, time, and pid
259 // from being in the filename).
261 // The logging code takes two flags:
262 // --v=# set the verbose level
263 // --logtostderr log all the messages to stderr instead of to logfiles
265 // LOG LINE PREFIX FORMAT
267 // Log lines have this form:
269 // Lmmdd hh:mm:ss.uuuuuu threadid file:line] msg...
271 // where the fields are defined as follows:
273 // L A single character, representing the log level
275 // mm The month (zero padded; ie May is '05')
276 // dd The day (zero padded)
277 // hh:mm:ss.uuuuuu Time in hours, minutes and fractional seconds
278 // threadid The space-padded thread ID as returned by GetTID()
279 // (this matches the PID on Linux)
280 // file The file name
281 // line The line number
282 // msg The user-supplied message
286 // I1103 11:57:31.739339 24395 google.cc:2341] Command line: ./some_prog
287 // I1103 11:57:31.739403 24395 google.cc:2342] Process id 24395
289 // NOTE: although the microseconds are useful for comparing events on
290 // a single machine, clocks on different machines may not be well
291 // synchronized. Hence, use caution when comparing the low bits of
292 // timestamps from different machines.
294 #ifndef DECLARE_VARIABLE
295 #define MUST_UNDEF_GFLAGS_DECLARE_MACROS
296 #define DECLARE_VARIABLE(type, shorttype, name, tn) \
297 namespace fL##shorttype { \
298 extern GOOGLE_GLOG_DLL_DECL type FLAGS_##name; \
300 using fL##shorttype::FLAGS_##name
302 // bool specialization
303 #define DECLARE_bool(name) \
304 DECLARE_VARIABLE(bool, B, name, bool)
306 // int32 specialization
307 #define DECLARE_int32(name) \
308 DECLARE_VARIABLE(@ac_google_namespace@::int32, I, name, int32)
310 // Special case for string, because we have to specify the namespace
311 // std::string, which doesn't play nicely with our FLAG__namespace hackery.
312 #define DECLARE_string(name) \
314 extern GOOGLE_GLOG_DLL_DECL std::string& FLAGS_##name; \
316 using fLS::FLAGS_##name
319 // Set whether log messages go to stderr instead of logfiles
320 DECLARE_bool(logtostderr);
322 // Set whether log messages go to stderr in addition to logfiles.
323 DECLARE_bool(alsologtostderr);
325 // Set color messages logged to stderr (if supported by terminal).
326 DECLARE_bool(colorlogtostderr);
328 // Log messages at a level >= this flag are automatically sent to
329 // stderr in addition to log files.
330 DECLARE_int32(stderrthreshold);
332 // Set whether the log prefix should be prepended to each line of output.
333 DECLARE_bool(log_prefix);
335 // Log messages at a level <= this flag are buffered.
336 // Log messages at a higher level are flushed immediately.
337 DECLARE_int32(logbuflevel);
339 // Sets the maximum number of seconds which logs may be buffered for.
340 DECLARE_int32(logbufsecs);
342 // Log suppression level: messages logged at a lower level than this
344 DECLARE_int32(minloglevel);
346 // If specified, logfiles are written into this directory instead of the
347 // default logging directory.
348 DECLARE_string(log_dir);
350 // Sets the path of the directory into which to put additional links
352 DECLARE_string(log_link);
354 DECLARE_int32(v); // in vlog_is_on.cc
356 // Sets the maximum log file size (in MB).
357 DECLARE_int32(max_log_size);
359 // Sets whether to avoid logging to the disk if the disk is full.
360 DECLARE_bool(stop_logging_if_full_disk);
362 #ifdef MUST_UNDEF_GFLAGS_DECLARE_MACROS
363 #undef MUST_UNDEF_GFLAGS_DECLARE_MACROS
364 #undef DECLARE_VARIABLE
367 #undef DECLARE_string
370 // Log messages below the GOOGLE_STRIP_LOG level will be compiled away for
371 // security reasons. See LOG(severtiy) below.
373 // A few definitions of macros that don't generate much code. Since
374 // LOG(INFO) and its ilk are used all over our code, it's
375 // better to have compact code for these operations.
377 #if GOOGLE_STRIP_LOG == 0
378 #define COMPACT_GOOGLE_LOG_INFO @ac_google_namespace@::LogMessage( \
380 #define LOG_TO_STRING_INFO(message) @ac_google_namespace@::LogMessage( \
381 __FILE__, __LINE__, @ac_google_namespace@::GLOG_INFO, message)
383 #define COMPACT_GOOGLE_LOG_INFO @ac_google_namespace@::NullStream()
384 #define LOG_TO_STRING_INFO(message) @ac_google_namespace@::NullStream()
387 #if GOOGLE_STRIP_LOG <= 1
388 #define COMPACT_GOOGLE_LOG_WARNING @ac_google_namespace@::LogMessage( \
389 __FILE__, __LINE__, @ac_google_namespace@::GLOG_WARNING)
390 #define LOG_TO_STRING_WARNING(message) @ac_google_namespace@::LogMessage( \
391 __FILE__, __LINE__, @ac_google_namespace@::GLOG_WARNING, message)
393 #define COMPACT_GOOGLE_LOG_WARNING @ac_google_namespace@::NullStream()
394 #define LOG_TO_STRING_WARNING(message) @ac_google_namespace@::NullStream()
397 #if GOOGLE_STRIP_LOG <= 2
398 #define COMPACT_GOOGLE_LOG_ERROR @ac_google_namespace@::LogMessage( \
399 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR)
400 #define LOG_TO_STRING_ERROR(message) @ac_google_namespace@::LogMessage( \
401 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR, message)
403 #define COMPACT_GOOGLE_LOG_ERROR @ac_google_namespace@::NullStream()
404 #define LOG_TO_STRING_ERROR(message) @ac_google_namespace@::NullStream()
407 #if GOOGLE_STRIP_LOG <= 3
408 #define COMPACT_GOOGLE_LOG_FATAL @ac_google_namespace@::LogMessageFatal( \
410 #define LOG_TO_STRING_FATAL(message) @ac_google_namespace@::LogMessage( \
411 __FILE__, __LINE__, @ac_google_namespace@::GLOG_FATAL, message)
413 #define COMPACT_GOOGLE_LOG_FATAL @ac_google_namespace@::NullStreamFatal()
414 #define LOG_TO_STRING_FATAL(message) @ac_google_namespace@::NullStreamFatal()
417 // For DFATAL, we want to use LogMessage (as opposed to
418 // LogMessageFatal), to be consistent with the original behavior.
420 #define COMPACT_GOOGLE_LOG_DFATAL COMPACT_GOOGLE_LOG_ERROR
421 #elif GOOGLE_STRIP_LOG <= 3
422 #define COMPACT_GOOGLE_LOG_DFATAL @ac_google_namespace@::LogMessage( \
423 __FILE__, __LINE__, @ac_google_namespace@::GLOG_FATAL)
425 #define COMPACT_GOOGLE_LOG_DFATAL @ac_google_namespace@::NullStreamFatal()
428 #define GOOGLE_LOG_INFO(counter) @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_INFO, counter, &@ac_google_namespace@::LogMessage::SendToLog)
429 #define SYSLOG_INFO(counter) \
430 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_INFO, counter, \
431 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
432 #define GOOGLE_LOG_WARNING(counter) \
433 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_WARNING, counter, \
434 &@ac_google_namespace@::LogMessage::SendToLog)
435 #define SYSLOG_WARNING(counter) \
436 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_WARNING, counter, \
437 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
438 #define GOOGLE_LOG_ERROR(counter) \
439 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR, counter, \
440 &@ac_google_namespace@::LogMessage::SendToLog)
441 #define SYSLOG_ERROR(counter) \
442 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR, counter, \
443 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
444 #define GOOGLE_LOG_FATAL(counter) \
445 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_FATAL, counter, \
446 &@ac_google_namespace@::LogMessage::SendToLog)
447 #define SYSLOG_FATAL(counter) \
448 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_FATAL, counter, \
449 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
450 #define GOOGLE_LOG_DFATAL(counter) \
451 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::DFATAL_LEVEL, counter, \
452 &@ac_google_namespace@::LogMessage::SendToLog)
453 #define SYSLOG_DFATAL(counter) \
454 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::DFATAL_LEVEL, counter, \
455 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
457 #if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) || defined(__CYGWIN32__)
458 // A very useful logging macro to log windows errors:
459 #define LOG_SYSRESULT(result) \
460 if (FAILED(HRESULT_FROM_WIN32(result))) { \
461 LPSTR message = NULL; \
462 LPSTR msg = reinterpret_cast<LPSTR>(&message); \
463 DWORD message_length = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | \
464 FORMAT_MESSAGE_FROM_SYSTEM, \
465 0, result, 0, msg, 100, NULL); \
466 if (message_length > 0) { \
467 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR, 0, \
468 &@ac_google_namespace@::LogMessage::SendToLog).stream() \
469 << reinterpret_cast<const char*>(message); \
470 LocalFree(message); \
475 // We use the preprocessor's merging operator, "##", so that, e.g.,
476 // LOG(INFO) becomes the token GOOGLE_LOG_INFO. There's some funny
477 // subtle difference between ostream member streaming functions (e.g.,
478 // ostream::operator<<(int) and ostream non-member streaming functions
479 // (e.g., ::operator<<(ostream&, string&): it turns out that it's
480 // impossible to stream something like a string directly to an unnamed
481 // ostream. We employ a neat hack by calling the stream() member
482 // function of LogMessage which seems to avoid the problem.
483 #define LOG(severity) COMPACT_GOOGLE_LOG_ ## severity.stream()
484 #define SYSLOG(severity) SYSLOG_ ## severity(0).stream()
486 @ac_google_start_namespace@
488 // They need the definitions of integer types.
489 #include "glog/log_severity.h"
490 #include "glog/vlog_is_on.h"
492 // Initialize google's logging library. You will see the program name
493 // specified by argv0 in log outputs.
494 GOOGLE_GLOG_DLL_DECL void InitGoogleLogging(const char* argv0);
496 // Shutdown google's logging library.
497 GOOGLE_GLOG_DLL_DECL void ShutdownGoogleLogging();
499 // Install a function which will be called after LOG(FATAL).
500 GOOGLE_GLOG_DLL_DECL void InstallFailureFunction(void (*fail_func)());
502 class LogSink; // defined below
504 // If a non-NULL sink pointer is given, we push this message to that sink.
505 // For LOG_TO_SINK we then do normal LOG(severity) logging as well.
506 // This is useful for capturing messages and passing/storing them
507 // somewhere more specific than the global log of the process.
510 // LogSeverity severity;
511 // The cast is to disambiguate NULL arguments.
512 #define LOG_TO_SINK(sink, severity) \
513 @ac_google_namespace@::LogMessage( \
514 __FILE__, __LINE__, \
515 @ac_google_namespace@::GLOG_ ## severity, \
516 static_cast<@ac_google_namespace@::LogSink*>(sink), true).stream()
517 #define LOG_TO_SINK_BUT_NOT_TO_LOGFILE(sink, severity) \
518 @ac_google_namespace@::LogMessage( \
519 __FILE__, __LINE__, \
520 @ac_google_namespace@::GLOG_ ## severity, \
521 static_cast<@ac_google_namespace@::LogSink*>(sink), false).stream()
523 // If a non-NULL string pointer is given, we write this message to that string.
524 // We then do normal LOG(severity) logging as well.
525 // This is useful for capturing messages and storing them somewhere more
526 // specific than the global log of the process.
529 // LogSeverity severity;
530 // The cast is to disambiguate NULL arguments.
531 // NOTE: LOG(severity) expands to LogMessage().stream() for the specified
533 #define LOG_TO_STRING(severity, message) \
534 LOG_TO_STRING_##severity(static_cast<string*>(message)).stream()
536 // If a non-NULL pointer is given, we push the message onto the end
537 // of a vector of strings; otherwise, we report it with LOG(severity).
538 // This is handy for capturing messages and perhaps passing them back
539 // to the caller, rather than reporting them immediately.
541 // LogSeverity severity;
542 // vector<string> *outvec;
543 // The cast is to disambiguate NULL arguments.
544 #define LOG_STRING(severity, outvec) \
545 LOG_TO_STRING_##severity(static_cast<vector<string>*>(outvec)).stream()
547 #define LOG_IF(severity, condition) \
548 !(condition) ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
549 #define SYSLOG_IF(severity, condition) \
550 !(condition) ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & SYSLOG(severity)
552 #define LOG_ASSERT(condition) \
553 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition
554 #define SYSLOG_ASSERT(condition) \
555 SYSLOG_IF(FATAL, !(condition)) << "Assert failed: " #condition
557 // CHECK dies with a fatal error if condition is not true. It is *not*
558 // controlled by NDEBUG, so the check will be executed regardless of
559 // compilation mode. Therefore, it is safe to do things like:
560 // CHECK(fp->Write(x) == 4)
561 #define CHECK(condition) \
562 LOG_IF(FATAL, GOOGLE_PREDICT_BRANCH_NOT_TAKEN(!(condition))) \
563 << "Check failed: " #condition " "
565 // A container for a string pointer which can be evaluated to a bool -
566 // true iff the pointer is NULL.
567 struct CheckOpString {
568 CheckOpString(std::string* str) : str_(str) { }
569 // No destructor: if str_ is non-NULL, we're about to LOG(FATAL),
570 // so there's no point in cleaning up str_.
571 operator bool() const {
572 return GOOGLE_PREDICT_BRANCH_NOT_TAKEN(str_ != NULL);
577 // Function is overloaded for integral types to allow static const
578 // integrals declared in classes and not defined to be used as arguments to
579 // CHECK* macros. It's not encouraged though.
581 inline const T& GetReferenceableValue(const T& t) { return t; }
582 inline char GetReferenceableValue(char t) { return t; }
583 inline unsigned char GetReferenceableValue(unsigned char t) { return t; }
584 inline signed char GetReferenceableValue(signed char t) { return t; }
585 inline short GetReferenceableValue(short t) { return t; }
586 inline unsigned short GetReferenceableValue(unsigned short t) { return t; }
587 inline int GetReferenceableValue(int t) { return t; }
588 inline unsigned int GetReferenceableValue(unsigned int t) { return t; }
589 inline long GetReferenceableValue(long t) { return t; }
590 inline unsigned long GetReferenceableValue(unsigned long t) { return t; }
591 inline long long GetReferenceableValue(long long t) { return t; }
592 inline unsigned long long GetReferenceableValue(unsigned long long t) {
596 // This is a dummy class to define the following operator.
597 struct DummyClassToDefineOperator {};
599 @ac_google_end_namespace@
601 // Define global operator<< to declare using ::operator<<.
602 // This declaration will allow use to use CHECK macros for user
603 // defined classes which have operator<< (e.g., stl_logging.h).
604 inline std::ostream& operator<<(
605 std::ostream& out, const google::DummyClassToDefineOperator&) {
609 @ac_google_start_namespace@
611 // This formats a value for a failing CHECK_XX statement. Ordinarily,
612 // it uses the definition for operator<<, with a few special cases below.
613 template <typename T>
614 inline void MakeCheckOpValueString(std::ostream* os, const T& v) {
618 // Overrides for char types provide readable values for unprintable
621 void MakeCheckOpValueString(std::ostream* os, const char& v);
623 void MakeCheckOpValueString(std::ostream* os, const signed char& v);
625 void MakeCheckOpValueString(std::ostream* os, const unsigned char& v);
627 // Build the error message string. Specify no inlining for code size.
628 template <typename T1, typename T2>
629 std::string* MakeCheckOpString(const T1& v1, const T2& v2, const char* exprtext)
630 @ac_cv___attribute___noinline@;
635 // If "s" is less than base_logging::INFO, returns base_logging::INFO.
636 // If "s" is greater than base_logging::FATAL, returns
637 // base_logging::ERROR. Otherwise, returns "s".
638 LogSeverity NormalizeSeverity(LogSeverity s);
640 } // namespace internal
642 // A helper class for formatting "expr (V1 vs. V2)" in a CHECK_XX
643 // statement. See MakeCheckOpString for sample usage. Other
644 // approaches were considered: use of a template method (e.g.,
645 // base::BuildCheckOpString(exprtext, base::Print<T1>, &v1,
646 // base::Print<T2>, &v2), however this approach has complications
647 // related to volatile arguments and function-pointer arguments).
648 class CheckOpMessageBuilder {
650 // Inserts "exprtext" and " (" to the stream.
651 explicit CheckOpMessageBuilder(const char *exprtext);
652 // Deletes "stream_".
653 ~CheckOpMessageBuilder();
654 // For inserting the first variable.
655 std::ostream* ForVar1() { return stream_; }
656 // For inserting the second variable (adds an intermediate " vs. ").
657 std::ostream* ForVar2();
658 // Get the result (inserts the closing ")").
659 std::string* NewString();
662 std::ostringstream *stream_;
667 template <typename T1, typename T2>
668 std::string* MakeCheckOpString(const T1& v1, const T2& v2, const char* exprtext) {
669 base::CheckOpMessageBuilder comb(exprtext);
670 MakeCheckOpValueString(comb.ForVar1(), v1);
671 MakeCheckOpValueString(comb.ForVar2(), v2);
672 return comb.NewString();
675 // Helper functions for CHECK_OP macro.
676 // The (int, int) specialization works around the issue that the compiler
677 // will not instantiate the template version of the function on values of
678 // unnamed enum type - see comment below.
679 #define DEFINE_CHECK_OP_IMPL(name, op) \
680 template <typename T1, typename T2> \
681 inline std::string* name##Impl(const T1& v1, const T2& v2, \
682 const char* exprtext) { \
683 if (GOOGLE_PREDICT_TRUE(v1 op v2)) return NULL; \
684 else return MakeCheckOpString(v1, v2, exprtext); \
686 inline std::string* name##Impl(int v1, int v2, const char* exprtext) { \
687 return name##Impl<int, int>(v1, v2, exprtext); \
690 // We use the full name Check_EQ, Check_NE, etc. in case the file including
691 // base/logging.h provides its own #defines for the simpler names EQ, NE, etc.
692 // This happens if, for example, those are used as token names in a
694 DEFINE_CHECK_OP_IMPL(Check_EQ, ==) // Compilation error with CHECK_EQ(NULL, x)?
695 DEFINE_CHECK_OP_IMPL(Check_NE, !=) // Use CHECK(x == NULL) instead.
696 DEFINE_CHECK_OP_IMPL(Check_LE, <=)
697 DEFINE_CHECK_OP_IMPL(Check_LT, < )
698 DEFINE_CHECK_OP_IMPL(Check_GE, >=)
699 DEFINE_CHECK_OP_IMPL(Check_GT, > )
700 #undef DEFINE_CHECK_OP_IMPL
702 // Helper macro for binary operators.
703 // Don't use this macro directly in your code, use CHECK_EQ et al below.
705 #if defined(STATIC_ANALYSIS)
706 // Only for static analysis tool to know that it is equivalent to assert
707 #define CHECK_OP_LOG(name, op, val1, val2, log) CHECK((val1) op (val2))
708 #elif !defined(NDEBUG)
709 // In debug mode, avoid constructing CheckOpStrings if possible,
710 // to reduce the overhead of CHECK statments by 2x.
711 // Real DCHECK-heavy tests have seen 1.5x speedups.
713 // The meaning of "string" might be different between now and
714 // when this macro gets invoked (e.g., if someone is experimenting
715 // with other string implementations that get defined after this
716 // file is included). Save the current meaning now and use it
718 typedef std::string _Check_string;
719 #define CHECK_OP_LOG(name, op, val1, val2, log) \
720 while (@ac_google_namespace@::_Check_string* _result = \
721 @ac_google_namespace@::Check##name##Impl( \
722 @ac_google_namespace@::GetReferenceableValue(val1), \
723 @ac_google_namespace@::GetReferenceableValue(val2), \
724 #val1 " " #op " " #val2)) \
725 log(__FILE__, __LINE__, \
726 @ac_google_namespace@::CheckOpString(_result)).stream()
728 // In optimized mode, use CheckOpString to hint to compiler that
729 // the while condition is unlikely.
730 #define CHECK_OP_LOG(name, op, val1, val2, log) \
731 while (@ac_google_namespace@::CheckOpString _result = \
732 @ac_google_namespace@::Check##name##Impl( \
733 @ac_google_namespace@::GetReferenceableValue(val1), \
734 @ac_google_namespace@::GetReferenceableValue(val2), \
735 #val1 " " #op " " #val2)) \
736 log(__FILE__, __LINE__, _result).stream()
737 #endif // STATIC_ANALYSIS, !NDEBUG
739 #if GOOGLE_STRIP_LOG <= 3
740 #define CHECK_OP(name, op, val1, val2) \
741 CHECK_OP_LOG(name, op, val1, val2, @ac_google_namespace@::LogMessageFatal)
743 #define CHECK_OP(name, op, val1, val2) \
744 CHECK_OP_LOG(name, op, val1, val2, @ac_google_namespace@::NullStreamFatal)
745 #endif // STRIP_LOG <= 3
747 // Equality/Inequality checks - compare two values, and log a FATAL message
748 // including the two values when the result is not as expected. The values
749 // must have operator<<(ostream, ...) defined.
751 // You may append to the error message like so:
752 // CHECK_NE(1, 2) << ": The world must be ending!";
754 // We are very careful to ensure that each argument is evaluated exactly
755 // once, and that anything which is legal to pass as a function argument is
756 // legal here. In particular, the arguments may be temporary expressions
757 // which will end up being destroyed at the end of the apparent statement,
759 // CHECK_EQ(string("abc")[1], 'b');
761 // WARNING: These don't compile correctly if one of the arguments is a pointer
762 // and the other is NULL. To work around this, simply static_cast NULL to the
763 // type of the desired pointer.
765 #define CHECK_EQ(val1, val2) CHECK_OP(_EQ, ==, val1, val2)
766 #define CHECK_NE(val1, val2) CHECK_OP(_NE, !=, val1, val2)
767 #define CHECK_LE(val1, val2) CHECK_OP(_LE, <=, val1, val2)
768 #define CHECK_LT(val1, val2) CHECK_OP(_LT, < , val1, val2)
769 #define CHECK_GE(val1, val2) CHECK_OP(_GE, >=, val1, val2)
770 #define CHECK_GT(val1, val2) CHECK_OP(_GT, > , val1, val2)
772 // Check that the input is non NULL. This very useful in constructor
773 // initializer lists.
775 #define CHECK_NOTNULL(val) \
776 @ac_google_namespace@::CheckNotNull(__FILE__, __LINE__, "'" #val "' Must be non NULL", (val))
778 // Helper functions for string comparisons.
779 // To avoid bloat, the definitions are in logging.cc.
780 #define DECLARE_CHECK_STROP_IMPL(func, expected) \
781 GOOGLE_GLOG_DLL_DECL std::string* Check##func##expected##Impl( \
782 const char* s1, const char* s2, const char* names);
783 DECLARE_CHECK_STROP_IMPL(strcmp, true)
784 DECLARE_CHECK_STROP_IMPL(strcmp, false)
785 DECLARE_CHECK_STROP_IMPL(strcasecmp, true)
786 DECLARE_CHECK_STROP_IMPL(strcasecmp, false)
787 #undef DECLARE_CHECK_STROP_IMPL
789 // Helper macro for string comparisons.
790 // Don't use this macro directly in your code, use CHECK_STREQ et al below.
791 #define CHECK_STROP(func, op, expected, s1, s2) \
792 while (@ac_google_namespace@::CheckOpString _result = \
793 @ac_google_namespace@::Check##func##expected##Impl((s1), (s2), \
794 #s1 " " #op " " #s2)) \
795 LOG(FATAL) << *_result.str_
798 // String (char*) equality/inequality checks.
799 // CASE versions are case-insensitive.
801 // Note that "s1" and "s2" may be temporary strings which are destroyed
802 // by the compiler at the end of the current "full expression"
803 // (e.g. CHECK_STREQ(Foo().c_str(), Bar().c_str())).
805 #define CHECK_STREQ(s1, s2) CHECK_STROP(strcmp, ==, true, s1, s2)
806 #define CHECK_STRNE(s1, s2) CHECK_STROP(strcmp, !=, false, s1, s2)
807 #define CHECK_STRCASEEQ(s1, s2) CHECK_STROP(strcasecmp, ==, true, s1, s2)
808 #define CHECK_STRCASENE(s1, s2) CHECK_STROP(strcasecmp, !=, false, s1, s2)
810 #define CHECK_INDEX(I,A) CHECK(I < (sizeof(A)/sizeof(A[0])))
811 #define CHECK_BOUND(B,A) CHECK(B <= (sizeof(A)/sizeof(A[0])))
813 #define CHECK_DOUBLE_EQ(val1, val2) \
815 CHECK_LE((val1), (val2)+0.000000000000001L); \
816 CHECK_GE((val1), (val2)-0.000000000000001L); \
819 #define CHECK_NEAR(val1, val2, margin) \
821 CHECK_LE((val1), (val2)+(margin)); \
822 CHECK_GE((val1), (val2)-(margin)); \
825 // perror()..googly style!
827 // PLOG() and PLOG_IF() and PCHECK() behave exactly like their LOG* and
828 // CHECK equivalents with the addition that they postpend a description
829 // of the current state of errno to their output lines.
831 #define PLOG(severity) GOOGLE_PLOG(severity, 0).stream()
833 #define GOOGLE_PLOG(severity, counter) \
834 @ac_google_namespace@::ErrnoLogMessage( \
835 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, counter, \
836 &@ac_google_namespace@::LogMessage::SendToLog)
838 #define PLOG_IF(severity, condition) \
839 !(condition) ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & PLOG(severity)
841 // A CHECK() macro that postpends errno if the condition is false. E.g.
843 // if (poll(fds, nfds, timeout) == -1) { PCHECK(errno == EINTR); ... }
844 #define PCHECK(condition) \
845 PLOG_IF(FATAL, GOOGLE_PREDICT_BRANCH_NOT_TAKEN(!(condition))) \
846 << "Check failed: " #condition " "
848 // A CHECK() macro that lets you assert the success of a function that
849 // returns -1 and sets errno in case of an error. E.g.
851 // CHECK_ERR(mkdir(path, 0700));
855 // int fd = open(filename, flags); CHECK_ERR(fd) << ": open " << filename;
856 #define CHECK_ERR(invocation) \
857 PLOG_IF(FATAL, GOOGLE_PREDICT_BRANCH_NOT_TAKEN((invocation) == -1)) \
860 // Use macro expansion to create, for each use of LOG_EVERY_N(), static
861 // variables with the __LINE__ expansion as part of the variable name.
862 #define LOG_EVERY_N_VARNAME(base, line) LOG_EVERY_N_VARNAME_CONCAT(base, line)
863 #define LOG_EVERY_N_VARNAME_CONCAT(base, line) base ## line
865 #define LOG_OCCURRENCES LOG_EVERY_N_VARNAME(occurrences_, __LINE__)
866 #define LOG_OCCURRENCES_MOD_N LOG_EVERY_N_VARNAME(occurrences_mod_n_, __LINE__)
868 #define SOME_KIND_OF_LOG_EVERY_N(severity, n, what_to_do) \
869 static int LOG_OCCURRENCES = 0, LOG_OCCURRENCES_MOD_N = 0; \
871 if (++LOG_OCCURRENCES_MOD_N > n) LOG_OCCURRENCES_MOD_N -= n; \
872 if (LOG_OCCURRENCES_MOD_N == 1) \
873 @ac_google_namespace@::LogMessage( \
874 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, LOG_OCCURRENCES, \
875 &what_to_do).stream()
877 #define SOME_KIND_OF_LOG_IF_EVERY_N(severity, condition, n, what_to_do) \
878 static int LOG_OCCURRENCES = 0, LOG_OCCURRENCES_MOD_N = 0; \
881 ((LOG_OCCURRENCES_MOD_N=(LOG_OCCURRENCES_MOD_N + 1) % n) == (1 % n))) \
882 @ac_google_namespace@::LogMessage( \
883 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, LOG_OCCURRENCES, \
884 &what_to_do).stream()
886 #define SOME_KIND_OF_PLOG_EVERY_N(severity, n, what_to_do) \
887 static int LOG_OCCURRENCES = 0, LOG_OCCURRENCES_MOD_N = 0; \
889 if (++LOG_OCCURRENCES_MOD_N > n) LOG_OCCURRENCES_MOD_N -= n; \
890 if (LOG_OCCURRENCES_MOD_N == 1) \
891 @ac_google_namespace@::ErrnoLogMessage( \
892 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, LOG_OCCURRENCES, \
893 &what_to_do).stream()
895 #define SOME_KIND_OF_LOG_FIRST_N(severity, n, what_to_do) \
896 static int LOG_OCCURRENCES = 0; \
897 if (LOG_OCCURRENCES <= n) \
899 if (LOG_OCCURRENCES <= n) \
900 @ac_google_namespace@::LogMessage( \
901 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, LOG_OCCURRENCES, \
902 &what_to_do).stream()
904 namespace glog_internal_namespace_ {
906 struct CompileAssert {
909 } // namespace glog_internal_namespace_
911 #define GOOGLE_GLOG_COMPILE_ASSERT(expr, msg) \
912 typedef @ac_google_namespace@::glog_internal_namespace_::CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]
914 #define LOG_EVERY_N(severity, n) \
915 GOOGLE_GLOG_COMPILE_ASSERT(@ac_google_namespace@::GLOG_ ## severity < \
916 @ac_google_namespace@::NUM_SEVERITIES, \
917 INVALID_REQUESTED_LOG_SEVERITY); \
918 SOME_KIND_OF_LOG_EVERY_N(severity, (n), @ac_google_namespace@::LogMessage::SendToLog)
920 #define SYSLOG_EVERY_N(severity, n) \
921 SOME_KIND_OF_LOG_EVERY_N(severity, (n), @ac_google_namespace@::LogMessage::SendToSyslogAndLog)
923 #define PLOG_EVERY_N(severity, n) \
924 SOME_KIND_OF_PLOG_EVERY_N(severity, (n), @ac_google_namespace@::LogMessage::SendToLog)
926 #define LOG_FIRST_N(severity, n) \
927 SOME_KIND_OF_LOG_FIRST_N(severity, (n), @ac_google_namespace@::LogMessage::SendToLog)
929 #define LOG_IF_EVERY_N(severity, condition, n) \
930 SOME_KIND_OF_LOG_IF_EVERY_N(severity, (condition), (n), @ac_google_namespace@::LogMessage::SendToLog)
932 // We want the special COUNTER value available for LOG_EVERY_X()'ed messages
933 enum PRIVATE_Counter {COUNTER};
935 #ifdef GLOG_NO_ABBREVIATED_SEVERITIES
936 // wingdi.h defines ERROR to be 0. When we call LOG(ERROR), it gets
937 // substituted with 0, and it expands to COMPACT_GOOGLE_LOG_0. To allow us
938 // to keep using this syntax, we define this macro to do the same thing
939 // as COMPACT_GOOGLE_LOG_ERROR.
940 #define COMPACT_GOOGLE_LOG_0 COMPACT_GOOGLE_LOG_ERROR
941 #define SYSLOG_0 SYSLOG_ERROR
942 #define LOG_TO_STRING_0 LOG_TO_STRING_ERROR
943 // Needed for LOG_IS_ON(ERROR).
944 const LogSeverity GLOG_0 = GLOG_ERROR;
946 // Users may include windows.h after logging.h without
947 // GLOG_NO_ABBREVIATED_SEVERITIES nor WIN32_LEAN_AND_MEAN.
948 // For this case, we cannot detect if ERROR is defined before users
949 // actually use ERROR. Let's make an undefined symbol to warn users.
950 # define GLOG_ERROR_MSG ERROR_macro_is_defined_Define_GLOG_NO_ABBREVIATED_SEVERITIES_before_including_logging_h_See_the_document_for_detail
951 # define COMPACT_GOOGLE_LOG_0 GLOG_ERROR_MSG
952 # define SYSLOG_0 GLOG_ERROR_MSG
953 # define LOG_TO_STRING_0 GLOG_ERROR_MSG
954 # define GLOG_0 GLOG_ERROR_MSG
957 // Plus some debug-logging macros that get compiled to nothing for production
961 #define DLOG(severity) LOG(severity)
962 #define DVLOG(verboselevel) VLOG(verboselevel)
963 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
964 #define DLOG_EVERY_N(severity, n) LOG_EVERY_N(severity, n)
965 #define DLOG_IF_EVERY_N(severity, condition, n) \
966 LOG_IF_EVERY_N(severity, condition, n)
967 #define DLOG_ASSERT(condition) LOG_ASSERT(condition)
969 // debug-only checking. not executed in NDEBUG mode.
970 #define DCHECK(condition) CHECK(condition)
971 #define DCHECK_EQ(val1, val2) CHECK_EQ(val1, val2)
972 #define DCHECK_NE(val1, val2) CHECK_NE(val1, val2)
973 #define DCHECK_LE(val1, val2) CHECK_LE(val1, val2)
974 #define DCHECK_LT(val1, val2) CHECK_LT(val1, val2)
975 #define DCHECK_GE(val1, val2) CHECK_GE(val1, val2)
976 #define DCHECK_GT(val1, val2) CHECK_GT(val1, val2)
977 #define DCHECK_NOTNULL(val) CHECK_NOTNULL(val)
978 #define DCHECK_STREQ(str1, str2) CHECK_STREQ(str1, str2)
979 #define DCHECK_STRCASEEQ(str1, str2) CHECK_STRCASEEQ(str1, str2)
980 #define DCHECK_STRNE(str1, str2) CHECK_STRNE(str1, str2)
981 #define DCHECK_STRCASENE(str1, str2) CHECK_STRCASENE(str1, str2)
985 #define DLOG(severity) \
986 true ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
988 #define DVLOG(verboselevel) \
989 (true || !VLOG_IS_ON(verboselevel)) ?\
990 (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(INFO)
992 #define DLOG_IF(severity, condition) \
993 (true || !(condition)) ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
995 #define DLOG_EVERY_N(severity, n) \
996 true ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
998 #define DLOG_IF_EVERY_N(severity, condition, n) \
999 (true || !(condition))? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
1001 #define DLOG_ASSERT(condition) \
1002 true ? (void) 0 : LOG_ASSERT(condition)
1004 // MSVC warning C4127: conditional expression is constant
1005 #define DCHECK(condition) \
1006 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1008 GLOG_MSVC_POP_WARNING() CHECK(condition)
1010 #define DCHECK_EQ(val1, val2) \
1011 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1013 GLOG_MSVC_POP_WARNING() CHECK_EQ(val1, val2)
1015 #define DCHECK_NE(val1, val2) \
1016 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1018 GLOG_MSVC_POP_WARNING() CHECK_NE(val1, val2)
1020 #define DCHECK_LE(val1, val2) \
1021 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1023 GLOG_MSVC_POP_WARNING() CHECK_LE(val1, val2)
1025 #define DCHECK_LT(val1, val2) \
1026 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1028 GLOG_MSVC_POP_WARNING() CHECK_LT(val1, val2)
1030 #define DCHECK_GE(val1, val2) \
1031 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1033 GLOG_MSVC_POP_WARNING() CHECK_GE(val1, val2)
1035 #define DCHECK_GT(val1, val2) \
1036 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1038 GLOG_MSVC_POP_WARNING() CHECK_GT(val1, val2)
1040 #define DCHECK_NOTNULL(val) (void)(val)
1042 #define DCHECK_STREQ(str1, str2) \
1043 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1045 GLOG_MSVC_POP_WARNING() CHECK_STREQ(str1, str2)
1047 #define DCHECK_STRCASEEQ(str1, str2) \
1048 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1050 GLOG_MSVC_POP_WARNING() CHECK_STRCASEEQ(str1, str2)
1052 #define DCHECK_STRNE(str1, str2) \
1053 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1055 GLOG_MSVC_POP_WARNING() CHECK_STRNE(str1, str2)
1057 #define DCHECK_STRCASENE(str1, str2) \
1058 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1060 GLOG_MSVC_POP_WARNING() CHECK_STRCASENE(str1, str2)
1064 // Log only in verbose mode.
1066 #define VLOG(verboselevel) LOG_IF(INFO, VLOG_IS_ON(verboselevel))
1068 #define VLOG_IF(verboselevel, condition) \
1069 LOG_IF(INFO, (condition) && VLOG_IS_ON(verboselevel))
1071 #define VLOG_EVERY_N(verboselevel, n) \
1072 LOG_IF_EVERY_N(INFO, VLOG_IS_ON(verboselevel), n)
1074 #define VLOG_IF_EVERY_N(verboselevel, condition, n) \
1075 LOG_IF_EVERY_N(INFO, (condition) && VLOG_IS_ON(verboselevel), n)
1077 namespace base_logging {
1079 // LogMessage::LogStream is a std::ostream backed by this streambuf.
1080 // This class ignores overflow and leaves two bytes at the end of the
1081 // buffer to allow for a '\n' and '\0'.
1082 class LogStreamBuf : public std::streambuf {
1084 // REQUIREMENTS: "len" must be >= 2 to account for the '\n' and '\n'.
1085 LogStreamBuf(char *buf, int len) {
1086 setp(buf, buf + len - 2);
1088 // This effectively ignores overflow.
1089 virtual int_type overflow(int_type ch) {
1093 // Legacy public ostrstream method.
1094 size_t pcount() const { return pptr() - pbase(); }
1095 char* pbase() const { return std::streambuf::pbase(); }
1098 } // namespace base_logging
1101 // This class more or less represents a particular log message. You
1102 // create an instance of LogMessage and then stream stuff to it.
1103 // When you finish streaming to it, ~LogMessage is called and the
1104 // full message gets streamed to the appropriate destination.
1106 // You shouldn't actually use LogMessage's constructor to log things,
1107 // though. You should use the LOG() macro (and variants thereof)
1109 class GOOGLE_GLOG_DLL_DECL LogMessage {
1112 // Passing kNoLogPrefix for the line number disables the
1113 // log-message prefix. Useful for using the LogMessage
1114 // infrastructure as a printing utility. See also the --log_prefix
1115 // flag for controlling the log-message prefix on an
1116 // application-wide basis.
1120 // LogStream inherit from non-DLL-exported class (std::ostrstream)
1121 // and VC++ produces a warning for this situation.
1122 // However, MSDN says "C4275 can be ignored in Microsoft Visual C++
1123 // 2005 if you are deriving from a type in the Standard C++ Library"
1124 // http://msdn.microsoft.com/en-us/library/3tdb471s(VS.80).aspx
1125 // Let's just ignore the warning.
1127 # pragma warning(disable: 4275)
1129 class GOOGLE_GLOG_DLL_DECL LogStream : public std::ostream {
1131 # pragma warning(default: 4275)
1134 LogStream(char *buf, int len, int ctr)
1135 : std::ostream(NULL),
1136 streambuf_(buf, len),
1142 int ctr() const { return ctr_; }
1143 void set_ctr(int ctr) { ctr_ = ctr; }
1144 LogStream* self() const { return self_; }
1146 // Legacy std::streambuf methods.
1147 size_t pcount() const { return streambuf_.pcount(); }
1148 char* pbase() const { return streambuf_.pbase(); }
1149 char* str() const { return pbase(); }
1152 base_logging::LogStreamBuf streambuf_;
1153 int ctr_; // Counter hack (for the LOG_EVERY_X() macro)
1154 LogStream *self_; // Consistency check hack
1158 // icc 8 requires this typedef to avoid an internal compiler error.
1159 typedef void (LogMessage::*SendMethod)();
1161 LogMessage(const char* file, int line, LogSeverity severity, int ctr,
1162 SendMethod send_method);
1164 // Two special constructors that generate reduced amounts of code at
1165 // LOG call sites for common cases.
1167 // Used for LOG(INFO): Implied are:
1168 // severity = INFO, ctr = 0, send_method = &LogMessage::SendToLog.
1170 // Using this constructor instead of the more complex constructor above
1171 // saves 19 bytes per call site.
1172 LogMessage(const char* file, int line);
1174 // Used for LOG(severity) where severity != INFO. Implied
1175 // are: ctr = 0, send_method = &LogMessage::SendToLog
1177 // Using this constructor instead of the more complex constructor above
1178 // saves 17 bytes per call site.
1179 LogMessage(const char* file, int line, LogSeverity severity);
1181 // Constructor to log this message to a specified sink (if not NULL).
1182 // Implied are: ctr = 0, send_method = &LogMessage::SendToSinkAndLog if
1183 // also_send_to_log is true, send_method = &LogMessage::SendToSink otherwise.
1184 LogMessage(const char* file, int line, LogSeverity severity, LogSink* sink,
1185 bool also_send_to_log);
1187 // Constructor where we also give a vector<string> pointer
1188 // for storing the messages (if the pointer is not NULL).
1189 // Implied are: ctr = 0, send_method = &LogMessage::SaveOrSendToLog.
1190 LogMessage(const char* file, int line, LogSeverity severity,
1191 std::vector<std::string>* outvec);
1193 // Constructor where we also give a string pointer for storing the
1194 // message (if the pointer is not NULL). Implied are: ctr = 0,
1195 // send_method = &LogMessage::WriteToStringAndLog.
1196 LogMessage(const char* file, int line, LogSeverity severity,
1197 std::string* message);
1199 // A special constructor used for check failures
1200 LogMessage(const char* file, int line, const CheckOpString& result);
1204 // Flush a buffered message to the sink set in the constructor. Always
1205 // called by the destructor, it may also be called from elsewhere if
1206 // needed. Only the first call is actioned; any later ones are ignored.
1209 // An arbitrary limit on the length of a single log message. This
1210 // is so that streaming can be done more efficiently.
1211 static const size_t kMaxLogMessageLen;
1213 // Theses should not be called directly outside of logging.*,
1214 // only passed as SendMethod arguments to other LogMessage methods:
1215 void SendToLog(); // Actually dispatch to the logs
1216 void SendToSyslogAndLog(); // Actually dispatch to syslog and the logs
1218 // Call abort() or similar to perform LOG(FATAL) crash.
1219 static void Fail() @ac_cv___attribute___noreturn@;
1221 std::ostream& stream();
1223 int preserved_errno() const;
1225 // Must be called without the log_mutex held. (L < log_mutex)
1226 static int64 num_messages(int severity);
1228 struct LogMessageData;
1231 // Fully internal SendMethod cases:
1232 void SendToSinkAndLog(); // Send to sink if provided and dispatch to the logs
1233 void SendToSink(); // Send to sink if provided, do nothing otherwise.
1235 // Write to string if provided and dispatch to the logs.
1236 void WriteToStringAndLog();
1238 void SaveOrSendToLog(); // Save to stringvec if provided, else to logs
1240 void Init(const char* file, int line, LogSeverity severity,
1241 void (LogMessage::*send_method)());
1243 // Used to fill in crash information during LOG(FATAL) failures.
1244 void RecordCrashReason(glog_internal_namespace_::CrashReason* reason);
1246 // Counts of messages sent at each priority:
1247 static int64 num_messages_[NUM_SEVERITIES]; // under log_mutex
1249 // We keep the data in a separate struct so that each instance of
1250 // LogMessage uses less stack space.
1251 LogMessageData* allocated_;
1252 LogMessageData* data_;
1254 friend class LogDestination;
1256 LogMessage(const LogMessage&);
1257 void operator=(const LogMessage&);
1260 // This class happens to be thread-hostile because all instances share
1261 // a single data buffer, but since it can only be created just before
1262 // the process dies, we don't worry so much.
1263 class GOOGLE_GLOG_DLL_DECL LogMessageFatal : public LogMessage {
1265 LogMessageFatal(const char* file, int line);
1266 LogMessageFatal(const char* file, int line, const CheckOpString& result);
1267 ~LogMessageFatal() @ac_cv___attribute___noreturn@;
1270 // A non-macro interface to the log facility; (useful
1271 // when the logging level is not a compile-time constant).
1272 inline void LogAtLevel(int const severity, std::string const &msg) {
1273 LogMessage(__FILE__, __LINE__, severity).stream() << msg;
1276 // A macro alternative of LogAtLevel. New code may want to use this
1277 // version since there are two advantages: 1. this version outputs the
1278 // file name and the line number where this macro is put like other
1279 // LOG macros, 2. this macro can be used as C++ stream.
1280 #define LOG_AT_LEVEL(severity) @ac_google_namespace@::LogMessage(__FILE__, __LINE__, severity).stream()
1282 // A small helper for CHECK_NOTNULL().
1283 template <typename T>
1284 T* CheckNotNull(const char *file, int line, const char *names, T* t) {
1286 LogMessageFatal(file, line, new std::string(names));
1291 // Allow folks to put a counter in the LOG_EVERY_X()'ed messages. This
1292 // only works if ostream is a LogStream. If the ostream is not a
1293 // LogStream you'll get an assert saying as much at runtime.
1294 GOOGLE_GLOG_DLL_DECL std::ostream& operator<<(std::ostream &os,
1295 const PRIVATE_Counter&);
1298 // Derived class for PLOG*() above.
1299 class GOOGLE_GLOG_DLL_DECL ErrnoLogMessage : public LogMessage {
1302 ErrnoLogMessage(const char* file, int line, LogSeverity severity, int ctr,
1303 void (LogMessage::*send_method)());
1305 // Postpends ": strerror(errno) [errno]".
1309 ErrnoLogMessage(const ErrnoLogMessage&);
1310 void operator=(const ErrnoLogMessage&);
1314 // This class is used to explicitly ignore values in the conditional
1315 // logging macros. This avoids compiler warnings like "value computed
1316 // is not used" and "statement has no effect".
1318 class GOOGLE_GLOG_DLL_DECL LogMessageVoidify {
1320 LogMessageVoidify() { }
1321 // This has to be an operator with a precedence lower than << but
1323 void operator&(std::ostream&) { }
1327 // Flushes all log files that contains messages that are at least of
1328 // the specified severity level. Thread-safe.
1329 GOOGLE_GLOG_DLL_DECL void FlushLogFiles(LogSeverity min_severity);
1331 // Flushes all log files that contains messages that are at least of
1332 // the specified severity level. Thread-hostile because it ignores
1333 // locking -- used for catastrophic failures.
1334 GOOGLE_GLOG_DLL_DECL void FlushLogFilesUnsafe(LogSeverity min_severity);
1337 // Set the destination to which a particular severity level of log
1338 // messages is sent. If base_filename is "", it means "don't log this
1339 // severity". Thread-safe.
1341 GOOGLE_GLOG_DLL_DECL void SetLogDestination(LogSeverity severity,
1342 const char* base_filename);
1345 // Set the basename of the symlink to the latest log file at a given
1346 // severity. If symlink_basename is empty, do not make a symlink. If
1347 // you don't call this function, the symlink basename is the
1348 // invocation name of the program. Thread-safe.
1350 GOOGLE_GLOG_DLL_DECL void SetLogSymlink(LogSeverity severity,
1351 const char* symlink_basename);
1354 // Used to send logs to some other kind of destination
1355 // Users should subclass LogSink and override send to do whatever they want.
1356 // Implementations must be thread-safe because a shared instance will
1357 // be called from whichever thread ran the LOG(XXX) line.
1358 class GOOGLE_GLOG_DLL_DECL LogSink {
1362 // Sink's logging logic (message_len is such as to exclude '\n' at the end).
1363 // This method can't use LOG() or CHECK() as logging system mutex(s) are held
1364 // during this call.
1365 virtual void send(LogSeverity severity, const char* full_filename,
1366 const char* base_filename, int line,
1367 const struct ::tm* tm_time,
1368 const char* message, size_t message_len) = 0;
1370 // Redefine this to implement waiting for
1371 // the sink's logging logic to complete.
1372 // It will be called after each send() returns,
1373 // but before that LogMessage exits or crashes.
1374 // By default this function does nothing.
1375 // Using this function one can implement complex logic for send()
1376 // that itself involves logging; and do all this w/o causing deadlocks and
1377 // inconsistent rearrangement of log messages.
1378 // E.g. if a LogSink has thread-specific actions, the send() method
1379 // can simply add the message to a queue and wake up another thread that
1380 // handles real logging while itself making some LOG() calls;
1381 // WaitTillSent() can be implemented to wait for that logic to complete.
1382 // See our unittest for an example.
1383 virtual void WaitTillSent();
1385 // Returns the normal text output of the log message.
1386 // Can be useful to implement send().
1387 static std::string ToString(LogSeverity severity, const char* file, int line,
1388 const struct ::tm* tm_time,
1389 const char* message, size_t message_len);
1392 // Add or remove a LogSink as a consumer of logging data. Thread-safe.
1393 GOOGLE_GLOG_DLL_DECL void AddLogSink(LogSink *destination);
1394 GOOGLE_GLOG_DLL_DECL void RemoveLogSink(LogSink *destination);
1397 // Specify an "extension" added to the filename specified via
1398 // SetLogDestination. This applies to all severity levels. It's
1399 // often used to append the port we're listening on to the logfile
1400 // name. Thread-safe.
1402 GOOGLE_GLOG_DLL_DECL void SetLogFilenameExtension(
1403 const char* filename_extension);
1406 // Make it so that all log messages of at least a particular severity
1407 // are logged to stderr (in addition to logging to the usual log
1408 // file(s)). Thread-safe.
1410 GOOGLE_GLOG_DLL_DECL void SetStderrLogging(LogSeverity min_severity);
1413 // Make it so that all log messages go only to stderr. Thread-safe.
1415 GOOGLE_GLOG_DLL_DECL void LogToStderr();
1418 // Make it so that all log messages of at least a particular severity are
1419 // logged via email to a list of addresses (in addition to logging to the
1420 // usual log file(s)). The list of addresses is just a string containing
1421 // the email addresses to send to (separated by spaces, say). Thread-safe.
1423 GOOGLE_GLOG_DLL_DECL void SetEmailLogging(LogSeverity min_severity,
1424 const char* addresses);
1426 // A simple function that sends email. dest is a commma-separated
1427 // list of addressess. Thread-safe.
1428 GOOGLE_GLOG_DLL_DECL bool SendEmail(const char *dest,
1429 const char *subject, const char *body);
1431 GOOGLE_GLOG_DLL_DECL const std::vector<std::string>& GetLoggingDirectories();
1433 // For tests only: Clear the internal [cached] list of logging directories to
1434 // force a refresh the next time GetLoggingDirectories is called.
1436 void TestOnly_ClearLoggingDirectoriesList();
1438 // Returns a set of existing temporary directories, which will be a
1439 // subset of the directories returned by GetLogginDirectories().
1441 GOOGLE_GLOG_DLL_DECL void GetExistingTempDirectories(
1442 std::vector<std::string>* list);
1444 // Print any fatal message again -- useful to call from signal handler
1445 // so that the last thing in the output is the fatal message.
1446 // Thread-hostile, but a race is unlikely.
1447 GOOGLE_GLOG_DLL_DECL void ReprintFatalMessage();
1449 // Truncate a log file that may be the append-only output of multiple
1450 // processes and hence can't simply be renamed/reopened (typically a
1451 // stdout/stderr). If the file "path" is > "limit" bytes, copy the
1452 // last "keep" bytes to offset 0 and truncate the rest. Since we could
1453 // be racing with other writers, this approach has the potential to
1454 // lose very small amounts of data. For security, only follow symlinks
1455 // if the path is /proc/self/fd/*
1456 GOOGLE_GLOG_DLL_DECL void TruncateLogFile(const char *path,
1457 int64 limit, int64 keep);
1459 // Truncate stdout and stderr if they are over the value specified by
1460 // --max_log_size; keep the final 1MB. This function has the same
1461 // race condition as TruncateLogFile.
1462 GOOGLE_GLOG_DLL_DECL void TruncateStdoutStderr();
1464 // Return the string representation of the provided LogSeverity level.
1466 GOOGLE_GLOG_DLL_DECL const char* GetLogSeverityName(LogSeverity severity);
1468 // ---------------------------------------------------------------------
1469 // Implementation details that are not useful to most clients
1470 // ---------------------------------------------------------------------
1472 // A Logger is the interface used by logging modules to emit entries
1473 // to a log. A typical implementation will dump formatted data to a
1474 // sequence of files. We also provide interfaces that will forward
1475 // the data to another thread so that the invoker never blocks.
1476 // Implementations should be thread-safe since the logging system
1477 // will write to them from multiple threads.
1481 class GOOGLE_GLOG_DLL_DECL Logger {
1485 // Writes "message[0,message_len-1]" corresponding to an event that
1486 // occurred at "timestamp". If "force_flush" is true, the log file
1487 // is flushed immediately.
1489 // The input message has already been formatted as deemed
1490 // appropriate by the higher level logging facility. For example,
1491 // textual log messages already contain timestamps, and the
1492 // file:linenumber header.
1493 virtual void Write(bool force_flush,
1495 const char* message,
1496 int message_len) = 0;
1498 // Flush any buffered messages
1499 virtual void Flush() = 0;
1501 // Get the current LOG file size.
1502 // The returned value is approximate since some
1503 // logged data may not have been flushed to disk yet.
1504 virtual uint32 LogSize() = 0;
1507 // Get the logger for the specified severity level. The logger
1508 // remains the property of the logging module and should not be
1509 // deleted by the caller. Thread-safe.
1510 extern GOOGLE_GLOG_DLL_DECL Logger* GetLogger(LogSeverity level);
1512 // Set the logger for the specified severity level. The logger
1513 // becomes the property of the logging module and should not
1514 // be deleted by the caller. Thread-safe.
1515 extern GOOGLE_GLOG_DLL_DECL void SetLogger(LogSeverity level, Logger* logger);
1519 // glibc has traditionally implemented two incompatible versions of
1520 // strerror_r(). There is a poorly defined convention for picking the
1521 // version that we want, but it is not clear whether it even works with
1522 // all versions of glibc.
1523 // So, instead, we provide this wrapper that automatically detects the
1524 // version that is in use, and then implements POSIX semantics.
1525 // N.B. In addition to what POSIX says, we also guarantee that "buf" will
1526 // be set to an empty string, if this function failed. This means, in most
1527 // cases, you do not need to check the error code and you can directly
1528 // use the value of "buf". It will never have an undefined value.
1529 GOOGLE_GLOG_DLL_DECL int posix_strerror_r(int err, char *buf, size_t len);
1532 // A class for which we define operator<<, which does nothing.
1533 class GOOGLE_GLOG_DLL_DECL NullStream : public LogMessage::LogStream {
1535 // Initialize the LogStream so the messages can be written somewhere
1536 // (they'll never be actually displayed). This will be needed if a
1537 // NullStream& is implicitly converted to LogStream&, in which case
1538 // the overloaded NullStream::operator<< will not be invoked.
1539 NullStream() : LogMessage::LogStream(message_buffer_, 1, 0) { }
1540 NullStream(const char* /*file*/, int /*line*/,
1541 const CheckOpString& /*result*/) :
1542 LogMessage::LogStream(message_buffer_, 1, 0) { }
1543 NullStream &stream() { return *this; }
1545 // A very short buffer for messages (which we discard anyway). This
1546 // will be needed if NullStream& converted to LogStream& (e.g. as a
1547 // result of a conditional expression).
1548 char message_buffer_[2];
1551 // Do nothing. This operator is inline, allowing the message to be
1552 // compiled away. The message will not be compiled away if we do
1553 // something like (flag ? LOG(INFO) : LOG(ERROR)) << message; when
1554 // SKIP_LOG=WARNING. In those cases, NullStream will be implicitly
1555 // converted to LogStream and the message will be computed and then
1556 // quietly discarded.
1558 inline NullStream& operator<<(NullStream &str, const T &) { return str; }
1560 // Similar to NullStream, but aborts the program (without stack
1561 // trace), like LogMessageFatal.
1562 class GOOGLE_GLOG_DLL_DECL NullStreamFatal : public NullStream {
1564 NullStreamFatal() { }
1565 NullStreamFatal(const char* file, int line, const CheckOpString& result) :
1566 NullStream(file, line, result) { }
1567 @ac_cv___attribute___noreturn@ ~NullStreamFatal() { _exit(1); }
1570 // Install a signal handler that will dump signal information and a stack
1571 // trace when the program crashes on certain signals. We'll install the
1572 // signal handler for the following signals.
1574 // SIGSEGV, SIGILL, SIGFPE, SIGABRT, SIGBUS, and SIGTERM.
1576 // By default, the signal handler will write the failure dump to the
1577 // standard error. You can customize the destination by installing your
1578 // own writer function by InstallFailureWriter() below.
1580 // Note on threading:
1582 // The function should be called before threads are created, if you want
1583 // to use the failure signal handler for all threads. The stack trace
1584 // will be shown only for the thread that receives the signal. In other
1585 // words, stack traces of other threads won't be shown.
1586 GOOGLE_GLOG_DLL_DECL void InstallFailureSignalHandler();
1588 // Installs a function that is used for writing the failure dump. "data"
1589 // is the pointer to the beginning of a message to be written, and "size"
1590 // is the size of the message. You should not expect the data is
1591 // terminated with '\0'.
1592 GOOGLE_GLOG_DLL_DECL void InstallFailureWriter(
1593 void (*writer)(const char* data, int size));
1595 @ac_google_end_namespace@
1597 #endif // _LOGGING_H_