2012-07-04 16:04:34 +00:00
|
|
|
// * This file is part of the COLOBOT source code
|
|
|
|
// * Copyright (C) 2012, Polish Portal of Colobot (PPC)
|
|
|
|
// *
|
|
|
|
// * 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 http://www.gnu.org/licenses/.
|
|
|
|
|
|
|
|
// logger.h
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <cstdarg>
|
2012-07-04 18:03:17 +00:00
|
|
|
#include <cstdio>
|
2012-07-04 16:04:34 +00:00
|
|
|
|
|
|
|
#include <common/singleton.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file common/logger.h
|
|
|
|
* @brief Class for loggin information to file or console
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \public
|
|
|
|
* \enum LogType common/logger.h
|
|
|
|
* \brief Enum representing log level
|
|
|
|
**/
|
|
|
|
enum LogType
|
|
|
|
{
|
2012-08-12 17:28:22 +00:00
|
|
|
LOG_TRACE = 1, /*!< lowest level, execution tracing */
|
|
|
|
LOG_DEBUG = 2, /*!< debugging messages */
|
|
|
|
LOG_INFO = 3, /*!< information */
|
|
|
|
LOG_WARN = 4, /*!< warning */
|
|
|
|
LOG_ERROR = 5, /*!< error */
|
|
|
|
LOG_NONE = 6 /*!< none level, used for custom messages */
|
2012-07-04 16:04:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @class CLogger
|
|
|
|
*
|
|
|
|
* @brief Class for loggin information to file or console
|
|
|
|
*
|
2012-07-27 16:44:43 +00:00
|
|
|
*/
|
2012-07-04 16:04:34 +00:00
|
|
|
class CLogger : public CSingleton<CLogger>
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CLogger();
|
|
|
|
~CLogger();
|
|
|
|
|
|
|
|
/** Write message to console or file
|
2012-08-11 16:39:16 +00:00
|
|
|
* @param str - message to write
|
2012-07-04 16:04:34 +00:00
|
|
|
* @param ... - additional arguments
|
|
|
|
*/
|
|
|
|
void Message(const char *str, ...);
|
|
|
|
|
2012-08-12 17:28:22 +00:00
|
|
|
/** Write message to console or file with LOG_TRACE level
|
|
|
|
* @param str - message to write
|
|
|
|
* @param ... - additional arguments
|
|
|
|
*/
|
|
|
|
void Trace(const char *str, ...);
|
|
|
|
|
|
|
|
/** Write message to console or file with LOG_DEBUG level
|
|
|
|
* @param str - message to write
|
|
|
|
* @param ... - additional arguments
|
|
|
|
*/
|
|
|
|
void Debug(const char *str, ...);
|
|
|
|
|
2012-07-04 16:04:34 +00:00
|
|
|
/** Write message to console or file with LOG_INFO level
|
2012-08-11 16:39:16 +00:00
|
|
|
* @param str - message to write
|
2012-07-04 16:04:34 +00:00
|
|
|
* @param ... - additional arguments
|
|
|
|
*/
|
|
|
|
void Info(const char *str, ...);
|
|
|
|
|
|
|
|
/** Write message to console or file with LOG_WARN level
|
2012-08-11 16:39:16 +00:00
|
|
|
* @param str - message to write
|
2012-07-04 16:04:34 +00:00
|
|
|
* @param ... - additional arguments
|
|
|
|
*/
|
|
|
|
void Warn(const char *str, ...);
|
|
|
|
|
|
|
|
/** Write message to console or file with LOG_ERROR level
|
2012-08-11 16:39:16 +00:00
|
|
|
* @param str - message to write
|
2012-07-04 16:04:34 +00:00
|
|
|
* @param ... - additional arguments
|
|
|
|
*/
|
|
|
|
void Error(const char *str, ...);
|
|
|
|
|
|
|
|
/** Set output file to write logs to
|
2012-08-11 16:39:16 +00:00
|
|
|
* @param filename - output file to write to
|
2012-07-04 16:04:34 +00:00
|
|
|
*/
|
|
|
|
void SetOutputFile(std::string filename);
|
|
|
|
|
|
|
|
/** Set log level. Logs with level below will not be shown
|
2012-08-11 16:39:16 +00:00
|
|
|
* @param level - minimum log level to write
|
2012-07-04 16:04:34 +00:00
|
|
|
*/
|
|
|
|
void SetLogLevel(LogType level);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string mFilename;
|
|
|
|
FILE *mFile;
|
|
|
|
LogType mLogLevel;
|
|
|
|
|
|
|
|
void Open();
|
|
|
|
void Close();
|
|
|
|
bool IsOpened();
|
|
|
|
void Log(LogType type, const char* str, va_list args);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//! Global function to get Logger instance
|
|
|
|
inline CLogger* GetLogger() {
|
|
|
|
return CLogger::GetInstancePointer();
|
|
|
|
}
|