285 lines
4.9 KiB
C
285 lines
4.9 KiB
C
|
/***************************************************************************
|
||
|
|
||
|
error.c
|
||
|
|
||
|
Errors management routines
|
||
|
|
||
|
(c) 2000-2007 Benoit Minisini <gambas@users.sourceforge.net>
|
||
|
|
||
|
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 1, 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.
|
||
|
|
||
|
***************************************************************************/
|
||
|
|
||
|
#define __GB_ERROR_C
|
||
|
|
||
|
#include "gb_common.h"
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
#include "gb_buffer.h"
|
||
|
#include "gb_error.h"
|
||
|
|
||
|
|
||
|
PUBLIC ERROR_INFO ERROR_info;
|
||
|
|
||
|
|
||
|
static const char *_message[] =
|
||
|
{
|
||
|
/* 0 E_UNKNOWN */ "Unknown error",
|
||
|
/* 1 E_MEMORY */ "Out of memory",
|
||
|
/* 2 E_OPEN */ "Cannot open file: &1",
|
||
|
/* 3 E_READ */ "Cannot read file: &1",
|
||
|
/* 4 E_SYNTAX */ "Syntax error",
|
||
|
/* 5 E_UNEXPECTED */ "Unexpected &1",
|
||
|
NULL
|
||
|
};
|
||
|
|
||
|
static ERROR_CONTEXT *_current = NULL;
|
||
|
|
||
|
|
||
|
PUBLIC void ERROR_enter(ERROR_CONTEXT *err)
|
||
|
{
|
||
|
CLEAR(err);
|
||
|
err->prev = _current;
|
||
|
_current = err;
|
||
|
}
|
||
|
|
||
|
|
||
|
PUBLIC void ERROR_leave(ERROR_CONTEXT *err)
|
||
|
{
|
||
|
if (err->prev != ERROR_LEAVE_DONE)
|
||
|
{
|
||
|
/*ERROR_panic("ERROR_leave already done");*/
|
||
|
|
||
|
_current = err->prev;
|
||
|
err->prev = ERROR_LEAVE_DONE;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
PUBLIC char *ERROR_get(void)
|
||
|
{
|
||
|
/*
|
||
|
if (code > 0 && code < 256)
|
||
|
return strerror(code);
|
||
|
else
|
||
|
return ERROR_Message[code - 256];
|
||
|
*/
|
||
|
return strerror(errno);
|
||
|
}
|
||
|
|
||
|
|
||
|
PUBLIC void ERROR_define(const char *pattern, const char *arg[])
|
||
|
{
|
||
|
int n;
|
||
|
uchar c;
|
||
|
boolean subst;
|
||
|
|
||
|
void _add_char(uchar c)
|
||
|
{
|
||
|
if (n >= MAX_ERROR_MSG)
|
||
|
return;
|
||
|
|
||
|
ERROR_info.msg[n++] = c;
|
||
|
}
|
||
|
|
||
|
void _add_string(const char *s)
|
||
|
{
|
||
|
while (*s)
|
||
|
{
|
||
|
_add_char(*s);
|
||
|
s++;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if ((long)pattern > 0 && (long)pattern < 256)
|
||
|
{
|
||
|
ERROR_info.code = (long)pattern;
|
||
|
pattern = _message[(long)pattern];
|
||
|
}
|
||
|
else
|
||
|
ERROR_info.code = -1;
|
||
|
|
||
|
n = 0;
|
||
|
|
||
|
if (arg)
|
||
|
{
|
||
|
subst = FALSE;
|
||
|
|
||
|
for (;;)
|
||
|
{
|
||
|
c = *pattern++;
|
||
|
if (c == 0)
|
||
|
break;
|
||
|
|
||
|
if (subst)
|
||
|
{
|
||
|
if (c >= '1' && c <= '4')
|
||
|
_add_string(arg[c - '1']);
|
||
|
else
|
||
|
{
|
||
|
_add_char('&');
|
||
|
_add_char(c);
|
||
|
}
|
||
|
subst = FALSE;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if (c == '&')
|
||
|
subst = TRUE;
|
||
|
else
|
||
|
_add_char(c);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
_add_string(pattern);
|
||
|
}
|
||
|
|
||
|
_add_char(0);
|
||
|
}
|
||
|
|
||
|
PUBLIC void PROPAGATE()
|
||
|
{
|
||
|
ERROR_CONTEXT *err;
|
||
|
|
||
|
/*
|
||
|
if (_must_free_index)
|
||
|
{
|
||
|
for (i = 0; i < _must_free_index; i++)
|
||
|
OBJECT_UNREF(&_must_free[i], "PROPAGATE");
|
||
|
|
||
|
_must_free_index = 0;
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
if (_current == NULL)
|
||
|
ERROR_panic("Cannot propagate error. No error handler.");
|
||
|
|
||
|
err = _current;
|
||
|
ERROR_leave(_current);
|
||
|
longjmp(err->env, 1);
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
PUBLIC void ERROR(long code, ...)
|
||
|
{
|
||
|
va_list args;
|
||
|
int i;
|
||
|
char *arg[4];
|
||
|
|
||
|
va_start(args, code);
|
||
|
|
||
|
for (i = 0; i < 4; i++)
|
||
|
arg[i] = va_arg(args, char *);
|
||
|
|
||
|
ERROR_define((char *)code, arg);
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
static void throw(long code, va_list args)
|
||
|
{
|
||
|
int i;
|
||
|
char *arg[4];
|
||
|
|
||
|
for (i = 0; i < 4; i++)
|
||
|
arg[i] = va_arg(args, char *);
|
||
|
|
||
|
ERROR_define((char *)code, arg);
|
||
|
PROPAGATE();
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
PUBLIC void THROW(const char *code, ...)
|
||
|
{
|
||
|
va_list args;
|
||
|
int i;
|
||
|
const char *arg[4];
|
||
|
|
||
|
va_start(args, code);
|
||
|
|
||
|
for (i = 0; i < 4; i++)
|
||
|
arg[i] = va_arg(args, const char *);
|
||
|
|
||
|
ERROR_define(code, arg);
|
||
|
PROPAGATE();
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
PUBLIC void THROW_LIBRARY()
|
||
|
{
|
||
|
int n;
|
||
|
char buf[512];
|
||
|
char *msg = GAMBAS_Error;
|
||
|
|
||
|
if (FP != NULL)
|
||
|
{
|
||
|
sprintf(buf, "[%s] ", TRACE_get_current_position());
|
||
|
add_error_message(buf, FALSE);
|
||
|
}
|
||
|
|
||
|
sprintf(buf, "#%d: ", E_FROMLIB);
|
||
|
add_error_message(buf, FALSE);
|
||
|
|
||
|
if ((long)msg > 0 && (long)msg < 255)
|
||
|
n = snprintf(buf, sizeof(buf), ERROR_Message[(long)msg]);
|
||
|
else
|
||
|
n = snprintf(buf, sizeof(buf), msg);
|
||
|
|
||
|
ERROR_code = E_FROMLIB;
|
||
|
throw_error(msg);
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
PUBLIC void ERROR_panic(const char *error, ...)
|
||
|
{
|
||
|
va_list args;
|
||
|
|
||
|
va_start(args, error);
|
||
|
|
||
|
fflush(NULL);
|
||
|
|
||
|
fprintf(stderr, "\n"
|
||
|
"** INTERNAL ERROR **\n"
|
||
|
);
|
||
|
vfprintf(stderr, error, args);
|
||
|
fprintf(stderr, "\n");
|
||
|
if (ERROR_info.code)
|
||
|
{
|
||
|
fprintf(stderr, "\n");
|
||
|
ERROR_print();
|
||
|
fprintf(stderr, "\n");
|
||
|
}
|
||
|
fprintf(stderr, "** Program aborting... Sorry... :-(\n\n");
|
||
|
abort();
|
||
|
}
|
||
|
|
||
|
|
||
|
PUBLIC void ERROR_print_at(FILE *where)
|
||
|
{
|
||
|
fprintf(where, "%s\n", ERROR_info.msg);
|
||
|
}
|
||
|
|
||
|
PUBLIC void ERROR_print(void)
|
||
|
{
|
||
|
ERROR_print_at(stderr);
|
||
|
}
|
||
|
|
||
|
PUBLIC void TRACE_where(void)
|
||
|
{
|
||
|
}
|