X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Flog_entry.cc;h=2980e438b084555d5718ddb52900355fc3e79280;hb=76e543bd7c85054ff857781707fa570f2b159360;hp=fc0305340790c6b3407f2003561a97b320ac33e7;hpb=4985d87750c87019dfe5dc7ef44e12c45326dd0e;p=dcpomatic.git diff --git a/src/lib/log_entry.cc b/src/lib/log_entry.cc index fc0305340..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,12 +18,14 @@ */ + #include "log_entry.h" #include #include #include "i18n.h" + int const LogEntry::TYPE_GENERAL = 0x001; int const LogEntry::TYPE_WARNING = 0x002; int const LogEntry::TYPE_ERROR = 0x004; @@ -36,21 +38,24 @@ 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]; @@ -73,6 +78,7 @@ LogEntry::get () const return s; } + double LogEntry::seconds () const {