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 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
|
// --------------------------------------------------------------------------
//
// File
// Name: Logging.h
// Purpose: Generic logging core routines declarations and macros
// Created: 2006/12/16
//
// --------------------------------------------------------------------------
#ifndef LOGGING__H
#define LOGGING__H
#include <assert.h>
#include <algorithm>
#include <cerrno>
#include <cstring>
#include <iomanip>
#include <list>
#include <sstream>
#include <vector>
#include "FileStream.h"
#define BOX_LOG(level, stuff) \
{ \
std::ostringstream _box_log_line; \
_box_log_line << stuff; \
Logging::Log(level, __FILE__, __LINE__, __FUNCTION__, \
Logging::UNCATEGORISED, _box_log_line.str()); \
}
#define BOX_LOG_CATEGORY(level, category, stuff) \
{ \
std::ostringstream _box_log_line; \
_box_log_line << stuff; \
Logging::Log(level, __FILE__, __LINE__, __FUNCTION__, \
category, _box_log_line.str()); \
}
#define BOX_SYSLOG(level, stuff) \
{ \
std::ostringstream _box_log_line; \
_box_log_line << stuff; \
Logging::LogToSyslog(level, __FILE__, __LINE__, __FUNCTION__, \
Logging::UNCATEGORISED, _box_log_line.str()); \
}
#define BOX_FATAL(stuff) BOX_LOG(Log::FATAL, stuff)
#define BOX_ERROR(stuff) BOX_LOG(Log::ERROR, stuff)
#define BOX_WARNING(stuff) BOX_LOG(Log::WARNING, stuff)
#define BOX_NOTICE(stuff) BOX_LOG(Log::NOTICE, stuff)
#define BOX_INFO(stuff) BOX_LOG(Log::INFO, stuff)
#define BOX_TRACE(stuff) BOX_LOG(Log::TRACE, stuff)
#define BOX_SYS_ERRNO_MESSAGE(error_number, stuff) \
stuff << ": " << std::strerror(error_number) << \
" (" << error_number << ")"
#define BOX_FILE_MESSAGE(filename, message) \
message << ": " << filename
#define BOX_SYS_FILE_ERRNO_MESSAGE(filename, error_number, message) \
BOX_SYS_ERRNO_MESSAGE(error_number, BOX_FILE_MESSAGE(filename, message))
#define BOX_SYS_ERROR_MESSAGE(stuff) \
BOX_SYS_ERRNO_MESSAGE(errno, stuff)
#define BOX_LOG_SYS_WARNING(stuff) \
BOX_WARNING(BOX_SYS_ERROR_MESSAGE(stuff))
#define BOX_LOG_SYS_ERROR(stuff) \
BOX_ERROR(BOX_SYS_ERROR_MESSAGE(stuff))
#define BOX_LOG_SYS_ERRNO(error_number, stuff) \
BOX_ERROR(BOX_SYS_ERRNO_MESSAGE(error_number, stuff))
#define BOX_LOG_SYS_FATAL(stuff) \
BOX_FATAL(BOX_SYS_ERROR_MESSAGE(stuff))
#define THROW_SYS_ERROR_NUMBER(message, error_number, exception, subtype) \
THROW_EXCEPTION_MESSAGE(exception, subtype, \
BOX_SYS_ERRNO_MESSAGE(error_number, message))
#define THROW_SYS_ERROR(message, exception, subtype) \
THROW_SYS_ERROR_NUMBER(message, errno, exception, subtype)
#define THROW_SYS_FILE_ERROR(message, filename, exception, subtype) \
THROW_SYS_ERROR_NUMBER(BOX_FILE_MESSAGE(filename, message), \
errno, exception, subtype)
#define THROW_SYS_FILE_ERRNO(message, filename, error_number, exception, subtype) \
THROW_SYS_ERROR_NUMBER(BOX_FILE_MESSAGE(filename, message), \
error_number, exception, subtype)
#define THROW_FILE_ERROR(message, filename, exception, subtype) \
THROW_EXCEPTION_MESSAGE(exception, subtype, \
BOX_FILE_MESSAGE(filename, message))
#ifdef WIN32
#define BOX_WIN_ERRNO_MESSAGE(error_number, stuff) \
stuff << ": " << GetErrorMessage(error_number)
#define BOX_NATIVE_ERRNO_MESSAGE(error_number, stuff) \
BOX_WIN_ERRNO_MESSAGE(error_number, stuff)
#define BOX_LOG_WIN_ERROR(stuff) \
BOX_ERROR(BOX_WIN_ERRNO_MESSAGE(GetLastError(), stuff))
#define BOX_LOG_WIN_WARNING(stuff) \
BOX_WARNING(BOX_WIN_ERRNO_MESSAGE(GetLastError(), stuff))
#define BOX_LOG_WIN_ERROR_NUMBER(stuff, number) \
BOX_ERROR(BOX_WIN_ERRNO_MESSAGE(number, stuff))
#define BOX_LOG_WIN_WARNING_NUMBER(stuff, number) \
BOX_WARNING(BOX_WIN_ERRNO_MESSAGE(number, stuff))
#define BOX_LOG_NATIVE_ERROR(stuff) BOX_LOG_WIN_ERROR(stuff)
#define BOX_LOG_NATIVE_WARNING(stuff) BOX_LOG_WIN_WARNING(stuff)
#define THROW_WIN_ERROR_NUMBER(message, error_number, exception, subtype) \
THROW_EXCEPTION_MESSAGE(exception, subtype, \
BOX_WIN_ERRNO_MESSAGE(error_number, message))
#define THROW_WIN_FILE_ERRNO(message, filename, error_number, exception, subtype) \
THROW_WIN_ERROR_NUMBER(BOX_FILE_MESSAGE(filename, message), \
error_number, exception, subtype)
#define THROW_WIN_FILE_ERROR(message, filename, exception, subtype) \
THROW_WIN_FILE_ERRNO(message, filename, GetLastError(), \
exception, subtype)
#define EMU_ERRNO winerrno
#define THROW_EMU_ERROR(message, exception, subtype) \
THROW_EXCEPTION_MESSAGE(exception, subtype, \
BOX_NATIVE_ERRNO_MESSAGE(EMU_ERRNO, message))
#else
#define BOX_NATIVE_ERRNO_MESSAGE(error_number, stuff) \
BOX_SYS_ERRNO_MESSAGE(error_number, stuff)
#define BOX_LOG_NATIVE_ERROR(stuff) BOX_LOG_SYS_ERROR(stuff)
#define BOX_LOG_NATIVE_WARNING(stuff) BOX_LOG_SYS_WARNING(stuff)
#define EMU_ERRNO errno
#define THROW_EMU_ERROR(message, exception, subtype) \
THROW_EXCEPTION_MESSAGE(exception, subtype, \
BOX_SYS_ERRNO_MESSAGE(EMU_ERRNO, message))
#endif
#define THROW_EMU_FILE_ERROR(message, filename, exception, subtype) \
THROW_EMU_ERROR(BOX_FILE_MESSAGE(filename, message), \
exception, subtype)
#ifdef WIN32
# define BOX_SOCKET_ERROR_MESSAGE(_type, _name, _port, stuff) \
BOX_WIN_ERRNO_MESSAGE(WSAGetLastError(), stuff << " (type " << _type << \
", name " << _name << ", port " << _port << ")")
#else
# define BOX_SOCKET_ERROR_MESSAGE(_type, _name, _port, stuff) \
BOX_SYS_ERROR_MESSAGE(stuff << " (type " << _type << ", name " << _name << \
", port " << _port << ")")
#endif
#define BOX_FORMAT_HEX32(number) \
std::hex << \
std::showbase << \
std::internal << \
std::setw(10) << \
std::setfill('0') << \
(number) << \
std::dec
#define BOX_FORMAT_ACCOUNT(accno) \
BOX_FORMAT_HEX32(accno)
#define BOX_FORMAT_OBJECTID(objectid) \
std::hex << \
std::showbase << \
(objectid) << \
std::dec
#define BOX_FORMAT_TIMESPEC(timespec) \
timespec.tv_sec << \
"." << \
std::setw(6) << \
std::setfill('0') << \
timespec.tv_usec
#define BOX_FORMAT_MICROSECONDS(t) \
(int)((t) / 1000000) << "." << \
std::setw(3) << \
std::setfill('0') << \
(int)((t % 1000000) / 1000) << " seconds"
#undef ERROR
namespace Log
{
enum Level
{
NOTHING = 1,
FATAL,
ERROR,
WARNING,
NOTICE,
INFO,
TRACE,
EVERYTHING,
INVALID = -1
};
class Category {
private:
std::string mName;
public:
Category(const std::string& name)
: mName(name)
{ }
const std::string& ToString() { return mName; }
bool operator==(const Category& other) { return mName == other.mName; }
};
}
// --------------------------------------------------------------------------
//
// Class
// Name: Logger
// Purpose: Abstract base class for log targets
// Created: 2006/12/16
//
// --------------------------------------------------------------------------
class Logger
{
private:
Log::Level mCurrentLevel;
public:
Logger();
Logger(Log::Level level);
virtual ~Logger();
virtual bool Log(Log::Level level, const std::string& file, int line,
const std::string& function, const Log::Category& category,
const std::string& message) = 0;
void Filter(Log::Level level)
{
mCurrentLevel = level;
}
virtual const char* GetType() = 0;
Log::Level GetLevel() { return mCurrentLevel; }
bool IsEnabled(Log::Level level);
virtual void SetProgramName(const std::string& rProgramName) = 0;
class LevelGuard
{
private:
Logger& mLogger;
Log::Level mOldLevel;
public:
LevelGuard(Logger& Logger, Log::Level newLevel = Log::INVALID)
: mLogger(Logger)
{
mOldLevel = Logger.GetLevel();
if (newLevel != Log::INVALID)
{
Logger.Filter(newLevel);
}
}
~LevelGuard()
{
mLogger.Filter(mOldLevel);
}
};
};
// --------------------------------------------------------------------------
//
// Class
// Name: Console
// Purpose: Console logging target
// Created: 2006/12/16
//
// --------------------------------------------------------------------------
class Console : public Logger
{
private:
static bool sShowTag;
static bool sShowTime;
static bool sShowTimeMicros;
static bool sShowPID;
static std::string sTag;
public:
virtual bool Log(Log::Level level, const std::string& file, int line,
const std::string& function, const Log::Category& category,
const std::string& message);
virtual const char* GetType() { return "Console"; }
virtual void SetProgramName(const std::string& rProgramName);
static void SetShowTag(bool enabled);
static void SetShowTime(bool enabled);
static void SetShowTimeMicros(bool enabled);
static void SetShowPID(bool enabled);
static bool GetShowTag() { return sShowTag; }
class SettingsGuard
{
private:
bool mShowTag;
bool mShowTime;
bool mShowTimeMicros;
bool mShowPID;
std::string mTag;
public:
SettingsGuard()
: mShowTag(Console::sShowTag),
mShowTime(Console::sShowTime),
mShowTimeMicros(Console::sShowTimeMicros),
mShowPID(Console::sShowPID),
mTag(Console::sTag)
{ }
~SettingsGuard()
{
Console::SetShowTag(mShowTag);
Console::SetShowTime(mShowTime);
Console::SetShowTimeMicros(mShowTimeMicros);
Console::SetShowPID(mShowPID);
Console::sTag = mTag;
}
};
};
// --------------------------------------------------------------------------
//
// Class
// Name: Syslog
// Purpose: Syslog (or Windows Event Viewer) logging target
// Created: 2006/12/16
//
// --------------------------------------------------------------------------
class Syslog : public Logger
{
private:
std::string mName;
int mFacility;
public:
Syslog();
virtual ~Syslog();
virtual bool Log(Log::Level level, const std::string& file, int line,
const std::string& function, const Log::Category& category,
const std::string& message);
virtual const char* GetType() { return "Syslog"; }
virtual void SetProgramName(const std::string& rProgramName);
virtual void SetFacility(int facility);
virtual void Shutdown();
static int GetNamedFacility(const std::string& rFacility);
};
// --------------------------------------------------------------------------
//
// Class
// Name: Capture
// Purpose: Keeps log messages for analysis in tests.
// Created: 2014/03/08
//
// --------------------------------------------------------------------------
class Capture : public Logger
{
public:
struct Message
{
Message(const Log::Category& category)
: mCategory(category) { }
Log::Level level;
std::string file;
int line;
std::string function;
Log::Category mCategory;
std::string message;
};
private:
std::vector<Message> mMessages;
public:
virtual ~Capture() { }
virtual bool Log(Log::Level level, const std::string& file, int line,
const std::string& function, const Log::Category& category,
const std::string& message)
{
Message msg(category);
msg.level = level;
msg.file = file;
msg.line = line;
msg.function = function;
msg.message = message;
mMessages.push_back(msg);
return true;
}
virtual const char* GetType() { return "Capture"; }
virtual void SetProgramName(const std::string& rProgramName) { }
const std::vector<Message>& GetMessages() const { return mMessages; }
std::string GetString() const
{
std::ostringstream oss;
for (std::vector<Message>::const_iterator i = mMessages.begin();
i != mMessages.end(); i++)
{
oss << i->message << "\n";
}
return oss.str();
}
};
// Forward declaration
class HideFileGuard;
// --------------------------------------------------------------------------
//
// Class
// Name: Logging
// Purpose: Static logging helper, keeps track of enabled loggers
// and distributes log messages to them.
// Created: 2006/12/16
//
// --------------------------------------------------------------------------
class Logging
{
private:
static std::vector<Logger*> sLoggers;
static bool sLogToSyslog, sLogToConsole;
static std::string sContext;
static bool sContextSet;
static Console* spConsole;
static Syslog* spSyslog;
static Logging sGlobalLogging;
static std::string sProgramName;
static std::auto_ptr<HideFileGuard> sapHideFileGuard;
public:
Logging ();
~Logging();
static void ToSyslog (bool enabled);
static void ToConsole (bool enabled);
static void FilterSyslog (Log::Level level);
static void FilterConsole (Log::Level level);
static void Add (Logger* pNewLogger);
static void Remove (Logger* pOldLogger);
static void Log(Log::Level level, const std::string& file, int line,
const std::string& function, const Log::Category& category,
const std::string& message);
static void LogToSyslog(Log::Level level, const std::string& rFile, int line,
const std::string& function, const Log::Category& category,
const std::string& message);
static void SetContext(std::string context);
static void ClearContext();
static Log::Level GetNamedLevel(const std::string& rName);
static void SetProgramName(const std::string& rProgramName);
static std::string GetProgramName() { return sProgramName; }
static void SetFacility(int facility);
static Console& GetConsole() { return *spConsole; }
static Syslog& GetSyslog() { return *spSyslog; }
class ShowTagOnConsole
{
private:
bool mOldShowTag;
public:
ShowTagOnConsole()
: mOldShowTag(Console::GetShowTag())
{
Console::SetShowTag(true);
}
~ShowTagOnConsole()
{
Console::SetShowTag(mOldShowTag);
}
};
class Tagger
{
private:
std::string mOldTag;
bool mReplace;
public:
Tagger()
: mOldTag(Logging::GetProgramName()),
mReplace(false)
{
}
Tagger(const std::string& rTempTag, bool replace = false)
: mOldTag(Logging::GetProgramName()),
mReplace(replace)
{
Change(rTempTag);
}
~Tagger()
{
Logging::SetProgramName(mOldTag);
}
void Change(const std::string& newTempTag)
{
if(mReplace || mOldTag.empty())
{
Logging::SetProgramName(newTempTag);
}
else
{
Logging::SetProgramName(mOldTag + " " + newTempTag);
}
}
};
class TempLoggerGuard
{
private:
Logger* mpLogger;
public:
TempLoggerGuard(Logger* pLogger)
: mpLogger(pLogger)
{
Logging::Add(mpLogger);
}
~TempLoggerGuard()
{
Logging::Remove(mpLogger);
}
};
// Process global options
static std::string GetOptionString();
static int ProcessOption(signed int option);
static std::string GetUsageString();
// --------------------------------------------------------------------------
//
// Class
// Name: Logging::OptionParser
// Purpose: Process command-line options, some global, some local
// Created: 2014/04/09
//
// --------------------------------------------------------------------------
class OptionParser
{
public:
OptionParser(Log::Level InitialLevel =
#ifdef BOX_RELEASE_BUILD
Log::NOTICE
#else
Log::INFO
#endif
)
: mCurrentLevel(InitialLevel),
mTruncateLogFile(false)
{ }
static std::string GetOptionString();
int ProcessOption(signed int option);
static std::string GetUsageString();
int mCurrentLevel; // need an int to do math with
bool mTruncateLogFile;
Log::Level GetCurrentLevel()
{
return (Log::Level) mCurrentLevel;
}
};
static const Log::Category UNCATEGORISED;
};
class FileLogger : public Logger
{
private:
FileStream mLogFile;
FileLogger(const FileLogger& forbidden)
: mLogFile("") { /* do not call */ }
public:
FileLogger(const std::string& rFileName, Log::Level Level, bool append)
: Logger(Level),
mLogFile(rFileName, O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC))
{ }
virtual bool Log(Log::Level level, const std::string& file, int line,
const std::string& function, const Log::Category& category,
const std::string& message);
virtual const char* GetType() { return "FileLogger"; }
virtual void SetProgramName(const std::string& rProgramName) { }
};
class HideExceptionMessageGuard
{
public:
HideExceptionMessageGuard()
{
mOldHiddenState = sHiddenState;
sHiddenState = true;
}
~HideExceptionMessageGuard()
{
sHiddenState = mOldHiddenState;
}
static bool ExceptionsHidden() { return sHiddenState; }
private:
static bool sHiddenState;
bool mOldHiddenState;
};
class HideSpecificExceptionGuard
{
private:
std::pair<int, int> mExceptionCode;
public:
typedef std::vector<std::pair<int, int> > SuppressedExceptions_t;
static SuppressedExceptions_t sSuppressedExceptions;
HideSpecificExceptionGuard(int type, int subtype)
: mExceptionCode(std::pair<int, int>(type, subtype))
{
sSuppressedExceptions.push_back(mExceptionCode);
}
~HideSpecificExceptionGuard()
{
SuppressedExceptions_t::reverse_iterator i =
sSuppressedExceptions.rbegin();
assert(*i == mExceptionCode);
sSuppressedExceptions.pop_back();
}
static bool IsHidden(int type, int subtype);
};
class HideCategoryGuard : public Logger
{
private:
std::list<Log::Category> mCategories;
HideCategoryGuard(const HideCategoryGuard& other); // no copying
HideCategoryGuard& operator=(const HideCategoryGuard& other); // no assignment
public:
HideCategoryGuard(const Log::Category& category)
{
mCategories.push_back(category);
Logging::Add(this);
}
~HideCategoryGuard()
{
Logging::Remove(this);
}
void Add(const Log::Category& category)
{
mCategories.push_back(category);
}
virtual bool Log(Log::Level level, const std::string& file, int line,
const std::string& function, const Log::Category& category,
const std::string& message);
virtual const char* GetType() { return "HideCategoryGuard"; }
virtual void SetProgramName(const std::string& rProgramName) { }
};
class HideFileGuard : public Logger
{
private:
std::list<std::string> mFileNames;
HideFileGuard(const HideFileGuard& other); // no copying
HideFileGuard& operator=(const HideFileGuard& other); // no assignment
bool mHideAllButSelected;
public:
HideFileGuard(const std::string& rFileName, bool HideAllButSelected = false)
: mHideAllButSelected(HideAllButSelected)
{
mFileNames.push_back(rFileName);
Logging::Add(this);
}
~HideFileGuard()
{
Logging::Remove(this);
}
void Add(const std::string& rFileName)
{
mFileNames.push_back(rFileName);
}
virtual bool Log(Log::Level level, const std::string& file, int line,
const std::string& function, const Log::Category& category,
const std::string& message);
virtual const char* GetType() { return "HideFileGuard"; }
virtual void SetProgramName(const std::string& rProgramName) { }
};
std::string PrintEscapedBinaryData(const std::string& rInput);
#endif // LOGGING__H
|