2004-05-15 15:22:44 +01:00
|
|
|
/**
|
|
|
|
*@file debug.c
|
|
|
|
*\brief Debugging code.
|
|
|
|
*
|
|
|
|
* It is hoped that this code will become redundant over time.
|
|
|
|
*/
|
2004-04-23 11:58:43 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "debug.h"
|
|
|
|
#include "runs.h"
|
|
|
|
|
|
|
|
static int debuglevel;
|
|
|
|
|
2004-05-15 15:22:44 +01:00
|
|
|
//! Set the debuglevel from the main code.
|
2004-04-23 11:58:43 +01:00
|
|
|
void
|
|
|
|
debugSet (int level)
|
|
|
|
{
|
|
|
|
debuglevel = level;
|
|
|
|
}
|
|
|
|
|
2004-05-15 15:22:44 +01:00
|
|
|
//! Test whether some debuglevel is meant to be printed.
|
|
|
|
/**
|
|
|
|
*@param level The debuglevel
|
|
|
|
*@return True iff level is smaller than, or equal to, the last set debuglevel.
|
|
|
|
*\sa debugSet()
|
|
|
|
*/
|
2004-04-23 11:58:43 +01:00
|
|
|
int
|
|
|
|
debugCond (int level)
|
|
|
|
{
|
|
|
|
return (level <= debuglevel);
|
|
|
|
}
|
|
|
|
|
2004-05-15 15:22:44 +01:00
|
|
|
//! Print some debug string for some level, if desired.
|
|
|
|
/**
|
|
|
|
*@param level The debuglevel
|
|
|
|
*@param string The string to be displayed for this level.
|
|
|
|
*@return If the debuglevel is higher than the level, the string is ignored.
|
|
|
|
* Otherwise it will be printed.
|
|
|
|
*\sa debugCond()
|
|
|
|
*/
|
2004-04-23 11:58:43 +01:00
|
|
|
void
|
|
|
|
debug (int level, char *string)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (debugCond (level))
|
|
|
|
{
|
|
|
|
indent ();
|
2004-05-12 15:07:56 +01:00
|
|
|
fprintf (stderr, "DEBUG [%i]: %s\n", level, string);
|
2004-04-23 11:58:43 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|