Open SCAP Library
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
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 <assert.h>
33 #include <stdlib.h>
34 #include <stddef.h>
35 #include <stdarg.h>
36 #include "util.h"
37 #include "public/oscap_debug.h"
38 
39 OSCAP_HIDDEN_START;
40 
41 #define OSCAP_DEBUGOBJ_SEXP 1
42 
43 #ifndef _A
44 #define _A(x) assert(x)
45 #endif
46 
47 
48 # define __dlprintf_wrapper(l, ...) __oscap_dlprintf (l, __FILE__, __PRETTY_FUNCTION__, __LINE__, 0, __VA_ARGS__)
49 
61 void __oscap_dlprintf(int level, const char *file, const char *fn, size_t line, int delta_indent, const char *fmt, ...);
62 
68 # define oscap_dlprintf(l, ...) __dlprintf_wrapper (l, __VA_ARGS__)
69 
70 void __oscap_debuglog_object (const char *file, const char *fn, size_t line, int objtype, void *obj);
71 
72 # define dO(type, obj) __oscap_debuglog_object(__FILE__, __PRETTY_FUNCTION__, __LINE__, type, obj)
73 
74 
75 #define dI(...) oscap_dlprintf(DBG_I, __VA_ARGS__)
76 #define dW(...) oscap_dlprintf(DBG_W, __VA_ARGS__)
77 #define dE(...) oscap_dlprintf(DBG_E, __VA_ARGS__)
78 #define dD(...) oscap_dlprintf(DBG_D, __VA_ARGS__)
79 
80 #define dIndent(indent_change) __oscap_dlprintf(DBG_I, __FILE__, __PRETTY_FUNCTION__, __LINE__, indent_change, NULL)
81 
82 OSCAP_HIDDEN_END;
83 
84 #endif
void __oscap_dlprintf(int level, const char *file, const char *fn, size_t line, int delta_indent, const char *fmt,...)
Version of the oscap_dprintf function with support for debug level.
Definition: debug.c:216