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
|
/*
* Copyright 2008-2013 Various Authors
* Copyright 2004-2005 Timo Hirvonen
*
* 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, see <http://www.gnu.org/licenses/>.
*/
#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
}
|