Add disk writer tool.
[dcpomatic.git] / src / lib / log_entry.cc
1 /*
2     Copyright (C) 2015 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 #include "log_entry.h"
22 #include <inttypes.h>
23 #include <cstdio>
24
25 #include "i18n.h"
26
27 int const LogEntry::TYPE_GENERAL      = 0x001;
28 int const LogEntry::TYPE_WARNING      = 0x002;
29 int const LogEntry::TYPE_ERROR        = 0x004;
30 int const LogEntry::TYPE_DEBUG_THREED = 0x008;
31 int const LogEntry::TYPE_DEBUG_ENCODE = 0x010;
32 int const LogEntry::TYPE_TIMING       = 0x020;
33 int const LogEntry::TYPE_DEBUG_EMAIL  = 0x040;
34 int const LogEntry::TYPE_DEBUG_PLAYER = 0x080;
35 int const LogEntry::TYPE_DISK         = 0x100;
36
37 using std::string;
38
39 LogEntry::LogEntry (int type)
40         : _type (type)
41 {
42         gettimeofday (&_time, 0);
43 }
44
45 string
46 LogEntry::get () const
47 {
48         string s;
49         if (_type & TYPE_TIMING) {
50                 char buffer[64];
51                 snprintf (buffer, sizeof(buffer), "%" PRId64 ":%" PRId64 " ", static_cast<int64_t> (_time.tv_sec), static_cast<int64_t> (_time.tv_usec));
52                 s += buffer;
53         } else {
54                 char buffer[64];
55                 time_t const sec = _time.tv_sec;
56                 struct tm* t = localtime (&sec);
57                 strftime (buffer, 64, "%c", t);
58                 string a (buffer);
59                 s += string(buffer) + N_(": ");
60         }
61
62         if (_type & TYPE_ERROR) {
63                 s += "ERROR: ";
64         }
65
66         if (_type & TYPE_WARNING) {
67                 s += "WARNING: ";
68         }
69
70         s += message ();
71         return s;
72 }
73
74 double
75 LogEntry::seconds () const
76 {
77         return _time.tv_sec + double (_time.tv_usec / 1000000);
78 }