2014-05-03 18:27:38 -04:00
/*
* This file is part of the Micro Python project , http : //micropython.org/
*
* 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-12-28 20:02:19 -05:00
# ifndef __MICROPY_INCLUDED_PY_OBJ_H__
# define __MICROPY_INCLUDED_PY_OBJ_H__
# include "py/mpconfig.h"
# include "py/misc.h"
# include "py/qstr.h"
2014-05-03 18:27:38 -04:00
2014-04-17 18:19:36 -04:00
// A Micro Python object is a machine word having the following form:
// - xxxx...xxx1 : a small int, bits 1 and above are the value
// - xxxx...xx10 : a qstr, bits 2 and above are the value
// - xxxx...xx00 : a pointer to an mp_obj_base_t (unless a fake object)
2013-12-21 13:17:45 -05:00
// All Micro Python objects are at least this type
// It must be of pointer size
typedef machine_ptr_t mp_obj_t ;
typedef machine_const_ptr_t mp_const_obj_t ;
2014-01-07 10:58:30 -05:00
// Anything that wants to be a Micro Python object must have
2014-04-17 18:19:36 -04:00
// mp_obj_base_t as its first member (except small ints and qstrs)
2013-12-21 13:17:45 -05:00
2014-01-06 12:52:29 -05:00
struct _mp_obj_type_t ;
2013-12-21 13:17:45 -05:00
struct _mp_obj_base_t {
2014-01-06 12:52:29 -05:00
const struct _mp_obj_type_t * type ;
2013-12-21 13:17:45 -05:00
} ;
2014-01-06 12:52:29 -05:00
typedef struct _mp_obj_base_t mp_obj_base_t ;
2013-12-21 13:17:45 -05:00
2014-04-17 18:19:36 -04:00
// These fake objects are used to indicate certain things in arguments or return
// values, and should only be used when explicitly allowed.
//
2014-05-21 14:42:43 -04:00
// - MP_OBJ_NULL : used to indicate the absence of an object, or unsupported operation.
2014-04-17 18:19:36 -04:00
// - MP_OBJ_STOP_ITERATION : used instead of throwing a StopIteration, for efficiency.
// - MP_OBJ_SENTINEL : used for various internal purposes where one needs
// an object which is unique from all other objects, including MP_OBJ_NULL.
//
// For debugging purposes they are all different. For non-debug mode, we alias
// as many as we can to MP_OBJ_NULL because it's cheaper to load/compare 0.
# if NDEBUG
# define MP_OBJ_NULL ((mp_obj_t)0)
# define MP_OBJ_STOP_ITERATION ((mp_obj_t)0)
# define MP_OBJ_SENTINEL ((mp_obj_t)4)
# else
# define MP_OBJ_NULL ((mp_obj_t)0)
2014-05-21 14:42:43 -04:00
# define MP_OBJ_STOP_ITERATION ((mp_obj_t)4)
# define MP_OBJ_SENTINEL ((mp_obj_t)8)
2014-04-17 18:19:36 -04:00
# endif
2014-04-17 17:10:53 -04:00
2014-01-08 12:33:12 -05:00
// These macros check for small int, qstr or object, and access small int and qstr values
2013-12-21 13:17:45 -05:00
2014-04-11 07:16:53 -04:00
// these macros have now become inline functions; see below
2014-07-03 08:25:24 -04:00
//#define MP_OBJ_IS_SMALL_INT(o) ((((mp_int_t)(o)) & 1) != 0)
//#define MP_OBJ_IS_QSTR(o) ((((mp_int_t)(o)) & 3) == 2)
//#define MP_OBJ_IS_OBJ(o) ((((mp_int_t)(o)) & 3) == 0)
2014-08-24 11:28:17 -04:00
# define MP_OBJ_IS_TYPE(o, t) (MP_OBJ_IS_OBJ(o) && (((mp_obj_base_t*)(o))->type == (t))) // this does not work for checking int, str or fun; use below macros for that
2014-04-11 17:30:09 -04:00
# define MP_OBJ_IS_INT(o) (MP_OBJ_IS_SMALL_INT(o) || MP_OBJ_IS_TYPE(o, &mp_type_int))
# define MP_OBJ_IS_STR(o) (MP_OBJ_IS_QSTR(o) || MP_OBJ_IS_TYPE(o, &mp_type_str))
2014-08-27 04:20:30 -04:00
# define MP_OBJ_IS_STR_OR_BYTES(o) (MP_OBJ_IS_QSTR(o) || (MP_OBJ_IS_OBJ(o) && ((mp_obj_base_t*)(o))->type->binary_op == mp_obj_str_binary_op))
2015-01-11 16:07:15 -05:00
# define MP_OBJ_IS_FUN(o) (MP_OBJ_IS_OBJ(o) && (((mp_obj_base_t*)(o))->type->name == MP_QSTR_function))
2014-01-08 12:33:12 -05:00
2014-07-03 08:25:24 -04:00
# define MP_OBJ_SMALL_INT_VALUE(o) (((mp_int_t)(o)) >> 1)
2014-07-31 05:49:14 -04:00
# define MP_OBJ_NEW_SMALL_INT(small_int) ((mp_obj_t)((((mp_int_t)(small_int)) << 1) | 1))
2014-01-08 12:33:12 -05:00
2015-01-16 12:47:07 -05:00
# define MP_OBJ_QSTR_VALUE(o) (((mp_uint_t)(o)) >> 2)
2014-12-28 20:02:19 -05:00
# define MP_OBJ_NEW_QSTR(qst) ((mp_obj_t)((((mp_uint_t)(qst)) << 2) | 2))
2013-12-21 13:17:45 -05:00
// These macros are used to declare and define constant function objects
// You can put "static" in front of the definitions to make them local
2014-08-24 11:28:17 -04:00
# define MP_DECLARE_CONST_FUN_OBJ(obj_name) extern const mp_obj_fun_builtin_t obj_name
2013-12-17 13:27:24 -05:00
2014-08-24 11:28:17 -04:00
# define MP_DEFINE_CONST_FUN_OBJ_VOID_PTR(obj_name, is_kw, n_args_min, n_args_max, fun_name) const mp_obj_fun_builtin_t obj_name = {{&mp_type_fun_builtin}, is_kw, n_args_min, n_args_max, (void *)fun_name}
2014-01-07 13:01:08 -05:00
# define MP_DEFINE_CONST_FUN_OBJ_0(obj_name, fun_name) MP_DEFINE_CONST_FUN_OBJ_VOID_PTR(obj_name, false, 0, 0, (mp_fun_0_t)fun_name)
# define MP_DEFINE_CONST_FUN_OBJ_1(obj_name, fun_name) MP_DEFINE_CONST_FUN_OBJ_VOID_PTR(obj_name, false, 1, 1, (mp_fun_1_t)fun_name)
# define MP_DEFINE_CONST_FUN_OBJ_2(obj_name, fun_name) MP_DEFINE_CONST_FUN_OBJ_VOID_PTR(obj_name, false, 2, 2, (mp_fun_2_t)fun_name)
# define MP_DEFINE_CONST_FUN_OBJ_3(obj_name, fun_name) MP_DEFINE_CONST_FUN_OBJ_VOID_PTR(obj_name, false, 3, 3, (mp_fun_3_t)fun_name)
2014-02-26 12:47:05 -05:00
# define MP_DEFINE_CONST_FUN_OBJ_VAR(obj_name, n_args_min, fun_name) MP_DEFINE_CONST_FUN_OBJ_VOID_PTR(obj_name, false, n_args_min, MP_OBJ_FUN_ARGS_MAX, (mp_fun_var_t)fun_name)
2014-01-07 13:01:08 -05:00
# define MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(obj_name, n_args_min, n_args_max, fun_name) MP_DEFINE_CONST_FUN_OBJ_VOID_PTR(obj_name, false, n_args_min, n_args_max, (mp_fun_var_t)fun_name)
2014-02-26 12:47:05 -05:00
# define MP_DEFINE_CONST_FUN_OBJ_KW(obj_name, n_args_min, fun_name) MP_DEFINE_CONST_FUN_OBJ_VOID_PTR(obj_name, true, n_args_min, MP_OBJ_FUN_ARGS_MAX, (mp_fun_kw_t)fun_name)
2014-01-07 12:29:16 -05:00
2014-12-09 11:19:48 -05:00
// These macros are used to define constant map/dict objects
2014-03-26 17:47:19 -04:00
// You can put "static" in front of the definition to make it local
2014-12-09 11:19:48 -05:00
# define MP_DEFINE_CONST_MAP(map_name, table_name) \
const mp_map_t map_name = { \
. all_keys_are_qstrs = 1 , \
. table_is_fixed_array = 1 , \
. used = MP_ARRAY_SIZE ( table_name ) , \
. alloc = MP_ARRAY_SIZE ( table_name ) , \
. table = ( mp_map_elem_t * ) table_name , \
}
2014-03-26 17:47:19 -04:00
# define MP_DEFINE_CONST_DICT(dict_name, table_name) \
const mp_obj_dict_t dict_name = { \
2014-03-29 09:43:38 -04:00
. base = { & mp_type_dict } , \
2014-03-26 17:47:19 -04:00
. map = { \
. all_keys_are_qstrs = 1 , \
. table_is_fixed_array = 1 , \
2014-11-29 09:39:27 -05:00
. used = MP_ARRAY_SIZE ( table_name ) , \
. alloc = MP_ARRAY_SIZE ( table_name ) , \
2014-03-26 17:47:19 -04:00
. table = ( mp_map_elem_t * ) table_name , \
} , \
}
2014-01-11 14:22:29 -05:00
// These macros are used to declare and define constant staticmethond and classmethod objects
// You can put "static" in front of the definitions to make them local
2014-02-06 15:31:44 -05:00
# define MP_DECLARE_CONST_STATICMETHOD_OBJ(obj_name) extern const mp_obj_static_class_method_t obj_name
# define MP_DECLARE_CONST_CLASSMETHOD_OBJ(obj_name) extern const mp_obj_static_class_method_t obj_name
2014-01-11 14:22:29 -05:00
2014-02-06 15:31:44 -05:00
# define MP_DEFINE_CONST_STATICMETHOD_OBJ(obj_name, fun_name) const mp_obj_static_class_method_t obj_name = {{&mp_type_staticmethod}, fun_name}
# define MP_DEFINE_CONST_CLASSMETHOD_OBJ(obj_name, fun_name) const mp_obj_static_class_method_t obj_name = {{&mp_type_classmethod}, fun_name}
2014-01-11 14:22:29 -05:00
2014-03-30 08:54:02 -04:00
// Underlying map/hash table implementation (not dict object or map function)
typedef struct _mp_map_elem_t {
mp_obj_t key ;
mp_obj_t value ;
} mp_map_elem_t ;
// TODO maybe have a truncated mp_map_t for fixed tables, since alloc=used
// put alloc last in the structure, so the truncated version does not need it
// this would save 1 ROM word for all ROM objects that have a locals_dict
// would also need a trucated dict structure
typedef struct _mp_map_t {
2014-07-03 08:25:24 -04:00
mp_uint_t all_keys_are_qstrs : 1 ;
mp_uint_t table_is_fixed_array : 1 ;
mp_uint_t used : ( 8 * sizeof ( mp_uint_t ) - 2 ) ;
mp_uint_t alloc ;
2014-03-30 08:54:02 -04:00
mp_map_elem_t * table ;
} mp_map_t ;
2014-04-05 12:17:19 -04:00
// These can be or'd together
2014-03-30 08:54:02 -04:00
typedef enum _mp_map_lookup_kind_t {
MP_MAP_LOOKUP , // 0
MP_MAP_LOOKUP_ADD_IF_NOT_FOUND , // 1
MP_MAP_LOOKUP_REMOVE_IF_FOUND , // 2
} mp_map_lookup_kind_t ;
2014-11-26 14:17:16 -05:00
extern const mp_map_t mp_const_empty_map ;
2014-07-03 08:25:24 -04:00
static inline bool MP_MAP_SLOT_IS_FILLED ( const mp_map_t * map , mp_uint_t pos ) { return ( ( map ) - > table [ pos ] . key ! = MP_OBJ_NULL & & ( map ) - > table [ pos ] . key ! = MP_OBJ_SENTINEL ) ; }
2014-04-05 16:53:54 -04:00
2014-08-30 08:23:35 -04:00
void mp_map_init ( mp_map_t * map , mp_uint_t n ) ;
void mp_map_init_fixed_table ( mp_map_t * map , mp_uint_t n , const mp_obj_t * table ) ;
mp_map_t * mp_map_new ( mp_uint_t n ) ;
2014-03-30 08:54:02 -04:00
void mp_map_deinit ( mp_map_t * map ) ;
void mp_map_free ( mp_map_t * map ) ;
mp_map_elem_t * mp_map_lookup ( mp_map_t * map , mp_obj_t index , mp_map_lookup_kind_t lookup_kind ) ;
void mp_map_clear ( mp_map_t * map ) ;
2014-04-04 21:14:22 -04:00
void mp_map_dump ( mp_map_t * map ) ;
2014-03-30 08:54:02 -04:00
// Underlying set implementation (not set object)
typedef struct _mp_set_t {
2014-07-03 08:25:24 -04:00
mp_uint_t alloc ;
mp_uint_t used ;
2014-03-30 08:54:02 -04:00
mp_obj_t * table ;
} mp_set_t ;
2014-07-03 08:25:24 -04:00
static inline bool MP_SET_SLOT_IS_FILLED ( const mp_set_t * set , mp_uint_t pos ) { return ( ( set ) - > table [ pos ] ! = MP_OBJ_NULL & & ( set ) - > table [ pos ] ! = MP_OBJ_SENTINEL ) ; }
2014-04-05 16:53:54 -04:00
2014-08-30 08:23:35 -04:00
void mp_set_init ( mp_set_t * set , mp_uint_t n ) ;
2014-03-30 08:54:02 -04:00
mp_obj_t mp_set_lookup ( mp_set_t * set , mp_obj_t index , mp_map_lookup_kind_t lookup_kind ) ;
2014-04-05 12:17:19 -04:00
mp_obj_t mp_set_remove_first ( mp_set_t * set ) ;
2014-03-30 08:54:02 -04:00
void mp_set_clear ( mp_set_t * set ) ;
2013-12-21 13:17:45 -05:00
// Type definitions for methods
typedef mp_obj_t ( * mp_fun_0_t ) ( void ) ;
typedef mp_obj_t ( * mp_fun_1_t ) ( mp_obj_t ) ;
typedef mp_obj_t ( * mp_fun_2_t ) ( mp_obj_t , mp_obj_t ) ;
2014-01-03 20:15:01 -05:00
typedef mp_obj_t ( * mp_fun_3_t ) ( mp_obj_t , mp_obj_t , mp_obj_t ) ;
2014-08-29 19:35:11 -04:00
typedef mp_obj_t ( * mp_fun_var_t ) ( mp_uint_t n , const mp_obj_t * ) ;
typedef mp_obj_t ( * mp_fun_kw_t ) ( mp_uint_t n , const mp_obj_t * , mp_map_t * ) ;
2013-12-21 13:17:45 -05:00
2014-01-13 12:19:16 -05:00
typedef enum {
2014-05-01 18:51:25 -04:00
PRINT_STR = 0 ,
PRINT_REPR = 1 ,
PRINT_EXC = 2 , // Special format for printing exception in unhandled exception message
2014-09-17 17:56:34 -04:00
PRINT_JSON = 3 ,
PRINT_EXC_SUBCLASS = 0x80 , // Internal flag for printing exception subclasses
2014-01-13 12:19:16 -05:00
} mp_print_kind_t ;
typedef void ( * mp_print_fun_t ) ( void ( * print ) ( void * env , const char * fmt , . . . ) , void * env , mp_obj_t o , mp_print_kind_t kind ) ;
2014-08-29 19:35:11 -04:00
typedef mp_obj_t ( * mp_make_new_fun_t ) ( mp_obj_t type_in , mp_uint_t n_args , mp_uint_t n_kw , const mp_obj_t * args ) ;
typedef mp_obj_t ( * mp_call_fun_t ) ( mp_obj_t fun , mp_uint_t n_args , mp_uint_t n_kw , const mp_obj_t * args ) ;
typedef mp_obj_t ( * mp_unary_op_fun_t ) ( mp_uint_t op , mp_obj_t ) ;
typedef mp_obj_t ( * mp_binary_op_fun_t ) ( mp_uint_t op , mp_obj_t , mp_obj_t ) ;
2014-01-18 09:10:48 -05:00
typedef void ( * mp_load_attr_fun_t ) ( mp_obj_t self_in , qstr attr , mp_obj_t * dest ) ; // for fail, do nothing; for attr, dest[0] = value; for method, dest[0] = method, dest[1] = self
2014-04-08 16:32:29 -04:00
typedef bool ( * mp_store_attr_fun_t ) ( mp_obj_t self_in , qstr attr , mp_obj_t value ) ; // return true if store succeeded; if value==MP_OBJ_NULL then delete
2014-04-17 17:10:53 -04:00
typedef mp_obj_t ( * mp_subscr_fun_t ) ( mp_obj_t self_in , mp_obj_t index , mp_obj_t value ) ;
2013-12-21 13:17:45 -05:00
typedef struct _mp_method_t {
2014-03-26 16:15:40 -04:00
qstr name ;
2013-12-21 13:17:45 -05:00
mp_const_obj_t fun ;
} mp_method_t ;
2014-01-07 13:12:26 -05:00
// Buffer protocol
2014-04-18 17:29:21 -04:00
typedef struct _mp_buffer_info_t {
2014-01-07 13:12:26 -05:00
// if we'd bother to support various versions of structure
// (with different number of fields), we can distinguish
// them with ver = sizeof(struct). Cons: overkill for *micro*?
//int ver; // ?
2014-10-03 13:44:14 -04:00
void * buf ; // can be NULL if len == 0
mp_uint_t len ; // in bytes
int typecode ; // as per binary.h
2014-01-07 13:12:26 -05:00
// Rationale: to load arbitrary-sized sprites directly to LCD
// Cons: a bit adhoc usecase
// int stride;
2014-04-18 17:29:21 -04:00
} mp_buffer_info_t ;
# define MP_BUFFER_READ (1)
# define MP_BUFFER_WRITE (2)
# define MP_BUFFER_RW (MP_BUFFER_READ | MP_BUFFER_WRITE)
2014-01-07 13:12:26 -05:00
typedef struct _mp_buffer_p_t {
2014-08-30 09:28:06 -04:00
mp_int_t ( * get_buffer ) ( mp_obj_t obj , mp_buffer_info_t * bufinfo , mp_uint_t flags ) ;
2014-01-07 13:12:26 -05:00
} mp_buffer_p_t ;
2014-08-30 09:28:06 -04:00
bool mp_get_buffer ( mp_obj_t obj , mp_buffer_info_t * bufinfo , mp_uint_t flags ) ;
void mp_get_buffer_raise ( mp_obj_t obj , mp_buffer_info_t * bufinfo , mp_uint_t flags ) ;
2014-01-07 13:12:26 -05:00
// Stream protocol
2015-01-16 12:47:07 -05:00
# define MP_STREAM_ERROR ((mp_uint_t)-1)
2014-01-07 13:12:26 -05:00
typedef struct _mp_stream_p_t {
2014-07-27 17:38:58 -04:00
// On error, functions should return MP_STREAM_ERROR and fill in *errcode (values
// are implementation-dependent, but will be exposed to user, e.g. via exception).
mp_uint_t ( * read ) ( mp_obj_t obj , void * buf , mp_uint_t size , int * errcode ) ;
mp_uint_t ( * write ) ( mp_obj_t obj , const void * buf , mp_uint_t size , int * errcode ) ;
2014-11-16 17:16:14 -05:00
mp_uint_t ( * ioctl ) ( mp_obj_t obj , mp_uint_t request , mp_uint_t arg , int * errcode ) ;
2014-08-30 09:28:06 -04:00
mp_uint_t is_text : 1 ; // default is bytes, set this for text stream
2014-01-07 13:12:26 -05:00
} mp_stream_p_t ;
2014-11-16 17:16:14 -05:00
// Stream ioctl request codes
# define MP_STREAM_FLUSH (1)
# define MP_STREAM_SEEK (2)
# define MP_STREAM_POLL (3)
// Argument structure for MP_STREAM_SEEK
struct mp_stream_seek_t {
mp_off_t offset ;
int whence ;
} ;
2013-12-21 13:17:45 -05:00
struct _mp_obj_type_t {
mp_obj_base_t base ;
2014-02-15 06:34:50 -05:00
qstr name ;
2013-12-21 13:17:45 -05:00
mp_print_fun_t print ;
2014-01-04 15:21:15 -05:00
mp_make_new_fun_t make_new ; // to make an instance of the type
2013-12-21 13:17:45 -05:00
2014-01-18 09:10:48 -05:00
mp_call_fun_t call ;
2014-05-21 14:42:43 -04:00
mp_unary_op_fun_t unary_op ; // can return MP_OBJ_NULL if op not supported
mp_binary_op_fun_t binary_op ; // can return MP_OBJ_NULL if op not supported
2013-12-21 13:17:45 -05:00
2014-02-15 06:34:50 -05:00
mp_load_attr_fun_t load_attr ;
2014-04-08 16:11:49 -04:00
mp_store_attr_fun_t store_attr ; // if value is MP_OBJ_NULL, then delete that attribute
2014-04-08 16:32:29 -04:00
2014-04-17 17:10:53 -04:00
mp_subscr_fun_t subscr ; // implements load, store, delete subscripting
// value=MP_OBJ_NULL means delete, value=MP_OBJ_SENTINEL means load, else store
2014-05-21 14:42:43 -04:00
// can return MP_OBJ_NULL if op not supported
2014-02-15 06:34:50 -05:00
2013-12-21 13:17:45 -05:00
mp_fun_1_t getiter ;
2014-05-10 08:55:11 -04:00
mp_fun_1_t iternext ; // may return MP_OBJ_STOP_ITERATION as an optimisation instead of raising StopIteration() (with no args)
2013-12-21 13:17:45 -05:00
2014-01-07 13:12:26 -05:00
mp_buffer_p_t buffer_p ;
2014-04-05 18:02:23 -04:00
const mp_stream_p_t * stream_p ;
2014-01-07 13:12:26 -05:00
2014-01-09 16:43:51 -05:00
// these are for dynamically created types (classes)
mp_obj_t bases_tuple ;
mp_obj_t locals_dict ;
2014-01-09 15:57:50 -05:00
2013-12-21 13:17:45 -05:00
/*
What we might need to add here :
len str tuple list map
abs float complex
hash bool int none str
equal int str
unpack seq list tuple
*/
} ;
2014-01-06 12:52:29 -05:00
typedef struct _mp_obj_type_t mp_obj_type_t ;
2013-12-21 13:17:45 -05:00
2014-02-15 11:10:44 -05:00
// Constant types, globally accessible
extern const mp_obj_type_t mp_type_type ;
2014-03-29 09:43:38 -04:00
extern const mp_obj_type_t mp_type_object ;
extern const mp_obj_type_t mp_type_NoneType ;
extern const mp_obj_type_t mp_type_bool ;
extern const mp_obj_type_t mp_type_int ;
extern const mp_obj_type_t mp_type_str ;
extern const mp_obj_type_t mp_type_bytes ;
2014-04-08 15:09:14 -04:00
extern const mp_obj_type_t mp_type_bytearray ;
2014-10-23 08:34:35 -04:00
extern const mp_obj_type_t mp_type_memoryview ;
2014-03-29 09:43:38 -04:00
extern const mp_obj_type_t mp_type_float ;
extern const mp_obj_type_t mp_type_complex ;
extern const mp_obj_type_t mp_type_tuple ;
extern const mp_obj_type_t mp_type_list ;
extern const mp_obj_type_t mp_type_map ; // map (the python builtin, not the dict implementation detail)
extern const mp_obj_type_t mp_type_enumerate ;
extern const mp_obj_type_t mp_type_filter ;
extern const mp_obj_type_t mp_type_dict ;
2014-04-17 13:18:55 -04:00
extern const mp_obj_type_t mp_type_range ;
2014-03-29 09:43:38 -04:00
extern const mp_obj_type_t mp_type_set ;
2014-05-10 09:02:17 -04:00
extern const mp_obj_type_t mp_type_frozenset ;
2014-03-29 09:43:38 -04:00
extern const mp_obj_type_t mp_type_slice ;
extern const mp_obj_type_t mp_type_zip ;
extern const mp_obj_type_t mp_type_array ;
extern const mp_obj_type_t mp_type_super ;
extern const mp_obj_type_t mp_type_gen_instance ;
2014-08-24 11:28:17 -04:00
extern const mp_obj_type_t mp_type_fun_builtin ;
2014-03-29 09:43:38 -04:00
extern const mp_obj_type_t mp_type_fun_bc ;
extern const mp_obj_type_t mp_type_module ;
extern const mp_obj_type_t mp_type_staticmethod ;
extern const mp_obj_type_t mp_type_classmethod ;
2014-04-13 13:59:45 -04:00
extern const mp_obj_type_t mp_type_property ;
2014-04-26 13:26:14 -04:00
extern const mp_obj_type_t mp_type_stringio ;
2014-05-15 00:28:19 -04:00
extern const mp_obj_type_t mp_type_bytesio ;
2014-08-12 13:33:40 -04:00
extern const mp_obj_type_t mp_type_reversed ;
2014-03-22 11:28:16 -04:00
// Exceptions
2014-02-15 11:10:44 -05:00
extern const mp_obj_type_t mp_type_BaseException ;
2014-03-22 11:28:16 -04:00
extern const mp_obj_type_t mp_type_ArithmeticError ;
extern const mp_obj_type_t mp_type_AssertionError ;
extern const mp_obj_type_t mp_type_AttributeError ;
extern const mp_obj_type_t mp_type_EOFError ;
extern const mp_obj_type_t mp_type_Exception ;
extern const mp_obj_type_t mp_type_GeneratorExit ;
extern const mp_obj_type_t mp_type_ImportError ;
extern const mp_obj_type_t mp_type_IndentationError ;
extern const mp_obj_type_t mp_type_IndexError ;
2014-10-25 13:19:55 -04:00
extern const mp_obj_type_t mp_type_KeyboardInterrupt ;
2014-03-22 11:28:16 -04:00
extern const mp_obj_type_t mp_type_KeyError ;
extern const mp_obj_type_t mp_type_LookupError ;
extern const mp_obj_type_t mp_type_MemoryError ;
extern const mp_obj_type_t mp_type_NameError ;
extern const mp_obj_type_t mp_type_NotImplementedError ;
extern const mp_obj_type_t mp_type_OSError ;
extern const mp_obj_type_t mp_type_OverflowError ;
extern const mp_obj_type_t mp_type_RuntimeError ;
2014-03-25 10:29:40 -04:00
extern const mp_obj_type_t mp_type_StopIteration ;
2014-03-22 11:28:16 -04:00
extern const mp_obj_type_t mp_type_SyntaxError ;
2014-05-24 18:32:19 -04:00
extern const mp_obj_type_t mp_type_SystemExit ;
2014-03-22 11:28:16 -04:00
extern const mp_obj_type_t mp_type_TypeError ;
extern const mp_obj_type_t mp_type_ValueError ;
extern const mp_obj_type_t mp_type_ZeroDivisionError ;
2013-12-21 13:17:45 -05:00
// Constant objects, globally accessible
2014-03-29 09:15:08 -04:00
// The macros are for convenience only
# define mp_const_none ((mp_obj_t)&mp_const_none_obj)
# define mp_const_false ((mp_obj_t)&mp_const_false_obj)
# define mp_const_true ((mp_obj_t)&mp_const_true_obj)
2014-10-11 12:56:43 -04:00
# define mp_const_empty_bytes ((mp_obj_t)&mp_const_empty_bytes_obj)
2014-03-29 09:15:08 -04:00
# define mp_const_empty_tuple ((mp_obj_t)&mp_const_empty_tuple_obj)
extern const struct _mp_obj_none_t mp_const_none_obj ;
extern const struct _mp_obj_bool_t mp_const_false_obj ;
extern const struct _mp_obj_bool_t mp_const_true_obj ;
2014-10-11 12:56:43 -04:00
extern const struct _mp_obj_str_t mp_const_empty_bytes_obj ;
2014-03-29 09:15:08 -04:00
extern const struct _mp_obj_tuple_t mp_const_empty_tuple_obj ;
extern const struct _mp_obj_ellipsis_t mp_const_ellipsis_obj ;
2014-04-04 06:52:59 -04:00
extern const struct _mp_obj_exception_t mp_const_MemoryError_obj ;
2014-03-29 09:15:08 -04:00
extern const struct _mp_obj_exception_t mp_const_GeneratorExit_obj ;
2013-12-21 13:17:45 -05:00
// General API for objects
2014-02-15 06:34:50 -05:00
mp_obj_t mp_obj_new_type ( qstr name , mp_obj_t bases_tuple , mp_obj_t locals_dict ) ;
2013-12-21 13:17:45 -05:00
mp_obj_t mp_obj_new_none ( void ) ;
mp_obj_t mp_obj_new_bool ( bool value ) ;
2013-12-30 17:32:17 -05:00
mp_obj_t mp_obj_new_cell ( mp_obj_t obj ) ;
2014-07-03 08:25:24 -04:00
mp_obj_t mp_obj_new_int ( mp_int_t value ) ;
mp_obj_t mp_obj_new_int_from_uint ( mp_uint_t value ) ;
2014-08-30 09:19:41 -04:00
mp_obj_t mp_obj_new_int_from_str_len ( const char * * str , mp_uint_t len , bool neg , mp_uint_t base ) ;
2014-03-12 11:38:15 -04:00
mp_obj_t mp_obj_new_int_from_ll ( long long val ) ; // this must return a multi-precision integer object (or raise an overflow exception)
2014-09-10 17:10:33 -04:00
mp_obj_t mp_obj_new_int_from_ull ( unsigned long long val ) ; // this must return a multi-precision integer object (or raise an overflow exception)
2014-08-30 09:19:41 -04:00
mp_obj_t mp_obj_new_str ( const char * data , mp_uint_t len , bool make_qstr_if_not_already ) ;
2015-01-21 14:14:25 -05:00
mp_obj_t mp_obj_new_str_from_vstr ( const mp_obj_type_t * type , vstr_t * vstr ) ;
2014-08-30 09:19:41 -04:00
mp_obj_t mp_obj_new_bytes ( const byte * data , mp_uint_t len ) ;
2014-12-10 17:37:07 -05:00
mp_obj_t mp_obj_new_bytearray ( mp_uint_t n , void * items ) ;
mp_obj_t mp_obj_new_bytearray_by_ref ( mp_uint_t n , void * items ) ;
2014-06-01 08:32:54 -04:00
# if MICROPY_PY_BUILTINS_FLOAT
2014-12-29 17:34:54 -05:00
mp_obj_t mp_obj_new_int_from_float ( mp_float_t val ) ;
2013-12-21 13:17:45 -05:00
mp_obj_t mp_obj_new_float ( mp_float_t val ) ;
mp_obj_t mp_obj_new_complex ( mp_float_t real , mp_float_t imag ) ;
2013-12-17 13:27:24 -05:00
# endif
2014-02-15 11:10:44 -05:00
mp_obj_t mp_obj_new_exception ( const mp_obj_type_t * exc_type ) ;
2014-04-21 17:01:13 -04:00
mp_obj_t mp_obj_new_exception_arg1 ( const mp_obj_type_t * exc_type , mp_obj_t arg ) ;
2014-08-30 09:19:41 -04:00
mp_obj_t mp_obj_new_exception_args ( const mp_obj_type_t * exc_type , mp_uint_t n_args , const mp_obj_t * args ) ;
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 ) ;
mp_obj_t mp_obj_new_exception_msg_varg ( const mp_obj_type_t * exc_type , const char * fmt , . . . ) ; // counts args by number of % symbols in fmt, excluding %%; can only handle void* sizes (ie no float/double!)
2014-10-25 10:07:02 -04:00
mp_obj_t mp_obj_new_fun_bc ( mp_uint_t scope_flags , mp_uint_t n_pos_args , mp_uint_t n_kwonly_args , mp_obj_t def_args , mp_obj_t def_kw_args , const byte * code ) ;
2014-08-24 11:28:17 -04:00
mp_obj_t mp_obj_new_fun_native ( mp_uint_t n_args , void * fun_data ) ;
mp_obj_t mp_obj_new_fun_viper ( mp_uint_t n_args , void * fun_data , mp_uint_t type_sig ) ;
mp_obj_t mp_obj_new_fun_asm ( mp_uint_t n_args , void * fun_data ) ;
2014-01-29 15:30:52 -05:00
mp_obj_t mp_obj_new_gen_wrap ( mp_obj_t fun ) ;
2014-08-30 09:19:41 -04:00
mp_obj_t mp_obj_new_closure ( mp_obj_t fun , mp_uint_t n_closed , const mp_obj_t * closed ) ;
2014-08-30 09:04:14 -04:00
mp_obj_t mp_obj_new_tuple ( mp_uint_t n , const mp_obj_t * items ) ;
mp_obj_t mp_obj_new_list ( mp_uint_t n , mp_obj_t * items ) ;
2014-08-30 08:23:35 -04:00
mp_obj_t mp_obj_new_dict ( mp_uint_t n_args ) ;
mp_obj_t mp_obj_new_set ( mp_uint_t n_args , mp_obj_t * items ) ;
2014-01-02 19:41:17 -05:00
mp_obj_t mp_obj_new_slice ( mp_obj_t start , mp_obj_t stop , mp_obj_t step ) ;
2014-02-04 19:51:47 -05:00
mp_obj_t mp_obj_new_super ( mp_obj_t type , mp_obj_t obj ) ;
2014-01-18 09:10:48 -05:00
mp_obj_t mp_obj_new_bound_meth ( mp_obj_t meth , mp_obj_t self ) ;
2014-01-24 19:17:36 -05:00
mp_obj_t mp_obj_new_getitem_iter ( mp_obj_t * args ) ;
2014-01-02 16:30:26 -05:00
mp_obj_t mp_obj_new_module ( qstr module_name ) ;
2013-12-17 13:27:24 -05:00
2014-05-10 19:26:42 -04:00
mp_obj_type_t * mp_obj_get_type ( mp_const_obj_t o_in ) ;
const char * mp_obj_get_type_str ( mp_const_obj_t o_in ) ;
2014-03-26 14:37:06 -04:00
bool mp_obj_is_subclass_fast ( mp_const_obj_t object , mp_const_obj_t classinfo ) ; // arguments should be type objects
2014-05-10 20:16:04 -04:00
mp_obj_t mp_instance_cast_to_native_base ( mp_const_obj_t self_in , mp_const_obj_t native_type ) ;
2013-12-17 13:27:24 -05:00
2014-01-13 12:19:16 -05:00
void mp_obj_print_helper ( void ( * print ) ( void * env , const char * fmt , . . . ) , void * env , mp_obj_t o_in , mp_print_kind_t kind ) ;
void mp_obj_print ( mp_obj_t o , mp_print_kind_t kind ) ;
2014-12-06 07:29:09 -05:00
void mp_obj_print_exception ( void ( * print ) ( void * env , const char * fmt , . . . ) , void * env , mp_obj_t exc ) ;
2013-12-17 13:27:24 -05:00
2014-08-30 09:28:06 -04:00
bool mp_obj_is_true ( mp_obj_t arg ) ;
2014-04-11 07:16:53 -04:00
// TODO make these all lower case when they have proven themselves
2014-07-03 08:25:24 -04:00
static inline bool MP_OBJ_IS_OBJ ( mp_const_obj_t o ) { return ( ( ( ( mp_int_t ) ( o ) ) & 3 ) = = 0 ) ; }
static inline bool MP_OBJ_IS_SMALL_INT ( mp_const_obj_t o ) { return ( ( ( ( mp_int_t ) ( o ) ) & 1 ) ! = 0 ) ; }
2014-04-11 19:08:40 -04:00
//static inline bool MP_OBJ_IS_TYPE(mp_const_obj_t o, const mp_obj_type_t *t) { return (MP_OBJ_IS_OBJ(o) && (((mp_obj_base_t*)(o))->type == (t))); } // this does not work for checking a string, use below macro for that
//static inline bool MP_OBJ_IS_INT(mp_const_obj_t o) { return (MP_OBJ_IS_SMALL_INT(o) || MP_OBJ_IS_TYPE(o, &mp_type_int)); } // returns true if o is a small int or long int
static inline bool mp_obj_is_integer ( mp_const_obj_t o ) { return MP_OBJ_IS_INT ( o ) | | MP_OBJ_IS_TYPE ( o , & mp_type_bool ) ; } // returns true if o is bool, small int or long int
2014-07-03 08:25:24 -04:00
static inline bool MP_OBJ_IS_QSTR ( mp_const_obj_t o ) { return ( ( ( ( mp_int_t ) ( o ) ) & 3 ) = = 2 ) ; }
2014-04-11 19:08:40 -04:00
//static inline bool MP_OBJ_IS_STR(mp_const_obj_t o) { return (MP_OBJ_IS_QSTR(o) || MP_OBJ_IS_TYPE(o, &mp_type_str)); }
2014-04-11 07:16:53 -04:00
2013-12-21 13:17:45 -05:00
bool mp_obj_is_callable ( mp_obj_t o_in ) ;
2014-07-03 08:25:24 -04:00
mp_int_t mp_obj_hash ( mp_obj_t o_in ) ;
2013-12-21 13:17:45 -05:00
bool mp_obj_equal ( mp_obj_t o1 , mp_obj_t o2 ) ;
2013-12-17 13:27:24 -05:00
2014-07-03 08:25:24 -04:00
mp_int_t mp_obj_get_int ( mp_const_obj_t arg ) ;
bool mp_obj_get_int_maybe ( mp_const_obj_t arg , mp_int_t * value ) ;
2014-06-01 08:32:54 -04:00
# if MICROPY_PY_BUILTINS_FLOAT
2013-12-21 13:17:45 -05:00
mp_float_t mp_obj_get_float ( mp_obj_t self_in ) ;
void mp_obj_get_complex ( mp_obj_t self_in , mp_float_t * real , mp_float_t * imag ) ;
2013-12-17 13:27:24 -05:00
# endif
2014-01-22 09:35:10 -05:00
//qstr mp_obj_get_qstr(mp_obj_t arg);
2014-08-30 09:04:14 -04:00
void mp_obj_get_array ( mp_obj_t o , mp_uint_t * len , mp_obj_t * * items ) ;
void mp_obj_get_array_fixed_n ( mp_obj_t o , mp_uint_t len , mp_obj_t * * items ) ;
mp_uint_t mp_get_index ( const mp_obj_type_t * type , mp_uint_t len , mp_obj_t index , bool is_slice ) ;
2014-08-22 16:48:30 -04:00
mp_obj_t mp_obj_id ( mp_obj_t o_in ) ;
2014-08-12 13:33:40 -04:00
mp_obj_t mp_obj_len ( mp_obj_t o_in ) ;
2014-04-11 07:16:53 -04:00
mp_obj_t mp_obj_len_maybe ( mp_obj_t o_in ) ; /* may return MP_OBJ_NULL */
2014-04-17 17:10:53 -04:00
mp_obj_t mp_obj_subscr ( mp_obj_t base , mp_obj_t index , mp_obj_t val ) ;
2013-12-21 13:17:45 -05:00
// bool
2014-04-11 07:16:53 -04:00
// TODO make lower case when it has proven itself
2014-07-03 08:25:24 -04:00
static inline mp_obj_t MP_BOOL ( mp_int_t x ) { return x ? mp_const_true : mp_const_false ; }
2013-12-21 13:17:45 -05:00
// cell
mp_obj_t mp_obj_cell_get ( mp_obj_t self_in ) ;
void mp_obj_cell_set ( mp_obj_t self_in , mp_obj_t obj ) ;
2014-01-04 15:21:15 -05:00
// int
2014-07-03 08:25:24 -04:00
// For long int, returns value truncated to mp_int_t
2014-12-05 18:13:52 -05:00
mp_int_t mp_obj_int_get_truncated ( mp_const_obj_t self_in ) ;
// Will raise exception if value doesn't fit into mp_int_t
mp_int_t mp_obj_int_get_checked ( mp_const_obj_t self_in ) ;
2014-06-01 08:32:54 -04:00
# if MICROPY_PY_BUILTINS_FLOAT
2014-03-22 16:54:01 -04:00
mp_float_t mp_obj_int_as_float ( mp_obj_t self_in ) ;
# endif
2014-01-04 15:21:15 -05:00
2013-12-29 12:17:43 -05:00
// exception
2014-05-01 18:51:25 -04:00
# define mp_obj_is_native_exception_instance(o) (mp_obj_get_type(o)->make_new == mp_obj_exception_make_new)
2014-02-15 11:10:44 -05:00
bool mp_obj_is_exception_type ( mp_obj_t self_in ) ;
bool mp_obj_is_exception_instance ( mp_obj_t self_in ) ;
2014-09-24 09:05:40 -04:00
bool mp_obj_exception_match ( mp_obj_t exc , mp_const_obj_t exc_type ) ;
2014-02-15 11:10:44 -05:00
void mp_obj_exception_clear_traceback ( mp_obj_t self_in ) ;
2014-07-03 08:25:24 -04:00
void mp_obj_exception_add_traceback ( mp_obj_t self_in , qstr file , mp_uint_t line , qstr block ) ;
void mp_obj_exception_get_traceback ( mp_obj_t self_in , mp_uint_t * n , mp_uint_t * * values ) ;
2014-03-26 13:17:20 -04:00
mp_obj_t mp_obj_exception_get_value ( mp_obj_t self_in ) ;
2014-08-29 19:35:11 -04:00
mp_obj_t mp_obj_exception_make_new ( mp_obj_t type_in , mp_uint_t n_args , mp_uint_t n_kw , const mp_obj_t * args ) ;
2014-07-02 02:46:53 -04:00
mp_obj_t mp_alloc_emergency_exception_buf ( mp_obj_t size_in ) ;
void mp_init_emergency_exception_buf ( void ) ;
2013-12-29 12:17:43 -05:00
2013-12-21 13:17:45 -05:00
// str
2014-01-22 09:35:10 -05:00
bool mp_obj_str_equal ( mp_obj_t s1 , mp_obj_t s2 ) ;
2014-08-30 09:19:41 -04:00
mp_uint_t mp_obj_str_get_hash ( mp_obj_t self_in ) ;
mp_uint_t mp_obj_str_get_len ( mp_obj_t self_in ) ;
2014-01-25 08:51:19 -05:00
qstr mp_obj_str_get_qstr ( mp_obj_t self_in ) ; // use this if you will anyway convert the string to a qstr
2014-01-22 09:35:10 -05:00
const char * mp_obj_str_get_str ( mp_obj_t self_in ) ; // use this only if you need the string to be null terminated
2014-08-30 09:19:41 -04:00
const char * mp_obj_str_get_data ( mp_obj_t self_in , mp_uint_t * len ) ;
2014-06-07 18:13:35 -04:00
mp_obj_t mp_obj_str_intern ( mp_obj_t str ) ;
2014-08-30 09:19:41 -04:00
void mp_str_print_quoted ( void ( * print ) ( void * env , const char * fmt , . . . ) , void * env , const byte * str_data , mp_uint_t str_len , bool is_bytes ) ;
2013-12-21 13:17:45 -05:00
2014-06-01 08:32:54 -04:00
# if MICROPY_PY_BUILTINS_FLOAT
2013-12-21 13:17:45 -05:00
// float
2014-03-08 10:24:39 -05:00
typedef struct _mp_obj_float_t {
mp_obj_base_t base ;
mp_float_t value ;
} mp_obj_float_t ;
2013-12-21 13:17:45 -05:00
mp_float_t mp_obj_float_get ( mp_obj_t self_in ) ;
2014-08-29 19:35:11 -04:00
mp_obj_t mp_obj_float_binary_op ( mp_uint_t op , mp_float_t lhs_val , mp_obj_t rhs ) ; // can return MP_OBJ_NULL if op not supported
2014-09-13 13:43:09 -04:00
void mp_obj_float_divmod ( mp_float_t * x , mp_float_t * y ) ;
2013-12-21 13:17:45 -05:00
// complex
void mp_obj_complex_get ( mp_obj_t self_in , mp_float_t * real , mp_float_t * imag ) ;
2014-08-29 19:35:11 -04:00
mp_obj_t mp_obj_complex_binary_op ( mp_uint_t op , mp_float_t lhs_real , mp_float_t lhs_imag , mp_obj_t rhs_in ) ; // can return MP_OBJ_NULL if op not supported
2013-12-21 13:17:45 -05:00
# endif
// tuple
2014-08-30 09:04:14 -04:00
void mp_obj_tuple_get ( mp_obj_t self_in , mp_uint_t * len , mp_obj_t * * items ) ;
2014-01-12 21:31:00 -05:00
void mp_obj_tuple_del ( mp_obj_t self_in ) ;
2014-07-03 08:25:24 -04:00
mp_int_t mp_obj_tuple_hash ( mp_obj_t self_in ) ;
2013-12-21 13:17:45 -05:00
// list
2014-04-12 23:17:29 -04:00
struct _mp_obj_list_t ;
2014-08-30 09:04:14 -04:00
void mp_obj_list_init ( struct _mp_obj_list_t * o , mp_uint_t n ) ;
2013-12-21 13:17:45 -05:00
mp_obj_t mp_obj_list_append ( mp_obj_t self_in , mp_obj_t arg ) ;
2014-08-30 09:04:14 -04:00
void mp_obj_list_get ( mp_obj_t self_in , mp_uint_t * len , mp_obj_t * * items ) ;
void mp_obj_list_set_len ( mp_obj_t self_in , mp_uint_t len ) ;
2013-12-21 13:17:45 -05:00
void mp_obj_list_store ( mp_obj_t self_in , mp_obj_t index , mp_obj_t value ) ;
2014-08-29 19:35:11 -04:00
mp_obj_t mp_obj_list_sort ( mp_uint_t n_args , const mp_obj_t * args , mp_map_t * kwargs ) ;
2013-12-21 13:17:45 -05:00
// dict
2014-03-30 08:54:02 -04:00
typedef struct _mp_obj_dict_t {
mp_obj_base_t base ;
mp_map_t map ;
} mp_obj_dict_t ;
2014-08-30 08:23:35 -04:00
void mp_obj_dict_init ( mp_obj_dict_t * dict , mp_uint_t n_args ) ;
mp_uint_t mp_obj_dict_len ( mp_obj_t self_in ) ;
2014-06-05 13:02:15 -04:00
mp_obj_t mp_obj_dict_get ( mp_obj_t self_in , mp_obj_t index ) ;
2013-12-21 13:17:45 -05:00
mp_obj_t mp_obj_dict_store ( mp_obj_t self_in , mp_obj_t key , mp_obj_t value ) ;
2014-04-05 08:25:13 -04:00
mp_obj_t mp_obj_dict_delete ( mp_obj_t self_in , mp_obj_t key ) ;
2014-03-30 08:54:02 -04:00
mp_map_t * mp_obj_dict_get_map ( mp_obj_t self_in ) ;
2013-12-21 13:17:45 -05:00
// set
void mp_obj_set_store ( mp_obj_t self_in , mp_obj_t item ) ;
2014-01-02 19:41:17 -05:00
// slice
2014-05-24 18:39:27 -04:00
void mp_obj_slice_get ( mp_obj_t self_in , mp_obj_t * start , mp_obj_t * stop , mp_obj_t * step ) ;
2014-01-02 19:41:17 -05:00
2013-12-21 13:17:45 -05:00
// functions
2014-02-26 12:47:05 -05:00
# define MP_OBJ_FUN_ARGS_MAX (0xffff) // to set maximum value in n_args_max below
2014-08-24 11:28:17 -04:00
typedef struct _mp_obj_fun_builtin_t { // use this to make const objects that go in ROM
2013-12-21 13:17:45 -05:00
mp_obj_base_t base ;
2014-02-26 12:40:52 -05:00
bool is_kw : 1 ;
2014-08-24 11:28:17 -04:00
mp_uint_t n_args_min : 15 ; // inclusive
mp_uint_t n_args_max : 16 ; // inclusive
void * fun ; // must be a pointer to a callable function in ROM
} mp_obj_fun_builtin_t ;
2014-01-07 10:58:30 -05:00
2014-05-17 04:08:33 -04:00
const char * mp_obj_fun_get_name ( mp_const_obj_t fun ) ;
2014-05-01 15:20:07 -04:00
const char * mp_obj_code_get_name ( const byte * code_info ) ;
2013-12-21 13:17:45 -05:00
2014-01-20 11:37:30 -05:00
mp_obj_t mp_identity ( mp_obj_t self ) ;
2014-02-08 14:57:19 -05:00
MP_DECLARE_CONST_FUN_OBJ ( mp_identity_obj ) ;
2014-01-20 11:37:30 -05:00
2014-01-02 16:30:26 -05:00
// module
2014-03-08 10:24:39 -05:00
typedef struct _mp_obj_module_t {
mp_obj_base_t base ;
qstr name ;
2014-04-05 16:53:54 -04:00
mp_obj_dict_t * globals ;
2014-03-08 10:24:39 -05:00
} mp_obj_module_t ;
2014-04-05 16:53:54 -04:00
mp_obj_dict_t * mp_obj_module_get_globals ( mp_obj_t self_in ) ;
2014-10-25 14:04:13 -04:00
// check if given module object is a package
bool mp_obj_is_package ( mp_obj_t module ) ;
2014-01-11 14:22:29 -05:00
// staticmethod and classmethod types; defined here so we can make const versions
2014-02-06 15:31:44 -05:00
// this structure is used for instances of both staticmethod and classmethod
typedef struct _mp_obj_static_class_method_t {
2014-01-11 14:22:29 -05:00
mp_obj_base_t base ;
mp_obj_t fun ;
2014-02-06 15:31:44 -05:00
} mp_obj_static_class_method_t ;
2014-01-20 17:19:19 -05:00
2014-04-13 13:59:45 -04:00
// property
const mp_obj_t * mp_obj_property_get ( mp_obj_t self_in ) ;
2014-01-20 17:19:19 -05:00
// sequence helpers
2014-05-25 14:21:57 -04:00
// slice indexes resolved to particular sequence
typedef struct {
2014-07-03 08:25:24 -04:00
mp_uint_t start ;
mp_uint_t stop ;
mp_int_t step ;
2014-05-25 14:21:57 -04:00
} mp_bound_slice_t ;
2014-08-30 09:19:41 -04:00
void mp_seq_multiply ( const void * items , mp_uint_t item_sz , mp_uint_t len , mp_uint_t times , void * dest ) ;
2014-06-01 08:49:35 -04:00
# if MICROPY_PY_BUILTINS_SLICE
2014-07-03 08:25:24 -04:00
bool mp_seq_get_fast_slice_indexes ( mp_uint_t len , mp_obj_t slice , mp_bound_slice_t * indexes ) ;
2014-06-01 08:49:35 -04:00
# endif
2014-05-10 14:36:33 -04:00
# define mp_seq_copy(dest, src, len, item_t) memcpy(dest, src, len * sizeof(item_t))
# define mp_seq_cat(dest, src1, len1, src2, len2, item_t) { memcpy(dest, src1, (len1) * sizeof(item_t)); memcpy(dest + (len1), src2, (len2) * sizeof(item_t)); }
2014-08-30 09:28:06 -04:00
bool mp_seq_cmp_bytes ( mp_uint_t op , const byte * data1 , mp_uint_t len1 , const byte * data2 , mp_uint_t len2 ) ;
bool mp_seq_cmp_objs ( mp_uint_t op , const mp_obj_t * items1 , mp_uint_t len1 , const mp_obj_t * items2 , mp_uint_t len2 ) ;
2014-08-30 09:19:41 -04:00
mp_obj_t mp_seq_index_obj ( const mp_obj_t * items , mp_uint_t len , mp_uint_t n_args , const mp_obj_t * args ) ;
mp_obj_t mp_seq_count_obj ( const mp_obj_t * items , mp_uint_t len , mp_obj_t value ) ;
mp_obj_t mp_seq_extract_slice ( mp_uint_t len , const mp_obj_t * seq , mp_bound_slice_t * indexes ) ;
2014-04-27 17:16:57 -04:00
// Helper to clear stale pointers from allocated, but unused memory, to preclude GC problems
# define mp_seq_clear(start, len, alloc_len, item_sz) memset((byte*)(start) + (len) * (item_sz), 0, ((alloc_len) - (len)) * (item_sz))
2014-05-10 15:23:00 -04:00
# define mp_seq_replace_slice_no_grow(dest, dest_len, beg, end, slice, slice_len, item_t) \
/*printf("memcpy(%p, %p, %d)\n", dest + beg, slice, slice_len * sizeof(item_t));*/ \
memcpy ( dest + beg , slice , slice_len * sizeof ( item_t ) ) ; \
2014-08-29 16:07:54 -04:00
/*printf("memmove(%p, %p, %d)\n", dest + (beg + slice_len), dest + end, (dest_len - end) * sizeof(item_t));*/ \
memmove ( dest + ( beg + slice_len ) , dest + end , ( dest_len - end ) * sizeof ( item_t ) ) ;
2014-05-24 19:36:12 -04:00
# define mp_seq_replace_slice_grow_inplace(dest, dest_len, beg, end, slice, slice_len, len_adj, item_t) \
/*printf("memmove(%p, %p, %d)\n", dest + beg + len_adj, dest + beg, (dest_len - beg) * sizeof(item_t));*/ \
memmove ( dest + beg + len_adj , dest + beg , ( dest_len - beg ) * sizeof ( item_t ) ) ; \
memcpy ( dest + beg , slice , slice_len * sizeof ( item_t ) ) ;
2014-12-28 20:02:19 -05:00
# endif // __MICROPY_INCLUDED_PY_OBJ_H__