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 | |
---|
8 | void _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 | |
---|
13 | THREAD_LOCAL_DEF(LoggerManager, message_handler_manager_instance); |
---|
14 | |
---|
15 | void 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 | |
---|
31 | int LoggerManager::add(LoggerBase *h) |
---|
32 | { |
---|
33 | h->manager = this; |
---|
34 | handlers += h; |
---|
35 | return handlers.size() - 1; |
---|
36 | } |
---|
37 | |
---|
38 | void LoggerManager::remove(int i) |
---|
39 | { |
---|
40 | LoggerBase *h = handlers(i); |
---|
41 | h->manager = NULL; |
---|
42 | handlers.remove(i); |
---|
43 | } |
---|
44 | |
---|
45 | void LoggerManager::remove(LoggerBase *h) |
---|
46 | { |
---|
47 | int i; |
---|
48 | if ((i = handlers.find(h)) < 0) return; |
---|
49 | remove(i); |
---|
50 | } |
---|
51 | |
---|
52 | void LoggerManager::removeAll() |
---|
53 | { |
---|
54 | while (handlers.size() > 0) |
---|
55 | remove(handlers.size() - 1); |
---|
56 | } |
---|
57 | |
---|
58 | ////////////////////////////////// |
---|
59 | |
---|
60 | void 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 | |
---|
67 | void 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 | |
---|
79 | void LoggerBase::enable() |
---|
80 | { |
---|
81 | if (isEnabled()) return; |
---|
82 | tlsGetRef(message_handler_manager_instance).add(this); |
---|
83 | } |
---|
84 | |
---|
85 | void LoggerBase::disable() |
---|
86 | { |
---|
87 | if (!isEnabled()) return; |
---|
88 | tlsGetRef(message_handler_manager_instance).remove(this); |
---|
89 | } |
---|
90 | |
---|
91 | void LoggerBase::pause() |
---|
92 | { |
---|
93 | if (isPaused()) return; |
---|
94 | options |= Paused; |
---|
95 | } |
---|
96 | |
---|
97 | void LoggerBase::resume() |
---|
98 | { |
---|
99 | if (!isPaused()) return; |
---|
100 | options &= ~Paused; |
---|
101 | } |
---|
102 | |
---|
103 | ///////////////////////////////// |
---|
104 | |
---|
105 | void 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 | } |
---|