2007-06-28 10:47:08 -07:00
|
|
|
/*
|
|
|
|
* Debug.c
|
|
|
|
*
|
|
|
|
* Various debugging output functions.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#define WIN32_EXTRA_LEAN
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "frame.h"
|
|
|
|
#include "frameint.h"
|
|
|
|
|
|
|
|
#define MAX_FILENAME_SIZE 200
|
|
|
|
#define MAX_LEN_LOG_LINE 512
|
2006-06-29 04:27:14 -07:00
|
|
|
#define MAX_LEN_DEBUG_PART 12
|
2006-08-21 14:27:12 -07:00
|
|
|
|
|
|
|
static debug_callback * callbackRegistry = NULL;
|
2007-06-28 10:47:08 -07:00
|
|
|
static BOOL enabled_debug_parts[LOG_LAST];
|
|
|
|
|
|
|
|
/* This list _must_ match the enum in debug.h! */
|
|
|
|
static const char *code_part_names[] = {
|
2006-08-21 14:27:12 -07:00
|
|
|
"all", "main", "sound", "video", "wz", "3d", "texture",
|
2006-08-12 03:02:59 -07:00
|
|
|
"net", "memory", "error", "never", "script", "last"
|
2007-06-28 10:47:08 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
/**********************************************************************
|
|
|
|
cat_snprintf is like a combination of snprintf and strlcat;
|
|
|
|
it does snprintf to the end of an existing string.
|
|
|
|
|
|
|
|
Like mystrlcat, n is the total length available for str, including
|
|
|
|
existing contents and trailing nul. If there is no extra room
|
|
|
|
available in str, does not change the string.
|
|
|
|
|
|
|
|
Also like mystrlcat, returns the final length that str would have
|
|
|
|
had without truncation. I.e., if return is >= n, truncation occurred.
|
|
|
|
**********************************************************************/
|
|
|
|
static int cat_snprintf(char *str, size_t n, const char *format, ...)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
int ret;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
assert(format != NULL);
|
|
|
|
assert(str != NULL);
|
|
|
|
assert(n > 0);
|
|
|
|
|
|
|
|
len = strlen(str);
|
|
|
|
assert(len < n);
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
ret = vsnprintf(str + len, n - len, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
return (int) (ret + len);
|
|
|
|
}
|
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
/**
|
|
|
|
* Convert code_part names to enum. Case insensitive.
|
|
|
|
*
|
|
|
|
* \return Codepart number or LOG_LAST if can't match.
|
|
|
|
*/
|
2006-02-28 22:12:28 -08:00
|
|
|
static int code_part_from_str(const char *str)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2006-02-28 22:12:28 -08:00
|
|
|
int i;
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
for (i = 0; i < LOG_LAST; i++) {
|
|
|
|
if (strcasecmp(code_part_names[i], str) == 0) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return LOG_LAST;
|
|
|
|
}
|
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for outputing to stderr
|
|
|
|
*
|
|
|
|
* \param data Ignored. Use NULL.
|
|
|
|
* \param outputBuffer Buffer containing the preprocessed text to output.
|
|
|
|
*/
|
|
|
|
void debug_callback_stderr( void ** data, const char * outputBuffer )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2006-08-21 14:27:12 -07:00
|
|
|
if ( !strchr( outputBuffer, '\n' ) ) {
|
|
|
|
fprintf( stderr, "%s\n", outputBuffer );
|
2007-06-28 10:47:08 -07:00
|
|
|
} else {
|
2006-08-21 14:27:12 -07:00
|
|
|
fprintf( stderr, "%s", outputBuffer );
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-23 05:19:17 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for outputting to a win32 debugger
|
|
|
|
*
|
|
|
|
* \param data Ignored. Use NULL.
|
|
|
|
* \param outputBuffer Buffer containing the preprocessed text to output.
|
|
|
|
*/
|
|
|
|
void debug_callback_win32debug( void ** data, const char * outputBuffer )
|
|
|
|
{
|
|
|
|
#if defined WIN32 && defined DEBUG
|
|
|
|
char tmpStr[MAX_LEN_LOG_LINE];
|
|
|
|
|
|
|
|
strcpy( tmpStr, outputBuffer );
|
|
|
|
if ( !strchr( tmpStr, '\n' ) ) {
|
|
|
|
strcat( tmpStr, "\n" );
|
|
|
|
}
|
|
|
|
OutputDebugStringA( tmpStr );
|
|
|
|
#endif // WIN32
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
/**
|
|
|
|
* Callback for outputing to a file
|
|
|
|
*
|
|
|
|
* \param data Filehandle to output to.
|
|
|
|
* \param outputBuffer Buffer containing the preprocessed text to output.
|
|
|
|
*/
|
|
|
|
void debug_callback_file( void ** data, const char * outputBuffer )
|
|
|
|
{
|
|
|
|
FILE * logfile = (FILE*)*data;
|
|
|
|
|
|
|
|
if ( !strchr( outputBuffer, '\n' ) ) {
|
|
|
|
fprintf( logfile, "%s\n", outputBuffer );
|
|
|
|
} else {
|
|
|
|
fprintf( logfile, "%s", outputBuffer );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-23 05:19:17 -07:00
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
/**
|
|
|
|
* Setup the file callback
|
|
|
|
*
|
|
|
|
* Sets data to the filehandle opened for the filename found in data.
|
|
|
|
*
|
|
|
|
* \param[in,out] data In: The filename to output to.
|
|
|
|
* Out: The filehandle.
|
|
|
|
*/
|
|
|
|
void debug_callback_file_init( void ** data )
|
|
|
|
{
|
|
|
|
const char * filename = (const char *)*data;
|
|
|
|
FILE * logfile = NULL;
|
|
|
|
|
|
|
|
assert( strlen( filename ) < MAX_FILENAME_SIZE );
|
|
|
|
|
|
|
|
logfile = fopen( filename, "a" );
|
|
|
|
if (!logfile) {
|
|
|
|
fprintf( stderr, "Could not open %s for appending!\n", filename );
|
|
|
|
} else {
|
2006-08-25 06:20:57 -07:00
|
|
|
setbuf( logfile, NULL );
|
2006-08-21 14:27:12 -07:00
|
|
|
fprintf( logfile, "\n--- Starting log ---\n" );
|
|
|
|
*data = logfile;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-08-23 05:19:17 -07:00
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
/**
|
|
|
|
* Shutdown the file callback
|
|
|
|
*
|
|
|
|
* Closes the logfile.
|
|
|
|
*
|
|
|
|
* \param data The filehandle to close.
|
|
|
|
*/
|
|
|
|
void debug_callback_file_exit( void ** data )
|
|
|
|
{
|
|
|
|
FILE * logfile = (FILE*)*data;
|
|
|
|
fclose( logfile );
|
|
|
|
*data = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
void debug_init(void)
|
|
|
|
{
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
while (strcmp(code_part_names[count], "last") != 0) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
if (count != LOG_LAST) {
|
2006-08-21 14:27:12 -07:00
|
|
|
fprintf( stderr, "LOG_LAST != last; whoever edited the debug code last "
|
|
|
|
"did a mistake.\n" );
|
|
|
|
fprintf( stderr, "Always edit both the enum in debug.h and the string "
|
|
|
|
"list in debug.c!\n" );
|
2007-06-28 10:47:08 -07:00
|
|
|
exit(1);
|
|
|
|
}
|
2006-08-21 14:27:12 -07:00
|
|
|
memset( enabled_debug_parts, FALSE, sizeof(enabled_debug_parts) );
|
2007-06-28 10:47:08 -07:00
|
|
|
enabled_debug_parts[LOG_ERROR] = TRUE;
|
|
|
|
}
|
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
|
|
|
|
void debug_exit(void)
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2006-08-21 14:27:12 -07:00
|
|
|
debug_callback * curCallback = callbackRegistry, * tmpCallback = NULL;
|
|
|
|
|
|
|
|
while ( curCallback )
|
|
|
|
{
|
|
|
|
if ( curCallback->exit )
|
|
|
|
curCallback->exit( &curCallback->data );
|
|
|
|
tmpCallback = curCallback->next;
|
|
|
|
free( curCallback );
|
|
|
|
curCallback = tmpCallback;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2006-08-21 14:27:12 -07:00
|
|
|
|
|
|
|
callbackRegistry = NULL;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
|
|
|
|
void debug_register_callback( debug_callback_fn callback, debug_callback_init init, debug_callback_exit exit, void * data )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
2006-08-21 14:27:12 -07:00
|
|
|
debug_callback * curCallback = callbackRegistry, * tmpCallback = NULL;
|
|
|
|
|
|
|
|
tmpCallback = (debug_callback*)malloc(sizeof(debug_callback));
|
|
|
|
|
|
|
|
tmpCallback->next = NULL;
|
|
|
|
tmpCallback->callback = callback;
|
|
|
|
tmpCallback->init = init;
|
|
|
|
tmpCallback->exit = exit;
|
|
|
|
tmpCallback->data = data;
|
|
|
|
|
|
|
|
if ( tmpCallback->init )
|
|
|
|
tmpCallback->init( &tmpCallback->data );
|
|
|
|
|
|
|
|
if ( !curCallback )
|
|
|
|
{
|
|
|
|
callbackRegistry = tmpCallback;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while ( curCallback->next )
|
|
|
|
curCallback = curCallback->next;
|
|
|
|
|
|
|
|
curCallback->next = tmpCallback;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
BOOL debug_enable_switch(const char *str)
|
|
|
|
{
|
2006-02-28 22:12:28 -08:00
|
|
|
int part = code_part_from_str(str);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
if (part != LOG_LAST) {
|
|
|
|
enabled_debug_parts[part] = !enabled_debug_parts[part];
|
|
|
|
}
|
|
|
|
if (part == LOG_ALL) {
|
|
|
|
memset(enabled_debug_parts, TRUE, sizeof(enabled_debug_parts));
|
|
|
|
}
|
|
|
|
return (part != LOG_LAST);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
void debug( code_part part, const char *str, ... )
|
2007-06-28 10:47:08 -07:00
|
|
|
{
|
|
|
|
va_list ap;
|
2006-08-21 14:27:12 -07:00
|
|
|
static char inputBuffer[2][MAX_LEN_LOG_LINE];
|
|
|
|
static char outputBuffer[MAX_LEN_LOG_LINE+MAX_LEN_DEBUG_PART];
|
|
|
|
static BOOL useInputBuffer1 = FALSE;
|
|
|
|
|
|
|
|
debug_callback * curCallback = callbackRegistry;
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
static unsigned int repeated = 0; /* times current message repeated */
|
|
|
|
static unsigned int next = 2; /* next total to print update */
|
|
|
|
static unsigned int prev = 0; /* total on last update */
|
|
|
|
|
|
|
|
/* Not enabled debugging for this part? Punt! */
|
|
|
|
if (!enabled_debug_parts[part]) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-19 15:45:58 -07:00
|
|
|
va_start(ap, str);
|
2006-08-21 14:27:12 -07:00
|
|
|
vsnprintf( useInputBuffer1 ? inputBuffer[1] : inputBuffer[0], MAX_LEN_LOG_LINE, str, ap );
|
2006-08-19 15:45:58 -07:00
|
|
|
va_end(ap);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2006-08-21 14:27:12 -07:00
|
|
|
if ( strncmp( inputBuffer[0], inputBuffer[1], MAX_LEN_LOG_LINE - 1 ) == 0 ) {
|
|
|
|
// Recieved again the same line
|
2007-06-28 10:47:08 -07:00
|
|
|
repeated++;
|
|
|
|
if (repeated == next) {
|
2006-08-21 14:27:12 -07:00
|
|
|
snprintf( outputBuffer, sizeof(outputBuffer), "last message repeated %d times", repeated - prev );
|
2007-06-28 10:47:08 -07:00
|
|
|
if (repeated > 2) {
|
2006-08-21 14:27:12 -07:00
|
|
|
cat_snprintf( outputBuffer, sizeof(outputBuffer), " (total %d repeats)", repeated );
|
|
|
|
}
|
|
|
|
while (curCallback)
|
|
|
|
{
|
|
|
|
curCallback->callback( &curCallback->data, outputBuffer );
|
|
|
|
curCallback = curCallback->next;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2006-08-21 14:27:12 -07:00
|
|
|
curCallback = callbackRegistry;
|
2007-06-28 10:47:08 -07:00
|
|
|
prev = repeated;
|
|
|
|
next *= 2;
|
2006-06-29 04:27:14 -07:00
|
|
|
}
|
|
|
|
} else {
|
2006-08-21 14:27:12 -07:00
|
|
|
// Recieved another line, cleanup the old
|
|
|
|
if (repeated > 0 && repeated != prev && repeated != 1) {
|
|
|
|
/* just repeat the previous message when only one repeat occured */
|
|
|
|
snprintf( outputBuffer, sizeof(outputBuffer), "last message repeated %d times", repeated - prev );
|
|
|
|
if (repeated > 2) {
|
|
|
|
cat_snprintf( outputBuffer, sizeof(outputBuffer), " (total %d repeats)", repeated );
|
|
|
|
}
|
|
|
|
while (curCallback)
|
|
|
|
{
|
|
|
|
curCallback->callback( &curCallback->data, outputBuffer );
|
|
|
|
curCallback = curCallback->next;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
2006-08-21 14:27:12 -07:00
|
|
|
curCallback = callbackRegistry;
|
2007-06-28 10:47:08 -07:00
|
|
|
}
|
|
|
|
repeated = 0;
|
|
|
|
next = 2;
|
|
|
|
prev = 0;
|
|
|
|
}
|
2006-08-21 14:27:12 -07:00
|
|
|
|
|
|
|
if (!repeated)
|
|
|
|
{
|
|
|
|
// Assemble the outputBuffer:
|
|
|
|
sprintf( outputBuffer, "%s:", code_part_names[part] );
|
|
|
|
memset( outputBuffer + strlen( code_part_names[part] ) + 1, ' ', MAX_LEN_DEBUG_PART - strlen( code_part_names[part] ) - 1 ); // Fill with whitespaces
|
|
|
|
snprintf( outputBuffer + MAX_LEN_DEBUG_PART, MAX_LEN_LOG_LINE, useInputBuffer1 ? inputBuffer[1] : inputBuffer[0] ); // Append the message
|
|
|
|
|
|
|
|
while (curCallback)
|
|
|
|
{
|
|
|
|
curCallback->callback( &curCallback->data, outputBuffer );
|
|
|
|
curCallback = curCallback->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
useInputBuffer1 = !useInputBuffer1; // Swap buffers
|
|
|
|
}
|