f84cfd3a51cf38b2a1c0e04223e9fdd4ff913cf6
[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 "string_log_entry.h"
29 #include <time.h>
30 #include <cstdio>
31
32 #include "i18n.h"
33
34
35 using std::string;
36 using std::cout;
37 using std::shared_ptr;
38 using std::make_shared;
39
40
41 Log::Log ()
42         : _types (0)
43 {
44
45 }
46
47 void
48 Log::log (shared_ptr<const LogEntry> e)
49 {
50         boost::mutex::scoped_lock lm (_mutex);
51
52         if ((_types & e->type()) == 0) {
53                 return;
54         }
55
56         do_log (e);
57 }
58
59 /** @param n String to log */
60 void
61 Log::log (string message, int type)
62 {
63         boost::mutex::scoped_lock lm (_mutex);
64
65         if ((_types & type) == 0) {
66                 return;
67         }
68
69         auto e = make_shared<StringLogEntry>(type, message);
70
71         do_log (e);
72 }
73
74 void
75 Log::dcp_log (dcp::NoteType type, string m)
76 {
77         switch (type) {
78         case dcp::NoteType::PROGRESS:
79                 do_log (make_shared<StringLogEntry>(LogEntry::TYPE_GENERAL, m));
80                 break;
81         case dcp::NoteType::ERROR:
82                 do_log (make_shared<StringLogEntry>(LogEntry::TYPE_ERROR, m));
83                 break;
84         case dcp::NoteType::NOTE:
85                 do_log (make_shared<StringLogEntry>(LogEntry::TYPE_WARNING, m));
86                 break;
87         }
88 }
89
90 void
91 Log::set_types (int t)
92 {
93         boost::mutex::scoped_lock lm (_mutex);
94         _types = t;
95 }