/* * LogManager.h * * Copyright (C) 2008 Matthias Schiffer * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef MAD_COMMON_LOGMANAGER_H_ #define MAD_COMMON_LOGMANAGER_H_ #include "Configurable.h" #include "Logger.h" #include "RemoteLogger.h" #include "SingletonPtr.h" #include "SharedPtr.h" #include #include #include namespace Mad { namespace Common { class LogManager : public Configurable { private: typedef LoggerBase::MessageCategory MessageCategory; typedef LoggerBase::MessageLevel MessageLevel; struct Message { MessageCategory category; MessageLevel level; time_t timestamp; std::string message; }; struct RemoteMessage { MessageCategory category; MessageLevel level; time_t timestamp; std::string message; std::string source; }; static SingletonPtr logManager; std::set > loggers; std::set > remoteLoggers; std::auto_ptr > messageQueue; std::auto_ptr > remoteMessageQueue; protected: virtual bool handleConfigEntry(const ConfigEntry &entry, bool handled); virtual void configFinished(); public: LogManager() : messageQueue(new std::queue()), remoteMessageQueue(new std::queue()) {} void log(MessageCategory category, MessageLevel level, time_t timestamp, const std::string &message); void log(MessageCategory category, MessageLevel level, time_t timestamp, const std::string &message, const std::string &source); void registerLogger(SharedPtr logger) { loggers.insert(logger); } void unregisterLogger(SharedPtr logger) { loggers.erase(logger); } void registerLogger(SharedPtr logger) { remoteLoggers.insert(logger); } void unregisterLogger(SharedPtr logger) { remoteLoggers.erase(logger); } static LogManager *get() { return logManager.get(); } }; } } #endif /* MAD_COMMON_LOGMANAGER_H_ */