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