2014-05-03 22:27:38 +00:00
|
|
|
/*
|
2017-06-30 07:22:17 +00:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 22:27:38 +00: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-01-18 14:10:48 +00:00
|
|
|
#include <string.h>
|
2013-12-21 18:17:45 +00:00
|
|
|
|
2015-01-01 20:27:54 +00:00
|
|
|
#include "py/obj.h"
|
|
|
|
#include "py/runtime.h"
|
2013-12-21 18:17:45 +00:00
|
|
|
|
|
|
|
typedef struct _mp_obj_bound_meth_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
mp_obj_t meth;
|
|
|
|
mp_obj_t self;
|
|
|
|
} mp_obj_bound_meth_t;
|
|
|
|
|
2014-05-10 23:27:42 +00:00
|
|
|
#if MICROPY_ERROR_REPORTING == MICROPY_ERROR_REPORTING_DETAILED
|
2015-04-09 22:56:15 +00:00
|
|
|
STATIC void bound_meth_print(const mp_print_t *print, mp_obj_t o_in, mp_print_kind_t kind) {
|
2015-01-20 12:47:20 +00:00
|
|
|
(void)kind;
|
2015-11-27 17:01:44 +00:00
|
|
|
mp_obj_bound_meth_t *o = MP_OBJ_TO_PTR(o_in);
|
2015-04-09 22:56:15 +00:00
|
|
|
mp_printf(print, "<bound_method %p ", o);
|
|
|
|
mp_obj_print_helper(print, o->self, PRINT_REPR);
|
|
|
|
mp_print_str(print, ".");
|
|
|
|
mp_obj_print_helper(print, o->meth, PRINT_REPR);
|
|
|
|
mp_print_str(print, ">");
|
2014-05-10 23:27:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-11-21 22:33:55 +00:00
|
|
|
mp_obj_t mp_call_method_self_n_kw(mp_obj_t meth, mp_obj_t self, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
|
|
|
// need to insert self before all other args and then call meth
|
2016-03-08 15:36:53 +00:00
|
|
|
size_t n_total = n_args + 2 * n_kw;
|
|
|
|
mp_obj_t *args2 = NULL;
|
2017-11-26 12:37:19 +00:00
|
|
|
#if MICROPY_ENABLE_PYSTACK
|
|
|
|
args2 = mp_pystack_alloc(sizeof(mp_obj_t) * (1 + n_total));
|
|
|
|
#else
|
2016-03-08 15:36:53 +00:00
|
|
|
mp_obj_t *free_args2 = NULL;
|
|
|
|
if (n_total > 4) {
|
|
|
|
// try to use heap to allocate temporary args array
|
|
|
|
args2 = m_new_maybe(mp_obj_t, 1 + n_total);
|
|
|
|
free_args2 = args2;
|
2013-12-21 18:17:45 +00:00
|
|
|
}
|
2016-03-08 15:36:53 +00:00
|
|
|
if (args2 == NULL) {
|
|
|
|
// (fallback to) use stack to allocate temporary args array
|
|
|
|
args2 = alloca(sizeof(mp_obj_t) * (1 + n_total));
|
|
|
|
}
|
2017-11-26 12:37:19 +00:00
|
|
|
#endif
|
2016-11-21 22:33:55 +00:00
|
|
|
args2[0] = self;
|
2016-03-08 15:36:53 +00:00
|
|
|
memcpy(args2 + 1, args, n_total * sizeof(mp_obj_t));
|
2016-11-21 22:33:55 +00:00
|
|
|
mp_obj_t res = mp_call_function_n_kw(meth, n_args + 1, n_kw, args2);
|
2017-11-26 12:37:19 +00:00
|
|
|
#if MICROPY_ENABLE_PYSTACK
|
|
|
|
mp_pystack_free(args2);
|
|
|
|
#else
|
2016-03-08 15:36:53 +00:00
|
|
|
if (free_args2 != NULL) {
|
|
|
|
m_del(mp_obj_t, free_args2, 1 + n_total);
|
|
|
|
}
|
2017-11-26 12:37:19 +00:00
|
|
|
#endif
|
2016-03-08 15:36:53 +00:00
|
|
|
return res;
|
2013-12-21 18:17:45 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 22:33:55 +00:00
|
|
|
STATIC mp_obj_t bound_meth_call(mp_obj_t self_in, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
|
|
|
mp_obj_bound_meth_t *self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
return mp_call_method_self_n_kw(self->meth, self->self, n_args, n_kw, args);
|
|
|
|
}
|
|
|
|
|
2015-02-14 17:44:31 +00:00
|
|
|
#if MICROPY_PY_FUNCTION_ATTRS
|
2015-04-01 14:10:50 +00:00
|
|
|
STATIC void bound_meth_attr(mp_obj_t self_in, qstr attr, mp_obj_t *dest) {
|
|
|
|
if (dest[0] != MP_OBJ_NULL) {
|
|
|
|
// not load attribute
|
|
|
|
return;
|
|
|
|
}
|
2018-12-06 07:02:41 +00:00
|
|
|
// Delegate the load to the method object
|
|
|
|
mp_obj_bound_meth_t *self = MP_OBJ_TO_PTR(self_in);
|
|
|
|
mp_load_method_maybe(self->meth, attr, dest);
|
2015-02-14 17:44:31 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-04-04 14:53:11 +00:00
|
|
|
STATIC const mp_obj_type_t mp_type_bound_meth = {
|
2014-02-15 16:10:44 +00:00
|
|
|
{ &mp_type_type },
|
2014-02-15 11:34:50 +00:00
|
|
|
.name = MP_QSTR_bound_method,
|
2014-05-10 23:27:42 +00:00
|
|
|
#if MICROPY_ERROR_REPORTING == MICROPY_ERROR_REPORTING_DETAILED
|
|
|
|
.print = bound_meth_print,
|
|
|
|
#endif
|
2014-01-18 14:10:48 +00:00
|
|
|
.call = bound_meth_call,
|
2015-02-14 17:44:31 +00:00
|
|
|
#if MICROPY_PY_FUNCTION_ATTRS
|
2015-04-01 14:10:50 +00:00
|
|
|
.attr = bound_meth_attr,
|
2015-02-14 17:44:31 +00:00
|
|
|
#endif
|
2013-12-21 18:17:45 +00:00
|
|
|
};
|
|
|
|
|
2014-01-18 14:10:48 +00:00
|
|
|
mp_obj_t mp_obj_new_bound_meth(mp_obj_t meth, mp_obj_t self) {
|
2013-12-21 18:17:45 +00:00
|
|
|
mp_obj_bound_meth_t *o = m_new_obj(mp_obj_bound_meth_t);
|
2015-04-04 14:53:11 +00:00
|
|
|
o->base.type = &mp_type_bound_meth;
|
2013-12-21 18:17:45 +00:00
|
|
|
o->meth = meth;
|
|
|
|
o->self = self;
|
2015-11-27 17:01:44 +00:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2013-12-21 18:17:45 +00:00
|
|
|
}
|