Use dcp::file_to_string().
[dcpomatic.git] / src / lib / log.cc
1 /*
2     Copyright (C) 2012-2021 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
22 /** @file src/log.cc
23  *  @brief A very simple logging class.
24  */
25
26
27 #include "log.h"
28 #include "cross.h"
29 #include "config.h"
30 #include "string_log_entry.h"
31 #include <time.h>
32 #include <cstdio>
33
34 #include "i18n.h"
35
36
37 using std::string;
38 using std::cout;
39 using std::shared_ptr;
40 using std::make_shared;
41
42
43 Log::Log ()
44 {
45
46 }
47
48
49 void
50 Log::log (shared_ptr<const LogEntry> e)
51 {
52         boost::mutex::scoped_lock lm (_mutex);
53
54         if ((_types & e->type()) == 0) {
55                 return;
56         }
57
58         do_log (e);
59 }
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         auto e = make_shared<StringLogEntry>(type, message);
73
74         do_log (e);
75 }
76
77
78 void
79 Log::dcp_log (dcp::NoteType type, string m)
80 {
81         switch (type) {
82         case dcp::NoteType::PROGRESS:
83                 do_log (make_shared<StringLogEntry>(LogEntry::TYPE_GENERAL, m));
84                 break;
85         case dcp::NoteType::ERROR:
86                 do_log (make_shared<StringLogEntry>(LogEntry::TYPE_ERROR, m));
87                 break;
88         case dcp::NoteType::NOTE:
89                 do_log (make_shared<StringLogEntry>(LogEntry::TYPE_WARNING, m));
90                 break;
91         }
92 }
93
94
95 void
96 Log::set_types (int t)
97 {
98         boost::mutex::scoped_lock lm (_mutex);
99         _types = t;
100 }