2013-10-20 04:26:18 -04:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
2013-11-17 04:16:03 -05:00
|
|
|
#include <string.h>
|
2013-10-20 04:26:18 -04:00
|
|
|
|
|
|
|
#include "picrin.h"
|
2013-11-17 04:16:03 -05:00
|
|
|
#include "picrin/pair.h"
|
2013-11-17 03:25:26 -05:00
|
|
|
#include "picrin/proc.h"
|
|
|
|
#include "picrin/error.h"
|
2013-10-20 04:26:18 -04:00
|
|
|
|
2013-10-20 05:17:12 -04:00
|
|
|
void
|
|
|
|
pic_error(pic_state *pic, const char *msg)
|
|
|
|
{
|
|
|
|
pic->errmsg = msg;
|
|
|
|
if (! pic->jmp) {
|
|
|
|
puts(msg);
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
longjmp(*pic->jmp, 1);
|
|
|
|
}
|
|
|
|
|
2013-11-17 03:23:13 -05:00
|
|
|
void
|
|
|
|
pic_errorf(pic_state *pic, const char *msg, size_t n, ...)
|
|
|
|
{
|
|
|
|
pic_error(pic, msg);
|
|
|
|
}
|
|
|
|
|
2013-10-20 04:26:18 -04:00
|
|
|
void
|
2013-10-20 04:41:48 -04:00
|
|
|
pic_abort(pic_state *pic, const char *msg)
|
2013-10-20 04:26:18 -04:00
|
|
|
{
|
2013-11-17 04:16:03 -05:00
|
|
|
fprintf(stderr, "abort: %s\n", msg);
|
|
|
|
fflush(stderr);
|
2013-10-20 04:26:18 -04:00
|
|
|
abort();
|
|
|
|
}
|
2013-10-24 09:29:40 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
pic_warn(pic_state *pic, const char *msg)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "warn: %s\n", msg);
|
|
|
|
}
|
2013-11-17 03:25:26 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
pic_raise(pic_state *pic, pic_value obj)
|
|
|
|
{
|
|
|
|
pic_value a;
|
|
|
|
struct pic_proc *handler;
|
|
|
|
|
|
|
|
if (pic->ridx == 0) {
|
|
|
|
pic_abort(pic, "logic flaw: no exception handler remains");
|
|
|
|
}
|
|
|
|
|
|
|
|
handler = pic->rescue[--pic->ridx];
|
|
|
|
pic_gc_protect(pic, pic_obj_value(handler));
|
|
|
|
|
|
|
|
a = pic_apply_argv(pic, handler, 1, obj);
|
|
|
|
/* when the handler returns */
|
|
|
|
pic_errorf(pic, "handler returned", 2, pic_obj_value(handler), a);
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
pic_error_with_exception_handler(pic_state *pic)
|
|
|
|
{
|
|
|
|
pic_value v, w;
|
|
|
|
struct pic_proc *handler, *thunk;
|
|
|
|
|
|
|
|
pic_get_args(pic, "oo", &v, &w);
|
|
|
|
|
|
|
|
if (! pic_proc_p(v)){
|
|
|
|
pic_error(pic, "expected procedure");
|
|
|
|
}
|
|
|
|
handler = pic_proc_ptr(v);
|
|
|
|
|
|
|
|
if (! pic_proc_p(v)) {
|
|
|
|
pic_error(pic, "expected procedure");
|
|
|
|
}
|
|
|
|
thunk = pic_proc_ptr(w);
|
|
|
|
|
|
|
|
if (pic->ridx >= pic->rlen) {
|
2013-11-21 09:28:06 -05:00
|
|
|
|
|
|
|
#if DEBUG
|
|
|
|
puts("rescue realloced");
|
|
|
|
#endif
|
|
|
|
|
2013-11-17 03:25:26 -05:00
|
|
|
pic->rescue = (struct pic_proc **)pic_realloc(pic, pic->rescue, pic->rlen * 2);
|
|
|
|
pic->rlen *= 2;
|
|
|
|
}
|
|
|
|
pic->rescue[pic->ridx++] = handler;
|
|
|
|
|
|
|
|
v = pic_apply_argv(pic, thunk, 0);
|
|
|
|
pic->ridx--;
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
pic_error_raise(pic_state *pic)
|
|
|
|
{
|
|
|
|
pic_value v;
|
|
|
|
|
|
|
|
pic_get_args(pic, "o", &v);
|
|
|
|
|
|
|
|
pic_raise(pic, v);
|
|
|
|
|
|
|
|
/* the function never returns */
|
|
|
|
return pic_undef_value();
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
pic_error_raise_continuable(pic_state *pic)
|
|
|
|
{
|
|
|
|
pic_value v, a;
|
|
|
|
struct pic_proc *handler;
|
|
|
|
|
|
|
|
pic_get_args(pic, "o", &v);
|
|
|
|
|
|
|
|
if (pic->ridx == 0) {
|
|
|
|
pic_abort(pic, "logic flaw: no exception handler remains");
|
|
|
|
}
|
|
|
|
|
|
|
|
handler = pic->rescue[--pic->ridx];
|
|
|
|
a = pic_apply_argv(pic, handler, 1, v);
|
|
|
|
pic->rescue[pic->ridx++] = handler;
|
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2013-11-17 04:16:03 -05:00
|
|
|
static pic_value
|
|
|
|
pic_error_error(pic_state *pic)
|
|
|
|
{
|
|
|
|
char *str;
|
2013-11-17 11:07:51 -05:00
|
|
|
int len;
|
|
|
|
size_t argc;
|
2013-11-17 04:16:03 -05:00
|
|
|
pic_value *argv;
|
|
|
|
struct pic_error *e;
|
|
|
|
|
|
|
|
pic_get_args(pic, "s*", &str, &len, &argc, &argv);
|
|
|
|
|
|
|
|
e = (struct pic_error *)pic_obj_alloc(pic, sizeof(struct pic_error), PIC_TT_ERROR);
|
|
|
|
e->type = PIC_ERROR_OTHER;
|
|
|
|
e->msg = strdup(str);
|
|
|
|
e->irrs = pic_list_from_array(pic, argc, argv);
|
|
|
|
|
|
|
|
pic_raise(pic, pic_obj_value(e));
|
|
|
|
|
|
|
|
/* never returns */
|
|
|
|
return pic_undef_value();
|
|
|
|
}
|
2013-11-17 03:25:26 -05:00
|
|
|
static pic_value
|
|
|
|
pic_error_error_object_p(pic_state *pic)
|
|
|
|
{
|
|
|
|
pic_value v;
|
|
|
|
|
|
|
|
pic_get_args(pic, "o", &v);
|
|
|
|
|
|
|
|
return pic_bool_value(pic_error_p(v));
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
pic_error_error_object_message(pic_state *pic)
|
|
|
|
{
|
|
|
|
struct pic_error *e;
|
|
|
|
|
|
|
|
pic_get_args(pic, "e", &e);
|
|
|
|
|
2013-11-17 10:28:42 -05:00
|
|
|
return pic_obj_value(pic_str_new_cstr(pic, e->msg));
|
2013-11-17 03:25:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
pic_error_error_object_irritants(pic_state *pic)
|
|
|
|
{
|
|
|
|
struct pic_error *e;
|
|
|
|
|
|
|
|
pic_get_args(pic, "e", &e);
|
|
|
|
|
|
|
|
return e->irrs;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
pic_error_read_error_p(pic_state *pic)
|
|
|
|
{
|
|
|
|
pic_value v;
|
|
|
|
struct pic_error *e;
|
|
|
|
|
|
|
|
pic_get_args(pic, "o", &v);
|
|
|
|
|
|
|
|
if (! pic_error_p(v)) {
|
|
|
|
return pic_false_value();
|
|
|
|
}
|
|
|
|
|
|
|
|
e = pic_error_ptr(v);
|
|
|
|
return pic_bool_value(e->type == PIC_ERROR_READ);
|
|
|
|
}
|
|
|
|
|
|
|
|
static pic_value
|
|
|
|
pic_error_file_error_p(pic_state *pic)
|
|
|
|
{
|
|
|
|
pic_value v;
|
|
|
|
struct pic_error *e;
|
|
|
|
|
|
|
|
pic_get_args(pic, "o", &v);
|
|
|
|
|
|
|
|
if (! pic_error_p(v)) {
|
|
|
|
return pic_false_value();
|
|
|
|
}
|
|
|
|
|
|
|
|
e = pic_error_ptr(v);
|
|
|
|
return pic_bool_value(e->type == PIC_ERROR_FILE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
pic_init_error(pic_state *pic)
|
|
|
|
{
|
|
|
|
pic_defun(pic, "with-exception-handler", pic_error_with_exception_handler);
|
|
|
|
pic_defun(pic, "raise", pic_error_raise);
|
|
|
|
pic_defun(pic, "raise-continuable", pic_error_raise_continuable);
|
2013-11-17 04:16:03 -05:00
|
|
|
pic_defun(pic, "error", pic_error_error);
|
2013-11-17 03:25:26 -05:00
|
|
|
pic_defun(pic, "error-object?", pic_error_error_object_p);
|
|
|
|
pic_defun(pic, "error-object-message", pic_error_error_object_message);
|
|
|
|
pic_defun(pic, "error-object-irritants", pic_error_error_object_irritants);
|
|
|
|
pic_defun(pic, "read-error?", pic_error_read_error_p);
|
|
|
|
pic_defun(pic, "file-error?", pic_error_file_error_p);
|
|
|
|
}
|