|
|
|
|
|
|
|
#define NO_PIKE_SHORTHAND |
#include "global.h" |
#include "svalue.h" |
#include "pike_macros.h" |
#include "pike_error.h" |
#include "interpret.h" |
#include "stralloc.h" |
#include "builtin_functions.h" |
#include "array.h" |
#include "object.h" |
#include "main.h" |
#include "builtin_functions.h" |
#include "backend.h" |
#include "operators.h" |
#include "module_support.h" |
#include "threads.h" |
#include "gc.h" |
|
RCSID("$Id: error.c,v 1.123 2004/05/19 00:04:38 nilsson Exp $"); |
|
|
|
#undef ATTRIBUTE |
#define ATTRIBUTE(X) |
|
PMOD_EXPORT const char msg_fatal_error[] = |
"%s:%d: Fatal error:\n"; |
#ifdef PIKE_DEBUG |
PMOD_EXPORT const char msg_unsetjmp_nosync_1[] = |
"UNSETJMP out of sync! (last SETJMP at %s)!\n"; |
PMOD_EXPORT const char msg_unsetjmp_nosync_2[] = |
"UNSETJMP out of sync! (Pike_interpreter.recoveries = 0)\n"; |
PMOD_EXPORT const char msg_last_setjmp[] = |
"LAST SETJMP: %s\n"; |
PMOD_EXPORT const char msg_unset_onerr_nosync_1[] = |
"UNSET_ONERROR out of sync (%p != %p).\n" |
"Last SET_ONERROR is from %s\n"; |
PMOD_EXPORT const char msg_unset_onerr_nosync_2[] = |
"UNSET_ONERROR out of sync. No Pike_interpreter.recoveries left.\n"; |
PMOD_EXPORT const char msg_assert_onerr[] = |
"%s ASSERT_ONERROR(%p) failed\n"; |
#endif |
PMOD_EXPORT const char msg_bad_arg[] = |
"Bad argument %d to %s(). Expected %s.\n"; |
PMOD_EXPORT const char msg_bad_arg_2[] = |
"Bad argument %d to %s(). %s\n"; |
PMOD_EXPORT const char msg_out_of_mem[] = |
"Out of memory.\n"; |
PMOD_EXPORT const char msg_div_by_zero[] = |
"Division by zero.\n"; |
|
|
|
|
|
int Pike_inhibit_errors = 0; |
|
|
|
|
|
JMP_BUF *recoveries=0; |
|
#ifdef PIKE_DEBUG |
PMOD_EXPORT void check_recovery_context(void) |
{ |
char foo; |
#define TESTILITEST ((((char *)Pike_interpreter.recoveries)-((char *)&foo))*STACK_DIRECTION) |
if(Pike_interpreter.recoveries && TESTILITEST > 0) { |
fprintf(stderr, "Recoveries is out biking (Pike_interpreter.recoveries=%p, Pike_sp=%p, %ld)!\n", |
Pike_interpreter.recoveries, &foo, |
DO_NOT_WARN((long)TESTILITEST)); |
fprintf(stderr, "Last recovery was added at %s\n", |
Pike_interpreter.recoveries->file); |
Pike_fatal("Recoveries is out biking (Pike_interpreter.recoveries=%p, Pike_sp=%p, %ld)!\n", |
Pike_interpreter.recoveries, &foo, |
DO_NOT_WARN((long)TESTILITEST)); |
} |
|
|
} |
#endif |
|
PMOD_EXPORT void pike_gdb_breakpoint(INT32 args) |
{ |
pop_n_elems(args); |
} |
|
PMOD_EXPORT JMP_BUF *init_recovery(JMP_BUF *r, size_t stack_pop_levels DEBUG_LINE_ARGS) |
{ |
check_recovery_context(); |
#ifdef PIKE_DEBUG |
r->file=location; |
OED_FPRINTF((stderr, "init_recovery(%p) %s\n", r, location)); |
#endif |
r->frame_pointer=Pike_fp; |
r->stack_pointer=Pike_sp - stack_pop_levels - Pike_interpreter.evaluator_stack; |
r->mark_sp=Pike_mark_sp - Pike_interpreter.mark_stack; |
r->previous=Pike_interpreter.recoveries; |
r->onerror=0; |
r->severity=THROW_ERROR; |
Pike_interpreter.recoveries=r; |
check_recovery_context(); |
return r; |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void pike_throw(void) ATTRIBUTE((noreturn)) |
{ |
#ifdef TRACE_UNFINISHED_TYPE_FIELDS |
accept_unfinished_type_fields++; |
#endif |
|
while(Pike_interpreter.recoveries && throw_severity > Pike_interpreter.recoveries->severity) |
{ |
while(Pike_interpreter.recoveries->onerror) |
{ |
(*Pike_interpreter.recoveries->onerror->func)(Pike_interpreter.recoveries->onerror->arg); |
Pike_interpreter.recoveries->onerror=Pike_interpreter.recoveries->onerror->previous; |
} |
|
Pike_interpreter.recoveries=Pike_interpreter.recoveries->previous; |
} |
|
if(!Pike_interpreter.recoveries) |
Pike_fatal("No error recovery context.\n"); |
|
#ifdef PIKE_DEBUG |
if(Pike_sp - Pike_interpreter.evaluator_stack < Pike_interpreter.recoveries->stack_pointer) |
Pike_fatal("Stack error in error.\n"); |
#endif |
|
while(Pike_fp != Pike_interpreter.recoveries->frame_pointer) |
{ |
#ifdef PIKE_DEBUG |
if(!Pike_fp) |
Pike_fatal("Popped out of stack frames.\n"); |
#endif |
POP_PIKE_FRAME(); |
} |
|
pop_n_elems(Pike_sp - Pike_interpreter.evaluator_stack - Pike_interpreter.recoveries->stack_pointer); |
Pike_mark_sp = Pike_interpreter.mark_stack + Pike_interpreter.recoveries->mark_sp; |
|
while(Pike_interpreter.recoveries->onerror) |
{ |
(*Pike_interpreter.recoveries->onerror->func)(Pike_interpreter.recoveries->onerror->arg); |
Pike_interpreter.recoveries->onerror=Pike_interpreter.recoveries->onerror->previous; |
} |
|
#if defined(DEBUG_MALLOC) && defined(PIKE_DEBUG) |
|
if(throw_value.type <= MAX_REF_TYPE) |
{ |
debug_malloc_update_location(throw_value.u.refs, |
Pike_interpreter.recoveries->file); |
debug_malloc_touch(throw_value.u.refs); |
} |
#endif |
|
#ifdef TRACE_UNFINISHED_TYPE_FIELDS |
accept_unfinished_type_fields--; |
#endif |
|
longjmp(Pike_interpreter.recoveries->recovery,1); |
} |
|
PMOD_EXPORT void push_error(const char *description) |
{ |
push_text(description); |
f_backtrace(0); |
f_aggregate(2); |
} |
|
PMOD_EXPORT struct svalue throw_value = { |
PIKE_T_INT, 0, |
#ifdef HAVE_UNION_INIT |
{0}, |
#endif |
}; |
int throw_severity; |
static const char *in_error; |
|
PMOD_EXPORT DECLSPEC(noreturn) void low_error(const char *buf) ATTRIBUTE((noreturn)) |
{ |
push_error(buf); |
free_svalue(& throw_value); |
move_svalue (&throw_value, --Pike_sp); |
throw_severity = THROW_ERROR; |
in_error=0; |
pike_throw(); |
} |
|
|
|
|
void DECLSPEC(noreturn) va_error(const char *fmt, va_list args) ATTRIBUTE((noreturn)) |
{ |
char buf[4096]; |
SWAP_IN_THREAD_IF_REQUIRED(); |
if(in_error) |
{ |
const char *tmp=in_error; |
in_error=0; |
Pike_fatal("Recursive error() calls, original error: %s",tmp); |
} |
|
in_error=buf; |
VSNPRINTF (buf, sizeof (buf), fmt, args); |
|
if(!Pike_interpreter.recoveries) |
{ |
#ifdef PIKE_DEBUG |
if (d_flag) { |
fprintf(stderr,"No error recovery context!\n%s",buf); |
dump_backlog(); |
} |
#endif |
|
fprintf(stderr,"No error recovery context!\n%s",buf); |
exit(99); |
} |
|
low_error(buf); |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void new_error(const char *name, const char *text, struct svalue *oldsp, |
INT32 args, const char *file, int line) ATTRIBUTE((noreturn)) |
{ |
int i; |
|
ASSERT_THREAD_SWAPPED_IN(); |
|
if(in_error) |
{ |
const char *tmp=in_error; |
in_error=0; |
Pike_fatal("Recursive error() calls, original error: %s",tmp); |
} |
|
in_error=text; |
|
if(!Pike_interpreter.recoveries) |
{ |
#ifdef PIKE_DEBUG |
if (d_flag) { |
fprintf(stderr,"No error recovery context!\n%s():%s", |
name ? name : "<unknown>", text); |
dump_backlog(); |
} |
#endif |
|
fprintf(stderr,"No error recovery context!\n%s():%s", |
name ? name : "<unknown>", text); |
if(file) |
fprintf(stderr,"at %s:%d\n",file,line); |
exit(99); |
} |
|
push_text(text); |
|
f_backtrace(0); |
|
if (file) { |
push_text(file); |
push_int(line); |
} else { |
push_int(0); |
push_int(0); |
} |
|
if (name) |
push_text(name); |
else |
push_int(0); |
|
for (i=-args; i; i++) { |
if (oldsp[i].type <= PIKE_T_FLOAT) { |
push_svalue(oldsp + i); |
} else { |
char buffer[50]; |
sprintf(buffer, "<Svalue:0x%04x:0x%04x:%p>", |
oldsp[i].type, oldsp[i].subtype, oldsp[i].u.ptr); |
push_text(buffer); |
} |
} |
|
f_aggregate(args + 3); |
f_aggregate(1); |
|
f_add(2); |
|
f_aggregate(2); |
|
move_svalue (&throw_value, --Pike_sp); |
throw_severity=THROW_ERROR; |
|
in_error=0; |
pike_throw(); |
} |
|
PMOD_EXPORT void exit_on_error(const void *msg) |
{ |
ONERROR tmp; |
SET_ONERROR(tmp,fatal_on_error,"Fatal in exit_on_error!"); |
d_flag=0; |
|
|
|
|
Pike_inhibit_errors = 1; |
|
#ifdef PIKE_DEBUG |
if (d_flag) { |
fprintf(stderr,"%s\n",(char *)msg); |
dump_backlog(); |
} |
#endif |
fprintf(stderr,"%s\n",(char *)msg); |
#ifdef PIKE_DEBUG |
{ |
dynamic_buffer save_buf; |
char *s; |
struct svalue thrown; |
fprintf(stderr,"Attempting to dump raw error: (may fail)\n"); |
init_buf(&save_buf); |
move_svalue (&thrown, &throw_value); |
throw_value.type = PIKE_T_INT; |
describe_svalue(&thrown,0,0); |
free_svalue (&thrown); |
s=simple_free_buf(&save_buf); |
fprintf(stderr,"%s\n",s); |
free(s); |
} |
#endif |
exit(1); |
} |
|
#ifdef __NT__ |
|
int fnordel=0; |
static void do_abort() |
{ |
if (!d_flag && !getenv("PIKE_DEBUG")) { |
exit(-6); |
} |
fnordel=999/fnordel; |
} |
#else /* !__NT__ */ |
#define do_abort() abort() |
#endif /* __NT__ */ |
|
PMOD_EXPORT void fatal_on_error(const void *msg) |
{ |
|
if (throw_severity == THROW_EXIT) return; |
|
#ifdef PIKE_DEBUG |
if (d_flag) { |
fprintf(stderr,"%s\n",(char *)msg); |
dump_backlog(); |
} |
#endif |
fprintf(stderr,"%s\n",(char *)msg); |
do_abort(); |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void Pike_error(const char *fmt,...) ATTRIBUTE((noreturn,format (printf, 1, 2))) |
{ |
va_list args; |
va_start(args,fmt); |
va_error(fmt,args); |
va_end(args); |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void debug_fatal(const char *fmt, ...) ATTRIBUTE((noreturn,format (printf, 1, 2))) |
{ |
va_list args; |
static int in_fatal = 0; |
|
|
|
va_start(args,fmt); |
|
if (in_fatal) |
{ |
(void)VFPRINTF(stderr, fmt, args); |
do_abort(); |
} |
|
in_fatal = 1; |
#ifdef PIKE_DEBUG |
if (d_flag) { |
(void)VFPRINTF(stderr, fmt, args); |
dump_backlog(); |
} |
#endif |
|
if(Pike_in_gc) |
fprintf(stderr,"Pike was in GC stage %d when this fatal occured:\n",Pike_in_gc); |
Pike_in_gc = GC_PASS_DISABLED; |
|
(void)VFPRINTF(stderr, fmt, args); |
|
d_flag=Pike_interpreter.trace_level=0; |
if(Pike_sp && Pike_interpreter.evaluator_stack && |
master_object && master_object->prog) |
{ |
JMP_BUF jmp; |
struct callback_list saved_eval_cbs = evaluator_callbacks; |
|
|
low_init_threads_disable(); |
MEMSET (&evaluator_callbacks, 0, sizeof (evaluator_callbacks)); |
if (SETJMP (jmp)) |
fprintf(stderr,"Got exception when trying to describe backtrace.\n"); |
else { |
jmp.severity = THROW_EXIT; |
push_error("Backtrace at time of fatal:\n"); |
APPLY_MASTER("describe_backtrace",1); |
if(Pike_sp[-1].type==PIKE_T_STRING) |
write_to_stderr(Pike_sp[-1].u.string->str, Pike_sp[-1].u.string->len); |
} |
UNSETJMP (jmp); |
exit_threads_disable (NULL); |
evaluator_callbacks = saved_eval_cbs; |
}else{ |
fprintf(stderr,"No stack - no backtrace.\n"); |
} |
fflush(stderr); |
do_abort(); |
} |
|
#if 1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define ERR_DECLARE |
#include "errors.h" |
|
|
|
|
|
|
|
|
|
static void f_error_cast(INT32 args) |
{ |
char *s; |
get_all_args("error->cast",args,"%s",&s); |
if(!strncmp(s,"array",5)) |
{ |
pop_n_elems(args); |
if(GENERIC_ERROR_THIS->error_message) |
ref_push_string(GENERIC_ERROR_THIS->error_message); |
else |
push_int(0); |
if(GENERIC_ERROR_THIS->error_backtrace) |
ref_push_array(GENERIC_ERROR_THIS->error_backtrace); |
else |
push_int(0); |
f_aggregate(2); |
}else{ |
SIMPLE_BAD_ARG_ERROR("error->cast", 1, "the value \"array\""); |
} |
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void f_error_index(INT32 args) |
{ |
INT_TYPE ind; |
get_all_args("error->`[]",args,"%i",&ind); |
|
switch(ind) |
{ |
case 0: |
pop_n_elems(args); |
if(GENERIC_ERROR_THIS->error_message) |
ref_push_string(GENERIC_ERROR_THIS->error_message); |
else |
push_int(0); |
break; |
case 1: |
pop_n_elems(args); |
if(GENERIC_ERROR_THIS->error_backtrace) |
ref_push_array(GENERIC_ERROR_THIS->error_backtrace); |
else |
push_int(0); |
break; |
default: |
index_error("error->`[]", Pike_sp-args, args, NULL, Pike_sp-args, |
"Index %"PRINTPIKEINT"d is out of range 0..1.\n", ind); |
break; |
} |
} |
|
|
|
|
|
static void f_error_describe(INT32 args) |
{ |
pop_n_elems(args); |
ref_push_object(Pike_fp->current_object); |
APPLY_MASTER("describe_backtrace",1); |
} |
|
|
|
|
|
static void f_error_message(INT32 args) |
{ |
pop_n_elems(args); |
if (GENERIC_ERROR_THIS->error_message) |
ref_push_string (GENERIC_ERROR_THIS->error_message); |
else |
push_int (0); |
} |
|
|
|
|
|
|
|
|
static void f_error_backtrace(INT32 args) |
{ |
pop_n_elems(args); |
if(GENERIC_ERROR_THIS->error_backtrace) |
ref_push_array(GENERIC_ERROR_THIS->error_backtrace); |
else |
push_int(0); |
} |
|
|
|
static void f_error__sprintf(INT32 args) |
{ |
struct program *p = Pike_fp->current_object->prog; |
|
int i = find_identifier("error_type", p); |
struct identifier *id = ID_FROM_INT(p, i); |
int mode = 0; |
if(args>0 && Pike_sp[-args].type == PIKE_T_INT) |
mode = Pike_sp[-args].u.integer; |
pop_n_elems(args); |
if(mode != 'O') { |
push_undefined(); |
return; |
} |
push_constant_text ("Error."); |
push_svalue(&PROG_FROM_INT(p, i)->constants[id->func.offset].sval); |
push_constant_text("(%O)"); |
if(GENERIC_ERROR_THIS->error_message) |
ref_push_string(GENERIC_ERROR_THIS->error_message); |
else |
push_int(0); |
f_sprintf(2); |
f_add(3); |
} |
|
|
|
static void f_error_create(INT32 args) |
{ |
struct pike_string *msg; |
get_all_args("create", args, "%W", &msg); |
do_free_string(GENERIC_ERROR_THIS->error_message); |
copy_shared_string(GENERIC_ERROR_THIS->error_message, msg); |
f_backtrace(0); |
push_int (0); |
push_int (Pike_sp[-2].u.array->size-2); |
o_range (); |
assign_to_short_svalue ((union anything *)&GENERIC_ERROR_THIS->error_backtrace, |
PIKE_T_ARRAY, Pike_sp-1); |
pop_n_elems(args+1); |
} |
|
|
|
|
|
|
|
#ifdef ERROR_DEBUG |
#define DWERROR(X) fprintf X |
#else /* !ERROR_DEBUG */ |
#define DWERROR(X) |
#endif /* ERROR_DEBUG */ |
|
#define INIT_ERROR(FEL)\ |
va_list foo; \ |
struct object *o; \ |
va_start(foo,desc); \ |
ASSERT_THREAD_SWAPPED_IN(); \ |
o=low_clone(PIKE_CONCAT(FEL,_error_program)); \ |
DWERROR((stderr, "%s(): Throwing a " #FEL " error\n", func)) |
|
#define ERROR_DONE(FOO) \ |
PIKE_CONCAT(FOO,_error_va(o,func, \ |
base_sp, args, \ |
desc,foo)); \ |
va_end(foo) |
|
#define ERROR_STRUCT(STRUCT,O) \ |
((struct PIKE_CONCAT(STRUCT,_error_struct) *)((O)->storage + PIKE_CONCAT(STRUCT,_error_offset))) |
|
#define ERROR_COPY(STRUCT,X) \ |
ERROR_STRUCT(STRUCT,o)->X=X |
|
#define ERROR_COPY_SVALUE(STRUCT,X) do { \ |
if (X) { \ |
assign_svalue_no_free( & ERROR_STRUCT(STRUCT,o)->X, X); \ |
} else { \ |
ERROR_STRUCT(STRUCT, o)->X.type = PIKE_T_INT; \ |
ERROR_STRUCT(STRUCT, o)->X.subtype = NUMBER_UNDEFINED; \ |
ERROR_STRUCT(STRUCT, o)->X.u.integer = 0; \ |
} \ |
} while (0) |
|
|
#define ERROR_COPY_REF(STRUCT,X) \ |
add_ref( ERROR_STRUCT(STRUCT,o)->X=X ) |
|
|
DECLSPEC(noreturn) void generic_error_va(struct object *o, |
const char *func, |
struct svalue *base_sp, int args, |
const char *fmt, |
va_list foo) |
ATTRIBUTE((noreturn)) |
{ |
char buf[8192]; |
int i; |
|
VSNPRINTF(buf, sizeof(buf), fmt, foo); |
|
if(in_error) |
{ |
const char *tmp=in_error; |
in_error=0; |
Pike_fatal("Recursive error() calls, original error: %s",tmp); |
} |
in_error=buf; |
|
#if 0 |
if (!master_program) { |
fprintf(stderr, "ERROR: %s\n", buf); |
} |
#endif |
|
ERROR_STRUCT(generic,o)->error_message=make_shared_string(buf); |
f_backtrace(0); |
|
if(func) |
{ |
push_int(0); |
push_int(0); |
push_text(func); |
|
for (i=0;i<args;i++) |
push_svalue(base_sp + i); |
f_aggregate(args + 3); |
f_aggregate(1); |
f_add(2); |
} |
|
if(Pike_sp[-1].type!=PIKE_T_ARRAY) |
Pike_fatal("Error failed to generate a backtrace!\n"); |
|
ERROR_STRUCT(generic,o)->error_backtrace=Pike_sp[-1].u.array; |
Pike_sp--; |
dmalloc_touch_svalue(Pike_sp); |
|
free_svalue(& throw_value); |
throw_value.type=PIKE_T_OBJECT; |
throw_value.u.object=o; |
throw_severity = THROW_ERROR; |
in_error=0; |
|
dmalloc_touch_svalue(& throw_value); |
|
pike_throw(); |
} |
|
|
PMOD_EXPORT DECLSPEC(noreturn) void throw_error_object( |
struct object *o, |
const char *func, |
struct svalue *base_sp, int args, |
const char *desc, ...) ATTRIBUTE((noreturn,format (printf, 5, 6))) |
{ |
va_list foo; |
va_start(foo,desc); |
ASSERT_THREAD_SWAPPED_IN(); |
DWERROR((stderr, "%s(): Throwing an error object\n", func)); |
ERROR_DONE(generic); |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void generic_error( |
const char *func, |
struct svalue *base_sp, int args, |
const char *desc, ...) ATTRIBUTE((noreturn,format (printf, 4, 5))) |
{ |
INIT_ERROR(generic); |
ERROR_DONE(generic); |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void index_error( |
const char *func, |
struct svalue *base_sp, int args, |
struct svalue *value, |
struct svalue *index, |
const char *desc, ...) ATTRIBUTE((noreturn,format (printf, 6, 7))) |
{ |
INIT_ERROR(index); |
ERROR_COPY_SVALUE(index, value); |
ERROR_COPY_SVALUE(index, index); |
ERROR_DONE(generic); |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void bad_arg_error( |
const char *func, |
struct svalue *base_sp, int args, |
int which_argument, |
const char *expected_type, |
struct svalue *got_value, |
const char *desc, ...) ATTRIBUTE((noreturn,format (printf, 7, 8))) |
{ |
INIT_ERROR(bad_argument); |
ERROR_COPY(bad_argument, which_argument); |
if (expected_type) |
ERROR_STRUCT(bad_argument,o)->expected_type=make_shared_string(expected_type); |
else |
ERROR_STRUCT(bad_argument,o)->expected_type = NULL; |
ERROR_COPY_SVALUE(bad_argument, got_value); |
DWERROR((stderr, "%s():Bad arg %d (expected %s)\n", |
func, which_arg, expected_type)); |
ERROR_DONE(generic); |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void math_error( |
const char *func, |
struct svalue *base_sp, int args, |
struct svalue *number, |
const char *desc, ...) ATTRIBUTE((noreturn,format (printf, 5, 6))) |
{ |
INIT_ERROR(math); |
if(number) |
{ |
ERROR_COPY_SVALUE(math, number); |
}else{ |
ERROR_STRUCT(math,o)->number.type=PIKE_T_INT; |
ERROR_STRUCT(math,o)->number.subtype=NUMBER_UNDEFINED; |
ERROR_STRUCT(math,o)->number.u.integer=0; |
} |
ERROR_DONE(generic); |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void resource_error( |
const char *func, |
struct svalue *base_sp, int args, |
const char *resource_type, |
size_t howmuch_, |
const char *desc, ...) ATTRIBUTE((noreturn,format (printf, 6, 7))) |
{ |
INT_TYPE howmuch = DO_NOT_WARN((INT_TYPE)howmuch_); |
INIT_ERROR(resource); |
ERROR_COPY(resource, howmuch); |
ERROR_STRUCT(resource,o)->resource_type=make_shared_string(resource_type); |
ERROR_DONE(generic); |
} |
|
PMOD_EXPORT DECLSPEC(noreturn) void permission_error( |
const char *func, |
struct svalue *base_sp, int args, |
const char *permission_type, |
const char *desc, ...) ATTRIBUTE((noreturn, format(printf, 5, 6))) |
{ |
INIT_ERROR(permission); |
ERROR_STRUCT(permission,o)->permission_type= |
make_shared_string(permission_type); |
ERROR_DONE(generic); |
} |
|
PMOD_EXPORT void wrong_number_of_args_error(const char *name, int args, int expected) |
{ |
if(expected>args) |
{ |
bad_arg_error (name, Pike_sp-args, args, expected, NULL, NULL, |
"Too few arguments to %s(). Expected at least %d.\n", |
name, expected); |
}else { |
bad_arg_error (name, Pike_sp-args, args, expected, NULL, NULL, |
"Too many arguments to %s(). Expected at most %d.\n", |
name, expected); |
} |
} |
|
#ifdef PIKE_DEBUG |
static void gc_check_throw_value(struct callback *foo, void *bar, void *gazonk) |
{ |
gc_mark_external_svalues(&throw_value,1," in the throw value"); |
} |
#endif |
|
void init_error(void) |
{ |
#define ERR_SETUP |
#include "errors.h" |
|
#ifdef PIKE_DEBUG |
dmalloc_accept_leak(add_gc_callback(gc_check_throw_value,0,0)); |
#endif |
} |
|
void cleanup_error(void) |
{ |
#define ERR_CLEANUP |
#include "errors.h" |
} |
#endif |
|
|