2006-03-08 13:58:46 +00:00
|
|
|
#include <stdlib.h>
|
2004-06-12 15:20:07 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include "error.h"
|
|
|
|
|
2004-06-13 22:42:29 +01:00
|
|
|
//! Die from error with exit code
|
|
|
|
void
|
|
|
|
error_die (void)
|
|
|
|
{
|
2006-01-02 21:06:08 +00:00
|
|
|
exit (EXIT_ERROR);
|
2004-06-13 22:42:29 +01:00
|
|
|
}
|
|
|
|
|
2006-08-02 11:29:40 +01:00
|
|
|
//! print to stderror (must be generic to capture linux variants)
|
|
|
|
void
|
|
|
|
vprintfstderr (char *fmt, va_list args)
|
|
|
|
{
|
|
|
|
#ifdef linux
|
|
|
|
vfprintf (stderr, fmt, args);
|
|
|
|
#else
|
|
|
|
// nothing for non-linux yet
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
printfstderr (char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start (args, fmt);
|
|
|
|
vprintfstderr (fmt, args);
|
|
|
|
va_end (args);
|
|
|
|
}
|
|
|
|
|
2004-06-13 22:42:29 +01:00
|
|
|
//! Print error message header
|
|
|
|
/**
|
|
|
|
* Adapted from [K&R2], p. 174
|
|
|
|
*@todo It would be nice to redirect all output to stderr, which would enable use of termprint etc.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
error_pre (void)
|
|
|
|
{
|
2006-08-02 11:29:40 +01:00
|
|
|
printfstderr ("error: ");
|
2004-06-13 22:42:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//! Print post-error message and die.
|
2004-06-12 15:20:07 +01:00
|
|
|
/**
|
|
|
|
* Adapted from [K&R2], p. 174
|
|
|
|
* Input is comparable to printf, only end of line is not required.
|
|
|
|
*/
|
2004-06-13 22:42:29 +01:00
|
|
|
void
|
2004-08-09 11:05:58 +01:00
|
|
|
error_post (char *fmt, ...)
|
2004-06-12 15:20:07 +01:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start (args, fmt);
|
2006-08-02 11:29:40 +01:00
|
|
|
vprintfstderr (fmt, args);
|
|
|
|
printfstderr ("\n");
|
2004-06-12 15:20:07 +01:00
|
|
|
va_end (args);
|
2006-01-02 21:06:08 +00:00
|
|
|
exit (EXIT_ERROR);
|
2004-06-12 15:20:07 +01:00
|
|
|
}
|
2004-06-13 22:42:29 +01:00
|
|
|
|
|
|
|
//! Print error message and die.
|
|
|
|
/**
|
|
|
|
* Adapted from [K&R2], p. 174
|
|
|
|
* Input is comparable to printf, only end of line is not required.
|
|
|
|
*/
|
|
|
|
void
|
2004-08-09 11:05:58 +01:00
|
|
|
error (char *fmt, ...)
|
2004-06-13 22:42:29 +01:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
error_pre ();
|
|
|
|
va_start (args, fmt);
|
2006-08-02 11:29:40 +01:00
|
|
|
vprintfstderr (fmt, args);
|
|
|
|
printfstderr ("\n");
|
2004-06-13 22:42:29 +01:00
|
|
|
va_end (args);
|
|
|
|
error_die ();
|
|
|
|
}
|
2004-07-14 08:31:01 +01:00
|
|
|
|
|
|
|
//! Print warning
|
|
|
|
/**
|
|
|
|
* Input is comparable to printf, only end of line is not required.
|
|
|
|
*/
|
|
|
|
void
|
2004-08-09 11:05:58 +01:00
|
|
|
warning (char *fmt, ...)
|
2004-07-14 08:31:01 +01:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start (args, fmt);
|
2006-08-02 11:29:40 +01:00
|
|
|
printfstderr ("warning: ");
|
|
|
|
vprintfstderr (fmt, args);
|
|
|
|
printfstderr ("\n");
|
2004-07-14 08:31:01 +01:00
|
|
|
va_end (args);
|
|
|
|
}
|