C++11 tidying.
[dcpomatic.git] / src / lib / log_entry.cc
1 /*
2     Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "log_entry.h"
23 #include <inttypes.h>
24 #include <cstdio>
25
26 #include "i18n.h"
27
28
29 int const LogEntry::TYPE_GENERAL      = 0x001;
30 int const LogEntry::TYPE_WARNING      = 0x002;
31 int const LogEntry::TYPE_ERROR        = 0x004;
32 int const LogEntry::TYPE_DEBUG_THREE_D = 0x008;
33 int const LogEntry::TYPE_DEBUG_ENCODE = 0x010;
34 int const LogEntry::TYPE_TIMING       = 0x020;
35 int const LogEntry::TYPE_DEBUG_EMAIL  = 0x040;
36 int const LogEntry::TYPE_DEBUG_VIDEO_VIEW = 0x080;
37 int const LogEntry::TYPE_DISK         = 0x100;
38 int const LogEntry::TYPE_DEBUG_PLAYER = 0x200;
39 int const LogEntry::TYPE_DEBUG_AUDIO_ANALYSIS = 0x400;
40
41
42 using std::string;
43
44
45 LogEntry::LogEntry (int type)
46         : _type (type)
47 {
48         gettimeofday (&_time, 0);
49 }
50
51
52 string
53 LogEntry::get () const
54 {
55         string s;
56         if (_type & TYPE_TIMING) {
57                 char buffer[64];
58                 snprintf (buffer, sizeof(buffer), "%" PRId64 ":%" PRId64 " ", static_cast<int64_t>(_time.tv_sec), static_cast<int64_t>(_time.tv_usec));
59                 s += buffer;
60         } else {
61                 char buffer[64];
62                 time_t const sec = _time.tv_sec;
63                 struct tm* t = localtime (&sec);
64                 strftime (buffer, 64, "%c", t);
65                 string a (buffer);
66                 s += string(buffer) + N_(": ");
67         }
68
69         if (_type & TYPE_ERROR) {
70                 s += "ERROR: ";
71         }
72
73         if (_type & TYPE_WARNING) {
74                 s += "WARNING: ";
75         }
76
77         s += message ();
78         return s;
79 }
80
81
82 double
83 LogEntry::seconds () const
84 {
85         return _time.tv_sec + double (_time.tv_usec / 1000000);
86 }