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
|
2014-05-13 05:44:45 +00:00
|
|
|
* Copyright (c) 2014 Paul Sokolovsky
|
2014-05-03 22:27:38 +00:00
|
|
|
*
|
|
|
|
* 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-20 22:19:19 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2015-01-01 20:27:54 +00:00
|
|
|
#include "py/nlr.h"
|
|
|
|
#include "py/obj.h"
|
|
|
|
#include "py/runtime0.h"
|
|
|
|
#include "py/runtime.h"
|
2014-01-20 22:19:19 +00:00
|
|
|
|
|
|
|
// Helpers for sequence types
|
|
|
|
|
2014-02-02 06:24:07 +00:00
|
|
|
#define SWAP(type, var1, var2) { type t = var2; var2 = var1; var1 = t; }
|
|
|
|
|
2014-01-20 22:19:19 +00:00
|
|
|
// Implements backend of sequence * integer operation. Assumes elements are
|
|
|
|
// memory-adjacent in sequence.
|
2014-08-30 13:19:41 +00:00
|
|
|
void mp_seq_multiply(const void *items, mp_uint_t item_sz, mp_uint_t len, mp_uint_t times, void *dest) {
|
2014-10-03 17:44:14 +00:00
|
|
|
for (mp_uint_t i = 0; i < times; i++) {
|
2014-01-20 22:19:19 +00:00
|
|
|
uint copy_sz = item_sz * len;
|
|
|
|
memcpy(dest, items, copy_sz);
|
|
|
|
dest = (char*)dest + copy_sz;
|
|
|
|
}
|
|
|
|
}
|
2014-02-02 00:38:22 +00:00
|
|
|
|
2014-06-01 12:49:35 +00:00
|
|
|
#if MICROPY_PY_BUILTINS_SLICE
|
|
|
|
|
2014-07-03 12:25:24 +00:00
|
|
|
bool mp_seq_get_fast_slice_indexes(mp_uint_t len, mp_obj_t slice, mp_bound_slice_t *indexes) {
|
2014-05-24 22:39:27 +00:00
|
|
|
mp_obj_t ostart, ostop, ostep;
|
2014-07-03 12:25:24 +00:00
|
|
|
mp_int_t start, stop;
|
2014-05-24 22:39:27 +00:00
|
|
|
mp_obj_slice_get(slice, &ostart, &ostop, &ostep);
|
2014-02-02 00:38:22 +00:00
|
|
|
|
2014-05-24 22:39:27 +00:00
|
|
|
if (ostart == mp_const_none) {
|
|
|
|
start = 0;
|
|
|
|
} else {
|
|
|
|
start = MP_OBJ_SMALL_INT_VALUE(ostart);
|
|
|
|
}
|
|
|
|
if (ostop == mp_const_none) {
|
|
|
|
stop = len;
|
|
|
|
} else {
|
|
|
|
stop = MP_OBJ_SMALL_INT_VALUE(ostop);
|
|
|
|
}
|
|
|
|
|
2014-02-02 00:38:22 +00:00
|
|
|
// Unlike subscription, out-of-bounds slice indexes are never error
|
|
|
|
if (start < 0) {
|
|
|
|
start = len + start;
|
|
|
|
if (start < 0) {
|
|
|
|
start = 0;
|
|
|
|
}
|
2015-01-16 17:47:07 +00:00
|
|
|
} else if ((mp_uint_t)start > len) {
|
2014-02-02 00:38:22 +00:00
|
|
|
start = len;
|
|
|
|
}
|
2014-05-24 22:39:27 +00:00
|
|
|
if (stop < 0) {
|
2014-02-02 00:38:22 +00:00
|
|
|
stop = len + stop;
|
2015-01-16 17:47:07 +00:00
|
|
|
} else if ((mp_uint_t)stop > len) {
|
2014-02-02 00:38:22 +00:00
|
|
|
stop = len;
|
|
|
|
}
|
2014-05-24 23:29:40 +00:00
|
|
|
|
|
|
|
// CPython returns empty sequence in such case, or point for assignment is at start
|
|
|
|
if (start > stop) {
|
|
|
|
stop = start;
|
|
|
|
}
|
|
|
|
|
2014-05-25 18:21:57 +00:00
|
|
|
indexes->start = start;
|
|
|
|
indexes->stop = stop;
|
|
|
|
|
|
|
|
if (ostep != mp_const_none && ostep != MP_OBJ_NEW_SMALL_INT(1)) {
|
|
|
|
indexes->step = MP_OBJ_SMALL_INT_VALUE(ostep);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
indexes->step = 1;
|
2014-02-02 00:38:22 +00:00
|
|
|
return true;
|
|
|
|
}
|
2014-02-02 06:24:07 +00:00
|
|
|
|
2014-06-01 12:49:35 +00:00
|
|
|
#endif
|
|
|
|
|
2014-08-30 13:19:41 +00:00
|
|
|
mp_obj_t mp_seq_extract_slice(mp_uint_t len, const mp_obj_t *seq, mp_bound_slice_t *indexes) {
|
2015-01-20 12:47:20 +00:00
|
|
|
(void)len; // TODO can we remove len from the arg list?
|
|
|
|
|
2014-07-03 12:25:24 +00:00
|
|
|
mp_int_t start = indexes->start, stop = indexes->stop;
|
|
|
|
mp_int_t step = indexes->step;
|
2014-05-25 19:12:56 +00:00
|
|
|
|
|
|
|
mp_obj_t res = mp_obj_new_list(0, NULL);
|
|
|
|
|
|
|
|
if (step < 0) {
|
|
|
|
stop--;
|
|
|
|
while (start <= stop) {
|
|
|
|
mp_obj_list_append(res, seq[stop]);
|
|
|
|
stop += step;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while (start < stop) {
|
|
|
|
mp_obj_list_append(res, seq[start]);
|
|
|
|
start += step;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-02-02 06:24:07 +00:00
|
|
|
// Special-case comparison function for sequences of bytes
|
2014-03-30 12:35:08 +00:00
|
|
|
// Don't pass MP_BINARY_OP_NOT_EQUAL here
|
2014-08-30 13:28:06 +00:00
|
|
|
bool mp_seq_cmp_bytes(mp_uint_t op, const byte *data1, mp_uint_t len1, const byte *data2, mp_uint_t len2) {
|
2014-05-10 01:26:10 +00:00
|
|
|
if (op == MP_BINARY_OP_EQUAL && len1 != len2) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-02-02 06:24:07 +00:00
|
|
|
// Let's deal only with > & >=
|
2014-03-30 12:35:08 +00:00
|
|
|
if (op == MP_BINARY_OP_LESS || op == MP_BINARY_OP_LESS_EQUAL) {
|
2014-02-02 06:24:07 +00:00
|
|
|
SWAP(const byte*, data1, data2);
|
|
|
|
SWAP(uint, len1, len2);
|
2014-03-30 12:35:08 +00:00
|
|
|
if (op == MP_BINARY_OP_LESS) {
|
|
|
|
op = MP_BINARY_OP_MORE;
|
2014-02-02 06:24:07 +00:00
|
|
|
} else {
|
2014-03-30 12:35:08 +00:00
|
|
|
op = MP_BINARY_OP_MORE_EQUAL;
|
2014-02-02 06:24:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
uint min_len = len1 < len2 ? len1 : len2;
|
|
|
|
int res = memcmp(data1, data2, min_len);
|
2014-05-15 16:09:06 +00:00
|
|
|
if (op == MP_BINARY_OP_EQUAL) {
|
|
|
|
// If we are checking for equality, here're the answer
|
|
|
|
return res == 0;
|
|
|
|
}
|
2014-02-02 06:24:07 +00:00
|
|
|
if (res < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (res > 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we had tie in the last element...
|
|
|
|
// ... and we have lists of different lengths...
|
|
|
|
if (len1 != len2) {
|
|
|
|
if (len1 < len2) {
|
|
|
|
// ... then longer list length wins (we deal only with >)
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-30 12:35:08 +00:00
|
|
|
} else if (op == MP_BINARY_OP_MORE) {
|
2014-02-02 06:24:07 +00:00
|
|
|
// Otherwise, if we have strict relation, equality means failure
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2014-02-08 20:49:46 +00:00
|
|
|
|
|
|
|
// Special-case comparison function for sequences of mp_obj_t
|
2014-03-30 12:35:08 +00:00
|
|
|
// Don't pass MP_BINARY_OP_NOT_EQUAL here
|
2014-08-30 13:28:06 +00:00
|
|
|
bool mp_seq_cmp_objs(mp_uint_t op, const mp_obj_t *items1, mp_uint_t len1, const mp_obj_t *items2, mp_uint_t len2) {
|
2014-03-30 12:35:08 +00:00
|
|
|
if (op == MP_BINARY_OP_EQUAL && len1 != len2) {
|
2014-02-08 20:49:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Let's deal only with > & >=
|
2014-03-30 12:35:08 +00:00
|
|
|
if (op == MP_BINARY_OP_LESS || op == MP_BINARY_OP_LESS_EQUAL) {
|
2014-02-08 20:49:46 +00:00
|
|
|
SWAP(const mp_obj_t *, items1, items2);
|
|
|
|
SWAP(uint, len1, len2);
|
2014-03-30 12:35:08 +00:00
|
|
|
if (op == MP_BINARY_OP_LESS) {
|
|
|
|
op = MP_BINARY_OP_MORE;
|
2014-02-08 20:49:46 +00:00
|
|
|
} else {
|
2014-03-30 12:35:08 +00:00
|
|
|
op = MP_BINARY_OP_MORE_EQUAL;
|
2014-02-08 20:49:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-03 17:44:14 +00:00
|
|
|
mp_uint_t len = len1 < len2 ? len1 : len2;
|
|
|
|
for (mp_uint_t i = 0; i < len; i++) {
|
2014-04-18 18:42:54 +00:00
|
|
|
// If current elements equal, can't decide anything - go on
|
2014-04-18 18:47:58 +00:00
|
|
|
if (mp_obj_equal(items1[i], items2[i])) {
|
2014-04-18 18:42:54 +00:00
|
|
|
continue;
|
2014-02-08 20:49:46 +00:00
|
|
|
}
|
2014-04-18 18:42:54 +00:00
|
|
|
|
|
|
|
// Othewise, if they are not equal, we can have final decision based on them
|
|
|
|
if (op == MP_BINARY_OP_EQUAL) {
|
|
|
|
// In particular, if we are checking for equality, here're the answer
|
2014-02-08 20:49:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-18 18:42:54 +00:00
|
|
|
|
|
|
|
// Otherwise, application of relation op gives the answer
|
|
|
|
return (mp_binary_op(op, items1[i], items2[i]) == mp_const_true);
|
2014-02-08 20:49:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If we had tie in the last element...
|
2014-04-18 18:47:58 +00:00
|
|
|
// ... and we have lists of different lengths...
|
|
|
|
if (len1 != len2) {
|
|
|
|
if (len1 < len2) {
|
|
|
|
// ... then longer list length wins (we deal only with >)
|
2014-02-08 20:49:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-04-18 18:47:58 +00:00
|
|
|
} else if (op == MP_BINARY_OP_MORE) {
|
|
|
|
// Otherwise, if we have strict relation, sequence equality means failure
|
|
|
|
return false;
|
2014-02-08 20:49:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2014-02-10 04:37:11 +00:00
|
|
|
|
|
|
|
// Special-case of index() which searches for mp_obj_t
|
2014-08-30 13:19:41 +00:00
|
|
|
mp_obj_t mp_seq_index_obj(const mp_obj_t *items, mp_uint_t len, mp_uint_t n_args, const mp_obj_t *args) {
|
2014-02-10 04:37:11 +00:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(args[0]);
|
|
|
|
mp_obj_t *value = args[1];
|
|
|
|
uint start = 0;
|
|
|
|
uint stop = len;
|
|
|
|
|
|
|
|
if (n_args >= 3) {
|
2014-03-13 05:57:16 +00:00
|
|
|
start = mp_get_index(type, len, args[2], true);
|
2014-02-10 04:37:11 +00:00
|
|
|
if (n_args >= 4) {
|
2014-03-13 05:57:16 +00:00
|
|
|
stop = mp_get_index(type, len, args[3], true);
|
2014-02-10 04:37:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-03 12:25:24 +00:00
|
|
|
for (mp_uint_t i = start; i < stop; i++) {
|
2014-02-10 04:42:20 +00:00
|
|
|
if (mp_obj_equal(items[i], value)) {
|
|
|
|
// Common sense says this cannot overflow small int
|
|
|
|
return MP_OBJ_NEW_SMALL_INT(i);
|
|
|
|
}
|
2014-02-10 04:37:11 +00:00
|
|
|
}
|
|
|
|
|
2014-04-05 17:32:08 +00:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "object not in sequence"));
|
2014-02-10 04:37:11 +00:00
|
|
|
}
|
2014-02-10 05:10:55 +00:00
|
|
|
|
2014-08-30 13:19:41 +00:00
|
|
|
mp_obj_t mp_seq_count_obj(const mp_obj_t *items, mp_uint_t len, mp_obj_t value) {
|
2014-07-03 12:25:24 +00:00
|
|
|
mp_uint_t count = 0;
|
2014-02-10 05:10:55 +00:00
|
|
|
for (uint i = 0; i < len; i++) {
|
|
|
|
if (mp_obj_equal(items[i], value)) {
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Common sense says this cannot overflow small int
|
|
|
|
return MP_OBJ_NEW_SMALL_INT(count);
|
|
|
|
}
|