akmhoque | 85d8833 | 2014-02-17 21:11:21 -0600 | [diff] [blame] | 1 | #ifndef NLSR_LOGGER_HPP |
| 2 | #define NLSR_LOGGER_HPP |
| 3 | |
| 4 | #define BOOST_LOG_DYN_LINK 1 |
| 5 | |
| 6 | #include <stdexcept> |
| 7 | #include <string> |
| 8 | #include <iostream> |
| 9 | #include <sstream> |
| 10 | #include <pwd.h> |
| 11 | #include <cstdlib> |
| 12 | #include <string> |
| 13 | #include <unistd.h> |
| 14 | #include <boost/format.hpp> |
| 15 | #include <boost/smart_ptr/shared_ptr.hpp> |
| 16 | #include <boost/date_time/posix_time/posix_time.hpp> |
| 17 | #include <boost/date_time/local_time/local_time.hpp> |
| 18 | #include <boost/log/common.hpp> |
| 19 | #include <boost/log/expressions.hpp> |
| 20 | #include <boost/log/attributes.hpp> |
| 21 | #include <boost/log/sources/logger.hpp> |
| 22 | #include <boost/log/sinks/sync_frontend.hpp> |
| 23 | #include <boost/log/sinks/text_file_backend.hpp> |
| 24 | |
akmhoque | 92afde4 | 2014-02-18 14:04:07 -0600 | [diff] [blame^] | 25 | |
akmhoque | 85d8833 | 2014-02-17 21:11:21 -0600 | [diff] [blame] | 26 | namespace logging = boost::log; |
| 27 | namespace attrs = boost::log::attributes; |
| 28 | namespace src = boost::log::sources; |
| 29 | namespace sinks = boost::log::sinks; |
| 30 | namespace expr = boost::log::expressions; |
| 31 | namespace keywords = boost::log::keywords; |
| 32 | |
| 33 | using boost::shared_ptr; |
| 34 | using namespace std; |
| 35 | |
| 36 | |
akmhoque | 85d8833 | 2014-02-17 21:11:21 -0600 | [diff] [blame] | 37 | class NlsrLogger |
| 38 | { |
| 39 | public: |
| 40 | NlsrLogger() |
| 41 | { |
| 42 | } |
| 43 | |
| 44 | void initNlsrLogger(std::string dirPath); |
| 45 | |
akmhoque | 92afde4 | 2014-02-18 14:04:07 -0600 | [diff] [blame^] | 46 | src::logger& getLogger() |
akmhoque | 85d8833 | 2014-02-17 21:11:21 -0600 | [diff] [blame] | 47 | { |
| 48 | return mLogger; |
| 49 | } |
| 50 | |
| 51 | private: |
| 52 | string getEpochTime(); |
| 53 | string getUserHomeDirectory(); |
| 54 | |
| 55 | private: |
akmhoque | 92afde4 | 2014-02-18 14:04:07 -0600 | [diff] [blame^] | 56 | src::logger mLogger; |
akmhoque | 85d8833 | 2014-02-17 21:11:21 -0600 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | #endif |