X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Flog_entry.cc;h=2980e438b084555d5718ddb52900355fc3e79280;hb=07b21bb92a8d54c6c03de9aadc63ab93b65d9bc5;hp=18eed489404b672aed23a835e35b9074e31ce9f2;hpb=b1dc9c3a2f7e55c9afc5bf2d5b465371b048e14f;p=dcpomatic.git diff --git a/src/lib/log_entry.cc b/src/lib/log_entry.cc index 18eed4894..2980e438b 100644 --- a/src/lib/log_entry.cc +++ b/src/lib/log_entry.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2015 Carl Hetherington + Copyright (C) 2015-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,34 +18,44 @@ */ + #include "log_entry.h" #include +#include #include "i18n.h" -int const LogEntry::TYPE_GENERAL = 0x1; -int const LogEntry::TYPE_WARNING = 0x2; -int const LogEntry::TYPE_ERROR = 0x4; -int const LogEntry::TYPE_DEBUG_DECODE = 0x8; -int const LogEntry::TYPE_DEBUG_ENCODE = 0x10; -int const LogEntry::TYPE_TIMING = 0x20; -int const LogEntry::TYPE_DEBUG_EMAIL = 0x40; + +int const LogEntry::TYPE_GENERAL = 0x001; +int const LogEntry::TYPE_WARNING = 0x002; +int const LogEntry::TYPE_ERROR = 0x004; +int const LogEntry::TYPE_DEBUG_THREE_D = 0x008; +int const LogEntry::TYPE_DEBUG_ENCODE = 0x010; +int const LogEntry::TYPE_TIMING = 0x020; +int const LogEntry::TYPE_DEBUG_EMAIL = 0x040; +int const LogEntry::TYPE_DEBUG_VIDEO_VIEW = 0x080; +int const LogEntry::TYPE_DISK = 0x100; +int const LogEntry::TYPE_DEBUG_PLAYER = 0x200; +int const LogEntry::TYPE_DEBUG_AUDIO_ANALYSIS = 0x400; + using std::string; + LogEntry::LogEntry (int type) : _type (type) { gettimeofday (&_time, 0); } + string LogEntry::get () const { string s; if (_type & TYPE_TIMING) { char buffer[64]; - snprintf (buffer, sizeof(buffer), "%" PRId64 ":%" PRId64 " ", static_cast (_time.tv_sec), static_cast (_time.tv_usec)); + snprintf (buffer, sizeof(buffer), "%" PRId64 ":%" PRId64 " ", static_cast(_time.tv_sec), static_cast(_time.tv_usec)); s += buffer; } else { char buffer[64]; @@ -68,6 +78,7 @@ LogEntry::get () const return s; } + double LogEntry::seconds () const {