source: pacpusframework/trunk/src/PacpusLib/Log.cpp@ 231

Last change on this file since 231 was 231, checked in by Marek Kurdej, 11 years ago

Fixed: Qt4 compilation on Linux

  • Property svn:executable set to *
File size: 5.1 KB
Line 
1// %pacpus:license{
2// This file is part of the PACPUS framework distributed under the
3// CECILL-C License, Version 1.0.
4// %pacpus:license}
5/// @version $Id: Log.cpp 76 2013-01-10 17:05:10Z kurdejma $
6
7#include <Pacpus/kernel/Log.h>
8
9#ifdef PACPUS_USE_LOG
10
11#include <boost/log/detail/date_time_format_parser.hpp>
12#include <boost/log/expressions.hpp>
13#include <boost/log/sinks/text_file_backend.hpp>
14#include <boost/log/sinks/text_ostream_backend.hpp>
15#include <boost/log/sources/severity_logger.hpp>
16#include <boost/log/sources/record_ostream.hpp>
17#include <boost/log/support/date_time.hpp>
18#include <boost/log/utility/setup/common_attributes.hpp>
19#include <boost/log/utility/setup/file.hpp>
20#include <boost/log/utility/setup/formatter_parser.hpp>
21#include <boost/utility/empty_deleter.hpp>
22#include <ostream>
23#include <QString>
24
25template< typename CharT, typename TraitsT >
26std::basic_ostream< CharT, TraitsT >& operator<< (std::basic_ostream< CharT, TraitsT >& strm, QString const& s)
27{
28 strm << s.toStdString();
29 return strm;
30}
31
32// explicit instantiation
33template
34PACPUSLIB_API std::basic_ostream<char>& operator<< (std::basic_ostream<char>& strm, QString const& s);
35
36namespace pacpus
37{
38
39void init_log_factories()
40{
41 boost::log::register_simple_formatter_factory< QString, char >("QString");
42}
43
44static int niftyCounter;
45
46LogConfigurator::LogConfigurator()
47{
48 if (0 == niftyCounter++) {
49 LOG_INFO("LogConfigurator constructor");
50 init_log_factories();
51 }
52}
53
54LogConfigurator::~LogConfigurator()
55{
56 if (0 == --niftyCounter) {
57 // clean up
58 LOG_INFO("LogConfigurator destructor");
59 }
60}
61
62void LogConfigurator::configureLoggerWithFile(const char* logFileName)
63{
64 using namespace boost;
65
66 namespace logging = boost::log;
67 namespace sinks = boost::log::sinks;
68 namespace src = boost::log::sources;
69 namespace expr = boost::log::expressions;
70 namespace attrs = boost::log::attributes;
71 namespace keywords = boost::log::keywords;
72
73 logging::add_common_attributes();
74 logging::core::get()->add_global_attribute(
75 "ProcessID",
76 attrs::current_process_id());
77 logging::core::get()->add_global_attribute(
78 "ThreadID",
79 attrs::current_thread_id());
80
81 logging::core::get()->set_filter
82 (
83#ifdef NDEBUG
84 // release
85 logging::trivial::severity >= logging::trivial::debug
86#else
87 // debug
88 logging::trivial::severity >= logging::trivial::trace
89#endif
90 );
91
92 // Add a file log
93 logging::add_file_log
94 (
95 keywords::file_name = logFileName,
96 keywords::rotation_size = 10 * 1024 * 1024,
97 keywords::time_based_rotation = sinks::file::rotation_at_time_point(0, 0, 0),
98 //keywords::format = "%LineID% [%TimeStamp%]: %Message%"
99 keywords::format =
100 (
101 expr::stream
102 << std::setfill('0') << std::setw(6) << expr::attr< unsigned int >("LineID")
103 //<< " [" << expr::format_date_time< posix_time::ptime >("TimeStamp", date_time::iso_extended_format) << "]"
104 << " [" << expr::format_date_time< posix_time::ptime >("TimeStamp", "%Y-%m-%d %T.%f") << "]"
105 << " <" << logging::trivial::severity << ">"
106 << " <" << expr::attr< attrs::current_process_id::value_type >("ProcessID")
107 << ":" << expr::attr< attrs::current_thread_id::value_type >("ThreadID") << ">"
108 << " " << expr::smessage
109 )
110 );
111
112 // Create a backend and attach a couple of streams to it
113 shared_ptr< sinks::text_ostream_backend > backend = make_shared< sinks::text_ostream_backend >();
114 backend->add_stream(
115 shared_ptr< std::ostream >(&std::clog, empty_deleter())
116 );
117
118 // Enable auto-flushing after each log record written
119 backend->auto_flush(true);
120
121 // Wrap it into the frontend and register in the core.
122 // The backend requires synchronization in the frontend.
123 typedef sinks::synchronous_sink< sinks::text_ostream_backend > sink_t;
124 shared_ptr< sink_t > sink(new sink_t(backend));
125 sink->set_filter
126 (
127 logging::trivial::severity >= logging::trivial::info
128 );
129
130 sink->set_formatter
131 (
132 expr::stream
133 << std::setfill('0') << std::setw(6) << expr::attr< unsigned int >("LineID")
134 //<< " [" << expr::format_date_time< posix_time::ptime >("TimeStamp", date_time::iso_extended_format) << "] "
135 << " [" << expr::format_date_time< posix_time::ptime >("TimeStamp", "%Y-%m-%d %T.%f") << "] "
136 << "<" << logging::trivial::severity << ">"
137 << " "
138 << expr::smessage
139 );
140
141 logging::core::get()->add_sink(sink);
142
143 LOG_INFO("logger initialised");
144}
145
146} // namespace pacpus
147
148#else // PACPUS_USE_LOG
149
150namespace pacpus
151{
152
153 LogConfigurator::LogConfigurator()
154 {}
155
156 LogConfigurator::~LogConfigurator()
157 {}
158
159 void LogConfigurator::configureLoggerWithFile(const char* /*configFilename*/)
160 {}
161
162} // namespace pacpus
163
164#endif // PACPUS_USE_LOG
165
Note: See TracBrowser for help on using the repository browser.