source: cpp/frams/loggers/loggers.cpp @ 375

Last change on this file since 375 was 375, checked in by Maciej Komosinski, 9 years ago

Renamed logging functions to more intuitive and simple names

  • Property svn:eol-style set to native
File size: 2.7 KB
Line 
1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
2// Copyright (C) 1999-2015  Maciej Komosinski and Szymon Ulatowski.
3// See LICENSE.txt for details.
4
5#include "loggers.h"
6#include <common/stl-util.h>
7
8void _logMessageSingleLine(const char *o, const char *m, int w, const char *txt)
9{
10        tlsGetRef(message_handler_manager_instance).send(o, m, w, txt);
11}
12
13THREAD_LOCAL_DEF(LoggerManager, message_handler_manager_instance);
14
15void LoggerManager::send(int level, const char *o, const char *m, int w, const char *bl)
16{
17        if (level >= handlers.size()) level = handlers.size() - 1;
18        bool blocked = 0;
19        for (int i = level; i >= 0; i--)
20        {
21                LoggerBase *r = handlers(i);
22                if ((!(r->options & LoggerBase::Paused)) &&
23                        ((!blocked) || (r->options & LoggerBase::CannotBeBlocked)))
24                {
25                        r->handle(o, m, w, bl);
26                        if (!(r->options & LoggerBase::DontBlock)) blocked = 1;
27                }
28        }
29}
30
31int LoggerManager::add(LoggerBase *h)
32{
33        h->manager = this;
34        handlers += h;
35        return handlers.size() - 1;
36}
37
38void LoggerManager::remove(int i)
39{
40        LoggerBase *h = handlers(i);
41        h->manager = NULL;
42        handlers.remove(i);
43}
44
45void LoggerManager::remove(LoggerBase *h)
46{
47        int i;
48        if ((i = handlers.find(h)) < 0) return;
49        remove(i);
50}
51
52void LoggerManager::removeAll()
53{
54        while (handlers.size() > 0)
55                remove(handlers.size() - 1);
56}
57
58//////////////////////////////////
59
60void LoggerBase::send(const char *o, const char *m, int w, const char *bl)
61{
62        if (!isEnabled()) return;
63        int level = manager->find(this);
64        if (level >= 0) manager->send(level - 1, o, m, w, bl);
65}
66
67void LoggerBase::logPrintf(const char *o, const char *m, int w, const char *bl, ...)
68{
69        if (!isEnabled()) return;
70        string buf;
71        va_list argptr;
72        va_start(argptr, bl);
73        buf = ssprintf_va(bl, argptr);
74        va_end(argptr);
75        send(o, m, w, buf.c_str());
76}
77
78
79void LoggerBase::enable()
80{
81        if (isEnabled()) return;
82        tlsGetRef(message_handler_manager_instance).add(this);
83}
84
85void LoggerBase::disable()
86{
87        if (!isEnabled()) return;
88        tlsGetRef(message_handler_manager_instance).remove(this);
89}
90
91void LoggerBase::pause()
92{
93        if (isPaused()) return;
94        options |= Paused;
95}
96
97void LoggerBase::resume()
98{
99        if (!isPaused()) return;
100        options &= ~Paused;
101}
102
103/////////////////////////////////
104
105void LoggerToMemory::handle(const char *o, const char *m, int w, const char *bl)
106{
107        if (w > maxlevel) maxlevel = w;
108        if (w >= LOG_INFO) infocount++;
109        if (w >= LOG_WARN) warncount++;
110        if (w >= LOG_ERROR) errcount++;
111
112        if (w >= minleveltostore)
113        {
114                storedcount++;
115                if (options & (StoreFirstMessage | StoreAllMessages))
116                {
117                        if (!((options&StoreFirstMessage) && (msgs.len() > 0)))
118                        {
119                                if (msgs.len() > 0) msgs += '\n';
120                                msgs += SString::sprintf(LOG_FORMAT,LOG_LEVEL[w+1],o,m,bl);
121                        }
122                }
123        }
124}
Note: See TracBrowser for help on using the repository browser.