2013-12-21 13:17:45 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "nlr.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "mpconfig.h"
|
2014-01-04 15:21:15 -05:00
|
|
|
#include "mpqstr.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "obj.h"
|
|
|
|
#include "runtime0.h"
|
2014-01-04 15:21:15 -05:00
|
|
|
#include "runtime.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
|
|
|
|
typedef struct _mp_obj_tuple_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
machine_uint_t len;
|
|
|
|
mp_obj_t items[];
|
|
|
|
} mp_obj_tuple_t;
|
|
|
|
|
|
|
|
static mp_obj_t mp_obj_new_tuple_iterator(mp_obj_tuple_t *tuple, int cur);
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* tuple */
|
|
|
|
|
2014-01-04 15:21:15 -05:00
|
|
|
static void tuple_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t o_in) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_tuple_t *o = o_in;
|
|
|
|
print(env, "(");
|
|
|
|
for (int i = 0; i < o->len; i++) {
|
|
|
|
if (i > 0) {
|
|
|
|
print(env, ", ");
|
|
|
|
}
|
|
|
|
mp_obj_print_helper(print, env, o->items[i]);
|
|
|
|
}
|
|
|
|
if (o->len == 1) {
|
|
|
|
print(env, ",");
|
|
|
|
}
|
|
|
|
print(env, ")");
|
|
|
|
}
|
|
|
|
|
2014-01-04 15:21:15 -05:00
|
|
|
// args are in reverse order in the array
|
|
|
|
static mp_obj_t tuple_make_new(mp_obj_t type_in, int n_args, const mp_obj_t *args) {
|
|
|
|
switch (n_args) {
|
|
|
|
case 0:
|
|
|
|
// return a empty tuple
|
|
|
|
return mp_const_empty_tuple;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
// 1 argument, an iterable from which we make a new tuple
|
|
|
|
if (MP_OBJ_IS_TYPE(args[0], &tuple_type)) {
|
|
|
|
return args[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO optimise for cases where we know the length of the iterator
|
|
|
|
|
|
|
|
uint alloc = 4;
|
|
|
|
uint len = 0;
|
|
|
|
mp_obj_t *items = m_new(mp_obj_t, alloc);
|
|
|
|
|
|
|
|
mp_obj_t iterable = rt_getiter(args[0]);
|
|
|
|
mp_obj_t item;
|
|
|
|
while ((item = rt_iternext(iterable)) != mp_const_stop_iteration) {
|
|
|
|
if (len >= alloc) {
|
|
|
|
items = m_renew(mp_obj_t, items, alloc, alloc * 2);
|
|
|
|
alloc *= 2;
|
|
|
|
}
|
|
|
|
items[len++] = item;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t tuple = mp_obj_new_tuple(len, items);
|
|
|
|
m_free(items, alloc);
|
|
|
|
|
|
|
|
return tuple;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
nlr_jump(mp_obj_new_exception_msg_1_arg(MP_QSTR_TypeError, "tuple takes at most 1 argument, %d given", (void*)(machine_int_t)n_args));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static mp_obj_t tuple_binary_op(int op, mp_obj_t lhs, mp_obj_t rhs) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_tuple_t *o = lhs;
|
|
|
|
switch (op) {
|
|
|
|
case RT_BINARY_OP_SUBSCR:
|
|
|
|
{
|
|
|
|
// tuple load
|
|
|
|
uint index = mp_get_index(o->base.type, o->len, rhs);
|
|
|
|
return o->items[index];
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
// op not supported
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-04 15:21:15 -05:00
|
|
|
static mp_obj_t tuple_getiter(mp_obj_t o_in) {
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_obj_new_tuple_iterator(o_in, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
const mp_obj_type_t tuple_type = {
|
2014-01-07 13:06:34 -05:00
|
|
|
{ &mp_const_type },
|
|
|
|
"tuple",
|
2014-01-05 15:34:09 -05:00
|
|
|
.print = tuple_print,
|
|
|
|
.make_new = tuple_make_new,
|
|
|
|
.binary_op = tuple_binary_op,
|
|
|
|
.getiter = tuple_getiter,
|
2013-12-21 13:17:45 -05:00
|
|
|
};
|
|
|
|
|
2014-01-04 15:21:15 -05:00
|
|
|
// the zero-length tuple
|
|
|
|
static const mp_obj_tuple_t empty_tuple_obj = {{&tuple_type}, 0};
|
|
|
|
const mp_obj_t mp_const_empty_tuple = (mp_obj_t)&empty_tuple_obj;
|
|
|
|
|
2014-01-07 12:29:16 -05:00
|
|
|
mp_obj_t mp_obj_new_tuple(uint n, const mp_obj_t *items) {
|
2014-01-04 15:21:15 -05:00
|
|
|
if (n == 0) {
|
|
|
|
return mp_const_empty_tuple;
|
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_tuple_t *o = m_new_obj_var(mp_obj_tuple_t, mp_obj_t, n);
|
|
|
|
o->base.type = &tuple_type;
|
|
|
|
o->len = n;
|
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
o->items[i] = items[i];
|
|
|
|
}
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-01-07 12:29:16 -05:00
|
|
|
mp_obj_t mp_obj_new_tuple_reverse(uint n, const mp_obj_t *items) {
|
2014-01-04 15:21:15 -05:00
|
|
|
if (n == 0) {
|
|
|
|
return mp_const_empty_tuple;
|
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_tuple_t *o = m_new_obj_var(mp_obj_tuple_t, mp_obj_t, n);
|
|
|
|
o->base.type = &tuple_type;
|
|
|
|
o->len = n;
|
|
|
|
for (int i = 0; i < n; i++) {
|
|
|
|
o->items[i] = items[n - i - 1];
|
|
|
|
}
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-01-04 15:21:15 -05:00
|
|
|
void mp_obj_tuple_get(mp_obj_t self_in, uint *len, mp_obj_t **items) {
|
|
|
|
mp_obj_tuple_t *self = self_in;
|
|
|
|
*len = self->len;
|
|
|
|
*items = &self->items[0];
|
|
|
|
}
|
|
|
|
|
2013-12-21 13:17:45 -05:00
|
|
|
/******************************************************************************/
|
|
|
|
/* tuple iterator */
|
|
|
|
|
|
|
|
typedef struct _mp_obj_tuple_it_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
mp_obj_tuple_t *tuple;
|
|
|
|
machine_uint_t cur;
|
|
|
|
} mp_obj_tuple_it_t;
|
|
|
|
|
2014-01-04 15:21:15 -05:00
|
|
|
static mp_obj_t tuple_it_iternext(mp_obj_t self_in) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_tuple_it_t *self = self_in;
|
|
|
|
if (self->cur < self->tuple->len) {
|
|
|
|
mp_obj_t o_out = self->tuple->items[self->cur];
|
|
|
|
self->cur += 1;
|
|
|
|
return o_out;
|
|
|
|
} else {
|
|
|
|
return mp_const_stop_iteration;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const mp_obj_type_t tuple_it_type = {
|
2014-01-07 13:06:34 -05:00
|
|
|
{ &mp_const_type },
|
|
|
|
"tuple_iterator",
|
2014-01-05 15:34:09 -05:00
|
|
|
.iternext = tuple_it_iternext,
|
2013-12-21 13:17:45 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
static mp_obj_t mp_obj_new_tuple_iterator(mp_obj_tuple_t *tuple, int cur) {
|
|
|
|
mp_obj_tuple_it_t *o = m_new_obj(mp_obj_tuple_it_t);
|
|
|
|
o->base.type = &tuple_it_type;
|
|
|
|
o->tuple = tuple;
|
|
|
|
o->cur = cur;
|
|
|
|
return o;
|
|
|
|
}
|