X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/261442af210d652fc2c8a3d9197097982701bd16..8c6fa3fbaccc22127280bf77a48fab5a3ee0716e:/stglibs/logger.lib/include/stg/logger.h diff --git a/stglibs/logger.lib/include/stg/logger.h b/stglibs/logger.lib/include/stg/logger.h index 9fe14878..60514f4a 100644 --- a/stglibs/logger.lib/include/stg/logger.h +++ b/stglibs/logger.lib/include/stg/logger.h @@ -1,20 +1,18 @@ #ifndef STG_LOGGER_H #define STG_LOGGER_H -#include - #include -const char * LogDate(time_t t); -//----------------------------------------------------------------------------- +#include + class STG_LOGGER; STG_LOGGER & GetStgLogger(); //----------------------------------------------------------------------------- class STG_LOGGER_LOCKER { public: - STG_LOGGER_LOCKER(pthread_mutex_t * m) : mutex(m) { pthread_mutex_lock(mutex); }; - ~STG_LOGGER_LOCKER() { pthread_mutex_unlock(mutex); }; + explicit STG_LOGGER_LOCKER(pthread_mutex_t * m) : mutex(m) { pthread_mutex_lock(mutex); } + ~STG_LOGGER_LOCKER() { pthread_mutex_unlock(mutex); } private: STG_LOGGER_LOCKER(const STG_LOGGER_LOCKER & rvalue); @@ -26,22 +24,43 @@ private: class STG_LOGGER { friend STG_LOGGER & GetStgLogger(); +friend class PLUGIN_LOGGER; public: ~STG_LOGGER(); void SetLogFileName(const std::string & fn); - void operator()(const char * fmt, ...); + void operator()(const char * fmt, ...) const; + void operator()(const std::string & line) const { LogString(line.c_str()); } private: STG_LOGGER(); STG_LOGGER(const STG_LOGGER & rvalue); STG_LOGGER & operator=(const STG_LOGGER & rvalue); - const char * LogDate(time_t t); + const char * LogDate(time_t t) const; + void LogString(const char * str) const; std::string fileName; - pthread_mutex_t mutex; + mutable pthread_mutex_t mutex; }; //----------------------------------------------------------------------------- +class PLUGIN_LOGGER +{ +friend PLUGIN_LOGGER GetPluginLogger(const STG_LOGGER& logger, const std::string& pluginName); + +public: + PLUGIN_LOGGER(const PLUGIN_LOGGER& rhs) : m_parent(rhs.m_parent), m_pluginName(rhs.m_pluginName) {} // Need move here. + void operator()(const char* fmt, ...) const; + void operator()(const std::string& line) const; + +private: + PLUGIN_LOGGER& operator=(const PLUGIN_LOGGER&); // Copy assignment is prohibited. + + PLUGIN_LOGGER(const STG_LOGGER & logger, const std::string & pn); + const STG_LOGGER& m_parent; + std::string m_pluginName; +}; + +PLUGIN_LOGGER GetPluginLogger(const STG_LOGGER & logger, const std::string & pluginName); #endif //STG_LOGGER_H