Open SCAP Library
debug_priv.h
Go to the documentation of this file.
1 
5 /*
6  * Copyright 2011 Red Hat Inc., Durham, North Carolina.
7  * All Rights Reserved.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  * Authors:
24  * Daniel Kopecek <dkopecek@redhat.com>
25  * Peter Vrabec <pvrabec@redhat.com>
26  */
27 
28 #pragma once
29 #ifndef OSCAP_DEBUG_PRIV_H_
30 #define OSCAP_DEBUG_PRIV_H_
31 
32 #include "util.h"
33 #include "public/debug.h"
34 
35 
36 #define OSCAP_DEBUGOBJ_SEXP 1
37 
38 #include <assert.h>
39 #ifndef _A
40 #define _A(x) assert(x)
41 #endif
42 
43 #if defined(NDEBUG)
44 # define oscap_dlprintf(...) while(0)
45 # define debug(l) if (0)
46 # define dO(type, obj) while(0)
47 #else
48 # include <stdlib.h>
49 # include <stddef.h>
50 # include <stdarg.h>
51 
52 enum {
53  DBG_E = 1,
54  DBG_W,
55  DBG_I
56 };
57 
58 # define __dlprintf_wrapper(l, ...) __oscap_dlprintf (l, __FILE__, __PRETTY_FUNCTION__, __LINE__, __VA_ARGS__)
59 
60 extern int __debuglog_level;
61 
75 # define debug(l) if ((__debuglog_level = (__debuglog_level == -1 ? atoi (getenv (OSCAP_DEBUG_LEVEL_ENV) == NULL ? "0" : getenv (OSCAP_DEBUG_LEVEL_ENV)) : __debuglog_level)) && __debuglog_level >= (l))
76 
87 void __oscap_dlprintf(int level, const char *file, const char *fn, size_t line, const char *fmt, ...);
88 
94 # define oscap_dlprintf(l, ...) __dlprintf_wrapper (l, __VA_ARGS__)
95 
96 void __oscap_debuglog_object (const char *file, const char *fn, size_t line, int objtype, void *obj);
97 
98 # define dO(type, obj) __oscap_debuglog_object(__FILE__, __PRETTY_FUNCTION__, __LINE__, type, obj)
99 
100 #endif /* NDEBUG */
101 
102 #define dI(...) oscap_dlprintf(DBG_I, __VA_ARGS__)
103 #define dW(...) oscap_dlprintf(DBG_W, __VA_ARGS__)
104 #define dE(...) oscap_dlprintf(DBG_E, __VA_ARGS__)
105 
106 #endif