2014-05-03 18:27:38 -04:00
|
|
|
/*
|
2017-06-30 03:22:17 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
2014-05-03 18:27:38 -04:00
|
|
|
*
|
|
|
|
* 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-01-12 21:31:00 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2015-01-01 15:27:54 -05:00
|
|
|
#include "py/objtuple.h"
|
|
|
|
#include "py/runtime.h"
|
2014-01-12 21:31:00 -05:00
|
|
|
|
|
|
|
typedef struct _mp_obj_zip_t {
|
|
|
|
mp_obj_base_t base;
|
2017-03-30 07:58:08 -04:00
|
|
|
size_t n_iters;
|
2014-01-12 21:31:00 -05:00
|
|
|
mp_obj_t iters[];
|
|
|
|
} mp_obj_zip_t;
|
|
|
|
|
2016-01-03 10:55:55 -05:00
|
|
|
STATIC mp_obj_t zip_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
2014-05-11 13:37:21 -04:00
|
|
|
mp_arg_check_num(n_args, n_kw, 0, MP_OBJ_FUN_ARGS_MAX, false);
|
2014-01-18 09:10:48 -05:00
|
|
|
|
2022-04-22 03:09:15 -04:00
|
|
|
mp_obj_zip_t *o = mp_obj_malloc_var(mp_obj_zip_t, mp_obj_t, n_args, type);
|
2014-01-12 21:31:00 -05:00
|
|
|
o->n_iters = n_args;
|
2017-03-30 07:58:08 -04:00
|
|
|
for (size_t i = 0; i < n_args; i++) {
|
2016-01-09 18:14:54 -05:00
|
|
|
o->iters[i] = mp_getiter(args[i], NULL);
|
2014-01-12 21:31:00 -05:00
|
|
|
}
|
2015-11-27 12:01:44 -05:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2014-01-12 21:31:00 -05:00
|
|
|
}
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t zip_iternext(mp_obj_t self_in) {
|
2019-01-30 02:49:52 -05:00
|
|
|
mp_check_self(mp_obj_is_type(self_in, &mp_type_zip));
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_zip_t *self = MP_OBJ_TO_PTR(self_in);
|
2014-01-12 21:31:00 -05:00
|
|
|
if (self->n_iters == 0) {
|
2014-04-17 18:19:36 -04:00
|
|
|
return MP_OBJ_STOP_ITERATION;
|
2014-01-12 21:31:00 -05:00
|
|
|
}
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_tuple_t *tuple = MP_OBJ_TO_PTR(mp_obj_new_tuple(self->n_iters, NULL));
|
2014-01-12 21:31:00 -05:00
|
|
|
|
2017-03-30 07:58:08 -04:00
|
|
|
for (size_t i = 0; i < self->n_iters; i++) {
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_obj_t next = mp_iternext(self->iters[i]);
|
2014-04-17 18:19:36 -04:00
|
|
|
if (next == MP_OBJ_STOP_ITERATION) {
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_tuple_del(MP_OBJ_FROM_PTR(tuple));
|
2014-04-17 18:19:36 -04:00
|
|
|
return MP_OBJ_STOP_ITERATION;
|
2014-01-12 21:31:00 -05:00
|
|
|
}
|
2014-08-30 10:17:47 -04:00
|
|
|
tuple->items[i] = next;
|
2014-01-12 21:31:00 -05:00
|
|
|
}
|
2015-11-27 12:01:44 -05:00
|
|
|
return MP_OBJ_FROM_PTR(tuple);
|
2014-01-12 21:31:00 -05:00
|
|
|
}
|
2014-01-14 18:18:35 -05:00
|
|
|
|
2021-07-14 00:38:38 -04:00
|
|
|
MP_DEFINE_CONST_OBJ_TYPE(
|
|
|
|
mp_type_zip,
|
|
|
|
MP_QSTR_zip,
|
2022-09-16 09:57:38 -04:00
|
|
|
MP_TYPE_FLAG_ITER_IS_ITERNEXT,
|
2022-09-16 10:31:23 -04:00
|
|
|
make_new, zip_make_new,
|
2022-09-16 09:57:38 -04:00
|
|
|
iter, zip_iternext
|
2021-07-14 00:38:38 -04:00
|
|
|
);
|