source: cpp/common/loggers/loggers.h @ 876

Last change on this file since 876 was 876, checked in by Maciej Komosinski, 5 years ago

Newly introduced constant used (and fixed behavior for rarely used LOG_DEBUG messages)

  • Property svn:eol-style set to native
File size: 3.5 KB
Line 
1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
2// Copyright (C) 1999-2019  Maciej Komosinski and Szymon Ulatowski.
3// See LICENSE.txt for details.
4
5#ifndef _COMMON_LOGGERS_H_
6#define _COMMON_LOGGERS_H_
7
8#include <common/log.h>
9#include <common/threads.h>
10#include <common/nonstd_stl.h>
11
12class LoggerBase;
13
14class LoggerManager
15{
16        friend class LoggerBase;
17        vector<LoggerBase*> loggers;
18        void send(int position, const char *obj, const char *method, int level, const char *msg);
19public:
20        int find(LoggerBase *logger)
21        {
22                vector<LoggerBase*>::iterator it = std::find(loggers.begin(), loggers.end(), logger);
23                return it == loggers.end() ? -1 : std::distance(loggers.begin(), it);
24        }
25        int add(LoggerBase *logger);
26        void remove(int i);
27        void remove(LoggerBase *logger);
28        void removeAll();
29        void send(const char *obj, const char *method, int level, const char *msg)
30        {
31                send(loggers.size() - 1, obj, method, level, msg);
32        }
33        ~LoggerManager() { removeAll(); }
34};
35
36extern THREAD_LOCAL_DECL(LoggerManager, message_handler_manager_instance);
37
38////////////////////////////////////////
39
40class LoggerBase
41{
42        friend class LoggerManager;
43protected:
44        LoggerManager* manager;
45        int options;
46
47public:
48
49        enum LoggerOptions
50        {
51                DontBlock = 1, CannotBeBlocked = 2, Enable = 4, Paused = 8
52        };
53
54        void logPrintf(const char *o, const char *m, int w, const char *bl, ...);
55        void send(const char *obj, const char *method, int level, const char *msg);
56
57        bool isEnabled() { return manager ? true : false; }
58        void enable();
59        void disable();
60        bool isPaused() { return (options & Paused) != 0; }
61        void pause();
62        void resume();
63
64        LoggerBase(int opts = 0) :manager(NULL), options(opts)
65        {
66                if (options&Enable) enable();
67        }
68        virtual ~LoggerBase()
69        {
70                disable();
71        }
72
73        virtual void handle(const char *obj, const char *method, int level, const char *msg); ///< implemented by loggers accepting multiline messages. if not implemented, the default handle() splits multiline text into single lines and calls handleSingleLine()
74        virtual void handleSingleLine(const char *obj, const char *method, int level, const char *msg) {}  ///< implemented by loggers expecting single line messages
75};
76
77///////////////////////////////////////////
78
79class LoggerToMemory : public LoggerBase
80{
81protected:
82        int maxlevel, minleveltostore, errcount, warncount, infocount, storedcount;
83        string msgs;
84
85public:
86
87        void reset() { maxlevel = LOG_MIN - 1; errcount = warncount = infocount = storedcount = 0; msgs = ""; }
88
89        enum Options2
90        {
91                StoreFirstMessage = 16, StoreAllMessages = 32
92        };
93
94        int getErrorCount() const   { return errcount; }
95        int getWarningCount() const { return warncount; }
96        int getInfoCount() const    { return infocount; }
97        int getStoredCount() const  { return storedcount; }
98        int getErrorLevel() const   { return maxlevel; }
99        string getMessages() const  { return msgs; }
100        string getCountSummary() const; ///< return the standard "... error(s), ... warning(s), ... message(s)" text (or empty string if count==0)
101
102        LoggerToMemory(int opts = 0, int minimal_level_to_store = LOG_ERROR) :LoggerBase(opts), minleveltostore(minimal_level_to_store)
103        {
104                reset();
105        }
106
107        void handle(const char *obj, const char *method, int level, const char *msg);
108};
109
110class RedirectingLogger : public LoggerBase
111{
112        LoggerManager *other_manager;
113public:
114        RedirectingLogger(LoggerManager *other_mgr, int opts = 0)
115                :LoggerBase(opts), other_manager(other_mgr) {}
116
117        void handle(const char *obj, const char *method, int level, const char *msg)
118        {
119                other_manager->send(obj, method, level, msg);
120        }
121};
122
123#endif
Note: See TracBrowser for help on using the repository browser.