From 7234fe326d16d6bf9f4374a09ddc6ef790e6723f Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Thu, 18 Jun 2009 22:03:02 +0200 Subject: Globale Variablen durch Application-Klasse ersetzt --- src/Core/Application.cpp | 100 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 src/Core/Application.cpp (limited to 'src/Core/Application.cpp') diff --git a/src/Core/Application.cpp b/src/Core/Application.cpp new file mode 100644 index 0000000..7c92ed6 --- /dev/null +++ b/src/Core/Application.cpp @@ -0,0 +1,100 @@ +/* + * Application.cpp + * + * Copyright (C) 2009 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 . + */ + +#include "Application.h" +#include "ConfigManager.h" +#include "LogManager.h" +#include "ThreadManager.h" + +#include + +namespace Mad { +namespace Core { + +Application::Application() : configManager(new ConfigManager(this)), logManager(new LogManager(this)), threadManager(new ThreadManager(this)) {} + +Application::~Application() { + delete threadManager; + delete logManager; + delete configManager; +} + + +void Application::logfv(LoggerBase::MessageCategory category, LoggerBase::MessageLevel level, const char *format, va_list ap) { + int size = 100; + char *buf = (char*)std::malloc(size); + + // If buffer is too small, try again with bigger buffer + while(true) { + va_list ap2; + + va_copy(ap2, ap); + int n = std::vsnprintf(buf, size, format, ap2); + va_end(ap2); + + if(n > -1 && n < size) { + logManager->log(category, level, std::time(0), buf); + std::free(buf); + return; + } + + if(n > -1) + size = n+1; + else + size *= 2; + + buf = (char*)std::realloc(buf, size); + } + +} + +void Application::log(LoggerBase::MessageCategory category, LoggerBase::MessageLevel level, const std::string &message) { + logManager->log(category, level, std::time(0), message); +} + +void Application::logf(LoggerBase::MessageCategory category, LoggerBase::MessageLevel level, const char *format, ...) { + va_list ap; + va_start(ap, format); + logfv(category, level, format, ap); + va_end(ap); +} + +void Application::logf(LoggerBase::MessageCategory category, const char *format, ...) { + va_list ap; + va_start(ap, format); + logfv(category, LoggerBase::DEFAULT, format, ap); + va_end(ap); +} + +void Application::logf(LoggerBase::MessageLevel level, const char *format, ...) { + va_list ap; + va_start(ap, format); + logfv(LoggerBase::GENERAL, level, format, ap); + va_end(ap); +} + +void Application::logf(const char *format, ...) { + va_list ap; + va_start(ap, format); + logfv(LoggerBase::GENERAL, LoggerBase::DEFAULT, format, ap); + va_end(ap); +} + +} +} -- cgit v1.2.3