Open SCAP Library
Loading...
Searching...
No Matches
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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
40#define OSCAP_DEBUGOBJ_SEXP 1
41
42#ifndef _A
43#define _A(x) assert(x)
44#endif
45
46
47# define __dlprintf_wrapper(l, ...) __oscap_dlprintf (l, __FILE__, __PRETTY_FUNCTION__, __LINE__, 0, __VA_ARGS__)
48
54# define oscap_dlprintf(l, ...) __dlprintf_wrapper (l, __VA_ARGS__)
55
56void __oscap_debuglog_object (const char *file, const char *fn, size_t line, int objtype, void *obj);
57
58# define dO(type, obj) __oscap_debuglog_object(__FILE__, __PRETTY_FUNCTION__, __LINE__, type, obj)
59
60
61#define dI(...) oscap_dlprintf(DBG_I, __VA_ARGS__)
62#define dW(...) oscap_dlprintf(DBG_W, __VA_ARGS__)
63#define dE(...) oscap_dlprintf(DBG_E, __VA_ARGS__)
64#define dD(...) oscap_dlprintf(DBG_D, __VA_ARGS__)
65
66#define dIndent(indent_change) __oscap_dlprintf(DBG_I, __FILE__, __PRETTY_FUNCTION__, __LINE__, indent_change, NULL)
67
68
69#endif