Supporters update.
[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 #include <ctime>
26
27 #include "i18n.h"
28
29
30 int const LogEntry::TYPE_GENERAL      = 0x001;
31 int const LogEntry::TYPE_WARNING      = 0x002;
32 int const LogEntry::TYPE_ERROR        = 0x004;
33 int const LogEntry::TYPE_DEBUG_THREE_D = 0x008;
34 int const LogEntry::TYPE_DEBUG_ENCODE = 0x010;
35 int const LogEntry::TYPE_TIMING       = 0x020;
36 int const LogEntry::TYPE_DEBUG_EMAIL  = 0x040;
37 int const LogEntry::TYPE_DEBUG_VIDEO_VIEW = 0x080;
38 int const LogEntry::TYPE_DISK         = 0x100;
39 int const LogEntry::TYPE_DEBUG_PLAYER = 0x200;
40 int const LogEntry::TYPE_DEBUG_AUDIO_ANALYSIS = 0x400;
41
42
43 using std::string;
44
45
46 LogEntry::LogEntry (int type)
47         : _type (type)
48 {
49         gettimeofday (&_time, 0);
50 }
51
52
53 string
54 LogEntry::get () const
55 {
56         string s;
57         if (_type & TYPE_TIMING) {
58                 char buffer[64];
59                 snprintf (buffer, sizeof(buffer), "%" PRId64 ":%" PRId64 " ", static_cast<int64_t>(_time.tv_sec), static_cast<int64_t>(_time.tv_usec));
60                 s += buffer;
61         } else {
62                 char buffer[64];
63                 time_t const sec = _time.tv_sec;
64                 struct tm* t = localtime (&sec);
65                 strftime (buffer, 64, "%c", t);
66                 string a (buffer);
67                 s += string(buffer) + N_(": ");
68         }
69
70         if (_type & TYPE_ERROR) {
71                 s += "ERROR: ";
72         }
73
74         if (_type & TYPE_WARNING) {
75                 s += "WARNING: ";
76         }
77
78         s += message ();
79         return s;
80 }
81
82
83 double
84 LogEntry::seconds () const
85 {
86         return _time.tv_sec + double (_time.tv_usec / 1000000);
87 }