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.
|
|
|
|
*/
|
|
|
|
|
2015-01-01 15:27:54 -05:00
|
|
|
#include "py/runtime.h"
|
2014-01-14 20:37:08 -05:00
|
|
|
|
2015-08-19 18:01:56 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_FILTER
|
|
|
|
|
2014-01-14 20:37:08 -05:00
|
|
|
typedef struct _mp_obj_filter_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
mp_obj_t fun;
|
|
|
|
mp_obj_t iter;
|
|
|
|
} mp_obj_filter_t;
|
|
|
|
|
2016-01-03 10:55:55 -05:00
|
|
|
STATIC mp_obj_t filter_make_new(const mp_obj_type_t *type, size_t n_args, size_t n_kw, const mp_obj_t *args) {
|
2015-01-20 09:11:27 -05:00
|
|
|
mp_arg_check_num(n_args, n_kw, 2, 2, false);
|
2022-04-22 03:09:15 -04:00
|
|
|
mp_obj_filter_t *o = mp_obj_malloc(mp_obj_filter_t, type);
|
2014-01-18 09:10:48 -05:00
|
|
|
o->fun = args[0];
|
2016-01-09 18:14:54 -05:00
|
|
|
o->iter = mp_getiter(args[1], NULL);
|
2015-11-27 12:01:44 -05:00
|
|
|
return MP_OBJ_FROM_PTR(o);
|
2014-01-14 20:37:08 -05:00
|
|
|
}
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t filter_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_filter));
|
2015-11-27 12:01:44 -05:00
|
|
|
mp_obj_filter_t *self = MP_OBJ_TO_PTR(self_in);
|
2014-01-14 20:37:08 -05:00
|
|
|
mp_obj_t next;
|
2014-04-17 18:19:36 -04:00
|
|
|
while ((next = mp_iternext(self->iter)) != MP_OBJ_STOP_ITERATION) {
|
2014-01-14 20:37:08 -05:00
|
|
|
mp_obj_t val;
|
|
|
|
if (self->fun != mp_const_none) {
|
2014-03-30 08:35:08 -04:00
|
|
|
val = mp_call_function_n_kw(self->fun, 1, 0, &next);
|
2014-01-14 20:37:08 -05:00
|
|
|
} else {
|
|
|
|
val = next;
|
|
|
|
}
|
2014-03-30 08:35:08 -04:00
|
|
|
if (mp_obj_is_true(val)) {
|
2014-01-14 20:37:08 -05:00
|
|
|
return next;
|
|
|
|
}
|
|
|
|
}
|
2014-04-17 18:19:36 -04:00
|
|
|
return MP_OBJ_STOP_ITERATION;
|
2014-01-14 20:37:08 -05:00
|
|
|
}
|
|
|
|
|
2021-07-14 00:38:38 -04:00
|
|
|
MP_DEFINE_CONST_OBJ_TYPE(
|
|
|
|
mp_type_filter,
|
|
|
|
MP_QSTR_filter,
|
2022-09-16 09:57:38 -04:00
|
|
|
MP_TYPE_FLAG_ITER_IS_ITERNEXT,
|
2022-09-16 10:31:23 -04:00
|
|
|
make_new, filter_make_new,
|
2022-09-16 09:57:38 -04:00
|
|
|
iter, filter_iternext
|
2021-07-14 00:38:38 -04:00
|
|
|
);
|
2015-08-19 18:01:56 -04:00
|
|
|
|
|
|
|
#endif // MICROPY_PY_BUILTINS_FILTER
|