blob: 804ef98799436750a87e03d4897a9ad3834ff9a6 [file] [log] [blame]
akmhoqueba094742014-02-28 11:47:21 -06001#include "nlsr_logger.hpp"
2
3namespace nlsr
4{
5
6 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 }
17
18 string
19 NlsrLogger::getUserHomeDirectory()
20 {
21 string homeDirPath(getpwuid(getuid())->pw_dir);
22 if( homeDirPath.empty() )
23 {
24 homeDirPath = getenv("HOME");
25 }
26 return homeDirPath;
27 }
28
29 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;
38 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 ));
51 sink->set_formatter(
52 expr::format("%1%: %2%")
53 % getEpochTime()
54 % expr::smessage
55 );
56 logging::core::get()->add_sink(sink);
57 }
58
59}//namespace nlsr