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
|
/*
* Copyright 2004-2005 Timo Hirvonen
*/
#include "debug.h"
#include "prog.h"
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <sys/time.h>
#if DEBUG > 1
static FILE *debug_stream = NULL;
#endif
void debug_init(void)
{
#if DEBUG > 1
char filename[512];
const char *dir = getenv("CMUS_HOME");
if (!dir || !dir[0]) {
dir = getenv("HOME");
if (!dir)
die("error: environment variable HOME not set\n");
}
snprintf(filename, sizeof(filename), "%s/cmus-debug.txt", dir);
debug_stream = fopen(filename, "w");
if (debug_stream == NULL)
die_errno("error opening `%s' for writing", filename);
#endif
}
/* This function must be defined even if debugging is disabled in the program
* because debugging might still be enabled in some plugin.
*/
void __debug_bug(const char *function, const char *fmt, ...)
{
const char *format = "\n%s: BUG: ";
va_list ap;
/* debug_stream exists only if debugging is enabled */
#if DEBUG > 1
fprintf(debug_stream, format, function);
va_start(ap, fmt);
vfprintf(debug_stream, fmt, ap);
va_end(ap);
#endif
/* always print bug message to stderr */
fprintf(stderr, format, function);
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
exit(127);
}
void __debug_print(const char *function, const char *fmt, ...)
{
#if DEBUG > 1
va_list ap;
fprintf(debug_stream, "%s: ", function);
va_start(ap, fmt);
vfprintf(debug_stream, fmt, ap);
va_end(ap);
fflush(debug_stream);
#endif
}
uint64_t timer_get(void)
{
#if DEBUG > 1
struct timeval tv;
gettimeofday(&tv, NULL);
return tv.tv_sec * 1e6L + tv.tv_usec;
#else
return 0;
#endif
}
void timer_print(const char *what, uint64_t usec)
{
#if DEBUG > 1
uint64_t a = usec / 1e6;
uint64_t b = usec - a * 1e6;
__debug_print("TIMER", "%s: %11u.%06u\n", what, (unsigned int)a, (unsigned int)b);
#endif
}
|