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