Fix:maptool:Another name for faroe islands
[navit-package] / navit / debug.h
1 /**
2  * Navit, a modular navigation system.
3  * Copyright (C) 2005-2008 Navit Team
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
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 Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this program; if not, write to the
16  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA  02110-1301, USA.
18  */
19
20 #ifndef NAVIT_DEBUG_H
21 #define NAVIT_DEBUG_H
22
23 #ifdef __cplusplus
24 extern "C" {
25 #endif
26
27 #include <stdarg.h>
28 #include <string.h>
29 extern int debug_level;
30 #define dbg_str2(x) #x
31 #define dbg_str1(x) dbg_str2(x)
32 #define dbg_module dbg_str1(MODULE)
33 #define dbg(level,fmt...) ({ if (debug_level >= level) debug_printf(level,dbg_module,strlen(dbg_module),__PRETTY_FUNCTION__, strlen(__PRETTY_FUNCTION__),1,fmt); })
34 #define dbg_assert(expr) ((expr) ? (void) 0 : debug_assert_fail(dbg_module,strlen(dbg_module),__PRETTY_FUNCTION__, strlen(__PRETTY_FUNCTION__),__FILE__,__LINE__,dbg_str1(expr)))
35
36 /* prototypes */
37 struct attr;
38 void debug_init(const char *program_name);
39 void debug_destroy(void);
40 void debug_set_logfile(const char *path);
41 void debug_level_set(const char *name, int level);
42 int debug_level_get(const char *name);
43 struct debug *debug_new(struct attr *parent, struct attr **attrs);
44 void debug_vprintf(int level, const char *module, const int mlen, const char *function, const int flen, int prefix, const char *fmt, va_list ap);
45 void debug_printf(int level, const char *module, const int mlen, const char *function, const int flen, int prefix, const char *fmt, ...);
46 void debug_assert_fail(char *module, const int mlen,const char *function, const int flen, char *file, int line, char *expr);
47 /* end of prototypes */
48
49 #ifdef __cplusplus
50 }
51 #endif
52
53 #endif
54