1 | // This file is a part of the Framsticks GDK. |
---|
2 | // Copyright (C) 1999-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
3 | // Refer to http://www.framsticks.com/ for further information. |
---|
4 | |
---|
5 | #include "errmanager.h" |
---|
6 | #include <common/stl-util.h> |
---|
7 | |
---|
8 | void _FramMessageSingleLine(const char *o, const char *m, const char *txt, int w) |
---|
9 | { |
---|
10 | tlsGetRef(errmgr_instance).send(o,m,txt,w); |
---|
11 | } |
---|
12 | |
---|
13 | THREAD_LOCAL_DEF(ErrorManager,errmgr_instance); |
---|
14 | |
---|
15 | void ErrorManager::send(int level,const char *o,const char *m,const char *bl,int w) |
---|
16 | { |
---|
17 | if (level>=handlers.size()) level=handlers.size()-1; |
---|
18 | bool blocked=0; |
---|
19 | for(int i=level;i>=0;i--) |
---|
20 | { |
---|
21 | ErrorHandlerBase *r=handlers(i); |
---|
22 | if ((!blocked)||(r->options & ErrorHandlerBase::CannotBeBlocked)) |
---|
23 | r->handle(o,m,bl,w); |
---|
24 | if (!(r->options & ErrorHandlerBase::DontBlock)) blocked=1; |
---|
25 | } |
---|
26 | } |
---|
27 | |
---|
28 | int ErrorManager::add(ErrorHandlerBase *h) |
---|
29 | { |
---|
30 | h->mgr=this; |
---|
31 | handlers+=h; |
---|
32 | return handlers.size()-1; |
---|
33 | } |
---|
34 | |
---|
35 | void ErrorManager::remove(int i) |
---|
36 | { |
---|
37 | ErrorHandlerBase *h=handlers(i); |
---|
38 | h->mgr=0; |
---|
39 | handlers.remove(i); |
---|
40 | } |
---|
41 | |
---|
42 | void ErrorManager::remove(ErrorHandlerBase *h) |
---|
43 | { |
---|
44 | int i; |
---|
45 | if ((i=handlers.find(h))<0) return; |
---|
46 | remove(i); |
---|
47 | } |
---|
48 | |
---|
49 | void ErrorManager::removeAll() |
---|
50 | { |
---|
51 | while(handlers.size()>0) |
---|
52 | remove(handlers.size()-1); |
---|
53 | } |
---|
54 | |
---|
55 | ////////////////////////////////// |
---|
56 | |
---|
57 | void ErrorHandlerBase::send(const char *o,const char *m,const char *bl,int w) |
---|
58 | { |
---|
59 | if (!isEnabled()) return; |
---|
60 | int level=mgr->find(this); |
---|
61 | if (level>=0) mgr->send(level-1,o,m,bl,w); |
---|
62 | } |
---|
63 | |
---|
64 | void ErrorHandlerBase::FMprintf(const char *o,const char *m,int w,const char *bl, ...) |
---|
65 | { |
---|
66 | if (!isEnabled()) return; |
---|
67 | string buf; |
---|
68 | va_list argptr; |
---|
69 | va_start(argptr,bl); |
---|
70 | buf=ssprintf_va(bl,argptr); |
---|
71 | va_end(argptr); |
---|
72 | send(o,m,buf.c_str(),w); |
---|
73 | } |
---|
74 | |
---|
75 | |
---|
76 | void ErrorHandlerBase::enable() |
---|
77 | { |
---|
78 | if (isEnabled()) return; |
---|
79 | tlsGetRef(errmgr_instance).add(this); |
---|
80 | } |
---|
81 | |
---|
82 | void ErrorHandlerBase::disable() |
---|
83 | { |
---|
84 | if (!isEnabled()) return; |
---|
85 | tlsGetRef(errmgr_instance).remove(this); |
---|
86 | } |
---|
87 | |
---|
88 | ///////////////////////////////// |
---|
89 | |
---|
90 | void ErrorHandler::handle(const char *o,const char *m,const char *bl,int w) |
---|
91 | { |
---|
92 | if (w>maxlevel) maxlevel=w; |
---|
93 | if (w>=FMLV_INFO) infocount++; |
---|
94 | if (w>=FMLV_WARN) warncount++; |
---|
95 | if (w>=FMLV_ERROR) errcount++; |
---|
96 | |
---|
97 | if (w>=storlevel) |
---|
98 | { |
---|
99 | storcount++; |
---|
100 | if (options & (StoreFirstMessage|StoreAllMessages)) |
---|
101 | { |
---|
102 | if (!((options&StoreFirstMessage)&&(msgs.len()>0))) |
---|
103 | { |
---|
104 | if (msgs.len()>0) msgs+='\n'; |
---|
105 | msgs+=o; msgs+="::"; msgs+=m; |
---|
106 | msgs+=" - "; msgs+=bl; |
---|
107 | } |
---|
108 | } |
---|
109 | } |
---|
110 | } |
---|