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, name, tn) \
297 namespace FLAG__namespace_do_not_use_directly_use_DECLARE_##tn##_instead { \
298 extern GOOGLE_GLOG_DLL_DECL type FLAGS_##name; \
300 using FLAG__namespace_do_not_use_directly_use_DECLARE_##tn##_instead::FLAGS_##name
302 // bool specialization
303 #define DECLARE_bool(name) \
304 DECLARE_VARIABLE(bool, name, bool)
306 // int32 specialization
307 #define DECLARE_int32(name) \
308 DECLARE_VARIABLE(@ac_google_namespace@::int32, 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) \
313 namespace FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead { \
314 extern GOOGLE_GLOG_DLL_DECL std::string FLAGS_##name; \
316 using FLAG__namespace_do_not_use_directly_use_DECLARE_string_instead::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 // Log messages at a level >= this flag are automatically sent to
326 // stderr in addition to log files.
327 DECLARE_int32(stderrthreshold);
329 // Set whether the log prefix should be prepended to each line of output.
330 DECLARE_bool(log_prefix);
332 // Log messages at a level <= this flag are buffered.
333 // Log messages at a higher level are flushed immediately.
334 DECLARE_int32(logbuflevel);
336 // Sets the maximum number of seconds which logs may be buffered for.
337 DECLARE_int32(logbufsecs);
339 // Log suppression level: messages logged at a lower level than this
341 DECLARE_int32(minloglevel);
343 // If specified, logfiles are written into this directory instead of the
344 // default logging directory.
345 DECLARE_string(log_dir);
347 // Sets the path of the directory into which to put additional links
349 DECLARE_string(log_link);
351 DECLARE_int32(v); // in vlog_is_on.cc
353 // Sets the maximum log file size (in MB).
354 DECLARE_int32(max_log_size);
356 // Sets whether to avoid logging to the disk if the disk is full.
357 DECLARE_bool(stop_logging_if_full_disk);
359 #ifdef MUST_UNDEF_GFLAGS_DECLARE_MACROS
360 #undef MUST_UNDEF_GFLAGS_DECLARE_MACROS
361 #undef DECLARE_VARIABLE
364 #undef DECLARE_string
367 // Log messages below the GOOGLE_STRIP_LOG level will be compiled away for
368 // security reasons. See LOG(severtiy) below.
370 // A few definitions of macros that don't generate much code. Since
371 // LOG(INFO) and its ilk are used all over our code, it's
372 // better to have compact code for these operations.
374 #if GOOGLE_STRIP_LOG == 0
375 #define COMPACT_GOOGLE_LOG_INFO @ac_google_namespace@::LogMessage( \
377 #define LOG_TO_STRING_INFO(message) @ac_google_namespace@::LogMessage( \
378 __FILE__, __LINE__, @ac_google_namespace@::GLOG_INFO, message)
380 #define COMPACT_GOOGLE_LOG_INFO @ac_google_namespace@::NullStream()
381 #define LOG_TO_STRING_INFO(message) @ac_google_namespace@::NullStream()
384 #if GOOGLE_STRIP_LOG <= 1
385 #define COMPACT_GOOGLE_LOG_WARNING @ac_google_namespace@::LogMessage( \
386 __FILE__, __LINE__, @ac_google_namespace@::GLOG_WARNING)
387 #define LOG_TO_STRING_WARNING(message) @ac_google_namespace@::LogMessage( \
388 __FILE__, __LINE__, @ac_google_namespace@::GLOG_WARNING, message)
390 #define COMPACT_GOOGLE_LOG_WARNING @ac_google_namespace@::NullStream()
391 #define LOG_TO_STRING_WARNING(message) @ac_google_namespace@::NullStream()
394 #if GOOGLE_STRIP_LOG <= 2
395 #define COMPACT_GOOGLE_LOG_ERROR @ac_google_namespace@::LogMessage( \
396 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR)
397 #define LOG_TO_STRING_ERROR(message) @ac_google_namespace@::LogMessage( \
398 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR, message)
400 #define COMPACT_GOOGLE_LOG_ERROR @ac_google_namespace@::NullStream()
401 #define LOG_TO_STRING_ERROR(message) @ac_google_namespace@::NullStream()
404 #if GOOGLE_STRIP_LOG <= 3
405 #define COMPACT_GOOGLE_LOG_FATAL @ac_google_namespace@::LogMessageFatal( \
407 #define LOG_TO_STRING_FATAL(message) @ac_google_namespace@::LogMessage( \
408 __FILE__, __LINE__, @ac_google_namespace@::GLOG_FATAL, message)
410 #define COMPACT_GOOGLE_LOG_FATAL @ac_google_namespace@::NullStreamFatal()
411 #define LOG_TO_STRING_FATAL(message) @ac_google_namespace@::NullStreamFatal()
414 // For DFATAL, we want to use LogMessage (as opposed to
415 // LogMessageFatal), to be consistent with the original behavior.
417 #define COMPACT_GOOGLE_LOG_DFATAL COMPACT_GOOGLE_LOG_ERROR
418 #elif GOOGLE_STRIP_LOG <= 3
419 #define COMPACT_GOOGLE_LOG_DFATAL @ac_google_namespace@::LogMessage( \
420 __FILE__, __LINE__, @ac_google_namespace@::GLOG_FATAL)
422 #define COMPACT_GOOGLE_LOG_DFATAL @ac_google_namespace@::NullStreamFatal()
425 #define GOOGLE_LOG_INFO(counter) @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_INFO, counter, &@ac_google_namespace@::LogMessage::SendToLog)
426 #define SYSLOG_INFO(counter) \
427 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_INFO, counter, \
428 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
429 #define GOOGLE_LOG_WARNING(counter) \
430 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_WARNING, counter, \
431 &@ac_google_namespace@::LogMessage::SendToLog)
432 #define SYSLOG_WARNING(counter) \
433 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_WARNING, counter, \
434 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
435 #define GOOGLE_LOG_ERROR(counter) \
436 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR, counter, \
437 &@ac_google_namespace@::LogMessage::SendToLog)
438 #define SYSLOG_ERROR(counter) \
439 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR, counter, \
440 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
441 #define GOOGLE_LOG_FATAL(counter) \
442 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_FATAL, counter, \
443 &@ac_google_namespace@::LogMessage::SendToLog)
444 #define SYSLOG_FATAL(counter) \
445 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_FATAL, counter, \
446 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
447 #define GOOGLE_LOG_DFATAL(counter) \
448 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::DFATAL_LEVEL, counter, \
449 &@ac_google_namespace@::LogMessage::SendToLog)
450 #define SYSLOG_DFATAL(counter) \
451 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::DFATAL_LEVEL, counter, \
452 &@ac_google_namespace@::LogMessage::SendToSyslogAndLog)
454 #if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) || defined(__CYGWIN32__)
455 // A very useful logging macro to log windows errors:
456 #define LOG_SYSRESULT(result) \
457 if (FAILED(HRESULT_FROM_WIN32(result))) { \
458 LPSTR message = NULL; \
459 LPSTR msg = reinterpret_cast<LPSTR>(&message); \
460 DWORD message_length = FormatMessageA(FORMAT_MESSAGE_ALLOCATE_BUFFER | \
461 FORMAT_MESSAGE_FROM_SYSTEM, \
462 0, result, 0, msg, 100, NULL); \
463 if (message_length > 0) { \
464 @ac_google_namespace@::LogMessage(__FILE__, __LINE__, @ac_google_namespace@::GLOG_ERROR, 0, \
465 &@ac_google_namespace@::LogMessage::SendToLog).stream() \
466 << reinterpret_cast<const char*>(message); \
467 LocalFree(message); \
472 // We use the preprocessor's merging operator, "##", so that, e.g.,
473 // LOG(INFO) becomes the token GOOGLE_LOG_INFO. There's some funny
474 // subtle difference between ostream member streaming functions (e.g.,
475 // ostream::operator<<(int) and ostream non-member streaming functions
476 // (e.g., ::operator<<(ostream&, string&): it turns out that it's
477 // impossible to stream something like a string directly to an unnamed
478 // ostream. We employ a neat hack by calling the stream() member
479 // function of LogMessage which seems to avoid the problem.
480 #define LOG(severity) COMPACT_GOOGLE_LOG_ ## severity.stream()
481 #define SYSLOG(severity) SYSLOG_ ## severity(0).stream()
483 @ac_google_start_namespace@
485 // They need the definitions of integer types.
486 #include "glog/log_severity.h"
487 #include "glog/vlog_is_on.h"
489 // Initialize google's logging library. You will see the program name
490 // specified by argv0 in log outputs.
491 GOOGLE_GLOG_DLL_DECL void InitGoogleLogging(const char* argv0);
493 // Shutdown google's logging library.
494 GOOGLE_GLOG_DLL_DECL void ShutdownGoogleLogging();
496 // Install a function which will be called after LOG(FATAL).
497 GOOGLE_GLOG_DLL_DECL void InstallFailureFunction(void (*fail_func)());
499 class LogSink; // defined below
501 // If a non-NULL sink pointer is given, we push this message to that sink.
502 // For LOG_TO_SINK we then do normal LOG(severity) logging as well.
503 // This is useful for capturing messages and passing/storing them
504 // somewhere more specific than the global log of the process.
507 // LogSeverity severity;
508 // The cast is to disambiguate NULL arguments.
509 #define LOG_TO_SINK(sink, severity) \
510 @ac_google_namespace@::LogMessage( \
511 __FILE__, __LINE__, \
512 @ac_google_namespace@::GLOG_ ## severity, \
513 static_cast<@ac_google_namespace@::LogSink*>(sink), true).stream()
514 #define LOG_TO_SINK_BUT_NOT_TO_LOGFILE(sink, severity) \
515 @ac_google_namespace@::LogMessage( \
516 __FILE__, __LINE__, \
517 @ac_google_namespace@::GLOG_ ## severity, \
518 static_cast<@ac_google_namespace@::LogSink*>(sink), false).stream()
520 // If a non-NULL string pointer is given, we write this message to that string.
521 // We then do normal LOG(severity) logging as well.
522 // This is useful for capturing messages and storing them somewhere more
523 // specific than the global log of the process.
526 // LogSeverity severity;
527 // The cast is to disambiguate NULL arguments.
528 // NOTE: LOG(severity) expands to LogMessage().stream() for the specified
530 #define LOG_TO_STRING(severity, message) \
531 LOG_TO_STRING_##severity(static_cast<string*>(message)).stream()
533 // If a non-NULL pointer is given, we push the message onto the end
534 // of a vector of strings; otherwise, we report it with LOG(severity).
535 // This is handy for capturing messages and perhaps passing them back
536 // to the caller, rather than reporting them immediately.
538 // LogSeverity severity;
539 // vector<string> *outvec;
540 // The cast is to disambiguate NULL arguments.
541 #define LOG_STRING(severity, outvec) \
542 LOG_TO_STRING_##severity(static_cast<vector<string>*>(outvec)).stream()
544 #define LOG_IF(severity, condition) \
545 !(condition) ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
546 #define SYSLOG_IF(severity, condition) \
547 !(condition) ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & SYSLOG(severity)
549 #define LOG_ASSERT(condition) \
550 LOG_IF(FATAL, !(condition)) << "Assert failed: " #condition
551 #define SYSLOG_ASSERT(condition) \
552 SYSLOG_IF(FATAL, !(condition)) << "Assert failed: " #condition
554 // CHECK dies with a fatal error if condition is not true. It is *not*
555 // controlled by NDEBUG, so the check will be executed regardless of
556 // compilation mode. Therefore, it is safe to do things like:
557 // CHECK(fp->Write(x) == 4)
558 #define CHECK(condition) \
559 LOG_IF(FATAL, GOOGLE_PREDICT_BRANCH_NOT_TAKEN(!(condition))) \
560 << "Check failed: " #condition " "
562 // A container for a string pointer which can be evaluated to a bool -
563 // true iff the pointer is NULL.
564 struct CheckOpString {
565 CheckOpString(std::string* str) : str_(str) { }
566 // No destructor: if str_ is non-NULL, we're about to LOG(FATAL),
567 // so there's no point in cleaning up str_.
568 operator bool() const {
569 return GOOGLE_PREDICT_BRANCH_NOT_TAKEN(str_ != NULL);
574 // Function is overloaded for integral types to allow static const
575 // integrals declared in classes and not defined to be used as arguments to
576 // CHECK* macros. It's not encouraged though.
578 inline const T& GetReferenceableValue(const T& t) { return t; }
579 inline char GetReferenceableValue(char t) { return t; }
580 inline unsigned char GetReferenceableValue(unsigned char t) { return t; }
581 inline signed char GetReferenceableValue(signed char t) { return t; }
582 inline short GetReferenceableValue(short t) { return t; }
583 inline unsigned short GetReferenceableValue(unsigned short t) { return t; }
584 inline int GetReferenceableValue(int t) { return t; }
585 inline unsigned int GetReferenceableValue(unsigned int t) { return t; }
586 inline long GetReferenceableValue(long t) { return t; }
587 inline unsigned long GetReferenceableValue(unsigned long t) { return t; }
588 inline long long GetReferenceableValue(long long t) { return t; }
589 inline unsigned long long GetReferenceableValue(unsigned long long t) {
593 // This is a dummy class to define the following operator.
594 struct DummyClassToDefineOperator {};
596 @ac_google_end_namespace@
598 // Define global operator<< to declare using ::operator<<.
599 // This declaration will allow use to use CHECK macros for user
600 // defined classes which have operator<< (e.g., stl_logging.h).
601 inline std::ostream& operator<<(
602 std::ostream& out, const google::DummyClassToDefineOperator&) {
606 @ac_google_start_namespace@
608 // This formats a value for a failing CHECK_XX statement. Ordinarily,
609 // it uses the definition for operator<<, with a few special cases below.
610 template <typename T>
611 inline void MakeCheckOpValueString(std::ostream* os, const T& v) {
615 // Overrides for char types provide readable values for unprintable
618 void MakeCheckOpValueString(std::ostream* os, const char& v);
620 void MakeCheckOpValueString(std::ostream* os, const signed char& v);
622 void MakeCheckOpValueString(std::ostream* os, const unsigned char& v);
624 // Build the error message string. Specify no inlining for code size.
625 template <typename T1, typename T2>
626 std::string* MakeCheckOpString(const T1& v1, const T2& v2, const char* exprtext)
627 @ac_cv___attribute___noinline@;
632 // If "s" is less than base_logging::INFO, returns base_logging::INFO.
633 // If "s" is greater than base_logging::FATAL, returns
634 // base_logging::ERROR. Otherwise, returns "s".
635 LogSeverity NormalizeSeverity(LogSeverity s);
637 } // namespace internal
639 // A helper class for formatting "expr (V1 vs. V2)" in a CHECK_XX
640 // statement. See MakeCheckOpString for sample usage. Other
641 // approaches were considered: use of a template method (e.g.,
642 // base::BuildCheckOpString(exprtext, base::Print<T1>, &v1,
643 // base::Print<T2>, &v2), however this approach has complications
644 // related to volatile arguments and function-pointer arguments).
645 class CheckOpMessageBuilder {
647 // Inserts "exprtext" and " (" to the stream.
648 explicit CheckOpMessageBuilder(const char *exprtext);
649 // Deletes "stream_".
650 ~CheckOpMessageBuilder();
651 // For inserting the first variable.
652 std::ostream* ForVar1() { return stream_; }
653 // For inserting the second variable (adds an intermediate " vs. ").
654 std::ostream* ForVar2();
655 // Get the result (inserts the closing ")").
656 std::string* NewString();
659 std::ostringstream *stream_;
664 template <typename T1, typename T2>
665 std::string* MakeCheckOpString(const T1& v1, const T2& v2, const char* exprtext) {
666 base::CheckOpMessageBuilder comb(exprtext);
667 MakeCheckOpValueString(comb.ForVar1(), v1);
668 MakeCheckOpValueString(comb.ForVar2(), v2);
669 return comb.NewString();
672 // Helper functions for CHECK_OP macro.
673 // The (int, int) specialization works around the issue that the compiler
674 // will not instantiate the template version of the function on values of
675 // unnamed enum type - see comment below.
676 #define DEFINE_CHECK_OP_IMPL(name, op) \
677 template <typename T1, typename T2> \
678 inline std::string* name##Impl(const T1& v1, const T2& v2, \
679 const char* exprtext) { \
680 if (GOOGLE_PREDICT_TRUE(v1 op v2)) return NULL; \
681 else return MakeCheckOpString(v1, v2, exprtext); \
683 inline std::string* name##Impl(int v1, int v2, const char* exprtext) { \
684 return name##Impl<int, int>(v1, v2, exprtext); \
687 // We use the full name Check_EQ, Check_NE, etc. in case the file including
688 // base/logging.h provides its own #defines for the simpler names EQ, NE, etc.
689 // This happens if, for example, those are used as token names in a
691 DEFINE_CHECK_OP_IMPL(Check_EQ, ==) // Compilation error with CHECK_EQ(NULL, x)?
692 DEFINE_CHECK_OP_IMPL(Check_NE, !=) // Use CHECK(x == NULL) instead.
693 DEFINE_CHECK_OP_IMPL(Check_LE, <=)
694 DEFINE_CHECK_OP_IMPL(Check_LT, < )
695 DEFINE_CHECK_OP_IMPL(Check_GE, >=)
696 DEFINE_CHECK_OP_IMPL(Check_GT, > )
697 #undef DEFINE_CHECK_OP_IMPL
699 // Helper macro for binary operators.
700 // Don't use this macro directly in your code, use CHECK_EQ et al below.
702 #if defined(STATIC_ANALYSIS)
703 // Only for static analysis tool to know that it is equivalent to assert
704 #define CHECK_OP_LOG(name, op, val1, val2, log) CHECK((val1) op (val2))
705 #elif !defined(NDEBUG)
706 // In debug mode, avoid constructing CheckOpStrings if possible,
707 // to reduce the overhead of CHECK statments by 2x.
708 // Real DCHECK-heavy tests have seen 1.5x speedups.
710 // The meaning of "string" might be different between now and
711 // when this macro gets invoked (e.g., if someone is experimenting
712 // with other string implementations that get defined after this
713 // file is included). Save the current meaning now and use it
715 typedef std::string _Check_string;
716 #define CHECK_OP_LOG(name, op, val1, val2, log) \
717 while (@ac_google_namespace@::_Check_string* _result = \
718 @ac_google_namespace@::Check##name##Impl( \
719 @ac_google_namespace@::GetReferenceableValue(val1), \
720 @ac_google_namespace@::GetReferenceableValue(val2), \
721 #val1 " " #op " " #val2)) \
722 log(__FILE__, __LINE__, \
723 @ac_google_namespace@::CheckOpString(_result)).stream()
725 // In optimized mode, use CheckOpString to hint to compiler that
726 // the while condition is unlikely.
727 #define CHECK_OP_LOG(name, op, val1, val2, log) \
728 while (@ac_google_namespace@::CheckOpString _result = \
729 @ac_google_namespace@::Check##name##Impl( \
730 @ac_google_namespace@::GetReferenceableValue(val1), \
731 @ac_google_namespace@::GetReferenceableValue(val2), \
732 #val1 " " #op " " #val2)) \
733 log(__FILE__, __LINE__, _result).stream()
734 #endif // STATIC_ANALYSIS, !NDEBUG
736 #if GOOGLE_STRIP_LOG <= 3
737 #define CHECK_OP(name, op, val1, val2) \
738 CHECK_OP_LOG(name, op, val1, val2, @ac_google_namespace@::LogMessageFatal)
740 #define CHECK_OP(name, op, val1, val2) \
741 CHECK_OP_LOG(name, op, val1, val2, @ac_google_namespace@::NullStreamFatal)
742 #endif // STRIP_LOG <= 3
744 // Equality/Inequality checks - compare two values, and log a FATAL message
745 // including the two values when the result is not as expected. The values
746 // must have operator<<(ostream, ...) defined.
748 // You may append to the error message like so:
749 // CHECK_NE(1, 2) << ": The world must be ending!";
751 // We are very careful to ensure that each argument is evaluated exactly
752 // once, and that anything which is legal to pass as a function argument is
753 // legal here. In particular, the arguments may be temporary expressions
754 // which will end up being destroyed at the end of the apparent statement,
756 // CHECK_EQ(string("abc")[1], 'b');
758 // WARNING: These don't compile correctly if one of the arguments is a pointer
759 // and the other is NULL. To work around this, simply static_cast NULL to the
760 // type of the desired pointer.
762 #define CHECK_EQ(val1, val2) CHECK_OP(_EQ, ==, val1, val2)
763 #define CHECK_NE(val1, val2) CHECK_OP(_NE, !=, val1, val2)
764 #define CHECK_LE(val1, val2) CHECK_OP(_LE, <=, val1, val2)
765 #define CHECK_LT(val1, val2) CHECK_OP(_LT, < , val1, val2)
766 #define CHECK_GE(val1, val2) CHECK_OP(_GE, >=, val1, val2)
767 #define CHECK_GT(val1, val2) CHECK_OP(_GT, > , val1, val2)
769 // Check that the input is non NULL. This very useful in constructor
770 // initializer lists.
772 #define CHECK_NOTNULL(val) \
773 @ac_google_namespace@::CheckNotNull(__FILE__, __LINE__, "'" #val "' Must be non NULL", (val))
775 // Helper functions for string comparisons.
776 // To avoid bloat, the definitions are in logging.cc.
777 #define DECLARE_CHECK_STROP_IMPL(func, expected) \
778 GOOGLE_GLOG_DLL_DECL std::string* Check##func##expected##Impl( \
779 const char* s1, const char* s2, const char* names);
780 DECLARE_CHECK_STROP_IMPL(strcmp, true)
781 DECLARE_CHECK_STROP_IMPL(strcmp, false)
782 DECLARE_CHECK_STROP_IMPL(strcasecmp, true)
783 DECLARE_CHECK_STROP_IMPL(strcasecmp, false)
784 #undef DECLARE_CHECK_STROP_IMPL
786 // Helper macro for string comparisons.
787 // Don't use this macro directly in your code, use CHECK_STREQ et al below.
788 #define CHECK_STROP(func, op, expected, s1, s2) \
789 while (@ac_google_namespace@::CheckOpString _result = \
790 @ac_google_namespace@::Check##func##expected##Impl((s1), (s2), \
791 #s1 " " #op " " #s2)) \
792 LOG(FATAL) << *_result.str_
795 // String (char*) equality/inequality checks.
796 // CASE versions are case-insensitive.
798 // Note that "s1" and "s2" may be temporary strings which are destroyed
799 // by the compiler at the end of the current "full expression"
800 // (e.g. CHECK_STREQ(Foo().c_str(), Bar().c_str())).
802 #define CHECK_STREQ(s1, s2) CHECK_STROP(strcmp, ==, true, s1, s2)
803 #define CHECK_STRNE(s1, s2) CHECK_STROP(strcmp, !=, false, s1, s2)
804 #define CHECK_STRCASEEQ(s1, s2) CHECK_STROP(strcasecmp, ==, true, s1, s2)
805 #define CHECK_STRCASENE(s1, s2) CHECK_STROP(strcasecmp, !=, false, s1, s2)
807 #define CHECK_INDEX(I,A) CHECK(I < (sizeof(A)/sizeof(A[0])))
808 #define CHECK_BOUND(B,A) CHECK(B <= (sizeof(A)/sizeof(A[0])))
810 #define CHECK_DOUBLE_EQ(val1, val2) \
812 CHECK_LE((val1), (val2)+0.000000000000001L); \
813 CHECK_GE((val1), (val2)-0.000000000000001L); \
816 #define CHECK_NEAR(val1, val2, margin) \
818 CHECK_LE((val1), (val2)+(margin)); \
819 CHECK_GE((val1), (val2)-(margin)); \
822 // perror()..googly style!
824 // PLOG() and PLOG_IF() and PCHECK() behave exactly like their LOG* and
825 // CHECK equivalents with the addition that they postpend a description
826 // of the current state of errno to their output lines.
828 #define PLOG(severity) GOOGLE_PLOG(severity, 0).stream()
830 #define GOOGLE_PLOG(severity, counter) \
831 @ac_google_namespace@::ErrnoLogMessage( \
832 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, counter, \
833 &@ac_google_namespace@::LogMessage::SendToLog)
835 #define PLOG_IF(severity, condition) \
836 !(condition) ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & PLOG(severity)
838 // A CHECK() macro that postpends errno if the condition is false. E.g.
840 // if (poll(fds, nfds, timeout) == -1) { PCHECK(errno == EINTR); ... }
841 #define PCHECK(condition) \
842 PLOG_IF(FATAL, GOOGLE_PREDICT_BRANCH_NOT_TAKEN(!(condition))) \
843 << "Check failed: " #condition " "
845 // A CHECK() macro that lets you assert the success of a function that
846 // returns -1 and sets errno in case of an error. E.g.
848 // CHECK_ERR(mkdir(path, 0700));
852 // int fd = open(filename, flags); CHECK_ERR(fd) << ": open " << filename;
853 #define CHECK_ERR(invocation) \
854 PLOG_IF(FATAL, GOOGLE_PREDICT_BRANCH_NOT_TAKEN((invocation) == -1)) \
857 // Use macro expansion to create, for each use of LOG_EVERY_N(), static
858 // variables with the __LINE__ expansion as part of the variable name.
859 #define LOG_EVERY_N_VARNAME(base, line) LOG_EVERY_N_VARNAME_CONCAT(base, line)
860 #define LOG_EVERY_N_VARNAME_CONCAT(base, line) base ## line
862 #define LOG_OCCURRENCES LOG_EVERY_N_VARNAME(occurrences_, __LINE__)
863 #define LOG_OCCURRENCES_MOD_N LOG_EVERY_N_VARNAME(occurrences_mod_n_, __LINE__)
865 #define SOME_KIND_OF_LOG_EVERY_N(severity, n, what_to_do) \
866 static int LOG_OCCURRENCES = 0, LOG_OCCURRENCES_MOD_N = 0; \
868 if (++LOG_OCCURRENCES_MOD_N > n) LOG_OCCURRENCES_MOD_N -= n; \
869 if (LOG_OCCURRENCES_MOD_N == 1) \
870 @ac_google_namespace@::LogMessage( \
871 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, LOG_OCCURRENCES, \
872 &what_to_do).stream()
874 #define SOME_KIND_OF_LOG_IF_EVERY_N(severity, condition, n, what_to_do) \
875 static int LOG_OCCURRENCES = 0, LOG_OCCURRENCES_MOD_N = 0; \
878 ((LOG_OCCURRENCES_MOD_N=(LOG_OCCURRENCES_MOD_N + 1) % n) == (1 % n))) \
879 @ac_google_namespace@::LogMessage( \
880 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, LOG_OCCURRENCES, \
881 &what_to_do).stream()
883 #define SOME_KIND_OF_PLOG_EVERY_N(severity, n, what_to_do) \
884 static int LOG_OCCURRENCES = 0, LOG_OCCURRENCES_MOD_N = 0; \
886 if (++LOG_OCCURRENCES_MOD_N > n) LOG_OCCURRENCES_MOD_N -= n; \
887 if (LOG_OCCURRENCES_MOD_N == 1) \
888 @ac_google_namespace@::ErrnoLogMessage( \
889 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, LOG_OCCURRENCES, \
890 &what_to_do).stream()
892 #define SOME_KIND_OF_LOG_FIRST_N(severity, n, what_to_do) \
893 static int LOG_OCCURRENCES = 0; \
894 if (LOG_OCCURRENCES <= n) \
896 if (LOG_OCCURRENCES <= n) \
897 @ac_google_namespace@::LogMessage( \
898 __FILE__, __LINE__, @ac_google_namespace@::GLOG_ ## severity, LOG_OCCURRENCES, \
899 &what_to_do).stream()
901 namespace glog_internal_namespace_ {
903 struct CompileAssert {
906 } // namespace glog_internal_namespace_
908 #define GOOGLE_GLOG_COMPILE_ASSERT(expr, msg) \
909 typedef @ac_google_namespace@::glog_internal_namespace_::CompileAssert<(bool(expr))> msg[bool(expr) ? 1 : -1]
911 #define LOG_EVERY_N(severity, n) \
912 GOOGLE_GLOG_COMPILE_ASSERT(@ac_google_namespace@::GLOG_ ## severity < \
913 @ac_google_namespace@::NUM_SEVERITIES, \
914 INVALID_REQUESTED_LOG_SEVERITY); \
915 SOME_KIND_OF_LOG_EVERY_N(severity, (n), @ac_google_namespace@::LogMessage::SendToLog)
917 #define SYSLOG_EVERY_N(severity, n) \
918 SOME_KIND_OF_LOG_EVERY_N(severity, (n), @ac_google_namespace@::LogMessage::SendToSyslogAndLog)
920 #define PLOG_EVERY_N(severity, n) \
921 SOME_KIND_OF_PLOG_EVERY_N(severity, (n), @ac_google_namespace@::LogMessage::SendToLog)
923 #define LOG_FIRST_N(severity, n) \
924 SOME_KIND_OF_LOG_FIRST_N(severity, (n), @ac_google_namespace@::LogMessage::SendToLog)
926 #define LOG_IF_EVERY_N(severity, condition, n) \
927 SOME_KIND_OF_LOG_IF_EVERY_N(severity, (condition), (n), @ac_google_namespace@::LogMessage::SendToLog)
929 // We want the special COUNTER value available for LOG_EVERY_X()'ed messages
930 enum PRIVATE_Counter {COUNTER};
932 #ifdef GLOG_NO_ABBREVIATED_SEVERITIES
933 // wingdi.h defines ERROR to be 0. When we call LOG(ERROR), it gets
934 // substituted with 0, and it expands to COMPACT_GOOGLE_LOG_0. To allow us
935 // to keep using this syntax, we define this macro to do the same thing
936 // as COMPACT_GOOGLE_LOG_ERROR.
937 #define COMPACT_GOOGLE_LOG_0 COMPACT_GOOGLE_LOG_ERROR
938 #define SYSLOG_0 SYSLOG_ERROR
939 #define LOG_TO_STRING_0 LOG_TO_STRING_ERROR
940 // Needed for LOG_IS_ON(ERROR).
941 const LogSeverity GLOG_0 = GLOG_ERROR;
943 // Users may include windows.h after logging.h without
944 // GLOG_NO_ABBREVIATED_SEVERITIES nor WIN32_LEAN_AND_MEAN.
945 // For this case, we cannot detect if ERROR is defined before users
946 // actually use ERROR. Let's make an undefined symbol to warn users.
947 # define GLOG_ERROR_MSG ERROR_macro_is_defined_Define_GLOG_NO_ABBREVIATED_SEVERITIES_before_including_logging_h_See_the_document_for_detail
948 # define COMPACT_GOOGLE_LOG_0 GLOG_ERROR_MSG
949 # define SYSLOG_0 GLOG_ERROR_MSG
950 # define LOG_TO_STRING_0 GLOG_ERROR_MSG
951 # define GLOG_0 GLOG_ERROR_MSG
954 // Plus some debug-logging macros that get compiled to nothing for production
958 #define DLOG(severity) LOG(severity)
959 #define DVLOG(verboselevel) VLOG(verboselevel)
960 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
961 #define DLOG_EVERY_N(severity, n) LOG_EVERY_N(severity, n)
962 #define DLOG_IF_EVERY_N(severity, condition, n) \
963 LOG_IF_EVERY_N(severity, condition, n)
964 #define DLOG_ASSERT(condition) LOG_ASSERT(condition)
966 // debug-only checking. not executed in NDEBUG mode.
967 #define DCHECK(condition) CHECK(condition)
968 #define DCHECK_EQ(val1, val2) CHECK_EQ(val1, val2)
969 #define DCHECK_NE(val1, val2) CHECK_NE(val1, val2)
970 #define DCHECK_LE(val1, val2) CHECK_LE(val1, val2)
971 #define DCHECK_LT(val1, val2) CHECK_LT(val1, val2)
972 #define DCHECK_GE(val1, val2) CHECK_GE(val1, val2)
973 #define DCHECK_GT(val1, val2) CHECK_GT(val1, val2)
974 #define DCHECK_NOTNULL(val) CHECK_NOTNULL(val)
975 #define DCHECK_STREQ(str1, str2) CHECK_STREQ(str1, str2)
976 #define DCHECK_STRCASEEQ(str1, str2) CHECK_STRCASEEQ(str1, str2)
977 #define DCHECK_STRNE(str1, str2) CHECK_STRNE(str1, str2)
978 #define DCHECK_STRCASENE(str1, str2) CHECK_STRCASENE(str1, str2)
982 #define DLOG(severity) \
983 true ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
985 #define DVLOG(verboselevel) \
986 (true || !VLOG_IS_ON(verboselevel)) ?\
987 (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(INFO)
989 #define DLOG_IF(severity, condition) \
990 (true || !(condition)) ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
992 #define DLOG_EVERY_N(severity, n) \
993 true ? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
995 #define DLOG_IF_EVERY_N(severity, condition, n) \
996 (true || !(condition))? (void) 0 : @ac_google_namespace@::LogMessageVoidify() & LOG(severity)
998 #define DLOG_ASSERT(condition) \
999 true ? (void) 0 : LOG_ASSERT(condition)
1001 // MSVC warning C4127: conditional expression is constant
1002 #define DCHECK(condition) \
1003 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1005 GLOG_MSVC_POP_WARNING() CHECK(condition)
1007 #define DCHECK_EQ(val1, val2) \
1008 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1010 GLOG_MSVC_POP_WARNING() CHECK_EQ(val1, val2)
1012 #define DCHECK_NE(val1, val2) \
1013 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1015 GLOG_MSVC_POP_WARNING() CHECK_NE(val1, val2)
1017 #define DCHECK_LE(val1, val2) \
1018 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1020 GLOG_MSVC_POP_WARNING() CHECK_LE(val1, val2)
1022 #define DCHECK_LT(val1, val2) \
1023 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1025 GLOG_MSVC_POP_WARNING() CHECK_LT(val1, val2)
1027 #define DCHECK_GE(val1, val2) \
1028 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1030 GLOG_MSVC_POP_WARNING() CHECK_GE(val1, val2)
1032 #define DCHECK_GT(val1, val2) \
1033 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1035 GLOG_MSVC_POP_WARNING() CHECK_GT(val1, val2)
1037 #define DCHECK_NOTNULL(val) (val)
1039 #define DCHECK_STREQ(str1, str2) \
1040 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1042 GLOG_MSVC_POP_WARNING() CHECK_STREQ(str1, str2)
1044 #define DCHECK_STRCASEEQ(str1, str2) \
1045 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1047 GLOG_MSVC_POP_WARNING() CHECK_STRCASEEQ(str1, str2)
1049 #define DCHECK_STRNE(str1, str2) \
1050 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1052 GLOG_MSVC_POP_WARNING() CHECK_STRNE(str1, str2)
1054 #define DCHECK_STRCASENE(str1, str2) \
1055 GLOG_MSVC_PUSH_DISABLE_WARNING(4127) \
1057 GLOG_MSVC_POP_WARNING() CHECK_STRCASENE(str1, str2)
1061 // Log only in verbose mode.
1063 #define VLOG(verboselevel) LOG_IF(INFO, VLOG_IS_ON(verboselevel))
1065 #define VLOG_IF(verboselevel, condition) \
1066 LOG_IF(INFO, (condition) && VLOG_IS_ON(verboselevel))
1068 #define VLOG_EVERY_N(verboselevel, n) \
1069 LOG_IF_EVERY_N(INFO, VLOG_IS_ON(verboselevel), n)
1071 #define VLOG_IF_EVERY_N(verboselevel, condition, n) \
1072 LOG_IF_EVERY_N(INFO, (condition) && VLOG_IS_ON(verboselevel), n)
1074 namespace base_logging {
1076 // LogMessage::LogStream is a std::ostream backed by this streambuf.
1077 // This class ignores overflow and leaves two bytes at the end of the
1078 // buffer to allow for a '\n' and '\0'.
1079 class LogStreamBuf : public std::streambuf {
1081 // REQUIREMENTS: "len" must be >= 2 to account for the '\n' and '\n'.
1082 LogStreamBuf(char *buf, int len) {
1083 setp(buf, buf + len - 2);
1085 // This effectively ignores overflow.
1086 virtual int_type overflow(int_type ch) {
1090 // Legacy public ostrstream method.
1091 size_t pcount() const { return pptr() - pbase(); }
1092 char* pbase() const { return std::streambuf::pbase(); }
1095 } // namespace base_logging
1098 // This class more or less represents a particular log message. You
1099 // create an instance of LogMessage and then stream stuff to it.
1100 // When you finish streaming to it, ~LogMessage is called and the
1101 // full message gets streamed to the appropriate destination.
1103 // You shouldn't actually use LogMessage's constructor to log things,
1104 // though. You should use the LOG() macro (and variants thereof)
1106 class GOOGLE_GLOG_DLL_DECL LogMessage {
1109 // Passing kNoLogPrefix for the line number disables the
1110 // log-message prefix. Useful for using the LogMessage
1111 // infrastructure as a printing utility. See also the --log_prefix
1112 // flag for controlling the log-message prefix on an
1113 // application-wide basis.
1117 // LogStream inherit from non-DLL-exported class (std::ostrstream)
1118 // and VC++ produces a warning for this situation.
1119 // However, MSDN says "C4275 can be ignored in Microsoft Visual C++
1120 // 2005 if you are deriving from a type in the Standard C++ Library"
1121 // http://msdn.microsoft.com/en-us/library/3tdb471s(VS.80).aspx
1122 // Let's just ignore the warning.
1124 # pragma warning(disable: 4275)
1126 class GOOGLE_GLOG_DLL_DECL LogStream : public std::ostream {
1128 # pragma warning(default: 4275)
1131 LogStream(char *buf, int len, int ctr)
1132 : std::ostream(NULL),
1133 streambuf_(buf, len),
1139 int ctr() const { return ctr_; }
1140 void set_ctr(int ctr) { ctr_ = ctr; }
1141 LogStream* self() const { return self_; }
1143 // Legacy std::streambuf methods.
1144 size_t pcount() const { return streambuf_.pcount(); }
1145 char* pbase() const { return streambuf_.pbase(); }
1146 char* str() const { return pbase(); }
1149 base_logging::LogStreamBuf streambuf_;
1150 int ctr_; // Counter hack (for the LOG_EVERY_X() macro)
1151 LogStream *self_; // Consistency check hack
1155 // icc 8 requires this typedef to avoid an internal compiler error.
1156 typedef void (LogMessage::*SendMethod)();
1158 LogMessage(const char* file, int line, LogSeverity severity, int ctr,
1159 SendMethod send_method);
1161 // Two special constructors that generate reduced amounts of code at
1162 // LOG call sites for common cases.
1164 // Used for LOG(INFO): Implied are:
1165 // severity = INFO, ctr = 0, send_method = &LogMessage::SendToLog.
1167 // Using this constructor instead of the more complex constructor above
1168 // saves 19 bytes per call site.
1169 LogMessage(const char* file, int line);
1171 // Used for LOG(severity) where severity != INFO. Implied
1172 // are: ctr = 0, send_method = &LogMessage::SendToLog
1174 // Using this constructor instead of the more complex constructor above
1175 // saves 17 bytes per call site.
1176 LogMessage(const char* file, int line, LogSeverity severity);
1178 // Constructor to log this message to a specified sink (if not NULL).
1179 // Implied are: ctr = 0, send_method = &LogMessage::SendToSinkAndLog if
1180 // also_send_to_log is true, send_method = &LogMessage::SendToSink otherwise.
1181 LogMessage(const char* file, int line, LogSeverity severity, LogSink* sink,
1182 bool also_send_to_log);
1184 // Constructor where we also give a vector<string> pointer
1185 // for storing the messages (if the pointer is not NULL).
1186 // Implied are: ctr = 0, send_method = &LogMessage::SaveOrSendToLog.
1187 LogMessage(const char* file, int line, LogSeverity severity,
1188 std::vector<std::string>* outvec);
1190 // Constructor where we also give a string pointer for storing the
1191 // message (if the pointer is not NULL). Implied are: ctr = 0,
1192 // send_method = &LogMessage::WriteToStringAndLog.
1193 LogMessage(const char* file, int line, LogSeverity severity,
1194 std::string* message);
1196 // A special constructor used for check failures
1197 LogMessage(const char* file, int line, const CheckOpString& result);
1201 // Flush a buffered message to the sink set in the constructor. Always
1202 // called by the destructor, it may also be called from elsewhere if
1203 // needed. Only the first call is actioned; any later ones are ignored.
1206 // An arbitrary limit on the length of a single log message. This
1207 // is so that streaming can be done more efficiently.
1208 static const size_t kMaxLogMessageLen;
1210 // Theses should not be called directly outside of logging.*,
1211 // only passed as SendMethod arguments to other LogMessage methods:
1212 void SendToLog(); // Actually dispatch to the logs
1213 void SendToSyslogAndLog(); // Actually dispatch to syslog and the logs
1215 // Call abort() or similar to perform LOG(FATAL) crash.
1216 static void Fail() @ac_cv___attribute___noreturn@;
1218 std::ostream& stream();
1220 int preserved_errno() const;
1222 // Must be called without the log_mutex held. (L < log_mutex)
1223 static int64 num_messages(int severity);
1225 struct LogMessageData;
1228 // Fully internal SendMethod cases:
1229 void SendToSinkAndLog(); // Send to sink if provided and dispatch to the logs
1230 void SendToSink(); // Send to sink if provided, do nothing otherwise.
1232 // Write to string if provided and dispatch to the logs.
1233 void WriteToStringAndLog();
1235 void SaveOrSendToLog(); // Save to stringvec if provided, else to logs
1237 void Init(const char* file, int line, LogSeverity severity,
1238 void (LogMessage::*send_method)());
1240 // Used to fill in crash information during LOG(FATAL) failures.
1241 void RecordCrashReason(glog_internal_namespace_::CrashReason* reason);
1243 // Counts of messages sent at each priority:
1244 static int64 num_messages_[NUM_SEVERITIES]; // under log_mutex
1246 // We keep the data in a separate struct so that each instance of
1247 // LogMessage uses less stack space.
1248 LogMessageData* allocated_;
1249 LogMessageData* data_;
1251 friend class LogDestination;
1253 LogMessage(const LogMessage&);
1254 void operator=(const LogMessage&);
1257 // This class happens to be thread-hostile because all instances share
1258 // a single data buffer, but since it can only be created just before
1259 // the process dies, we don't worry so much.
1260 class GOOGLE_GLOG_DLL_DECL LogMessageFatal : public LogMessage {
1262 LogMessageFatal(const char* file, int line);
1263 LogMessageFatal(const char* file, int line, const CheckOpString& result);
1264 ~LogMessageFatal() @ac_cv___attribute___noreturn@;
1267 // A non-macro interface to the log facility; (useful
1268 // when the logging level is not a compile-time constant).
1269 inline void LogAtLevel(int const severity, std::string const &msg) {
1270 LogMessage(__FILE__, __LINE__, severity).stream() << msg;
1273 // A macro alternative of LogAtLevel. New code may want to use this
1274 // version since there are two advantages: 1. this version outputs the
1275 // file name and the line number where this macro is put like other
1276 // LOG macros, 2. this macro can be used as C++ stream.
1277 #define LOG_AT_LEVEL(severity) @ac_google_namespace@::LogMessage(__FILE__, __LINE__, severity).stream()
1279 // A small helper for CHECK_NOTNULL().
1280 template <typename T>
1281 T* CheckNotNull(const char *file, int line, const char *names, T* t) {
1283 LogMessageFatal(file, line, new std::string(names));
1288 // Allow folks to put a counter in the LOG_EVERY_X()'ed messages. This
1289 // only works if ostream is a LogStream. If the ostream is not a
1290 // LogStream you'll get an assert saying as much at runtime.
1291 GOOGLE_GLOG_DLL_DECL std::ostream& operator<<(std::ostream &os,
1292 const PRIVATE_Counter&);
1295 // Derived class for PLOG*() above.
1296 class GOOGLE_GLOG_DLL_DECL ErrnoLogMessage : public LogMessage {
1299 ErrnoLogMessage(const char* file, int line, LogSeverity severity, int ctr,
1300 void (LogMessage::*send_method)());
1302 // Postpends ": strerror(errno) [errno]".
1306 ErrnoLogMessage(const ErrnoLogMessage&);
1307 void operator=(const ErrnoLogMessage&);
1311 // This class is used to explicitly ignore values in the conditional
1312 // logging macros. This avoids compiler warnings like "value computed
1313 // is not used" and "statement has no effect".
1315 class GOOGLE_GLOG_DLL_DECL LogMessageVoidify {
1317 LogMessageVoidify() { }
1318 // This has to be an operator with a precedence lower than << but
1320 void operator&(std::ostream&) { }
1324 // Flushes all log files that contains messages that are at least of
1325 // the specified severity level. Thread-safe.
1326 GOOGLE_GLOG_DLL_DECL void FlushLogFiles(LogSeverity min_severity);
1328 // Flushes all log files that contains messages that are at least of
1329 // the specified severity level. Thread-hostile because it ignores
1330 // locking -- used for catastrophic failures.
1331 GOOGLE_GLOG_DLL_DECL void FlushLogFilesUnsafe(LogSeverity min_severity);
1334 // Set the destination to which a particular severity level of log
1335 // messages is sent. If base_filename is "", it means "don't log this
1336 // severity". Thread-safe.
1338 GOOGLE_GLOG_DLL_DECL void SetLogDestination(LogSeverity severity,
1339 const char* base_filename);
1342 // Set the basename of the symlink to the latest log file at a given
1343 // severity. If symlink_basename is empty, do not make a symlink. If
1344 // you don't call this function, the symlink basename is the
1345 // invocation name of the program. Thread-safe.
1347 GOOGLE_GLOG_DLL_DECL void SetLogSymlink(LogSeverity severity,
1348 const char* symlink_basename);
1351 // Used to send logs to some other kind of destination
1352 // Users should subclass LogSink and override send to do whatever they want.
1353 // Implementations must be thread-safe because a shared instance will
1354 // be called from whichever thread ran the LOG(XXX) line.
1355 class GOOGLE_GLOG_DLL_DECL LogSink {
1359 // Sink's logging logic (message_len is such as to exclude '\n' at the end).
1360 // This method can't use LOG() or CHECK() as logging system mutex(s) are held
1361 // during this call.
1362 virtual void send(LogSeverity severity, const char* full_filename,
1363 const char* base_filename, int line,
1364 const struct ::tm* tm_time,
1365 const char* message, size_t message_len) = 0;
1367 // Redefine this to implement waiting for
1368 // the sink's logging logic to complete.
1369 // It will be called after each send() returns,
1370 // but before that LogMessage exits or crashes.
1371 // By default this function does nothing.
1372 // Using this function one can implement complex logic for send()
1373 // that itself involves logging; and do all this w/o causing deadlocks and
1374 // inconsistent rearrangement of log messages.
1375 // E.g. if a LogSink has thread-specific actions, the send() method
1376 // can simply add the message to a queue and wake up another thread that
1377 // handles real logging while itself making some LOG() calls;
1378 // WaitTillSent() can be implemented to wait for that logic to complete.
1379 // See our unittest for an example.
1380 virtual void WaitTillSent();
1382 // Returns the normal text output of the log message.
1383 // Can be useful to implement send().
1384 static std::string ToString(LogSeverity severity, const char* file, int line,
1385 const struct ::tm* tm_time,
1386 const char* message, size_t message_len);
1389 // Add or remove a LogSink as a consumer of logging data. Thread-safe.
1390 GOOGLE_GLOG_DLL_DECL void AddLogSink(LogSink *destination);
1391 GOOGLE_GLOG_DLL_DECL void RemoveLogSink(LogSink *destination);
1394 // Specify an "extension" added to the filename specified via
1395 // SetLogDestination. This applies to all severity levels. It's
1396 // often used to append the port we're listening on to the logfile
1397 // name. Thread-safe.
1399 GOOGLE_GLOG_DLL_DECL void SetLogFilenameExtension(
1400 const char* filename_extension);
1403 // Make it so that all log messages of at least a particular severity
1404 // are logged to stderr (in addition to logging to the usual log
1405 // file(s)). Thread-safe.
1407 GOOGLE_GLOG_DLL_DECL void SetStderrLogging(LogSeverity min_severity);
1410 // Make it so that all log messages go only to stderr. Thread-safe.
1412 GOOGLE_GLOG_DLL_DECL void LogToStderr();
1415 // Make it so that all log messages of at least a particular severity are
1416 // logged via email to a list of addresses (in addition to logging to the
1417 // usual log file(s)). The list of addresses is just a string containing
1418 // the email addresses to send to (separated by spaces, say). Thread-safe.
1420 GOOGLE_GLOG_DLL_DECL void SetEmailLogging(LogSeverity min_severity,
1421 const char* addresses);
1423 // A simple function that sends email. dest is a commma-separated
1424 // list of addressess. Thread-safe.
1425 GOOGLE_GLOG_DLL_DECL bool SendEmail(const char *dest,
1426 const char *subject, const char *body);
1428 GOOGLE_GLOG_DLL_DECL const std::vector<std::string>& GetLoggingDirectories();
1430 // For tests only: Clear the internal [cached] list of logging directories to
1431 // force a refresh the next time GetLoggingDirectories is called.
1433 void TestOnly_ClearLoggingDirectoriesList();
1435 // Returns a set of existing temporary directories, which will be a
1436 // subset of the directories returned by GetLogginDirectories().
1438 GOOGLE_GLOG_DLL_DECL void GetExistingTempDirectories(
1439 std::vector<std::string>* list);
1441 // Print any fatal message again -- useful to call from signal handler
1442 // so that the last thing in the output is the fatal message.
1443 // Thread-hostile, but a race is unlikely.
1444 GOOGLE_GLOG_DLL_DECL void ReprintFatalMessage();
1446 // Truncate a log file that may be the append-only output of multiple
1447 // processes and hence can't simply be renamed/reopened (typically a
1448 // stdout/stderr). If the file "path" is > "limit" bytes, copy the
1449 // last "keep" bytes to offset 0 and truncate the rest. Since we could
1450 // be racing with other writers, this approach has the potential to
1451 // lose very small amounts of data. For security, only follow symlinks
1452 // if the path is /proc/self/fd/*
1453 GOOGLE_GLOG_DLL_DECL void TruncateLogFile(const char *path,
1454 int64 limit, int64 keep);
1456 // Truncate stdout and stderr if they are over the value specified by
1457 // --max_log_size; keep the final 1MB. This function has the same
1458 // race condition as TruncateLogFile.
1459 GOOGLE_GLOG_DLL_DECL void TruncateStdoutStderr();
1461 // Return the string representation of the provided LogSeverity level.
1463 GOOGLE_GLOG_DLL_DECL const char* GetLogSeverityName(LogSeverity severity);
1465 // ---------------------------------------------------------------------
1466 // Implementation details that are not useful to most clients
1467 // ---------------------------------------------------------------------
1469 // A Logger is the interface used by logging modules to emit entries
1470 // to a log. A typical implementation will dump formatted data to a
1471 // sequence of files. We also provide interfaces that will forward
1472 // the data to another thread so that the invoker never blocks.
1473 // Implementations should be thread-safe since the logging system
1474 // will write to them from multiple threads.
1478 class GOOGLE_GLOG_DLL_DECL Logger {
1482 // Writes "message[0,message_len-1]" corresponding to an event that
1483 // occurred at "timestamp". If "force_flush" is true, the log file
1484 // is flushed immediately.
1486 // The input message has already been formatted as deemed
1487 // appropriate by the higher level logging facility. For example,
1488 // textual log messages already contain timestamps, and the
1489 // file:linenumber header.
1490 virtual void Write(bool force_flush,
1492 const char* message,
1493 int message_len) = 0;
1495 // Flush any buffered messages
1496 virtual void Flush() = 0;
1498 // Get the current LOG file size.
1499 // The returned value is approximate since some
1500 // logged data may not have been flushed to disk yet.
1501 virtual uint32 LogSize() = 0;
1504 // Get the logger for the specified severity level. The logger
1505 // remains the property of the logging module and should not be
1506 // deleted by the caller. Thread-safe.
1507 extern GOOGLE_GLOG_DLL_DECL Logger* GetLogger(LogSeverity level);
1509 // Set the logger for the specified severity level. The logger
1510 // becomes the property of the logging module and should not
1511 // be deleted by the caller. Thread-safe.
1512 extern GOOGLE_GLOG_DLL_DECL void SetLogger(LogSeverity level, Logger* logger);
1516 // glibc has traditionally implemented two incompatible versions of
1517 // strerror_r(). There is a poorly defined convention for picking the
1518 // version that we want, but it is not clear whether it even works with
1519 // all versions of glibc.
1520 // So, instead, we provide this wrapper that automatically detects the
1521 // version that is in use, and then implements POSIX semantics.
1522 // N.B. In addition to what POSIX says, we also guarantee that "buf" will
1523 // be set to an empty string, if this function failed. This means, in most
1524 // cases, you do not need to check the error code and you can directly
1525 // use the value of "buf". It will never have an undefined value.
1526 GOOGLE_GLOG_DLL_DECL int posix_strerror_r(int err, char *buf, size_t len);
1529 // A class for which we define operator<<, which does nothing.
1530 class GOOGLE_GLOG_DLL_DECL NullStream : public LogMessage::LogStream {
1532 // Initialize the LogStream so the messages can be written somewhere
1533 // (they'll never be actually displayed). This will be needed if a
1534 // NullStream& is implicitly converted to LogStream&, in which case
1535 // the overloaded NullStream::operator<< will not be invoked.
1536 NullStream() : LogMessage::LogStream(message_buffer_, 1, 0) { }
1537 NullStream(const char* /*file*/, int /*line*/,
1538 const CheckOpString& /*result*/) :
1539 LogMessage::LogStream(message_buffer_, 1, 0) { }
1540 NullStream &stream() { return *this; }
1542 // A very short buffer for messages (which we discard anyway). This
1543 // will be needed if NullStream& converted to LogStream& (e.g. as a
1544 // result of a conditional expression).
1545 char message_buffer_[2];
1548 // Do nothing. This operator is inline, allowing the message to be
1549 // compiled away. The message will not be compiled away if we do
1550 // something like (flag ? LOG(INFO) : LOG(ERROR)) << message; when
1551 // SKIP_LOG=WARNING. In those cases, NullStream will be implicitly
1552 // converted to LogStream and the message will be computed and then
1553 // quietly discarded.
1555 inline NullStream& operator<<(NullStream &str, const T &) { return str; }
1557 // Similar to NullStream, but aborts the program (without stack
1558 // trace), like LogMessageFatal.
1559 class GOOGLE_GLOG_DLL_DECL NullStreamFatal : public NullStream {
1561 NullStreamFatal() { }
1562 NullStreamFatal(const char* file, int line, const CheckOpString& result) :
1563 NullStream(file, line, result) { }
1564 @ac_cv___attribute___noreturn@ ~NullStreamFatal() { _exit(1); }
1567 // Install a signal handler that will dump signal information and a stack
1568 // trace when the program crashes on certain signals. We'll install the
1569 // signal handler for the following signals.
1571 // SIGSEGV, SIGILL, SIGFPE, SIGABRT, SIGBUS, and SIGTERM.
1573 // By default, the signal handler will write the failure dump to the
1574 // standard error. You can customize the destination by installing your
1575 // own writer function by InstallFailureWriter() below.
1577 // Note on threading:
1579 // The function should be called before threads are created, if you want
1580 // to use the failure signal handler for all threads. The stack trace
1581 // will be shown only for the thread that receives the signal. In other
1582 // words, stack traces of other threads won't be shown.
1583 GOOGLE_GLOG_DLL_DECL void InstallFailureSignalHandler();
1585 // Installs a function that is used for writing the failure dump. "data"
1586 // is the pointer to the beginning of a message to be written, and "size"
1587 // is the size of the message. You should not expect the data is
1588 // terminated with '\0'.
1589 GOOGLE_GLOG_DLL_DECL void InstallFailureWriter(
1590 void (*writer)(const char* data, int size));
1592 @ac_google_end_namespace@
1594 #endif // _LOGGING_H_