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