freebsd-dev/contrib/awk/msg.c
2001-11-02 21:06:08 +00:00

185 lines
3.8 KiB
C

/*
* msg.c - routines for error messages
*/
/*
* Copyright (C) 1986, 1988, 1989, 1991-2001 the Free Software Foundation, Inc.
*
* This file is part of GAWK, the GNU implementation of the
* AWK Programming Language.
*
* GAWK 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, or (at your option)
* any later version.
*
* GAWK 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#include "awk.h"
int sourceline = 0;
char *source = NULL;
static char *srcfile = NULL;
static int srcline;
/* prototype needed for ansi / gcc */
void err P((const char *s, const char *emsg, va_list argp));
/* err --- print an error message with source line and file and record */
/* VARARGS2 */
void
err(const char *s, const char *emsg, va_list argp)
{
char *file;
(void) fflush(stdout);
(void) fprintf(stderr, "%s: ", myname);
#ifdef GAWKDEBUG
if (srcfile != NULL) {
fprintf(stderr, "%s:%d:", srcfile, srcline);
srcfile = NULL;
}
#endif /* GAWKDEBUG */
if (sourceline != 0) {
if (source != NULL)
(void) fprintf(stderr, "%s:", source);
else
(void) fprintf(stderr, _("cmd. line:"));
(void) fprintf(stderr, "%d: ", sourceline);
}
if (FNR > 0) {
file = FILENAME_node->var_value->stptr;
(void) putc('(', stderr);
if (file)
(void) fprintf(stderr, "FILENAME=%s ", file);
(void) fprintf(stderr, "FNR=%ld) ", FNR);
}
(void) fprintf(stderr, s);
vfprintf(stderr, emsg, argp);
(void) fprintf(stderr, "\n");
(void) fflush(stderr);
}
/* msg --- take a varargs error message and print it */
/*
* Function identifier purposely indented to avoid mangling
* by ansi2knr. Sigh.
*/
void
#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
msg(char *mesg, ...)
#else
/*VARARGS0*/
msg(va_alist)
va_dcl
#endif
{
va_list args;
#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
va_start(args, mesg);
#else
char *mesg;
va_start(args);
mesg = va_arg(args, char *);
#endif
err("", mesg, args);
va_end(args);
}
/* warning --- print a warning message */
void
#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
warning(char *mesg, ...)
#else
/*VARARGS0*/
warning(va_alist)
va_dcl
#endif
{
va_list args;
#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
va_start(args, mesg);
#else
char *mesg;
va_start(args);
mesg = va_arg(args, char *);
#endif
err(_("warning: "), mesg, args);
va_end(args);
}
void
#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
error(char *mesg, ...)
#else
/*VARARGS0*/
error(va_alist)
va_dcl
#endif
{
va_list args;
#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
va_start(args, mesg);
#else
char *mesg;
va_start(args);
mesg = va_arg(args, char *);
#endif
err(_("error: "), mesg, args);
va_end(args);
}
/* set_loc --- set location where a fatal error happened */
void
set_loc(char *file, int line)
{
srcfile = file;
srcline = line;
}
/* fatal --- print an error message and die */
void
#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
r_fatal(char *mesg, ...)
#else
/*VARARGS0*/
r_fatal(va_alist)
va_dcl
#endif
{
va_list args;
#if defined(HAVE_STDARG_H) && defined(__STDC__) && __STDC__
va_start(args, mesg);
#else
char *mesg;
va_start(args);
mesg = va_arg(args, char *);
#endif
err(_("fatal: "), mesg, args);
va_end(args);
#ifdef GAWKDEBUG
abort();
#endif
exit(2);
}