adapting the backlogmanagers to the new storage api
[quassel.git] / src / common / logger.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005 by the Quassel Project                             *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "logger.h"
22 #include "quassel.h"
23
24 #include <QFile>
25 #include <QTextStream>
26 #include <QDateTime>
27
28 Logger::~Logger() {
29   QDateTime date = QDateTime::currentDateTime();
30   if(_logLevel == DebugLevel) _buffer.prepend("Debug: ");
31   else if (_logLevel == InfoLevel) _buffer.prepend("Info: ");
32   else if (_logLevel == WarningLevel) _buffer.prepend("Warning: ");
33   else if (_logLevel == ErrorLevel) _buffer.prepend("Error: ");
34   _buffer.prepend(date.toString("yyyy-MM-dd hh:mm:ss "));
35   log();
36 }
37
38 void Logger::log() {
39   LogLevel lvl;
40   if (Quassel::optionValue("loglevel") == "Debug") lvl = DebugLevel;
41   else if (Quassel::optionValue("loglevel") == "Info") lvl = InfoLevel;
42   else if (Quassel::optionValue("loglevel") == "Warning") lvl = WarningLevel;
43   else if (Quassel::optionValue("loglevel") == "Error") lvl = ErrorLevel;
44   else lvl = InfoLevel;
45
46   if(_logLevel < lvl) return;
47
48   // if we can't open logfile we log to stdout
49   QTextStream out(stdout);
50   QFile file;
51   if(!Quassel::optionValue("logfile").isEmpty()) {
52     file.setFileName(Quassel::optionValue("logfile"));
53     if (file.open(QIODevice::Append | QIODevice::Text)) {
54       out.setDevice(&file);
55       _buffer.remove(QChar('\n'));
56     }
57   }
58   out << _buffer << endl;
59   if(file.isOpen()) file.close();
60 }
61
62
63 void Logger::logMessage(QtMsgType type, const char *msg) {
64   switch (type) {
65   case QtDebugMsg:
66     Logger(Logger::DebugLevel) << msg;
67     break;
68   case QtWarningMsg:
69     Logger(Logger::WarningLevel) << msg;
70     break;
71   case QtCriticalMsg:
72     Logger(Logger::ErrorLevel) << msg;
73     break;
74   case QtFatalMsg:
75     Logger(Logger::ErrorLevel) << msg;
76     Quassel::logFatalMessage(msg);
77     return;
78   }
79 }