gambas-source-code/main/lib/eval/gb_error.c
Benoît Minisini 62c381c2f6 [DEVELOPMENT ENVIRONMENT]
* NEW: Handle compiler errors having column information.

[INTERPRETER]
* BUG: Manage errors from native methods differently.

[COMPILER]
* NEW: Return the column in error messages generated by the parser.

[GB.GTK]
* BUG: Make TabStrip behave like in gb.qt when inserting a new tab.


git-svn-id: svn://localhost/gambas/trunk@3156 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2010-08-29 20:51:10 +00:00

116 lines
2.4 KiB
C

/***************************************************************************
gb_error.c
(c) 2000-2009 Benoît 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 2, 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 "main.h"
#include "gb_common.h"
#include <stdarg.h>
#include "eval.h"
#include "gb_error.h"
ERROR_CONTEXT *ERROR_current = NULL;
void ERROR_clear(void)
{
errno = 0;
}
void ERROR_reset(ERROR_INFO *info)
{
if (!info->code)
return;
info->code = 0;
if (info->free)
{
GB.FreeString(&info->msg);
info->free = FALSE;
}
info->msg = NULL;
info->bt_count = 0;
}
void ERROR_propagate()
{
if (ERROR_in_catch(ERROR_current))
ERROR_leave(ERROR_current);
longjmp(ERROR_current->env, 1);
}
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)
{
GB.FreeString(&EVAL->error);
EVAL->error = GB.NewZeroString(msg);
ERROR_propagate();
}
static const char *_error_arg;
static void get_error_arg(int index, char **str, int *len)
{
*str = (char *)_error_arg;
*len = strlen(_error_arg);
}
PUBLIC void THROW2(const char *pattern, const char *msg)
{
GB.FreeString(&EVAL->error);
_error_arg = msg;
EVAL->error = GB.SubstString(pattern, strlen(pattern), get_error_arg);
ERROR_propagate();
}
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);
putc('\n', stderr);
/*if (ERROR_current->info.code)
{
ERROR_print();
}*/
fprintf(stderr, "** Program aborting. Sorry! :-(\n");
/*abort();*/
_exit(1);
}