/* * Application.h * * Copyright (C) 2009 Matthias Schiffer * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License along * with this program. If not, see . */ #ifndef MAD_CORE_APPLICATION_H_ #define MAD_CORE_APPLICATION_H_ #include "export.h" #include "Format.h" #include "Logger.h" #include #include #include namespace Mad { namespace Core { class ConfigManager; class LogManager; class ThreadManager; class MAD_CORE_EXPORT Application : private boost::noncopyable { private: boost::asio::io_service ioService; ConfigManager *configManager; LogManager *logManager; ThreadManager *threadManager; void doLog(Logger::MessageCategory category, Logger::MessageLevel level, const Core::String &message); protected: Application(); virtual ~Application(); public: boost::asio::io_service& getIOService() { return ioService; } ConfigManager* getConfigManager() const { return configManager; } LogManager* getLogManager() const { return logManager; } ThreadManager* getThreadManager() const { return threadManager; } template void log(Logger::MessageCategory category, Logger::MessageLevel level, const T &message) { std::ostringstream stream; stream << message; doLog(category, level, String::fromLocale(stream.str())); } template void log(Logger::MessageCategory category, const T &message) { log(category, Logger::LOG_DEFAULT, message); } template void log(Logger::MessageLevel level, const T &message) { log(Logger::LOG_GENERAL, level, message); } template void log(const T &message) { log(Logger::LOG_GENERAL, Logger::LOG_DEFAULT, message); } }; } } #endif /* MAD_CORE_APPLICATION_H_ */