Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / log_entry.cc
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "log_entry.h"
21 #include "safe_stringstream.h"
22
23 #include "i18n.h"
24
25 int const LogEntry::TYPE_GENERAL      = 0x1;
26 int const LogEntry::TYPE_WARNING      = 0x2;
27 int const LogEntry::TYPE_ERROR        = 0x4;
28 int const LogEntry::TYPE_DEBUG_DECODE = 0x8;
29 int const LogEntry::TYPE_DEBUG_ENCODE = 0x10;
30 int const LogEntry::TYPE_TIMING       = 0x20;
31
32 using std::string;
33
34 LogEntry::LogEntry (int type)
35         : _type (type)
36 {
37         gettimeofday (&_time, 0);
38 }
39
40 string
41 LogEntry::get () const
42 {
43         SafeStringStream s;
44         if (_type & TYPE_TIMING) {
45                 s << _time.tv_sec << ":" << _time.tv_usec;
46         } else {
47                 char buffer[64];
48                 struct tm* t = localtime (&_time.tv_sec);
49                 strftime (buffer, 64, "%c", t);
50                 string a (buffer);
51                 s << a.substr (0, a.length() - 1) << N_(": ");
52         }
53
54         if (_type & TYPE_ERROR) {
55                 s << "ERROR: ";
56         }
57
58         if (_type & TYPE_WARNING) {
59                 s << "WARNING: ";
60         }
61
62         s << message ();
63         return s.str ();
64 }
65
66 double
67 LogEntry::seconds () const
68 {
69         return _time.tv_sec + double (_time.tv_usec / 1000000);
70 }