blob: 804ef98799436750a87e03d4897a9ad3834ff9a6 [file] [log] [blame]
akmhoque85d88332014-02-17 21:11:21 -06001#include "nlsr_logger.hpp"
2
akmhoque1fd8c1e2014-02-19 19:41:49 -06003namespace nlsr
akmhoque85d88332014-02-17 21:11:21 -06004{
akmhoque85d88332014-02-17 21:11:21 -06005
akmhoque1fd8c1e2014-02-19 19:41:49 -06006 string
7 NlsrLogger::getEpochTime()
8 {
9 std::stringstream ss;
10 boost::posix_time::ptime time_t_epoch(boost::gregorian::date(1970,1,1));
11 boost::posix_time::ptime now = boost::posix_time::microsec_clock::local_time();
12 boost::posix_time::time_duration diff = now - time_t_epoch;
13 ss<<diff.total_seconds()<<"."<<boost::format("%06i")%(diff.total_microseconds()
14 %1000000);
15 return ss.str();
16 }
akmhoque85d88332014-02-17 21:11:21 -060017
akmhoque1fd8c1e2014-02-19 19:41:49 -060018 string
19 NlsrLogger::getUserHomeDirectory()
20 {
21 string homeDirPath(getpwuid(getuid())->pw_dir);
22 if( homeDirPath.empty() )
23 {
24 homeDirPath = getenv("HOME");
25 }
akmhoque1fd8c1e2014-02-19 19:41:49 -060026 return homeDirPath;
27 }
akmhoque92afde42014-02-18 14:04:07 -060028
akmhoque1fd8c1e2014-02-19 19:41:49 -060029 void
30 NlsrLogger::initNlsrLogger(std::string dirPath)
31 {
32 string logDirPath(dirPath);
33 if( dirPath.empty() )
34 {
35 logDirPath=getUserHomeDirectory()+"/nlsrLog";
36 }
37 cout<<"Log Dir Path: "<< logDirPath<<endl;
akmhoque1fd8c1e2014-02-19 19:41:49 -060038 typedef sinks::synchronous_sink< sinks::text_file_backend > file_sink;
39 shared_ptr< file_sink > sink(new file_sink(
40 keywords::file_name = logDirPath
41 +"/NLSR%Y%m%d%H%M%S_%3N.log",
42 keywords::rotation_size = 128 * 1024 * 1024,
43 keywords::time_based_rotation = sinks::file::rotation_at_time_point(12, 0, 0),
44 keywords::auto_flush = true
45 ));
46 sink->locked_backend()->set_file_collector(sinks::file::make_collector(
47 keywords::target = logDirPath,
48 keywords::max_size = 16 * 1024 * 1024 * 1024,
49 keywords::min_free_space = 128 * 1024 * 1024
50 ));
akmhoque1fd8c1e2014-02-19 19:41:49 -060051 sink->set_formatter(
52 expr::format("%1%: %2%")
53 % getEpochTime()
54 % expr::smessage
55 );
akmhoque1fd8c1e2014-02-19 19:41:49 -060056 logging::core::get()->add_sink(sink);
57 }
akmhoqueb1710aa2014-02-19 17:13:36 -060058
59}//namespace nlsr