2013-12-21 18:17:45 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "nlr.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "mpconfig.h"
|
2014-01-21 21:40:13 +00:00
|
|
|
#include "qstr.h"
|
2013-12-21 18:17:45 +00:00
|
|
|
#include "obj.h"
|
|
|
|
#include "runtime0.h"
|
|
|
|
#include "runtime.h"
|
|
|
|
#include "map.h"
|
|
|
|
|
|
|
|
typedef struct _mp_obj_dict_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
mp_map_t map;
|
|
|
|
} mp_obj_dict_t;
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t mp_obj_new_dict_iterator(mp_obj_dict_t *dict, int cur);
|
|
|
|
STATIC mp_map_elem_t *dict_it_iternext_elem(mp_obj_t self_in);
|
2014-01-06 17:17:02 +00:00
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC void dict_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) {
|
2013-12-21 18:17:45 +00:00
|
|
|
mp_obj_dict_t *self = self_in;
|
|
|
|
bool first = true;
|
|
|
|
print(env, "{");
|
2014-01-06 17:17:02 +00:00
|
|
|
mp_obj_t *dict_iter = mp_obj_new_dict_iterator(self, 0);
|
|
|
|
mp_map_elem_t *next = NULL;
|
|
|
|
while ((next = dict_it_iternext_elem(dict_iter)) != NULL) {
|
|
|
|
if (!first) {
|
|
|
|
print(env, ", ");
|
2013-12-21 18:17:45 +00:00
|
|
|
}
|
2014-01-06 17:17:02 +00:00
|
|
|
first = false;
|
2014-01-13 17:19:16 +00:00
|
|
|
mp_obj_print_helper(print, env, next->key, PRINT_REPR);
|
2014-01-06 17:17:02 +00:00
|
|
|
print(env, ": ");
|
2014-01-13 17:19:16 +00:00
|
|
|
mp_obj_print_helper(print, env, next->value, PRINT_REPR);
|
2013-12-21 18:17:45 +00:00
|
|
|
}
|
|
|
|
print(env, "}");
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
2014-01-04 20:21:15 +00:00
|
|
|
// TODO create from an iterable!
|
|
|
|
return rt_build_map(0);
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_unary_op(int op, mp_obj_t self_in) {
|
2014-01-27 23:15:32 +00:00
|
|
|
mp_obj_dict_t *self = self_in;
|
|
|
|
switch (op) {
|
2014-01-30 02:37:19 +00:00
|
|
|
case RT_UNARY_OP_BOOL: return MP_BOOL(self->map.used != 0);
|
2014-01-30 10:05:33 +00:00
|
|
|
case RT_UNARY_OP_LEN: return MP_OBJ_NEW_SMALL_INT((machine_int_t)self->map.used);
|
2014-01-27 23:15:32 +00:00
|
|
|
default: return MP_OBJ_NULL; // op not supported for None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in) {
|
2013-12-21 18:17:45 +00:00
|
|
|
mp_obj_dict_t *o = lhs_in;
|
|
|
|
switch (op) {
|
|
|
|
case RT_BINARY_OP_SUBSCR:
|
|
|
|
{
|
|
|
|
// dict load
|
2014-01-08 17:33:12 +00:00
|
|
|
mp_map_elem_t *elem = mp_map_lookup(&o->map, rhs_in, MP_MAP_LOOKUP);
|
2013-12-21 18:17:45 +00:00
|
|
|
if (elem == NULL) {
|
2014-02-15 16:10:44 +00:00
|
|
|
nlr_jump(mp_obj_new_exception_msg(&mp_type_KeyError, "<value>"));
|
2013-12-21 18:17:45 +00:00
|
|
|
} else {
|
|
|
|
return elem->value;
|
|
|
|
}
|
|
|
|
}
|
2014-02-01 23:04:09 +00:00
|
|
|
case RT_BINARY_OP_IN:
|
2014-01-11 12:39:33 +00:00
|
|
|
{
|
|
|
|
mp_map_elem_t *elem = mp_map_lookup(&o->map, rhs_in, MP_MAP_LOOKUP);
|
2014-02-01 23:04:09 +00:00
|
|
|
return MP_BOOL(elem != NULL);
|
2014-01-11 12:39:33 +00:00
|
|
|
}
|
2013-12-21 18:17:45 +00:00
|
|
|
default:
|
|
|
|
// op not supported
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-06 17:17:02 +00:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* dict iterator */
|
|
|
|
|
|
|
|
typedef struct _mp_obj_dict_it_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
mp_obj_dict_t *dict;
|
|
|
|
machine_uint_t cur;
|
|
|
|
} mp_obj_dict_it_t;
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_map_elem_t *dict_it_iternext_elem(mp_obj_t self_in) {
|
2014-01-06 17:17:02 +00:00
|
|
|
mp_obj_dict_it_t *self = self_in;
|
|
|
|
machine_uint_t max = self->dict->map.alloc;
|
|
|
|
mp_map_elem_t *table = self->dict->map.table;
|
|
|
|
|
|
|
|
for (int i = self->cur; i < max; i++) {
|
|
|
|
if (table[i].key != NULL) {
|
|
|
|
self->cur = i + 1;
|
|
|
|
return &(table[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t dict_it_iternext(mp_obj_t self_in) {
|
|
|
|
mp_map_elem_t *next = dict_it_iternext_elem(self_in);
|
|
|
|
|
|
|
|
if (next != NULL) {
|
|
|
|
return next->key;
|
|
|
|
} else {
|
|
|
|
return mp_const_stop_iteration;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC const mp_obj_type_t dict_it_type = {
|
2014-02-15 16:10:44 +00:00
|
|
|
{ &mp_type_type },
|
2014-02-15 11:34:50 +00:00
|
|
|
.name = MP_QSTR_iterator,
|
2014-01-06 17:17:02 +00:00
|
|
|
.iternext = dict_it_iternext,
|
|
|
|
};
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t mp_obj_new_dict_iterator(mp_obj_dict_t *dict, int cur) {
|
2014-01-06 17:17:02 +00:00
|
|
|
mp_obj_dict_it_t *o = m_new_obj(mp_obj_dict_it_t);
|
|
|
|
o->base.type = &dict_it_type;
|
|
|
|
o->dict = dict;
|
|
|
|
o->cur = cur;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_getiter(mp_obj_t o_in) {
|
2014-01-06 17:17:02 +00:00
|
|
|
return mp_obj_new_dict_iterator(o_in, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* dict methods */
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_clear(mp_obj_t self_in) {
|
2014-01-06 17:38:47 +00:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &dict_type));
|
|
|
|
mp_obj_dict_t *self = self_in;
|
|
|
|
|
|
|
|
mp_map_clear(&self->map);
|
|
|
|
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(dict_clear_obj, dict_clear);
|
2014-01-06 17:54:04 +00:00
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_copy(mp_obj_t self_in) {
|
2014-01-06 18:11:20 +00:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &dict_type));
|
|
|
|
mp_obj_dict_t *self = self_in;
|
|
|
|
mp_obj_dict_t *other = mp_obj_new_dict(self->map.alloc);
|
|
|
|
other->map.used = self->map.used;
|
|
|
|
memcpy(other->map.table, self->map.table, self->map.alloc * sizeof(mp_map_elem_t));
|
|
|
|
return other;
|
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(dict_copy_obj, dict_copy);
|
2014-01-06 17:38:47 +00:00
|
|
|
|
2014-01-11 19:22:29 +00:00
|
|
|
// this is a classmethod
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_fromkeys(uint n_args, const mp_obj_t *args) {
|
2014-01-11 19:22:29 +00:00
|
|
|
assert(2 <= n_args && n_args <= 3);
|
|
|
|
mp_obj_t iter = rt_getiter(args[1]);
|
|
|
|
mp_obj_t len = mp_obj_len_maybe(iter);
|
|
|
|
mp_obj_t value = mp_const_none;
|
|
|
|
mp_obj_t next = NULL;
|
|
|
|
mp_obj_dict_t *self = NULL;
|
|
|
|
|
|
|
|
if (n_args > 2) {
|
|
|
|
value = args[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len == MP_OBJ_NULL) {
|
|
|
|
/* object's type doesn't have a __len__ slot */
|
|
|
|
self = mp_obj_new_dict(0);
|
|
|
|
} else {
|
|
|
|
self = mp_obj_new_dict(MP_OBJ_SMALL_INT_VALUE(len));
|
|
|
|
}
|
|
|
|
|
|
|
|
while ((next = rt_iternext(iter)) != mp_const_stop_iteration) {
|
|
|
|
mp_map_lookup(&self->map, next, MP_MAP_LOOKUP_ADD_IF_NOT_FOUND)->value = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(dict_fromkeys_fun_obj, 2, 3, dict_fromkeys);
|
|
|
|
STATIC MP_DEFINE_CONST_CLASSMETHOD_OBJ(dict_fromkeys_obj, (const mp_obj_t)&dict_fromkeys_fun_obj);
|
2014-01-11 19:22:29 +00:00
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_get_helper(mp_map_t *self, mp_obj_t key, mp_obj_t deflt, mp_map_lookup_kind_t lookup_kind) {
|
2014-01-08 17:33:12 +00:00
|
|
|
mp_map_elem_t *elem = mp_map_lookup(self, key, lookup_kind);
|
2014-01-06 20:25:51 +00:00
|
|
|
mp_obj_t value;
|
|
|
|
if (elem == NULL || elem->value == NULL) {
|
2014-01-06 19:48:34 +00:00
|
|
|
if (deflt == NULL) {
|
2014-01-08 17:33:12 +00:00
|
|
|
if (lookup_kind == MP_MAP_LOOKUP_REMOVE_IF_FOUND) {
|
2014-02-15 16:10:44 +00:00
|
|
|
nlr_jump(mp_obj_new_exception_msg(&mp_type_KeyError, "<value>"));
|
2014-01-06 19:48:34 +00:00
|
|
|
} else {
|
2014-01-06 20:25:51 +00:00
|
|
|
value = mp_const_none;
|
2014-01-06 19:48:34 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-01-06 20:25:51 +00:00
|
|
|
value = deflt;
|
2014-01-06 19:48:34 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-01-06 20:25:51 +00:00
|
|
|
value = elem->value;
|
2014-01-08 17:33:12 +00:00
|
|
|
if (lookup_kind == MP_MAP_LOOKUP_REMOVE_IF_FOUND) {
|
|
|
|
// catch the leak (from mp_map_lookup)
|
2014-01-06 22:58:17 +00:00
|
|
|
m_free(elem, sizeof(mp_map_elem_t));
|
2014-01-06 19:48:34 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-08 17:33:12 +00:00
|
|
|
if (lookup_kind == MP_MAP_LOOKUP_ADD_IF_NOT_FOUND) {
|
2014-01-06 20:25:51 +00:00
|
|
|
elem->value = value;
|
|
|
|
}
|
|
|
|
return value;
|
2014-01-06 19:48:34 +00:00
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_get(uint n_args, const mp_obj_t *args) {
|
2014-01-06 18:53:16 +00:00
|
|
|
assert(2 <= n_args && n_args <= 3);
|
|
|
|
assert(MP_OBJ_IS_TYPE(args[0], &dict_type));
|
|
|
|
|
2014-01-06 19:48:34 +00:00
|
|
|
return dict_get_helper(&((mp_obj_dict_t *)args[0])->map,
|
|
|
|
args[1],
|
|
|
|
n_args == 3 ? args[2] : NULL,
|
2014-01-08 17:33:12 +00:00
|
|
|
MP_MAP_LOOKUP);
|
2014-01-06 18:53:16 +00:00
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(dict_get_obj, 2, 3, dict_get);
|
2014-01-06 18:53:16 +00:00
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_pop(uint n_args, const mp_obj_t *args) {
|
2014-01-06 19:48:34 +00:00
|
|
|
assert(2 <= n_args && n_args <= 3);
|
|
|
|
assert(MP_OBJ_IS_TYPE(args[0], &dict_type));
|
|
|
|
|
|
|
|
return dict_get_helper(&((mp_obj_dict_t *)args[0])->map,
|
|
|
|
args[1],
|
|
|
|
n_args == 3 ? args[2] : NULL,
|
2014-01-08 17:33:12 +00:00
|
|
|
MP_MAP_LOOKUP_REMOVE_IF_FOUND);
|
2014-01-06 19:48:34 +00:00
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(dict_pop_obj, 2, 3, dict_pop);
|
2014-01-06 19:48:34 +00:00
|
|
|
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_setdefault(uint n_args, const mp_obj_t *args) {
|
2014-01-06 20:25:51 +00:00
|
|
|
assert(2 <= n_args && n_args <= 3);
|
|
|
|
assert(MP_OBJ_IS_TYPE(args[0], &dict_type));
|
|
|
|
|
|
|
|
return dict_get_helper(&((mp_obj_dict_t *)args[0])->map,
|
|
|
|
args[1],
|
|
|
|
n_args == 3 ? args[2] : NULL,
|
2014-01-08 17:33:12 +00:00
|
|
|
MP_MAP_LOOKUP_ADD_IF_NOT_FOUND);
|
2014-01-06 20:25:51 +00:00
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(dict_setdefault_obj, 2, 3, dict_setdefault);
|
2014-01-06 20:25:51 +00:00
|
|
|
|
2014-01-06 20:08:52 +00:00
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_popitem(mp_obj_t self_in) {
|
2014-01-06 20:08:52 +00:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &dict_type));
|
|
|
|
mp_obj_dict_t *self = self_in;
|
|
|
|
if (self->map.used == 0) {
|
2014-02-15 16:10:44 +00:00
|
|
|
nlr_jump(mp_obj_new_exception_msg(&mp_type_KeyError, "popitem(): dictionary is empty"));
|
2014-01-06 20:08:52 +00:00
|
|
|
}
|
|
|
|
mp_obj_dict_it_t *iter = mp_obj_new_dict_iterator(self, 0);
|
|
|
|
|
|
|
|
mp_map_elem_t *next = dict_it_iternext_elem(iter);
|
|
|
|
self->map.used--;
|
|
|
|
mp_obj_t items[] = {next->key, next->value};
|
|
|
|
next->key = NULL;
|
2014-01-06 20:25:51 +00:00
|
|
|
next->value = NULL;
|
2014-01-06 20:08:52 +00:00
|
|
|
mp_obj_t tuple = mp_obj_new_tuple(2, items);
|
|
|
|
|
|
|
|
return tuple;
|
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(dict_popitem_obj, dict_popitem);
|
2014-01-06 20:08:52 +00:00
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_update(mp_obj_t self_in, mp_obj_t iterable) {
|
2014-01-06 22:58:17 +00:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &dict_type));
|
|
|
|
mp_obj_dict_t *self = self_in;
|
|
|
|
/* TODO: check for the "keys" method */
|
|
|
|
mp_obj_t iter = rt_getiter(iterable);
|
|
|
|
mp_obj_t next = NULL;
|
|
|
|
while ((next = rt_iternext(iter)) != mp_const_stop_iteration) {
|
|
|
|
mp_obj_t inneriter = rt_getiter(next);
|
|
|
|
mp_obj_t key = rt_iternext(inneriter);
|
|
|
|
mp_obj_t value = rt_iternext(inneriter);
|
|
|
|
mp_obj_t stop = rt_iternext(inneriter);
|
|
|
|
if (key == mp_const_stop_iteration
|
|
|
|
|| value == mp_const_stop_iteration
|
|
|
|
|| stop != mp_const_stop_iteration) {
|
|
|
|
nlr_jump(mp_obj_new_exception_msg(
|
2014-02-15 16:10:44 +00:00
|
|
|
&mp_type_ValueError,
|
2014-01-06 22:58:17 +00:00
|
|
|
"dictionary update sequence has the wrong length"));
|
|
|
|
} else {
|
2014-01-08 17:33:12 +00:00
|
|
|
mp_map_lookup(&self->map, key, MP_MAP_LOOKUP_ADD_IF_NOT_FOUND)->value = value;
|
2014-01-06 22:58:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_2(dict_update_obj, dict_update);
|
2014-01-06 22:58:17 +00:00
|
|
|
|
2014-01-06 20:08:52 +00:00
|
|
|
|
2014-01-10 01:00:20 +00:00
|
|
|
/******************************************************************************/
|
|
|
|
/* dict views */
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC const mp_obj_type_t dict_view_type;
|
|
|
|
STATIC const mp_obj_type_t dict_view_it_type;
|
2014-01-10 01:00:20 +00:00
|
|
|
|
|
|
|
typedef enum _mp_dict_view_kind_t {
|
|
|
|
MP_DICT_VIEW_ITEMS,
|
|
|
|
MP_DICT_VIEW_KEYS,
|
|
|
|
MP_DICT_VIEW_VALUES,
|
|
|
|
} mp_dict_view_kind_t;
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC char *mp_dict_view_names[] = {"dict_items", "dict_keys", "dict_values"};
|
2014-01-10 01:00:20 +00:00
|
|
|
|
|
|
|
typedef struct _mp_obj_dict_view_it_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
mp_dict_view_kind_t kind;
|
|
|
|
mp_obj_dict_it_t *iter;
|
|
|
|
machine_uint_t cur;
|
|
|
|
} mp_obj_dict_view_it_t;
|
|
|
|
|
|
|
|
typedef struct _mp_obj_dict_view_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
mp_obj_dict_t *dict;
|
|
|
|
mp_dict_view_kind_t kind;
|
|
|
|
} mp_obj_dict_view_t;
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_view_it_iternext(mp_obj_t self_in) {
|
2014-01-10 01:00:20 +00:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &dict_view_it_type));
|
|
|
|
mp_obj_dict_view_it_t *self = self_in;
|
|
|
|
mp_map_elem_t *next = dict_it_iternext_elem(self->iter);
|
|
|
|
|
|
|
|
if (next != NULL) {
|
|
|
|
switch (self->kind) {
|
2014-01-11 19:22:29 +00:00
|
|
|
case MP_DICT_VIEW_ITEMS:
|
|
|
|
{
|
|
|
|
mp_obj_t items[] = {next->key, next->value};
|
|
|
|
return mp_obj_new_tuple(2, items);
|
|
|
|
}
|
|
|
|
case MP_DICT_VIEW_KEYS:
|
|
|
|
return next->key;
|
|
|
|
case MP_DICT_VIEW_VALUES:
|
|
|
|
return next->value;
|
|
|
|
default:
|
|
|
|
assert(0); /* can't happen */
|
|
|
|
return mp_const_none;
|
2014-01-10 01:00:20 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return mp_const_stop_iteration;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC const mp_obj_type_t dict_view_it_type = {
|
2014-02-15 16:10:44 +00:00
|
|
|
{ &mp_type_type },
|
2014-02-15 11:34:50 +00:00
|
|
|
.name = MP_QSTR_iterator,
|
2014-01-10 01:00:20 +00:00
|
|
|
.iternext = dict_view_it_iternext,
|
|
|
|
.methods = NULL, /* set operations still to come */
|
|
|
|
};
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_view_getiter(mp_obj_t view_in) {
|
2014-01-10 01:00:20 +00:00
|
|
|
assert(MP_OBJ_IS_TYPE(view_in, &dict_view_type));
|
|
|
|
mp_obj_dict_view_t *view = view_in;
|
|
|
|
mp_obj_dict_view_it_t *o = m_new_obj(mp_obj_dict_view_it_t);
|
|
|
|
o->base.type = &dict_view_it_type;
|
|
|
|
o->kind = view->kind;
|
|
|
|
o->iter = mp_obj_new_dict_iterator(view->dict, 0);
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC void dict_view_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) {
|
2014-01-10 01:00:20 +00:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &dict_view_type));
|
|
|
|
mp_obj_dict_view_t *self = self_in;
|
|
|
|
bool first = true;
|
|
|
|
print(env, mp_dict_view_names[self->kind]);
|
|
|
|
print(env, "([");
|
|
|
|
mp_obj_t *self_iter = dict_view_getiter(self);
|
|
|
|
mp_obj_t *next = NULL;
|
|
|
|
while ((next = dict_view_it_iternext(self_iter)) != mp_const_stop_iteration) {
|
|
|
|
if (!first) {
|
|
|
|
print(env, ", ");
|
|
|
|
}
|
|
|
|
first = false;
|
2014-01-13 17:19:16 +00:00
|
|
|
mp_obj_print_helper(print, env, next, PRINT_REPR);
|
2014-01-10 01:00:20 +00:00
|
|
|
}
|
|
|
|
print(env, "])");
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_view_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in) {
|
2014-01-11 12:39:33 +00:00
|
|
|
/* only supported for the 'keys' kind until sets and dicts are refactored */
|
|
|
|
mp_obj_dict_view_t *o = lhs_in;
|
|
|
|
if (o->kind != MP_DICT_VIEW_KEYS) return NULL;
|
2014-02-01 23:04:09 +00:00
|
|
|
if (op != RT_BINARY_OP_IN) return NULL;
|
2014-01-11 12:39:33 +00:00
|
|
|
return dict_binary_op(op, o->dict, rhs_in);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC const mp_obj_type_t dict_view_type = {
|
2014-02-15 16:10:44 +00:00
|
|
|
{ &mp_type_type },
|
2014-02-15 11:34:50 +00:00
|
|
|
.name = MP_QSTR_dict_view,
|
2014-01-10 01:00:20 +00:00
|
|
|
.print = dict_view_print,
|
2014-01-11 12:39:33 +00:00
|
|
|
.binary_op = dict_view_binary_op,
|
2014-01-10 01:00:20 +00:00
|
|
|
.getiter = dict_view_getiter,
|
|
|
|
};
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_dict_view(mp_obj_dict_t *dict, mp_dict_view_kind_t kind) {
|
|
|
|
mp_obj_dict_view_t *o = m_new_obj(mp_obj_dict_view_t);
|
|
|
|
o->base.type = &dict_view_type;
|
|
|
|
o->dict = dict;
|
|
|
|
o->kind = kind;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_view(mp_obj_t self_in, mp_dict_view_kind_t kind) {
|
2014-01-10 01:00:20 +00:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &dict_type));
|
|
|
|
mp_obj_dict_t *self = self_in;
|
|
|
|
return mp_obj_new_dict_view(self, kind);
|
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_items(mp_obj_t self_in) {
|
2014-01-10 01:00:20 +00:00
|
|
|
return dict_view(self_in, MP_DICT_VIEW_ITEMS);
|
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(dict_items_obj, dict_items);
|
2014-01-10 01:00:20 +00:00
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_keys(mp_obj_t self_in) {
|
2014-01-10 01:00:20 +00:00
|
|
|
return dict_view(self_in, MP_DICT_VIEW_KEYS);
|
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(dict_keys_obj, dict_keys);
|
2014-01-10 01:00:20 +00:00
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t dict_values(mp_obj_t self_in) {
|
2014-01-10 01:00:20 +00:00
|
|
|
return dict_view(self_in, MP_DICT_VIEW_VALUES);
|
|
|
|
}
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(dict_values_obj, dict_values);
|
2014-01-10 01:00:20 +00:00
|
|
|
|
2014-01-06 17:17:02 +00:00
|
|
|
/******************************************************************************/
|
2014-01-11 19:22:29 +00:00
|
|
|
/* dict constructors & public C API */
|
2014-01-06 17:17:02 +00:00
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC const mp_method_t dict_type_methods[] = {
|
2014-01-07 23:18:25 +00:00
|
|
|
{ "clear", &dict_clear_obj },
|
|
|
|
{ "copy", &dict_copy_obj },
|
2014-01-11 19:22:29 +00:00
|
|
|
{ "fromkeys", &dict_fromkeys_obj },
|
2014-01-07 23:18:25 +00:00
|
|
|
{ "get", &dict_get_obj },
|
2014-01-10 01:00:20 +00:00
|
|
|
{ "items", &dict_items_obj },
|
|
|
|
{ "keys", &dict_keys_obj },
|
2014-01-07 23:18:25 +00:00
|
|
|
{ "pop", &dict_pop_obj },
|
|
|
|
{ "popitem", &dict_popitem_obj },
|
|
|
|
{ "setdefault", &dict_setdefault_obj },
|
|
|
|
{ "update", &dict_update_obj },
|
2014-01-10 01:00:20 +00:00
|
|
|
{ "values", &dict_values_obj },
|
2014-01-07 23:18:25 +00:00
|
|
|
{ NULL, NULL }, // end-of-list sentinel
|
|
|
|
};
|
|
|
|
|
2013-12-21 18:17:45 +00:00
|
|
|
const mp_obj_type_t dict_type = {
|
2014-02-15 16:10:44 +00:00
|
|
|
{ &mp_type_type },
|
2014-02-15 11:34:50 +00:00
|
|
|
.name = MP_QSTR_dict,
|
2014-01-05 20:34:09 +00:00
|
|
|
.print = dict_print,
|
|
|
|
.make_new = dict_make_new,
|
2014-01-27 23:15:32 +00:00
|
|
|
.unary_op = dict_unary_op,
|
2014-01-05 20:34:09 +00:00
|
|
|
.binary_op = dict_binary_op,
|
2014-01-06 17:17:02 +00:00
|
|
|
.getiter = dict_getiter,
|
2014-01-07 23:18:25 +00:00
|
|
|
.methods = dict_type_methods,
|
2013-12-21 18:17:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_dict(int n_args) {
|
|
|
|
mp_obj_dict_t *o = m_new_obj(mp_obj_dict_t);
|
|
|
|
o->base.type = &dict_type;
|
2014-01-08 17:33:12 +00:00
|
|
|
mp_map_init(&o->map, n_args);
|
2013-12-21 18:17:45 +00:00
|
|
|
return o;
|
|
|
|
}
|
2013-12-29 22:32:51 +00:00
|
|
|
|
|
|
|
uint mp_obj_dict_len(mp_obj_t self_in) {
|
2014-01-06 18:53:16 +00:00
|
|
|
return ((mp_obj_dict_t *)self_in)->map.used;
|
2013-12-29 22:32:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_dict_store(mp_obj_t self_in, mp_obj_t key, mp_obj_t value) {
|
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &dict_type));
|
|
|
|
mp_obj_dict_t *self = self_in;
|
2014-01-08 17:33:12 +00:00
|
|
|
mp_map_lookup(&self->map, key, MP_MAP_LOOKUP_ADD_IF_NOT_FOUND)->value = value;
|
2013-12-29 22:32:51 +00:00
|
|
|
return self_in;
|
|
|
|
}
|
2014-01-09 20:57:50 +00:00
|
|
|
|
|
|
|
mp_map_t *mp_obj_dict_get_map(mp_obj_t self_in) {
|
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &dict_type));
|
|
|
|
mp_obj_dict_t *self = self_in;
|
|
|
|
return &self->map;
|
|
|
|
}
|