Updated Copyright year to 2013
[getmangos.git] / src / shared / Errors.h
blob1e1af38888373c67f5261c3dcff0d34bc56bbcb6
1 /*
2 * Copyright (C) 2005-2013 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef MANGOSSERVER_ERRORS_H
20 #define MANGOSSERVER_ERRORS_H
22 #include "Common.h"
24 #ifndef HAVE_CONFIG_H
25 # define HAVE_ACE_STACK_TRACE_H 1
26 #endif
28 #ifdef HAVE_ACE_STACK_TRACE_H
29 # include "ace/Stack_Trace.h"
30 #endif
32 #ifdef HAVE_ACE_STACK_TRACE_H
33 // Normal assert.
34 #define WPError(CONDITION) \
35 if (!(CONDITION)) \
36 { \
37 ACE_Stack_Trace st; \
38 printf("%s:%i: Error: Assertion in %s failed: %s\nStack Trace:\n%s", \
39 __FILE__, __LINE__, __FUNCTION__, STRINGIZE(CONDITION), st.c_str()); \
40 assert(STRINGIZE(CONDITION) && 0); \
43 // Just warn.
44 #define WPWarning(CONDITION) \
45 if (!(CONDITION)) \
46 { \
47 ACE_Stack_Trace st; \
48 printf("%s:%i: Warning: Assertion in %s failed: %s\nStack Trace:\n%s",\
49 __FILE__, __LINE__, __FUNCTION__, STRINGIZE(CONDITION), st.c_str()); \
51 #else
52 // Normal assert.
53 #define WPError(CONDITION) \
54 if (!(CONDITION)) \
55 { \
56 printf("%s:%i: Error: Assertion in %s failed: %s", \
57 __FILE__, __LINE__, __FUNCTION__, STRINGIZE(CONDITION)); \
58 assert(STRINGIZE(CONDITION) && 0); \
61 // Just warn.
62 #define WPWarning(CONDITION) \
63 if (!(CONDITION)) \
64 { \
65 printf("%s:%i: Warning: Assertion in %s failed: %s",\
66 __FILE__, __LINE__, __FUNCTION__, STRINGIZE(CONDITION)); \
68 #endif
70 #ifdef MANGOS_DEBUG
71 # define MANGOS_ASSERT WPError
72 #else
73 # define MANGOS_ASSERT WPError // Error even if in release mode.
74 #endif
76 #endif