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"
|
2014-01-21 16:40:13 -05:00
|
|
|
#include "qstr.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#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
|
2014-01-31 10:13:51 -05:00
|
|
|
// Python-level exceptions have empty ->msg and all arguments are in
|
|
|
|
// args tuple. C-level exceptions likely have ->msg set, and args is empty.
|
2013-12-21 13:17:45 -05:00
|
|
|
typedef struct mp_obj_exception_t {
|
|
|
|
mp_obj_base_t base;
|
2014-01-19 07:38:49 -05:00
|
|
|
mp_obj_t traceback; // a list object, holding (file,line,block) as numbers (not Python objects); a hack for now
|
2014-01-29 13:57:20 -05:00
|
|
|
vstr_t *msg;
|
2014-01-12 16:30:20 -05:00
|
|
|
mp_obj_tuple_t args;
|
2013-12-21 13:17:45 -05:00
|
|
|
} mp_obj_exception_t;
|
|
|
|
|
2014-02-15 11:10:44 -05:00
|
|
|
STATIC void mp_obj_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-29 13:57:20 -05:00
|
|
|
if (o->msg != NULL) {
|
2014-02-15 11:10:44 -05:00
|
|
|
print(env, "%s: %s", qstr_str(o->base.type->name), vstr_str(o->msg));
|
2014-01-12 16:30:20 -05:00
|
|
|
} else {
|
2014-01-13 12:19:16 -05:00
|
|
|
// Yes, that's how CPython has it
|
2014-02-15 17:55:00 -05:00
|
|
|
// TODO now that exceptions are classes and instances, I think this needs to be changed to match CPython
|
2014-01-13 12:19:16 -05:00
|
|
|
if (kind == PRINT_REPR) {
|
2014-02-15 11:10:44 -05:00
|
|
|
print(env, "%s", qstr_str(o->base.type->name));
|
2014-01-13 12:19:16 -05:00
|
|
|
}
|
|
|
|
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-02-15 11:10:44 -05:00
|
|
|
STATIC mp_obj_t mp_obj_exception_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
|
|
|
mp_obj_type_t *type = type_in;
|
2014-01-18 09:10:48 -05:00
|
|
|
|
|
|
|
if (n_kw != 0) {
|
2014-03-09 12:29:36 -04:00
|
|
|
nlr_jump(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "%s does not take keyword arguments", mp_obj_get_type_str(type_in)));
|
2014-01-18 09:10:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t, n_args);
|
2014-02-15 11:10:44 -05:00
|
|
|
o->base.type = type;
|
2014-02-14 14:01:12 -05:00
|
|
|
o->traceback = MP_OBJ_NULL;
|
2014-01-29 13:57:20 -05:00
|
|
|
o->msg = NULL;
|
2014-01-12 16:30:20 -05:00
|
|
|
o->args.len = n_args;
|
2014-01-18 09:10:48 -05:00
|
|
|
memcpy(o->args.items, args, n_args * sizeof(mp_obj_t));
|
2014-01-12 16:30:20 -05:00
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-02-15 11:10:44 -05:00
|
|
|
const mp_obj_type_t mp_type_BaseException = {
|
|
|
|
{ &mp_type_type },
|
|
|
|
.name = MP_QSTR_BaseException,
|
|
|
|
.print = mp_obj_exception_print,
|
|
|
|
.make_new = mp_obj_exception_make_new,
|
2013-12-21 13:17:45 -05:00
|
|
|
};
|
|
|
|
|
2014-02-15 16:05:25 -05:00
|
|
|
#define MP_DEFINE_EXCEPTION_BASE(base_name) \
|
|
|
|
STATIC const mp_obj_tuple_t mp_type_ ## base_name ## _base_tuple = {{&tuple_type}, 1, {(mp_obj_t)&mp_type_ ## base_name}};\
|
|
|
|
|
|
|
|
#define MP_DEFINE_EXCEPTION(exc_name, base_name) \
|
2014-02-15 11:10:44 -05:00
|
|
|
const mp_obj_type_t mp_type_ ## exc_name = { \
|
|
|
|
{ &mp_type_type }, \
|
|
|
|
.name = MP_QSTR_ ## exc_name, \
|
|
|
|
.print = mp_obj_exception_print, \
|
|
|
|
.make_new = mp_obj_exception_make_new, \
|
2014-02-15 16:05:25 -05:00
|
|
|
.bases_tuple = (mp_obj_t)&mp_type_ ## base_name ## _base_tuple, \
|
2014-02-15 11:10:44 -05:00
|
|
|
};
|
|
|
|
|
2014-02-15 16:05:25 -05:00
|
|
|
MP_DEFINE_EXCEPTION_BASE(BaseException)
|
|
|
|
|
|
|
|
MP_DEFINE_EXCEPTION(AssertionError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(AttributeError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(ImportError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(IndentationError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(IndexError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(KeyError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(NameError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(SyntaxError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(TypeError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(ValueError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(OverflowError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(OSError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(NotImplementedError, BaseException)
|
|
|
|
MP_DEFINE_EXCEPTION(StopIteration, BaseException)
|
2014-02-15 11:10:44 -05:00
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_exception(const mp_obj_type_t *exc_type) {
|
|
|
|
return mp_obj_new_exception_msg_varg(exc_type, NULL);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
2014-02-15 11:10:44 -05:00
|
|
|
mp_obj_t mp_obj_new_exception_msg(const mp_obj_type_t *exc_type, const char *msg) {
|
|
|
|
return mp_obj_new_exception_msg_varg(exc_type, msg);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
2014-02-15 11:10:44 -05:00
|
|
|
mp_obj_t mp_obj_new_exception_msg_varg(const mp_obj_type_t *exc_type, const char *fmt, ...) {
|
|
|
|
// check that the given type is an exception type
|
|
|
|
assert(exc_type->make_new == mp_obj_exception_make_new);
|
|
|
|
|
2014-01-08 13:11:23 -05:00
|
|
|
// make exception object
|
2014-02-15 11:10:44 -05:00
|
|
|
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t, 0);
|
|
|
|
o->base.type = exc_type;
|
2014-01-19 07:38:49 -05:00
|
|
|
o->traceback = MP_OBJ_NULL;
|
2014-01-12 16:30:20 -05:00
|
|
|
o->args.len = 0;
|
2014-02-15 11:10:44 -05:00
|
|
|
|
2014-01-12 16:30:20 -05:00
|
|
|
if (fmt == NULL) {
|
2014-02-15 11:10:44 -05:00
|
|
|
// no message
|
2014-01-29 13:57:20 -05:00
|
|
|
o->msg = NULL;
|
2014-01-12 16:30:20 -05:00
|
|
|
} else {
|
|
|
|
// render exception message
|
2014-01-29 13:57:20 -05:00
|
|
|
o->msg = vstr_new();
|
2014-01-12 16:30:20 -05:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2014-01-29 13:57:20 -05:00
|
|
|
vstr_vprintf(o->msg, fmt, ap);
|
2014-01-12 16:30:20 -05:00
|
|
|
va_end(ap);
|
2014-01-08 13:11:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-02-15 11:10:44 -05:00
|
|
|
// return true if the given object is an exception type
|
|
|
|
// TODO make this work for user defined exceptions
|
|
|
|
bool mp_obj_is_exception_type(mp_obj_t self_in) {
|
|
|
|
if (MP_OBJ_IS_TYPE(self_in, &mp_type_type)) {
|
|
|
|
mp_obj_type_t *self = self_in;
|
|
|
|
return self->make_new == mp_obj_exception_make_new;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// return true if the given object is an instance of an exception type
|
|
|
|
// TODO make this work for user defined exceptions
|
|
|
|
bool mp_obj_is_exception_instance(mp_obj_t self_in) {
|
|
|
|
return mp_obj_get_type(self_in)->make_new == mp_obj_exception_make_new;
|
|
|
|
}
|
|
|
|
|
|
|
|
void mp_obj_exception_clear_traceback(mp_obj_t self_in) {
|
|
|
|
// make sure self_in is an exception instance
|
|
|
|
assert(mp_obj_get_type(self_in)->make_new == mp_obj_exception_make_new);
|
2013-12-29 12:17:43 -05:00
|
|
|
mp_obj_exception_t *self = self_in;
|
2014-02-15 11:10:44 -05:00
|
|
|
|
|
|
|
// just set the traceback to the null object
|
|
|
|
// we don't want to call any memory management functions here
|
|
|
|
self->traceback = MP_OBJ_NULL;
|
2013-12-29 12:17:43 -05:00
|
|
|
}
|
2014-01-18 18:24:36 -05:00
|
|
|
|
2014-01-19 07:38:49 -05:00
|
|
|
void mp_obj_exception_add_traceback(mp_obj_t self_in, qstr file, machine_uint_t line, qstr block) {
|
2014-02-15 11:10:44 -05:00
|
|
|
// make sure self_in is an exception instance
|
|
|
|
assert(mp_obj_get_type(self_in)->make_new == mp_obj_exception_make_new);
|
2014-01-18 18:24:36 -05:00
|
|
|
mp_obj_exception_t *self = self_in;
|
2014-02-15 11:10:44 -05:00
|
|
|
|
2014-01-19 07:38:49 -05:00
|
|
|
// for traceback, we are just using the list object for convenience, it's not really a list of Python objects
|
|
|
|
if (self->traceback == MP_OBJ_NULL) {
|
2014-02-15 17:55:00 -05:00
|
|
|
self->traceback = mp_obj_new_list(0, NULL);
|
2014-01-19 06:48:48 -05:00
|
|
|
}
|
2014-01-19 07:38:49 -05:00
|
|
|
mp_obj_list_append(self->traceback, (mp_obj_t)(machine_uint_t)file);
|
|
|
|
mp_obj_list_append(self->traceback, (mp_obj_t)(machine_uint_t)line);
|
|
|
|
mp_obj_list_append(self->traceback, (mp_obj_t)(machine_uint_t)block);
|
2014-01-18 18:24:36 -05:00
|
|
|
}
|
|
|
|
|
2014-01-19 07:38:49 -05:00
|
|
|
void mp_obj_exception_get_traceback(mp_obj_t self_in, machine_uint_t *n, machine_uint_t **values) {
|
2014-02-15 11:10:44 -05:00
|
|
|
// make sure self_in is an exception instance
|
|
|
|
assert(mp_obj_get_type(self_in)->make_new == mp_obj_exception_make_new);
|
2014-01-18 18:24:36 -05:00
|
|
|
mp_obj_exception_t *self = self_in;
|
2014-02-15 11:10:44 -05:00
|
|
|
|
2014-01-19 07:38:49 -05:00
|
|
|
if (self->traceback == MP_OBJ_NULL) {
|
|
|
|
*n = 0;
|
|
|
|
*values = NULL;
|
|
|
|
} else {
|
|
|
|
uint n2;
|
|
|
|
mp_obj_list_get(self->traceback, &n2, (mp_obj_t**)values);
|
|
|
|
*n = n2;
|
|
|
|
}
|
2014-01-18 18:24:36 -05:00
|
|
|
}
|