/usr/include/mongo/util/log.h is in mongodb-dev 1:2.4.9-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 | // @file log.h
/* Copyright 2009 10gen Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <string.h>
#include <sstream>
#include <errno.h>
#include <vector>
#include <boost/shared_ptr.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/thread/tss.hpp>
#include "mongo/base/status.h"
#include "mongo/bson/util/builder.h"
#include "mongo/util/concurrency/mutex.h"
#include "mongo/util/debug_util.h"
#include "mongo/util/exit_code.h"
#ifndef _WIN32
#include <syslog.h>
#endif
namespace mongo {
enum ExitCode;
// using negative numbers so these are always less than ::mongo::loglevel (see MONGO_LOG)
enum LogLevel { LL_DEBUG=-1000 , LL_INFO , LL_NOTICE , LL_WARNING , LL_ERROR , LL_SEVERE };
inline const char * logLevelToString( LogLevel l ) {
switch ( l ) {
case LL_DEBUG:
case LL_INFO:
case LL_NOTICE:
return "";
case LL_WARNING:
return "warning" ;
case LL_ERROR:
return "ERROR";
case LL_SEVERE:
return "SEVERE";
default:
return "UNKNOWN";
}
}
#ifndef _WIN32
inline const int logLevelToSysLogLevel( LogLevel l) {
switch ( l ) {
case LL_DEBUG:
return LOG_DEBUG;
case LL_INFO:
return LOG_INFO;
case LL_NOTICE:
return LOG_NOTICE;
case LL_WARNING:
return LOG_WARNING;
case LL_ERROR:
return LOG_ERR;
case LL_SEVERE:
return LOG_EMERG;
default:
return LL_INFO;
}
}
#endif
class LabeledLevel {
public:
LabeledLevel( int level ) : _level( level ) {}
LabeledLevel( const char* label, int level ) : _label( label ), _level( level ) {}
LabeledLevel( const string& label, int level ) : _label( label ), _level( level ) {}
LabeledLevel operator+( int i ) const {
return LabeledLevel( _label, _level + i );
}
LabeledLevel operator+( const char* label ) const {
if( _label == "" )
return LabeledLevel( label, _level );
return LabeledLevel( _label + string("::") + label, _level );
}
LabeledLevel operator+( const std::string& label ) const {
return LabeledLevel( _label + string("::") + label, _level );
}
LabeledLevel operator-( int i ) const {
return LabeledLevel( _label, _level - i );
}
const string& getLabel() const { return _label; }
int getLevel() const { return _level; }
private:
string _label;
int _level;
};
inline bool operator<( const LabeledLevel& ll, const int i ) { return ll.getLevel() < i; }
inline bool operator<( const int i, const LabeledLevel& ll ) { return i < ll.getLevel(); }
inline bool operator>( const LabeledLevel& ll, const int i ) { return ll.getLevel() > i; }
inline bool operator>( const int i, const LabeledLevel& ll ) { return i > ll.getLevel(); }
inline bool operator<=( const LabeledLevel& ll, const int i ) { return ll.getLevel() <= i; }
inline bool operator<=( const int i, const LabeledLevel& ll ) { return i <= ll.getLevel(); }
inline bool operator>=( const LabeledLevel& ll, const int i ) { return ll.getLevel() >= i; }
inline bool operator>=( const int i, const LabeledLevel& ll ) { return i >= ll.getLevel(); }
inline bool operator==( const LabeledLevel& ll, const int i ) { return ll.getLevel() == i; }
inline bool operator==( const int i, const LabeledLevel& ll ) { return i == ll.getLevel(); }
class LazyString {
public:
virtual ~LazyString() {}
virtual string val() const = 0;
};
// Utility class for stringifying object only when val() called.
template< class T >
class LazyStringImpl : public LazyString {
public:
LazyStringImpl( const T &t ) : t_( t ) {}
virtual string val() const { return t_.toString(); }
private:
const T& t_;
};
class Tee {
public:
virtual ~Tee() {}
virtual void write(LogLevel level , const string& str) = 0;
};
class Nullstream {
public:
virtual Nullstream& operator<< (Tee* tee) {
return *this;
}
virtual ~Nullstream() {}
virtual Nullstream& operator<<(const char *) {
return *this;
}
virtual Nullstream& operator<<(const string& ) {
return *this;
}
virtual Nullstream& operator<<(const StringData& ) {
return *this;
}
virtual Nullstream& operator<<(char *) {
return *this;
}
virtual Nullstream& operator<<(char) {
return *this;
}
virtual Nullstream& operator<<(int) {
return *this;
}
virtual Nullstream& operator<<(ExitCode) {
return *this;
}
virtual Nullstream& operator<<(unsigned long) {
return *this;
}
virtual Nullstream& operator<<(long) {
return *this;
}
virtual Nullstream& operator<<(unsigned) {
return *this;
}
virtual Nullstream& operator<<(unsigned short) {
return *this;
}
virtual Nullstream& operator<<(double) {
return *this;
}
virtual Nullstream& operator<<(void *) {
return *this;
}
virtual Nullstream& operator<<(const void *) {
return *this;
}
virtual Nullstream& operator<<(long long) {
return *this;
}
virtual Nullstream& operator<<(unsigned long long) {
return *this;
}
virtual Nullstream& operator<<(bool) {
return *this;
}
virtual Nullstream& operator<<(const LazyString&) {
return *this;
}
template< class T >
Nullstream& operator<<(T *t) {
return operator<<( static_cast<void*>( t ) );
}
template< class T >
Nullstream& operator<<(const T *t) {
return operator<<( static_cast<const void*>( t ) );
}
template< class T >
Nullstream& operator<<(const boost::shared_ptr<T> &p ) {
T * t = p.get();
if ( ! t )
*this << "null";
else
*this << *t;
return *this;
}
template< class T >
Nullstream& operator<<(const T &t) {
return operator<<( static_cast<const LazyString&>( LazyStringImpl< T >( t ) ) );
}
virtual Nullstream& operator<< (std::ostream& ( *endl )(std::ostream&)) {
return *this;
}
virtual Nullstream& operator<< (std::ios_base& (*hex)(std::ios_base&)) {
return *this;
}
virtual void flush(Tee *t = 0) {}
};
extern Nullstream nullstream;
class Logstream : public Nullstream {
static mongo::mutex mutex;
static int doneSetup;
std::stringstream ss;
int indent;
LogLevel logLevel;
static FILE* logfile;
static boost::scoped_ptr<std::ostream> stream;
static std::vector<Tee*> * globalTees;
static bool isSyslog;
public:
// Type for optional function for inserting context information in log messages. See
// registerExtraLogContextFn, below.
typedef void (*ExtraLogContextFn)(BufBuilder& builder);
static void logLockless( const StringData& s );
static void setLogFile(FILE* f);
#ifndef _WIN32
static void useSyslog(const char * name) {
std::cout << "using syslog ident: " << name << std::endl;
// openlog requires heap allocated non changing pointer
// this should only be called once per pragram execution
char * newName = (char *) malloc( strlen(name) + 1 );
strcpy( newName , name);
openlog( newName , LOG_PID | LOG_CONS | LOG_ODELAY , LOG_USER );
isSyslog = true;
}
#endif
static int magicNumber() { return 1717; }
static int getLogDesc() {
int fd = -1;
if (logfile != NULL)
#if defined(_WIN32)
// the ISO C++ conformant name is _fileno
fd = _fileno( logfile );
#else
fd = fileno( logfile );
#endif
return fd;
}
void flush(Tee *t = 0);
inline Nullstream& setLogLevel(LogLevel l) {
logLevel = l;
return *this;
}
/** note these are virtual */
Logstream& operator<<(const char *x) { ss << x; return *this; }
Logstream& operator<<(const string& x) { ss << x; return *this; }
Logstream& operator<<(const StringData& x) { ss << x; return *this; }
Logstream& operator<<(char *x) { ss << x; return *this; }
Logstream& operator<<(char x) { ss << x; return *this; }
Logstream& operator<<(int x) { ss << x; return *this; }
Logstream& operator<<(ExitCode x) { ss << x; return *this; }
Logstream& operator<<(long x) { ss << x; return *this; }
Logstream& operator<<(unsigned long x) { ss << x; return *this; }
Logstream& operator<<(unsigned x) { ss << x; return *this; }
Logstream& operator<<(unsigned short x){ ss << x; return *this; }
Logstream& operator<<(double x) { ss << x; return *this; }
Logstream& operator<<(void *x) { ss << x; return *this; }
Logstream& operator<<(const void *x) { ss << x; return *this; }
Logstream& operator<<(long long x) { ss << x; return *this; }
Logstream& operator<<(unsigned long long x) { ss << x; return *this; }
Logstream& operator<<(bool x) { ss << x; return *this; }
Logstream& operator<<(const LazyString& x) {
ss << x.val();
return *this;
}
Nullstream& operator<< (Tee* tee) {
ss << '\n';
flush(tee);
return *this;
}
Logstream& operator<< (std::ostream& ( *_endl )(std::ostream&)) {
ss << '\n';
flush(0);
return *this;
}
Logstream& operator<< (std::ios_base& (*_hex)(std::ios_base&)) {
ss << _hex;
return *this;
}
Logstream& prolog() {
return *this;
}
void addGlobalTee( Tee * t ) {
if ( ! globalTees )
globalTees = new std::vector<Tee*>();
globalTees->push_back( t );
}
void removeGlobalTee( Tee * tee );
void indentInc(){ indent++; }
void indentDec(){ indent--; }
int getIndent() const { return indent; }
// Replace any pre-existing function for appending context information to log lines with
// "contextFn". Returns Status::OK on first call, and ErrorCodes::AlreadyInitialized if
// called more than once. Returns ErrorCodes::BadValue if contextFn is NULL.
static Status registerExtraLogContextFn(ExtraLogContextFn contextFn);
private:
Logstream() {
indent = 0;
_init();
}
void _init() {
ss.str("");
logLevel = LL_INFO;
}
public:
static Logstream& get();
};
extern int logLevel;
extern int tlogLevel;
inline Nullstream& out( int level = 0 ) {
if ( level > logLevel )
return nullstream;
return Logstream::get();
}
/* flush the log stream if the log level is
at the specified level or higher. */
inline void logflush(int level = 0) {
if( level > logLevel )
Logstream::get().flush(0);
}
/* without prolog */
inline Nullstream& _log( int level = 0 ) {
if ( level > logLevel )
return nullstream;
return Logstream::get();
}
/** logging which we may not want during unit tests (dbtests) runs.
set tlogLevel to -1 to suppress tlog() output in a test program. */
Nullstream& tlog( int level = 0 );
// log if debug build or if at a certain level
inline Nullstream& dlog( int level ) {
if ( level <= logLevel || DEBUG_BUILD )
return Logstream::get().prolog();
return nullstream;
}
#define MONGO_LOG(level) \
( MONGO_likely( ::mongo::logLevel < (level) ) ) \
? ::mongo::nullstream : ::mongo::logWithLevel(level)
#define LOG MONGO_LOG
inline Nullstream& log() {
return Logstream::get().prolog();
}
// Use MONGO_LOG() instead of this
inline Nullstream& logWithLevel( int level ) {
if ( level > logLevel )
return nullstream;
return Logstream::get().prolog();
}
inline Nullstream& logWithLevel( LogLevel l ) {
return Logstream::get().prolog().setLogLevel( l );
}
inline Nullstream& logWithLevel( const LabeledLevel& ll ) {
Nullstream& stream = logWithLevel( ll.getLevel() );
if( ll.getLabel() != "" )
stream << "[" << ll.getLabel() << "] ";
return stream;
}
inline Nullstream& error() {
return logWithLevel( LL_ERROR );
}
inline Nullstream& warning() {
return logWithLevel( LL_WARNING );
}
/* default impl returns "" -- mongod overrides */
extern const char * (*getcurns)();
inline Nullstream& problem( int level = 0 ) {
if ( level > logLevel )
return nullstream;
Logstream& l = Logstream::get().prolog();
l << ' ' << getcurns() << ' ';
return l;
}
/**
log to a file rather than stdout
defined in assert_util.cpp
*/
bool initLogging( const string& logpath , bool append );
bool rotateLogs();
std::string toUtf8String(const std::wstring& wide);
/** output the error # and error message with prefix.
handy for use as parm in uassert/massert.
*/
string errnoWithPrefix( const char * prefix );
struct LogIndentLevel {
LogIndentLevel(){
Logstream::get().indentInc();
}
~LogIndentLevel(){
Logstream::get().indentDec();
}
};
extern Tee* const warnings; // Things put here go in serverStatus
extern Tee* const startupWarningsLog; // Things put here get reported in MMS
string errnoWithDescription(int errorcode = -1);
void rawOut( const string &s );
/**
* Write the current context (backtrace), along with the optional "msg".
*/
void logContext(const char *msg = NULL);
} // namespace mongo
|