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
|
/*b
* Copyright (C) 2001,2002 Rick Richardson
*
* 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Author: Rick Richardson <rickr@mn.rr.com>
b*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <errno.h>
#include "error.h"
/*
* Error routines
*/
static int ErrorCount = 0;
static int SysErrorCount = 0;
static char ErrorTag[256];
static void (*UserErrorExit)(void);
void
error_init(void (*exitfunc)(void), char *tagfmt, ...)
{
va_list ap;
UserErrorExit = exitfunc;
ErrorCount = 0;
SysErrorCount = 0;
if (tagfmt)
{
va_start(ap, tagfmt);
vsnprintf(ErrorTag, sizeof(ErrorTag) - 2, tagfmt, ap);
va_end(ap);
if (ErrorTag[0])
strcat(ErrorTag, ": ");
}
setvbuf(stderr, (char *) NULL, _IOLBF, BUFSIZ);
}
void
error(int fatal, char *fmt, ...)
{
va_list ap;
++ErrorCount;
if (fatal && UserErrorExit)
(*UserErrorExit)();
fprintf(stderr, "%sERROR: ", ErrorTag);
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
if (fatal)
exit(fatal & 255);
}
void
syserror(int fatal, char *fmt, ...)
{
va_list ap;
int err = errno;
++SysErrorCount;
if (fatal && UserErrorExit)
(*UserErrorExit)();
fprintf(stderr, "%sERROR: ", ErrorTag);
#ifdef bsdi
if (err > 0 && err <= sys_nerr)
(void) fprintf(stderr, "%s: ", sys_errlist[err]);
#else
(void) fprintf(stderr, "%s: ", strerror(err));
#endif
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
if (fatal)
exit(fatal & 255);
}
|