]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/logger.h
Correctly rewrite bans in 1.2 also, and make zline on nicks actually work.
[user/henk/code/inspircd.git] / include / logger.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __LOGMANAGER_H
15 #define __LOGMANAGER_H
16
17 class CoreExport LogStream : public classbase
18 {
19  protected:
20         InspIRCd *ServerInstance;
21         int loglvl;
22  public:
23         LogStream(InspIRCd *Instance, int loglevel) : loglvl(loglevel)
24         {
25                 this->ServerInstance = Instance;
26         }
27
28         virtual void OnLog(int loglevel, const std::string &type, const std::string &msg) { }
29 };
30
31 class CoreExport LogManager : public classbase
32 {
33  private:
34         bool Logging; // true when logging, avoids recursion
35         InspIRCd *ServerInstance;
36         std::map<std::string, std::vector<LogStream *> > LogStreams;
37         std::vector<LogStream *> GlobalLogStreams; //holds all logstreams with a type of *
38  public:
39         LogManager(InspIRCd *Instance)
40         {
41                 ServerInstance = Instance;
42                 Logging = false;
43         }
44
45         void CloseLogs();
46         bool AddLogType(const std::string &type, LogStream *l);
47         bool DelLogType(const std::string &type, LogStream *l);
48         void Log(const std::string &type, int loglevel, const std::string &msg);
49         void Log(const std::string &type, int loglevel, const char *fmt, ...);
50 };
51
52 #endif