2014-05-03 23:27:38 +01:00
|
|
|
/*
|
2017-06-30 08:22:17 +01:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 23:27:38 +01:00
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2013, 2014 Damien P. George
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2014-03-22 21:31:28 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2015-05-03 23:23:18 +01:00
|
|
|
#include "py/objtype.h"
|
2015-01-20 14:11:27 +00:00
|
|
|
#include "py/runtime.h"
|
2014-03-22 21:31:28 +00:00
|
|
|
|
|
|
|
typedef struct _mp_obj_object_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
} mp_obj_object_t;
|
|
|
|
|
2016-01-03 15:55:55 +00:00
|
|
|
STATIC mp_obj_t object_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
2015-01-20 12:47:20 +00:00
|
|
|
(void)args;
|
2015-01-20 14:11:27 +00:00
|
|
|
mp_arg_check_num(n_args, n_kw, 0, 0, false);
|
2014-03-22 21:31:28 +00:00
|
|
|
mp_obj_object_t *o = m_new_obj(mp_obj_object_t);
|
2016-01-03 15:55:55 +00:00
|
|
|
o->base.type = type;
|
2015-11-27 17:01:44 +00:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2014-03-22 21:31:28 +00:00
|
|
|
}
|
|
|
|
|
2014-05-21 20:24:36 +01:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
2014-05-21 21:10:48 +01:00
|
|
|
STATIC mp_obj_t object___init__(mp_obj_t self) {
|
2015-01-20 12:47:20 +00:00
|
|
|
(void)self;
|
2014-05-21 20:24:36 +01:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(object___init___obj, object___init__);
|
2014-05-21 22:32:00 +01:00
|
|
|
|
|
|
|
STATIC mp_obj_t object___new__(mp_obj_t cls) {
|
2020-02-27 04:36:53 +00:00
|
|
|
if (!mp_obj_is_type(cls, &mp_type_type) || !mp_obj_is_instance_type((mp_obj_type_t *)MP_OBJ_TO_PTR(cls))) {
|
2020-03-02 11:35:22 +00:00
|
|
|
mp_raise_TypeError(MP_ERROR_TEXT("arg must be user-type"));
|
2015-05-03 23:23:18 +01:00
|
|
|
}
|
2017-12-12 04:22:03 +00:00
|
|
|
// This executes only "__new__" part of instance creation.
|
|
|
|
// TODO: This won't work well for classes with native bases.
|
|
|
|
// TODO: This is a hack, should be resolved along the lines of
|
|
|
|
// https://github.com/micropython/micropython/issues/606#issuecomment-43685883
|
|
|
|
const mp_obj_type_t *native_base;
|
|
|
|
return MP_OBJ_FROM_PTR(mp_obj_new_instance(MP_OBJ_TO_PTR(cls), &native_base));
|
2014-05-21 22:32:00 +01:00
|
|
|
}
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(object___new___fun_obj, object___new__);
|
2015-11-27 13:38:15 +00:00
|
|
|
STATIC MP_DEFINE_CONST_STATICMETHOD_OBJ(object___new___obj, MP_ROM_PTR(&object___new___fun_obj));
|
2014-05-21 20:24:36 +01:00
|
|
|
|
2019-12-09 16:31:35 +00:00
|
|
|
#if MICROPY_PY_DELATTR_SETATTR
|
|
|
|
STATIC mp_obj_t object___setattr__(mp_obj_t self_in, mp_obj_t attr, mp_obj_t value) {
|
2019-12-27 11:43:35 +00:00
|
|
|
if (!mp_obj_is_instance_type(mp_obj_get_type(self_in))) {
|
2020-03-02 11:35:22 +00:00
|
|
|
mp_raise_TypeError(MP_ERROR_TEXT("arg must be user-type"));
|
2019-12-09 16:31:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!mp_obj_is_str(attr)) {
|
|
|
|
mp_raise_TypeError(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_instance_t *self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
mp_map_lookup(&self->members, attr, MP_MAP_LOOKUP_ADD_IF_NOT_FOUND)->value = value;
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_3(object___setattr___obj, object___setattr__);
|
2019-12-10 10:05:22 +00:00
|
|
|
|
|
|
|
STATIC mp_obj_t object___delattr__(mp_obj_t self_in, mp_obj_t attr) {
|
2019-12-27 11:43:35 +00:00
|
|
|
if (!mp_obj_is_instance_type(mp_obj_get_type(self_in))) {
|
2020-03-02 11:35:22 +00:00
|
|
|
mp_raise_TypeError(MP_ERROR_TEXT("arg must be user-type"));
|
2019-12-10 10:05:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!mp_obj_is_str(attr)) {
|
|
|
|
mp_raise_TypeError(NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_instance_t *self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
if (mp_map_lookup(&self->members, attr, MP_MAP_LOOKUP_REMOVE_IF_FOUND) == NULL) {
|
2020-03-02 11:35:22 +00:00
|
|
|
mp_raise_msg(&mp_type_AttributeError, MP_ERROR_TEXT("no such attribute"));
|
2019-12-10 10:05:22 +00:00
|
|
|
}
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_2(object___delattr___obj, object___delattr__);
|
2019-12-09 16:31:35 +00:00
|
|
|
#endif
|
|
|
|
|
2015-11-27 13:38:15 +00:00
|
|
|
STATIC const mp_rom_map_elem_t object_locals_dict_table[] = {
|
2014-05-21 20:24:36 +01:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
2015-11-27 13:38:15 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR___init__), MP_ROM_PTR(&object___init___obj) },
|
2014-05-21 20:24:36 +01:00
|
|
|
#endif
|
2014-05-21 22:32:00 +01:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
2015-11-27 13:38:15 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR___new__), MP_ROM_PTR(&object___new___obj) },
|
2014-05-21 22:32:00 +01:00
|
|
|
#endif
|
2019-12-09 16:31:35 +00:00
|
|
|
#if MICROPY_PY_DELATTR_SETATTR
|
|
|
|
{ MP_ROM_QSTR(MP_QSTR___setattr__), MP_ROM_PTR(&object___setattr___obj) },
|
2019-12-10 10:05:22 +00:00
|
|
|
{ MP_ROM_QSTR(MP_QSTR___delattr__), MP_ROM_PTR(&object___delattr___obj) },
|
2019-12-09 16:31:35 +00:00
|
|
|
#endif
|
2014-05-21 20:24:36 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
STATIC MP_DEFINE_CONST_DICT(object_locals_dict, object_locals_dict_table);
|
2015-05-09 20:49:23 +01:00
|
|
|
#endif
|
2014-05-21 20:24:36 +01:00
|
|
|
|
2014-03-22 21:31:28 +00:00
|
|
|
const mp_obj_type_t mp_type_object = {
|
|
|
|
{ &mp_type_type },
|
|
|
|
.name = MP_QSTR_object,
|
|
|
|
.make_new = object_make_new,
|
2015-05-09 20:49:23 +01:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
2020-02-27 04:36:53 +00:00
|
|
|
.locals_dict = (mp_obj_dict_t *)&object_locals_dict,
|
2015-05-09 20:49:23 +01:00
|
|
|
#endif
|
2014-03-22 21:31:28 +00:00
|
|
|
};
|