2014-05-03 22:27:38 +00: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-03-26 19:27:58 +00:00
|
|
|
#include <stdlib.h>
|
2014-01-15 01:10:09 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
2015-01-01 20:27:54 +00:00
|
|
|
#include "py/runtime.h"
|
2014-01-15 01:10:09 +00:00
|
|
|
|
|
|
|
typedef struct _mp_obj_map_t {
|
|
|
|
mp_obj_base_t base;
|
2014-07-03 12:25:24 +00:00
|
|
|
mp_uint_t n_iters;
|
2014-01-15 01:10:09 +00:00
|
|
|
mp_obj_t fun;
|
|
|
|
mp_obj_t iters[];
|
|
|
|
} mp_obj_map_t;
|
|
|
|
|
2016-01-03 15:55:55 +00:00
|
|
|
STATIC mp_obj_t map_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
2015-01-20 14:11:27 +00:00
|
|
|
mp_arg_check_num(n_args, n_kw, 2, MP_OBJ_FUN_ARGS_MAX, false);
|
2014-01-15 22:27:16 +00:00
|
|
|
mp_obj_map_t *o = m_new_obj_var(mp_obj_map_t, mp_obj_t, n_args - 1);
|
2016-01-03 15:55:55 +00:00
|
|
|
o->base.type = type;
|
2014-01-15 01:10:09 +00:00
|
|
|
o->n_iters = n_args - 1;
|
2014-01-18 14:10:48 +00:00
|
|
|
o->fun = args[0];
|
2014-08-29 23:35:11 +00:00
|
|
|
for (mp_uint_t i = 0; i < n_args - 1; i++) {
|
2014-03-30 12:35:08 +00:00
|
|
|
o->iters[i] = mp_getiter(args[i + 1]);
|
2014-01-15 01:10:09 +00:00
|
|
|
}
|
2015-11-27 17:01:44 +00:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2014-01-15 01:10:09 +00:00
|
|
|
}
|
|
|
|
|
2014-02-12 16:15:40 +00:00
|
|
|
STATIC mp_obj_t map_iternext(mp_obj_t self_in) {
|
2016-08-12 19:06:47 +00:00
|
|
|
mp_check_self(MP_OBJ_IS_TYPE(self_in, &mp_type_map));
|
2015-11-27 17:01:44 +00:00
|
|
|
mp_obj_map_t *self = MP_OBJ_TO_PTR(self_in);
|
2014-01-15 01:10:09 +00:00
|
|
|
mp_obj_t *nextses = m_new(mp_obj_t, self->n_iters);
|
|
|
|
|
2014-08-29 23:35:11 +00:00
|
|
|
for (mp_uint_t i = 0; i < self->n_iters; i++) {
|
2014-03-30 12:35:08 +00:00
|
|
|
mp_obj_t next = mp_iternext(self->iters[i]);
|
2014-04-17 22:19:36 +00:00
|
|
|
if (next == MP_OBJ_STOP_ITERATION) {
|
2014-01-15 01:10:09 +00:00
|
|
|
m_del(mp_obj_t, nextses, self->n_iters);
|
2014-04-17 22:19:36 +00:00
|
|
|
return MP_OBJ_STOP_ITERATION;
|
2014-01-15 01:10:09 +00:00
|
|
|
}
|
|
|
|
nextses[i] = next;
|
|
|
|
}
|
2014-03-30 12:35:08 +00:00
|
|
|
return mp_call_function_n_kw(self->fun, self->n_iters, 0, nextses);
|
2014-01-15 01:10:09 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 13:43:38 +00:00
|
|
|
const mp_obj_type_t mp_type_map = {
|
2014-02-15 16:10:44 +00:00
|
|
|
{ &mp_type_type },
|
2014-02-15 11:34:50 +00:00
|
|
|
.name = MP_QSTR_map,
|
2014-01-15 01:10:09 +00:00
|
|
|
.make_new = map_make_new,
|
2014-05-17 08:18:23 +00:00
|
|
|
.getiter = mp_identity,
|
2014-01-15 01:10:09 +00:00
|
|
|
.iternext = map_iternext,
|
|
|
|
};
|