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