Add debug option to log SMTP session transcripts.
[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 int const LogEntry::TYPE_DEBUG_EMAIL  = 0x40;
32
33 using std::string;
34
35 LogEntry::LogEntry (int type)
36         : _type (type)
37 {
38         gettimeofday (&_time, 0);
39 }
40
41 string
42 LogEntry::get () const
43 {
44         SafeStringStream s;
45         if (_type & TYPE_TIMING) {
46                 s << _time.tv_sec << ":" << _time.tv_usec;
47         } else {
48                 char buffer[64];
49                 time_t const sec = _time.tv_sec;
50                 struct tm* t = localtime (&sec);
51                 strftime (buffer, 64, "%c", t);
52                 string a (buffer);
53                 s << a.substr (0, a.length() - 1) << N_(": ");
54         }
55
56         if (_type & TYPE_ERROR) {
57                 s << "ERROR: ";
58         }
59
60         if (_type & TYPE_WARNING) {
61                 s << "WARNING: ";
62         }
63
64         s << message ();
65         return s.str ();
66 }
67
68 double
69 LogEntry::seconds () const
70 {
71         return _time.tv_sec + double (_time.tv_usec / 1000000);
72 }