removed duplicate "bmp"
[oweals/minetest.git] / src / debug.h
1 /*
2 Minetest-c55
3 Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef DEBUG_HEADER
21 #define DEBUG_HEADER
22
23 #include <stdio.h>
24 #include <jmutex.h>
25 #include <jmutexautolock.h>
26 #include <iostream>
27 #include "common_irrlicht.h"
28 #include "threads.h"
29 #include "gettime.h"
30 #include "constants.h"
31 #include "exceptions.h"
32
33 #ifdef _WIN32
34         #define WIN32_LEAN_AND_MEAN
35         #include <windows.h>
36         #ifdef _MSC_VER
37                 #include <eh.h>
38         #endif
39 #else
40 #endif
41
42 /*
43         Debug output
44 */
45
46 #define DTIME (getTimestamp()+": ")
47
48 #define DEBUGSTREAM_COUNT 2
49
50 extern FILE *g_debugstreams[DEBUGSTREAM_COUNT];
51
52 extern void debugstreams_init(bool disable_stderr, const char *filename);
53 extern void debugstreams_deinit();
54
55 #define DEBUGPRINT(...)\
56 {\
57         for(int i=0; i<DEBUGSTREAM_COUNT; i++)\
58         {\
59                 if(g_debugstreams[i] != NULL){\
60                         fprintf(g_debugstreams[i], __VA_ARGS__);\
61                         fflush(g_debugstreams[i]);\
62                 }\
63         }\
64 }
65
66 class Debugbuf : public std::streambuf
67 {
68 public:
69         Debugbuf(bool disable_stderr)
70         {
71                 m_disable_stderr = disable_stderr;
72         }
73
74         int overflow(int c)
75         {
76                 for(int i=0; i<DEBUGSTREAM_COUNT; i++)
77                 {
78                         if(g_debugstreams[i] == stderr && m_disable_stderr)
79                                 continue;
80                         if(g_debugstreams[i] != NULL)
81                                 (void)fwrite(&c, 1, 1, g_debugstreams[i]);
82                         //TODO: Is this slow?
83                         fflush(g_debugstreams[i]);
84                 }
85                 
86                 return c;
87         }
88         int xsputn(const char *s, int n)
89         {
90                 for(int i=0; i<DEBUGSTREAM_COUNT; i++)
91                 {
92                         if(g_debugstreams[i] == stderr && m_disable_stderr)
93                                 continue;
94                         if(g_debugstreams[i] != NULL)
95                                 (void)fwrite(s, 1, n, g_debugstreams[i]);
96                         //TODO: Is this slow?
97                         fflush(g_debugstreams[i]);
98                 }
99
100                 return n;
101         }
102         
103 private:
104         bool m_disable_stderr;
105 };
106
107 // This is used to redirect output to /dev/null
108 class Nullstream : public std::ostream {
109 public:
110         Nullstream():
111                 std::ostream(0)
112         {
113         }
114 private:
115 };
116
117 extern Debugbuf debugbuf;
118 extern std::ostream dstream;
119 extern std::ostream dstream_no_stderr;
120 extern Nullstream dummyout;
121
122 /*
123         Assert
124 */
125
126 __NORETURN extern void assert_fail(
127                 const char *assertion, const char *file,
128                 unsigned int line, const char *function);
129
130 #define ASSERT(expr)\
131         ((expr)\
132         ? (void)(0)\
133         : assert_fail(#expr, __FILE__, __LINE__, __FUNCTION_NAME))
134
135 #define assert(expr) ASSERT(expr)
136
137 /*
138         DebugStack
139 */
140
141 #define DEBUG_STACK_SIZE 50
142 #define DEBUG_STACK_TEXT_SIZE 300
143
144 struct DebugStack
145 {
146         DebugStack(threadid_t id);
147         void print(FILE *file, bool everything);
148         
149         threadid_t threadid;
150         char stack[DEBUG_STACK_SIZE][DEBUG_STACK_TEXT_SIZE];
151         int stack_i; // Points to the lowest empty position
152         int stack_max_i; // Highest i that was seen
153 };
154
155 extern core::map<threadid_t, DebugStack*> g_debug_stacks;
156 extern JMutex g_debug_stacks_mutex;
157
158 extern void debug_stacks_init();
159 extern void debug_stacks_print();
160
161 class DebugStacker
162 {
163 public:
164         DebugStacker(const char *text);
165         ~DebugStacker();
166
167 private:
168         DebugStack *m_stack;
169         bool m_overflowed;
170 };
171
172 #define DSTACK(...)\
173         char __buf[DEBUG_STACK_TEXT_SIZE];\
174         snprintf(__buf,\
175                         DEBUG_STACK_TEXT_SIZE, __VA_ARGS__);\
176         DebugStacker __debug_stacker(__buf);
177
178 /*
179         Packet counter
180 */
181
182 class PacketCounter
183 {
184 public:
185         PacketCounter()
186         {
187         }
188
189         void add(u16 command)
190         {
191                 core::map<u16, u16>::Node *n = m_packets.find(command);
192                 if(n == NULL)
193                 {
194                         m_packets[command] = 1;
195                 }
196                 else
197                 {
198                         n->setValue(n->getValue()+1);
199                 }
200         }
201
202         void clear()
203         {
204                 for(core::map<u16, u16>::Iterator
205                                 i = m_packets.getIterator();
206                                 i.atEnd() == false; i++)
207                 {
208                         i.getNode()->setValue(0);
209                 }
210         }
211
212         void print(std::ostream &o)
213         {
214                 for(core::map<u16, u16>::Iterator
215                                 i = m_packets.getIterator();
216                                 i.atEnd() == false; i++)
217                 {
218                         o<<"cmd "<<i.getNode()->getKey()
219                                         <<" count "<<i.getNode()->getValue()
220                                         <<std::endl;
221                 }
222         }
223
224 private:
225         // command, count
226         core::map<u16, u16> m_packets;
227 };
228
229 /*
230         These should be put into every thread
231 */
232
233 #if CATCH_UNHANDLED_EXCEPTIONS == 1
234         #define BEGIN_PORTABLE_DEBUG_EXCEPTION_HANDLER try{
235         #define END_PORTABLE_DEBUG_EXCEPTION_HANDLER\
236                 }catch(std::exception &e){\
237                         dstream<<std::endl<<DTIME\
238                                         <<"ERROR: An unhandled exception occurred: "\
239                                         <<e.what()<<std::endl;\
240                         assert(0);\
241                 }
242         #ifdef _WIN32 // Windows
243                 #ifdef _MSC_VER // MSVC
244 void se_trans_func(unsigned int, EXCEPTION_POINTERS*);
245
246 class FatalSystemException : public BaseException
247 {
248 public:
249         FatalSystemException(const char *s):
250                 BaseException(s)
251         {}
252 };
253                         #define BEGIN_DEBUG_EXCEPTION_HANDLER \
254                                 BEGIN_PORTABLE_DEBUG_EXCEPTION_HANDLER\
255                                 _set_se_translator(se_trans_func);
256
257                         #define END_DEBUG_EXCEPTION_HANDLER \
258                                 END_PORTABLE_DEBUG_EXCEPTION_HANDLER
259                 #else // Probably mingw
260                         #define BEGIN_DEBUG_EXCEPTION_HANDLER\
261                                 BEGIN_PORTABLE_DEBUG_EXCEPTION_HANDLER
262                         #define END_DEBUG_EXCEPTION_HANDLER\
263                                 END_PORTABLE_DEBUG_EXCEPTION_HANDLER
264                 #endif
265         #else // Posix
266                 #define BEGIN_DEBUG_EXCEPTION_HANDLER\
267                         BEGIN_PORTABLE_DEBUG_EXCEPTION_HANDLER
268                 #define END_DEBUG_EXCEPTION_HANDLER\
269                         END_PORTABLE_DEBUG_EXCEPTION_HANDLER
270         #endif
271 #else
272         // Dummy ones
273         #define BEGIN_DEBUG_EXCEPTION_HANDLER
274         #define END_DEBUG_EXCEPTION_HANDLER
275 #endif
276
277 #endif // DEBUG_HEADER
278
279