Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[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 <locked_sstream.h>
23
24 #include "i18n.h"
25
26 int const LogEntry::TYPE_GENERAL      = 0x1;
27 int const LogEntry::TYPE_WARNING      = 0x2;
28 int const LogEntry::TYPE_ERROR        = 0x4;
29 int const LogEntry::TYPE_DEBUG_DECODE = 0x8;
30 int const LogEntry::TYPE_DEBUG_ENCODE = 0x10;
31 int const LogEntry::TYPE_TIMING       = 0x20;
32 int const LogEntry::TYPE_DEBUG_EMAIL  = 0x40;
33
34 using std::string;
35
36 LogEntry::LogEntry (int type)
37         : _type (type)
38 {
39         gettimeofday (&_time, 0);
40 }
41
42 string
43 LogEntry::get () const
44 {
45         locked_stringstream s;
46         if (_type & TYPE_TIMING) {
47                 s << _time.tv_sec << ":" << _time.tv_usec << " ";
48         } else {
49                 char buffer[64];
50                 time_t const sec = _time.tv_sec;
51                 struct tm* t = localtime (&sec);
52                 strftime (buffer, 64, "%c", t);
53                 string a (buffer);
54                 s << a << N_(": ");
55         }
56
57         if (_type & TYPE_ERROR) {
58                 s << "ERROR: ";
59         }
60
61         if (_type & TYPE_WARNING) {
62                 s << "WARNING: ";
63         }
64
65         s << message ();
66         return s.str ();
67 }
68
69 double
70 LogEntry::seconds () const
71 {
72         return _time.tv_sec + double (_time.tv_usec / 1000000);
73 }