aria2/src/SimpleLogger.cc

169 lines
4.6 KiB
C++

/* <!-- copyright */
/*
* aria2 - The high speed download utility
*
* Copyright (C) 2006 Tatsuhiro Tsujikawa
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
/* copyright --> */
#include "SimpleLogger.h"
#include "Util.h"
#include "DlAbortEx.h"
#include "message.h"
#include <time.h>
#include <stdarg.h>
#include <stdio.h>
#include <errno.h>
#define WRITE_LOG(LEVEL, MSG) \
va_list ap;\
va_start(ap, MSG);\
writeFile(Logger::LEVEL, MSG, ap);\
va_end(ap);
#define WRITE_LOG_EX(LEVEL, MSG, EX) \
va_list ap;\
va_start(ap, EX);\
writeFile(Logger::LEVEL, MSG, ap, EX);\
va_end(ap);
SimpleLogger::SimpleLogger(FILE* logfile):file(logfile), stdoutField(0) {}
SimpleLogger::~SimpleLogger() {
closeFile();
}
void SimpleLogger::openFile(const string& filename) {
file = fopen(filename.c_str(), "a");
if(file == NULL) {
throw new DlAbortEx(EX_FILE_OPEN, filename.c_str(), strerror(errno));
}
}
void SimpleLogger::closeFile() {
if(file != NULL) {
fclose(file);
}
}
void SimpleLogger::setStdout(int level, bool enabled) {
if(enabled) {
stdoutField |= level;
} else {
stdoutField &= ~level;
}
}
void SimpleLogger::writeHeader(FILE* file, string date, string level) const {
fprintf(file, "%s - %s - ", date.c_str(), level.c_str());
}
void SimpleLogger::writeLog(FILE* file, int level, const char* msg, va_list ap, Exception* e) const
{
string levelStr;
switch(level) {
case Logger::DEBUG:
levelStr = "DEBUG";
break;
case Logger::NOTICE:
levelStr = "NOTICE";
break;
case Logger::WARN:
levelStr = "WARN";
break;
case Logger::ERROR:
levelStr = "ERROR";
break;
case Logger::INFO:
default:
levelStr = "INFO";
}
time_t now = time(NULL);
char datestr[26];
ctime_r(&now, datestr);
datestr[strlen(datestr)-1] = '\0';
writeHeader(file, datestr, levelStr);
vfprintf(file, string(Util::replace(msg, "\r", "")+"\n").c_str(), ap);
for(Exception* nestedEx = e; nestedEx; nestedEx = nestedEx->getCause()) {
writeHeader(file, datestr, levelStr);
fprintf(file, "exception: %s\n", Util::replace(nestedEx->getMsg(), "\r", "").c_str());
}
fflush(file);
}
void SimpleLogger::writeFile(int level, const char* msg, va_list ap, Exception* e) const {
writeLog(file, level, msg, ap, e);
if(stdoutField&level) {
fprintf(stdout, "\n");
writeLog(stdout, level, msg, ap, e);
}
}
void SimpleLogger::debug(const char* msg, ...) const {
WRITE_LOG(DEBUG, msg);
}
void SimpleLogger::debug(const char* msg, Exception* e, ...) const {
WRITE_LOG_EX(DEBUG, msg, e);
}
void SimpleLogger::info(const char* msg, ...) const {
WRITE_LOG(INFO, msg);
}
void SimpleLogger::info(const char* msg, Exception* e, ...) const {
WRITE_LOG_EX(INFO, msg, e);
}
void SimpleLogger::notice(const char* msg, ...) const {
WRITE_LOG(NOTICE, msg);
}
void SimpleLogger::notice(const char* msg, Exception* e, ...) const {
WRITE_LOG_EX(INFO, msg, e);
}
void SimpleLogger::warn(const char* msg, ...) const {
WRITE_LOG(WARN, msg);
}
void SimpleLogger::warn(const char* msg, Exception* e, ...) const {
WRITE_LOG_EX(WARN, msg, e);
}
void SimpleLogger::error(const char* msg, ...) const {
WRITE_LOG(ERROR, msg);
}
void SimpleLogger::error(const char* msg, Exception* e, ...) const {
WRITE_LOG_EX(ERROR, msg, e);
}