Skip to content
Snippets Groups Projects
Select Git revision
  • 36f7952f764aea782e0223948fabae36abf3ec63
  • wip-bootstrap default
  • dualcore
  • ch3/leds
  • ch3/time
  • master
6 results

objtype.c

Blame
  • objtype.c 46.10 KiB
    /*
     * This file is part of the MicroPython project, http://micropython.org/
     *
     * The MIT License (MIT)
     *
     * Copyright (c) 2013, 2014 Damien P. George
     * Copyright (c) 2014-2016 Paul Sokolovsky
     *
     * 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.
     */
    
    #include <stdio.h>
    #include <stddef.h>
    #include <string.h>
    #include <assert.h>
    
    #include "py/objtype.h"
    #include "py/runtime.h"
    
    #if MICROPY_DEBUG_VERBOSE // print debugging info
    #define DEBUG_PRINT (1)
    #define DEBUG_printf DEBUG_printf
    #else // don't print debugging info
    #define DEBUG_PRINT (0)
    #define DEBUG_printf(...) (void)0
    #endif
    
    STATIC mp_obj_t static_class_method_make_new(const mp_obj_type_t *self_in, size_t n_args, size_t n_kw, const mp_obj_t *args);
    
    /******************************************************************************/
    // instance object
    
    STATIC mp_obj_t mp_obj_new_instance(const mp_obj_type_t *class, size_t subobjs) {
        mp_obj_instance_t *o = m_new_obj_var(mp_obj_instance_t, mp_obj_t, subobjs);
        o->base.type = class;
        mp_map_init(&o->members, 0);
        mp_seq_clear(o->subobj, 0, subobjs, sizeof(*o->subobj));
        return MP_OBJ_FROM_PTR(o);
    }
    
    STATIC int instance_count_native_bases(const mp_obj_type_t *type, const mp_obj_type_t **last_native_base) {
        int count = 0;
        for (;;) {
            if (type == &mp_type_object) {
                // Not a "real" type, end search here.
                return count;
            } else if (mp_obj_is_native_type(type)) {
                // Native types don't have parents (at least not from our perspective) so end.
                *last_native_base = type;
                return count + 1;
            } else if (type->parent == NULL) {
                // No parents so end search here.
                return count;
            } else if (((mp_obj_base_t*)type->parent)->type == &mp_type_tuple) {