2013-12-21 13:17:45 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
2014-01-08 13:11:23 -05:00
|
|
|
#include <stdarg.h>
|
2013-12-21 13:17:45 -05:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "nlr.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "mpconfig.h"
|
|
|
|
#include "obj.h"
|
2014-01-12 16:30:20 -05:00
|
|
|
#include "objtuple.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2014-01-12 16:30:20 -05:00
|
|
|
// This is unified class for C-level and Python-level exceptions
|
|
|
|
// Python-level exception have empty ->msg and all arguments are in
|
|
|
|
// args tuple. C-level excepttion likely have ->msg, and may as well
|
|
|
|
// have args tuple (or otherwise have it as NULL).
|
2013-12-21 13:17:45 -05:00
|
|
|
typedef struct mp_obj_exception_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
qstr id;
|
2014-01-12 16:30:20 -05:00
|
|
|
qstr msg;
|
|
|
|
mp_obj_tuple_t args;
|
2013-12-21 13:17:45 -05:00
|
|
|
} mp_obj_exception_t;
|
|
|
|
|
2014-01-13 12:19:16 -05:00
|
|
|
void exception_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in, mp_print_kind_t kind) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_exception_t *o = o_in;
|
2014-01-12 16:30:20 -05:00
|
|
|
if (o->msg != 0) {
|
|
|
|
print(env, "%s: %s", qstr_str(o->id), qstr_str(o->msg));
|
|
|
|
} else {
|
2014-01-13 12:19:16 -05:00
|
|
|
// Yes, that's how CPython has it
|
|
|
|
if (kind == PRINT_REPR) {
|
|
|
|
print(env, "%s", qstr_str(o->id));
|
|
|
|
}
|
|
|
|
if (kind == PRINT_STR) {
|
|
|
|
if (o->args.len == 0) {
|
|
|
|
print(env, "");
|
|
|
|
return;
|
|
|
|
} else if (o->args.len == 1) {
|
|
|
|
mp_obj_print_helper(print, env, o->args.items[0], PRINT_STR);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tuple_print(print, env, &o->args, kind);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-12 16:30:20 -05:00
|
|
|
// args in reversed order
|
|
|
|
static mp_obj_t exception_call(mp_obj_t self_in, int n_args, const mp_obj_t *args) {
|
|
|
|
mp_obj_exception_t *base = self_in;
|
|
|
|
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t*, n_args);
|
|
|
|
o->base.type = &exception_type;
|
|
|
|
o->id = base->id;
|
|
|
|
o->msg = 0;
|
|
|
|
o->args.len = n_args;
|
|
|
|
|
|
|
|
// TODO: factor out as reusable copy_reversed()
|
|
|
|
int j = 0;
|
|
|
|
for (int i = n_args - 1; i >= 0; i--) {
|
|
|
|
o->args.items[i] = args[j++];
|
|
|
|
}
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
const mp_obj_type_t exception_type = {
|
|
|
|
{ &mp_const_type },
|
|
|
|
"exception",
|
2014-01-07 10:58:30 -05:00
|
|
|
.print = exception_print,
|
2014-01-12 16:30:20 -05:00
|
|
|
.call_n = exception_call,
|
2013-12-21 13:17:45 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_exception(qstr id) {
|
2014-01-12 16:30:20 -05:00
|
|
|
return mp_obj_new_exception_msg_varg(id, NULL);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_exception_msg(qstr id, const char *msg) {
|
2014-01-12 16:30:20 -05:00
|
|
|
return mp_obj_new_exception_msg_varg(id, msg);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_exception_msg_1_arg(qstr id, const char *fmt, const char *a1) {
|
2014-01-12 16:30:20 -05:00
|
|
|
return mp_obj_new_exception_msg_varg(id, fmt, a1);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_exception_msg_2_args(qstr id, const char *fmt, const char *a1, const char *a2) {
|
2014-01-12 16:30:20 -05:00
|
|
|
return mp_obj_new_exception_msg_varg(id, fmt, a1, a2);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2013-12-29 12:17:43 -05:00
|
|
|
|
2014-01-08 13:11:23 -05:00
|
|
|
mp_obj_t mp_obj_new_exception_msg_varg(qstr id, const char *fmt, ...) {
|
|
|
|
// make exception object
|
2014-01-12 16:30:20 -05:00
|
|
|
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t*, 0);
|
2014-01-08 13:11:23 -05:00
|
|
|
o->base.type = &exception_type;
|
|
|
|
o->id = id;
|
2014-01-12 16:30:20 -05:00
|
|
|
o->args.len = 0;
|
|
|
|
if (fmt == NULL) {
|
|
|
|
o->msg = 0;
|
|
|
|
} else {
|
|
|
|
// render exception message
|
|
|
|
vstr_t *vstr = vstr_new();
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vstr_vprintf(vstr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
o->msg = qstr_from_str_take(vstr->buf, vstr->alloc);
|
2014-01-08 13:11:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2013-12-29 12:17:43 -05:00
|
|
|
qstr mp_obj_exception_get_type(mp_obj_t self_in) {
|
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &exception_type));
|
|
|
|
mp_obj_exception_t *self = self_in;
|
|
|
|
return self->id;
|
|
|
|
}
|