2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
gb_error.c
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2009-08-17 12:41:51 +02:00
|
|
|
(c) 2000-2009 Benoît Minisini <gambas@users.sourceforge.net>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
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
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
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 "main.h"
|
|
|
|
#include "gb_common.h"
|
|
|
|
#include <stdarg.h>
|
2010-08-29 22:51:10 +02:00
|
|
|
#include "eval.h"
|
2007-12-30 17:41:49 +01:00
|
|
|
#include "gb_error.h"
|
|
|
|
|
2008-01-27 15:00:04 +01:00
|
|
|
ERROR_CONTEXT *ERROR_current = NULL;
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2010-05-22 22:41:11 +02:00
|
|
|
void ERROR_clear(void)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
errno = 0;
|
|
|
|
}
|
|
|
|
|
2008-01-27 15:00:04 +01:00
|
|
|
void ERROR_reset(ERROR_INFO *info)
|
|
|
|
{
|
2010-05-22 22:41:11 +02:00
|
|
|
if (!info->code)
|
|
|
|
return;
|
|
|
|
|
2008-01-27 15:00:04 +01:00
|
|
|
info->code = 0;
|
|
|
|
if (info->free)
|
|
|
|
{
|
|
|
|
GB.FreeString(&info->msg);
|
|
|
|
info->free = FALSE;
|
|
|
|
}
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2010-05-28 09:47:49 +02:00
|
|
|
info->msg = NULL;
|
|
|
|
info->bt_count = 0;
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-27 15:00:04 +01:00
|
|
|
void ERROR_propagate()
|
|
|
|
{
|
2010-08-29 22:51:10 +02:00
|
|
|
if (ERROR_in_catch(ERROR_current))
|
2008-01-27 15:00:04 +01:00
|
|
|
ERROR_leave(ERROR_current);
|
|
|
|
longjmp(ERROR_current->env, 1);
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-01-27 15:00:04 +01:00
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
PUBLIC char *ERROR_get(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
if (code > 0 && code < 256)
|
|
|
|
return strerror(code);
|
|
|
|
else
|
|
|
|
return ERROR_Message[code - 256];
|
|
|
|
*/
|
|
|
|
return strerror(errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
PUBLIC void THROW(const char *msg)
|
|
|
|
{
|
2010-08-29 22:51:10 +02:00
|
|
|
GB.FreeString(&EVAL->error);
|
|
|
|
EVAL->error = GB.NewZeroString(msg);
|
2008-01-27 15:00:04 +01:00
|
|
|
ERROR_propagate();
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
|
2010-08-29 22:51:10 +02:00
|
|
|
static const char *_error_arg;
|
|
|
|
|
|
|
|
static void get_error_arg(int index, char **str, int *len)
|
|
|
|
{
|
|
|
|
*str = (char *)_error_arg;
|
|
|
|
*len = strlen(_error_arg);
|
|
|
|
}
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
PUBLIC void THROW2(const char *pattern, const char *msg)
|
|
|
|
{
|
2010-08-29 22:51:10 +02:00
|
|
|
GB.FreeString(&EVAL->error);
|
|
|
|
_error_arg = msg;
|
|
|
|
EVAL->error = GB.SubstString(pattern, strlen(pattern), get_error_arg);
|
2008-01-27 15:00:04 +01:00
|
|
|
ERROR_propagate();
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
|
2008-01-27 15:00:04 +01:00
|
|
|
void ERROR_panic(const char *error, ...)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, error);
|
|
|
|
|
|
|
|
fflush(NULL);
|
|
|
|
|
2008-01-27 15:00:04 +01:00
|
|
|
fprintf(stderr, "\n** INTERNAL ERROR **\n**");
|
2007-12-30 17:41:49 +01:00
|
|
|
vfprintf(stderr, error, args);
|
2008-01-27 15:00:04 +01:00
|
|
|
putc('\n', stderr);
|
2008-03-21 03:05:59 +01:00
|
|
|
/*if (ERROR_current->info.code)
|
2007-12-30 17:41:49 +01:00
|
|
|
{
|
|
|
|
ERROR_print();
|
2008-03-21 03:05:59 +01:00
|
|
|
}*/
|
2008-01-27 15:00:04 +01:00
|
|
|
fprintf(stderr, "** Program aborting. Sorry! :-(\n");
|
|
|
|
/*abort();*/
|
|
|
|
_exit(1);
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|