]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/filelogger.cpp
Merge insp20
[user/henk/code/inspircd.git] / src / filelogger.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
5  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 /* $Core */
23
24 #include "inspircd.h"
25 #include <fstream>
26 #include "socketengine.h"
27 #include "filelogger.h"
28
29 FileLogStream::FileLogStream(LogLevel loglevel, FileWriter *fw) : LogStream(loglevel), f(fw)
30 {
31         ServerInstance->Logs->AddLoggerRef(f);
32 }
33
34 FileLogStream::~FileLogStream()
35 {
36         /* FileWriter is managed externally now */
37         ServerInstance->Logs->DelLoggerRef(f);
38 }
39
40 void FileLogStream::OnLog(LogLevel loglevel, const std::string &type, const std::string &text)
41 {
42         static std::string TIMESTR;
43         static time_t LAST = 0;
44
45         if (loglevel < this->loglvl)
46         {
47                 return;
48         }
49
50         if (ServerInstance->Time() != LAST)
51         {
52                 time_t local = ServerInstance->Time();
53                 struct tm *timeinfo = localtime(&local);
54
55                 TIMESTR.assign(asctime(timeinfo), 24);
56                 TIMESTR += ": ";
57                 LAST = ServerInstance->Time();
58         }
59
60         std::string out = TIMESTR;
61         out += text;
62         out += '\n';
63         this->f->WriteLogLine(out);
64 }