Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / log.cc
1 /*
2     Copyright (C) 2012-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 /** @file src/log.cc
21  *  @brief A very simple logging class.
22  */
23
24 #include "log.h"
25 #include "cross.h"
26 #include "config.h"
27 #include "safe_stringstream.h"
28 #include "string_log_entry.h"
29 #include <time.h>
30 #include <cstdio>
31
32 #include "i18n.h"
33
34 using std::string;
35 using boost::shared_ptr;
36
37 Log::Log ()
38         : _types (0)
39 {
40         _config_connection = Config::instance()->Changed.connect (boost::bind (&Log::config_changed, this));
41         config_changed ();
42 }
43
44 void
45 Log::config_changed ()
46 {
47         set_types (Config::instance()->log_types ());
48 }
49
50 void
51 Log::log (shared_ptr<const LogEntry> e)
52 {
53         boost::mutex::scoped_lock lm (_mutex);
54
55         if ((_types & e->type()) == 0) {
56                 return;
57         }
58
59         do_log (e);
60 }
61
62 /** @param n String to log */
63 void
64 Log::log (string message, int type)
65 {
66         boost::mutex::scoped_lock lm (_mutex);
67
68         if ((_types & type) == 0) {
69                 return;
70         }
71
72         do_log (shared_ptr<const LogEntry> (new StringLogEntry (type, message)));
73 }
74
75 void
76 Log::dcp_log (dcp::NoteType type, string m)
77 {
78         switch (type) {
79         case dcp::DCP_PROGRESS:
80                 do_log (shared_ptr<const LogEntry> (new StringLogEntry (LogEntry::TYPE_GENERAL, m)));
81                 break;
82         case dcp::DCP_ERROR:
83                 do_log (shared_ptr<const LogEntry> (new StringLogEntry (LogEntry::TYPE_ERROR, m)));
84                 break;
85         case dcp::DCP_NOTE:
86                 do_log (shared_ptr<const LogEntry> (new StringLogEntry (LogEntry::TYPE_WARNING, m)));
87                 break;
88         }
89 }
90
91 void
92 Log::set_types (int t)
93 {
94         boost::mutex::scoped_lock lm (_mutex);
95         _types = t;
96 }