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
RevLine 
[89]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
[143]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>
[225]21#include <boost/utility/empty_deleter.hpp>
[141]22#include <ostream>
[89]23#include <QString>
24
[141]25template< typename CharT, typename TraitsT >
26std::basic_ostream< CharT, TraitsT >& operator<< (std::basic_ostream< CharT, TraitsT >& strm, QString const& s)
[89]27{
[141]28 strm << s.toStdString();
29 return strm;
[89]30}
31
[141]32// explicit instantiation
33template
34PACPUSLIB_API std::basic_ostream<char>& operator<< (std::basic_ostream<char>& strm, QString const& s);
[89]35
[231]36namespace pacpus
37{
[141]38
[142]39void init_log_factories()
40{
[143]41 boost::log::register_simple_formatter_factory< QString, char >("QString");
[142]42}
[89]43
[143]44static int niftyCounter;
[89]45
46LogConfigurator::LogConfigurator()
47{
[143]48 if (0 == niftyCounter++) {
[146]49 LOG_INFO("LogConfigurator constructor");
[143]50 init_log_factories();
51 }
[89]52}
53
[143]54LogConfigurator::~LogConfigurator()
[89]55{
[143]56 if (0 == --niftyCounter) {
57 // clean up
[146]58 LOG_INFO("LogConfigurator destructor");
[143]59 }
[89]60}
61
[228]62void LogConfigurator::configureLoggerWithFile(const char* logFileName)
[143]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();
[176]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
[143]81 logging::core::get()->set_filter
82 (
[146]83#ifdef NDEBUG
84 // release
[143]85 logging::trivial::severity >= logging::trivial::debug
[146]86#else
87 // debug
88 logging::trivial::severity >= logging::trivial::trace
89#endif
[143]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")
[176]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
[143]109 )
110 );
111
112 // Create a backend and attach a couple of streams to it
[225]113 shared_ptr< sinks::text_ostream_backend > backend = make_shared< sinks::text_ostream_backend >();
[143]114 backend->add_stream(
[225]115 shared_ptr< std::ostream >(&std::clog, empty_deleter())
[143]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 );
[146]129
[143]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
[144]143 LOG_INFO("logger initialised");
[143]144}
145
[89]146} // namespace pacpus
[143]147
148#else // PACPUS_USE_LOG
149
150namespace pacpus
[231]151{
[143]152
153 LogConfigurator::LogConfigurator()
154 {}
[231]155
156 LogConfigurator::~LogConfigurator()
[143]157 {}
158
[231]159 void LogConfigurator::configureLoggerWithFile(const char* /*configFilename*/)
160 {}
161
[143]162} // namespace pacpus
163
164#endif // PACPUS_USE_LOG
[231]165
Note: See TracBrowser for help on using the repository browser.