]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/logger.h
Fix a bug in new logging API (global logstreams weren't notified of events if a speci...
[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  public:
22         LogStream(InspIRCd *Instance)
23         {
24                 this->ServerInstance = Instance;
25         }
26
27         virtual void OnLog(int loglevel, const std::string &type, const std::string &msg) { }
28 };
29
30 class CoreExport LogManager : public classbase
31 {
32  private:
33         bool Logging; // true when logging, avoids recursion
34         InspIRCd *ServerInstance;
35         std::map<std::string, std::vector<LogStream *> > LogStreams;
36         std::vector<LogStream *> GlobalLogStreams; //holds all logstreams with a type of *
37  public:
38         LogManager(InspIRCd *Instance)
39         {
40                 ServerInstance = Instance;
41                 Logging = false;
42         }
43
44         void CloseLogs();
45         bool AddLogType(const std::string &type, LogStream *l);
46         bool DelLogType(const std::string &type, LogStream *l);
47         void Log(const std::string &type, int loglevel, const std::string &msg);
48         void Log(const std::string &type, int loglevel, const char *fmt, ...);
49 };
50
51 #endif