2014-05-03 18:27:38 -04: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 15:27:58 -04:00
|
|
|
#include <stdlib.h>
|
2014-01-14 20:37:08 -05:00
|
|
|
#include <assert.h>
|
|
|
|
|
2014-05-02 10:47:01 -04:00
|
|
|
#include "mpconfig.h"
|
2014-01-15 17:27:16 -05:00
|
|
|
#include "nlr.h"
|
2014-01-14 20:37:08 -05:00
|
|
|
#include "misc.h"
|
2014-01-21 16:40:13 -05:00
|
|
|
#include "qstr.h"
|
2014-01-14 20:37:08 -05:00
|
|
|
#include "obj.h"
|
|
|
|
#include "runtime.h"
|
|
|
|
|
|
|
|
typedef struct _mp_obj_filter_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
mp_obj_t fun;
|
|
|
|
mp_obj_t iter;
|
|
|
|
} mp_obj_filter_t;
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t filter_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
2014-01-18 09:10:48 -05:00
|
|
|
if (n_args != 2 || n_kw != 0) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "filter expected 2 arguments"));
|
2014-01-15 17:27:16 -05:00
|
|
|
}
|
2014-01-14 20:37:08 -05:00
|
|
|
assert(n_args == 2);
|
2014-01-15 17:27:16 -05:00
|
|
|
mp_obj_filter_t *o = m_new_obj(mp_obj_filter_t);
|
2014-03-29 09:43:38 -04:00
|
|
|
o->base.type = &mp_type_filter;
|
2014-01-18 09:10:48 -05:00
|
|
|
o->fun = args[0];
|
2014-03-30 08:35:08 -04:00
|
|
|
o->iter = mp_getiter(args[1]);
|
2014-01-14 20:37:08 -05:00
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t filter_iternext(mp_obj_t self_in) {
|
2014-03-29 09:43:38 -04:00
|
|
|
assert(MP_OBJ_IS_TYPE(self_in, &mp_type_filter));
|
2014-01-14 20:37:08 -05:00
|
|
|
mp_obj_filter_t *self = self_in;
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2014-03-29 09:43:38 -04:00
|
|
|
const mp_obj_type_t mp_type_filter = {
|
2014-02-15 11:10:44 -05:00
|
|
|
{ &mp_type_type },
|
2014-02-15 06:34:50 -05:00
|
|
|
.name = MP_QSTR_filter,
|
2014-01-14 20:37:08 -05:00
|
|
|
.make_new = filter_make_new,
|
2014-02-12 11:15:40 -05:00
|
|
|
.getiter = mp_identity,
|
2014-01-14 20:37:08 -05:00
|
|
|
.iternext = filter_iternext,
|
|
|
|
};
|