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
|
/*
* debug.c - Debugging utilities
*
* vdpau-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 "utils.h"
#include <stdarg.h>
static void do_vfprintf(FILE *fp, const char *msg, va_list args)
{
/* XXX: use another printf() function, e.g. a valgrind one to
maintain correct control flow */
vfprintf(fp, msg, args);
}
static void do_fprintf(FILE *fp, const char *msg, ...)
{
va_list args;
va_start(args, msg);
do_vfprintf(fp, msg, args);
va_end(args);
}
void vdpau_error_message(const char *msg, ...)
{
va_list args;
do_fprintf(stderr, "%s: error: ", PACKAGE_NAME);
va_start(args, msg);
do_vfprintf(stderr, msg, args);
va_end(args);
}
void vdpau_information_message(const char *msg, ...)
{
va_list args;
do_fprintf(stdout, "%s: ", PACKAGE_NAME);
va_start(args, msg);
do_vfprintf(stdout, msg, args);
va_end(args);
}
static int debug_enabled(void)
{
static int g_debug_enabled = -1;
if (g_debug_enabled < 0) {
if (getenv_yesno("VDPAU_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_fprintf(stdout, "%s: ", PACKAGE_NAME);
va_start(args, msg);
do_vfprintf(stdout, 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("VDPAU_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("VDPAU_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);
}
|