File: debug.c

package info (click to toggle)
xvba-video 0.8.0-5
  • links: PTS, VCS
  • area: contrib
  • in suites: wheezy
  • size: 2,240 kB
  • sloc: ansic: 11,991; sh: 8,759; makefile: 189; python: 93
file content (158 lines) | stat: -rw-r--r-- 3,859 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
 *  debug.c - Debugging utilities
 *
 *  xvba-video (C) 2009-2011 Splitted-Desktop Systems
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
 */

#include "sysdeps.h"
#include "debug.h"
#include <stdarg.h>
#include "utils.h"

#if USE_VALGRIND
# include <valgrind.h>
#endif

static void do_vprintf(const char *msg, va_list args)
{
#if USE_VALGRIND
    if (RUNNING_ON_VALGRIND) {
        static char *fmt = NULL;
        static int fmtlen = 0;

        int xmsglen = vsnprintf(NULL, 0, msg, args);
        if ((fmt = realloc(fmt, fmtlen + xmsglen + 1)) != NULL) {
            vsnprintf(fmt + fmtlen, fmtlen + xmsglen + 1, msg, args);
            fmt[fmtlen += xmsglen] = '\0';
            if (fmt[fmtlen - 1] == '\n') {
                fmt[fmtlen - 1] = '\0';
                VALGRIND_PRINTF(fmt); /* this already adds a terminal '\n' */
                free(fmt);
                fmt = NULL;
                fmtlen = 0;
            }
        }
        return;
    }
#endif
    vprintf(msg, args);
}

static void do_printf(const char *msg, ...)
{
    va_list args;
    va_start(args, msg);
    do_vprintf(msg, args);
    va_end(args);
}

void xvba_error_message(const char *msg, ...)
{
    va_list args;

    fprintf(stderr, "%s: error: ", PACKAGE_NAME);
    va_start(args, msg);
    vfprintf(stderr, msg, args);
    va_end(args);
}

void xvba_information_message(const char *msg, ...)
{
    va_list args;

    do_printf("%s: ", PACKAGE_NAME);
    va_start(args, msg);
    do_vprintf(msg, args);
    va_end(args);
}

static int debug_enabled(void)
{
    static int g_debug_enabled = -1;
    if (g_debug_enabled < 0) {
        if (getenv_yesno("XVBA_VIDEO_DEBUG", &g_debug_enabled) < 0)
            g_debug_enabled = 0;
    }
    return g_debug_enabled;
}

void debug_message(const char *msg, ...)
{
    va_list args;

    if (!debug_enabled())
        return;

    do_printf("%s: ", PACKAGE_NAME);
    va_start(args, msg);
    do_vprintf(msg, args);
    va_end(args);
}

static int g_trace_is_new_line  = 1;
static int g_trace_indent       = 0;

int trace_enabled(void)
{
    static int g_trace_enabled = -1;
    if (g_trace_enabled < 0) {
        if (getenv_yesno("XVBA_VIDEO_TRACE", &g_trace_enabled) < 0)
            g_trace_enabled = 0;
    }
    return g_trace_enabled;
}

static int trace_indent_width(void)
{
    static int g_indent_width = -1;
    if (g_indent_width < 0) {
        if (getenv_int("XVBA_VIDEO_TRACE_INDENT_WIDTH", &g_indent_width) < 0)
            g_indent_width = 4;
    }
    return g_indent_width;
}

void trace_indent(int inc)
{
    g_trace_indent += inc;
}

void trace_print(const char *format, ...)
{
    va_list args;

    if (g_trace_is_new_line) {
        int i, j, n;
        printf("%s: ", PACKAGE_NAME);
        n = trace_indent_width();
        for (i = 0; i < g_trace_indent; i++) {
            for (j = 0; j < n / 4; j++)
                printf("    ");
            for (j = 0; j < n % 4; j++)
                printf(" ");
        }
    }

    va_start(args, format);
    vfprintf(stdout, format, args);
    va_end(args);

    g_trace_is_new_line = (strchr(format, '\n') != NULL);

    if (g_trace_is_new_line)
        fflush(stdout);
}