]> git.sesse.net Git - casparcg/blob - common/log.h
* Changed usage of BOOST_THROW_EXCEPTION to CASPAR_THROW_EXCEPTION in all places...
[casparcg] / common / log.h
1 /*
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>
3 *
4 * This file is part of CasparCG (www.casparcg.com).
5 *
6 * CasparCG 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 3 of the License, or
9 * (at your option) any later version.
10 *
11 * CasparCG 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 CasparCG. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Author: Robert Nagy, ronag89@gmail.com
20 */
21
22 #pragma once
23
24 #include "os/stack_trace.h"
25 #include "utf.h"
26 #include "thread_info.h"
27
28 #include <boost/log/trivial.hpp>
29 #include <boost/log/sources/global_logger_storage.hpp>
30 #include <boost/exception/all.hpp>
31 #include <boost/property_tree/ptree_fwd.hpp>
32
33 #include <string>
34 #include <locale>
35
36 namespace caspar { namespace log {
37         
38 namespace internal{
39 void init();
40 std::wstring get_call_stack();
41 }
42
43 template<typename T>
44 inline void replace_nonprintable(std::basic_string<T, std::char_traits<T>, std::allocator<T>>& str, T with)
45 {
46         std::locale loc;
47         std::replace_if(str.begin(), str.end(), [&](T c)->bool {
48                 return 
49                         (!std::isprint(c, loc) 
50                         && c != '\r' 
51                         && c != '\n')
52                         || c > static_cast<T>(127);
53         }, with);
54 }
55
56 template<typename T>
57 inline std::basic_string<T> replace_nonprintable_copy(std::basic_string<T, std::char_traits<T>, std::allocator<T>> str, T with)
58 {
59         replace_nonprintable(str, with);
60         return str;
61 }
62
63 void add_file_sink(const std::wstring& folder);
64
65 typedef boost::log::sources::wseverity_logger_mt<boost::log::trivial::severity_level> caspar_logger;
66
67 BOOST_LOG_INLINE_GLOBAL_LOGGER_INIT(logger, caspar_logger)
68 {
69         internal::init();
70         return caspar_logger(boost::log::trivial::trace);
71 }
72
73 #define CASPAR_LOG(lvl)\
74         BOOST_LOG_SEV(::caspar::log::logger::get(), ::boost::log::trivial::lvl)
75
76 #define CASPAR_LOG_CALL_STACK() try{\
77                 CASPAR_LOG(info) << L"callstack (" << caspar::get_thread_info().name << L"):\n" << caspar::get_call_stack();\
78         }\
79         catch(...){}
80
81 #define CASPAR_LOG_CURRENT_EXCEPTION() try{\
82                 CASPAR_LOG(error)  << caspar::u16(boost::current_exception_diagnostic_information()) << L"Caught at (" << caspar::get_thread_info().name << L"):\n" << caspar::get_call_stack();\
83         }\
84         catch(...){}
85         
86 void set_log_level(const std::wstring& lvl);
87
88 void print_child(
89                 boost::log::trivial::severity_level level,
90                 const std::wstring& indent,
91                 const std::wstring& elem,
92                 const boost::property_tree::wptree& tree);
93
94 }}
95