akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 1 | #include "logger.hpp" |
| 2 | |
| 3 | namespace nlsr { |
| 4 | |
| 5 | string |
| 6 | Logger::getEpochTime() |
| 7 | { |
| 8 | std::stringstream ss; |
| 9 | boost::posix_time::ptime time_t_epoch(boost::gregorian::date(1970, 1, 1)); |
| 10 | boost::posix_time::ptime now = boost::posix_time::microsec_clock::local_time(); |
| 11 | boost::posix_time::time_duration diff = now - time_t_epoch; |
| 12 | ss << diff.total_seconds() << "." << boost::format("%06i") % |
| 13 | (diff.total_microseconds() |
| 14 | % 1000000); |
| 15 | return ss.str(); |
| 16 | } |
| 17 | |
| 18 | string |
| 19 | Logger::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 | Logger::initialize(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 = 16 * 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 = 512 * 1024 * 1024, |
| 49 | keywords::min_free_space = 64 * 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 |