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
|
2014-05-13 01:44:45 -04:00
|
|
|
* Copyright (c) 2014 Paul Sokolovsky
|
2014-05-03 18:27:38 -04: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-03-16 03:14:26 -04:00
|
|
|
#include <stdbool.h>
|
2013-12-21 13:17:45 -05:00
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2014-05-02 10:47:01 -04:00
|
|
|
#include "mpconfig.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "nlr.h"
|
|
|
|
#include "misc.h"
|
2014-06-13 20:15:00 -04:00
|
|
|
#include "unicode.h"
|
2014-01-21 16:40:13 -05:00
|
|
|
#include "qstr.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "obj.h"
|
|
|
|
#include "runtime0.h"
|
|
|
|
#include "runtime.h"
|
2014-03-31 00:06:50 -04:00
|
|
|
#include "pfenv.h"
|
2014-04-13 18:45:06 -04:00
|
|
|
#include "objstr.h"
|
2014-05-13 01:07:08 -04:00
|
|
|
#include "objlist.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2014-06-05 13:02:15 -04:00
|
|
|
STATIC mp_obj_t str_modulo_format(mp_obj_t pattern, uint n_args, const mp_obj_t *args, mp_obj_t dict);
|
2014-03-21 17:46:59 -04:00
|
|
|
const mp_obj_t mp_const_empty_bytes;
|
|
|
|
|
2014-06-13 15:41:45 -04:00
|
|
|
mp_obj_t mp_obj_new_str_iterator(mp_obj_t str);
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t mp_obj_new_bytes_iterator(mp_obj_t str);
|
2014-04-29 22:35:18 -04:00
|
|
|
STATIC NORETURN void bad_implicit_conversion(mp_obj_t self_in);
|
2014-05-10 19:44:46 -04:00
|
|
|
STATIC NORETURN void arg_type_mixup();
|
|
|
|
|
|
|
|
STATIC bool is_str_or_bytes(mp_obj_t o) {
|
|
|
|
return MP_OBJ_IS_STR(o) || MP_OBJ_IS_TYPE(o, &mp_type_bytes);
|
|
|
|
}
|
2014-01-05 05:47:51 -05:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* str */
|
|
|
|
|
2014-06-13 14:23:00 -04:00
|
|
|
void mp_str_print_quoted(void (*print)(void *env, const char *fmt, ...), void *env,
|
|
|
|
const byte *str_data, uint str_len, bool is_bytes) {
|
2014-01-27 20:40:06 -05:00
|
|
|
// this escapes characters, but it will be very slow to print (calling print many times)
|
|
|
|
bool has_single_quote = false;
|
|
|
|
bool has_double_quote = false;
|
2014-06-03 13:26:40 -04:00
|
|
|
for (const byte *s = str_data, *top = str_data + str_len; !has_double_quote && s < top; s++) {
|
2014-01-27 20:40:06 -05:00
|
|
|
if (*s == '\'') {
|
|
|
|
has_single_quote = true;
|
|
|
|
} else if (*s == '"') {
|
|
|
|
has_double_quote = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int quote_char = '\'';
|
|
|
|
if (has_single_quote && !has_double_quote) {
|
|
|
|
quote_char = '"';
|
|
|
|
}
|
|
|
|
print(env, "%c", quote_char);
|
|
|
|
for (const byte *s = str_data, *top = str_data + str_len; s < top; s++) {
|
|
|
|
if (*s == quote_char) {
|
|
|
|
print(env, "\\%c", quote_char);
|
|
|
|
} else if (*s == '\\') {
|
|
|
|
print(env, "\\\\");
|
2014-06-13 14:23:00 -04:00
|
|
|
} else if (*s >= 0x20 && *s != 0x7f && (!is_bytes || *s < 0x80)) {
|
|
|
|
// In strings, anything which is not ascii control character
|
|
|
|
// is printed as is, this includes characters in range 0x80-0xff
|
|
|
|
// (which can be non-Latin letters, etc.)
|
2014-01-27 20:40:06 -05:00
|
|
|
print(env, "%c", *s);
|
|
|
|
} else if (*s == '\n') {
|
|
|
|
print(env, "\\n");
|
2014-04-07 21:42:50 -04:00
|
|
|
} else if (*s == '\r') {
|
|
|
|
print(env, "\\r");
|
|
|
|
} else if (*s == '\t') {
|
|
|
|
print(env, "\\t");
|
2014-01-27 20:40:06 -05:00
|
|
|
} else {
|
|
|
|
print(env, "\\x%02x", *s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
print(env, "%c", quote_char);
|
|
|
|
}
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC void str_print(void (*print)(void *env, const char *fmt, ...), void *env, mp_obj_t self_in, mp_print_kind_t kind) {
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(self_in, str_data, str_len);
|
2014-03-29 09:43:38 -04:00
|
|
|
bool is_bytes = MP_OBJ_IS_TYPE(self_in, &mp_type_bytes);
|
2014-01-24 15:50:40 -05:00
|
|
|
if (kind == PRINT_STR && !is_bytes) {
|
2014-01-22 09:35:10 -05:00
|
|
|
print(env, "%.*s", str_len, str_data);
|
2014-01-13 12:19:16 -05:00
|
|
|
} else {
|
2014-01-24 15:50:40 -05:00
|
|
|
if (is_bytes) {
|
|
|
|
print(env, "b");
|
|
|
|
}
|
2014-06-13 14:23:00 -04:00
|
|
|
mp_str_print_quoted(print, env, str_data, str_len, is_bytes);
|
2014-01-13 12:19:16 -05:00
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
2014-03-21 05:39:01 -04:00
|
|
|
STATIC mp_obj_t str_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
2014-05-06 12:30:30 -04:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
|
|
|
if (n_kw != 0) {
|
|
|
|
mp_arg_error_unimpl_kw();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-03-21 05:39:01 -04:00
|
|
|
switch (n_args) {
|
|
|
|
case 0:
|
|
|
|
return MP_OBJ_NEW_QSTR(MP_QSTR_);
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
{
|
|
|
|
vstr_t *vstr = vstr_new();
|
|
|
|
mp_obj_print_helper((void (*)(void*, const char*, ...))vstr_printf, vstr, args[0], PRINT_STR);
|
2014-05-25 17:27:57 -04:00
|
|
|
mp_obj_t s = mp_obj_new_str(vstr->buf, vstr->len, false);
|
2014-03-21 05:39:01 -04:00
|
|
|
vstr_free(vstr);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
// TODO: validate 2nd/3rd args
|
2014-03-29 09:43:38 -04:00
|
|
|
if (!MP_OBJ_IS_TYPE(args[0], &mp_type_bytes)) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "bytes expected"));
|
2014-03-21 05:39:01 -04:00
|
|
|
}
|
|
|
|
GET_STR_DATA_LEN(args[0], str_data, str_len);
|
|
|
|
GET_STR_HASH(args[0], str_hash);
|
2014-05-25 17:34:34 -04:00
|
|
|
mp_obj_str_t *o = mp_obj_new_str_of_type(&mp_type_str, NULL, str_len);
|
2014-03-21 05:39:01 -04:00
|
|
|
o->data = str_data;
|
|
|
|
o->hash = str_hash;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "str takes at most 3 arguments"));
|
2014-03-21 05:39:01 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-21 17:46:59 -04:00
|
|
|
STATIC mp_obj_t bytes_make_new(mp_obj_t type_in, uint n_args, uint n_kw, const mp_obj_t *args) {
|
|
|
|
if (n_args == 0) {
|
|
|
|
return mp_const_empty_bytes;
|
|
|
|
}
|
|
|
|
|
2014-05-06 12:30:30 -04:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
|
|
|
if (n_kw != 0) {
|
|
|
|
mp_arg_error_unimpl_kw();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-03-21 17:46:59 -04:00
|
|
|
if (MP_OBJ_IS_STR(args[0])) {
|
|
|
|
if (n_args < 2 || n_args > 3) {
|
|
|
|
goto wrong_args;
|
|
|
|
}
|
|
|
|
GET_STR_DATA_LEN(args[0], str_data, str_len);
|
|
|
|
GET_STR_HASH(args[0], str_hash);
|
2014-05-25 17:34:34 -04:00
|
|
|
mp_obj_str_t *o = mp_obj_new_str_of_type(&mp_type_bytes, NULL, str_len);
|
2014-03-21 17:46:59 -04:00
|
|
|
o->data = str_data;
|
|
|
|
o->hash = str_hash;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n_args > 1) {
|
|
|
|
goto wrong_args;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (MP_OBJ_IS_SMALL_INT(args[0])) {
|
|
|
|
uint len = MP_OBJ_SMALL_INT_VALUE(args[0]);
|
|
|
|
byte *data;
|
|
|
|
|
2014-03-29 09:43:38 -04:00
|
|
|
mp_obj_t o = mp_obj_str_builder_start(&mp_type_bytes, len, &data);
|
2014-03-21 17:46:59 -04:00
|
|
|
memset(data, 0, len);
|
|
|
|
return mp_obj_str_builder_end(o);
|
|
|
|
}
|
|
|
|
|
|
|
|
int len;
|
|
|
|
byte *data;
|
|
|
|
vstr_t *vstr = NULL;
|
|
|
|
mp_obj_t o = NULL;
|
|
|
|
// Try to create array of exact len if initializer len is known
|
|
|
|
mp_obj_t len_in = mp_obj_len_maybe(args[0]);
|
|
|
|
if (len_in == MP_OBJ_NULL) {
|
|
|
|
len = -1;
|
|
|
|
vstr = vstr_new();
|
|
|
|
} else {
|
|
|
|
len = MP_OBJ_SMALL_INT_VALUE(len_in);
|
2014-03-29 09:43:38 -04:00
|
|
|
o = mp_obj_str_builder_start(&mp_type_bytes, len, &data);
|
2014-03-21 17:46:59 -04:00
|
|
|
}
|
|
|
|
|
2014-03-30 08:35:08 -04:00
|
|
|
mp_obj_t iterable = mp_getiter(args[0]);
|
2014-03-21 17:46:59 -04:00
|
|
|
mp_obj_t item;
|
2014-04-17 18:19:36 -04:00
|
|
|
while ((item = mp_iternext(iterable)) != MP_OBJ_STOP_ITERATION) {
|
2014-03-21 17:46:59 -04:00
|
|
|
if (len == -1) {
|
|
|
|
vstr_add_char(vstr, MP_OBJ_SMALL_INT_VALUE(item));
|
|
|
|
} else {
|
|
|
|
*data++ = MP_OBJ_SMALL_INT_VALUE(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len == -1) {
|
|
|
|
vstr_shrink(vstr);
|
|
|
|
// TODO: Optimize, borrow buffer from vstr
|
|
|
|
len = vstr_len(vstr);
|
2014-03-29 09:43:38 -04:00
|
|
|
o = mp_obj_str_builder_start(&mp_type_bytes, len, &data);
|
2014-03-21 17:46:59 -04:00
|
|
|
memcpy(data, vstr_str(vstr), len);
|
|
|
|
vstr_free(vstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return mp_obj_str_builder_end(o);
|
|
|
|
|
|
|
|
wrong_args:
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "wrong number of arguments"));
|
2014-03-21 17:46:59 -04:00
|
|
|
}
|
|
|
|
|
2014-01-21 16:40:13 -05:00
|
|
|
// like strstr but with specified length and allows \0 bytes
|
|
|
|
// TODO replace with something more efficient/standard
|
2014-07-03 08:25:24 -04:00
|
|
|
STATIC const byte *find_subbytes(const byte *haystack, mp_uint_t hlen, const byte *needle, mp_uint_t nlen, mp_int_t direction) {
|
2014-01-21 16:40:13 -05:00
|
|
|
if (hlen >= nlen) {
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_uint_t str_index, str_index_end;
|
2014-03-24 02:31:58 -04:00
|
|
|
if (direction > 0) {
|
|
|
|
str_index = 0;
|
|
|
|
str_index_end = hlen - nlen;
|
|
|
|
} else {
|
|
|
|
str_index = hlen - nlen;
|
|
|
|
str_index_end = 0;
|
|
|
|
}
|
|
|
|
for (;;) {
|
|
|
|
if (memcmp(&haystack[str_index], needle, nlen) == 0) {
|
|
|
|
//found
|
|
|
|
return haystack + str_index;
|
2014-01-21 16:40:13 -05:00
|
|
|
}
|
2014-03-24 02:31:58 -04:00
|
|
|
if (str_index == str_index_end) {
|
|
|
|
//not found
|
|
|
|
break;
|
2014-01-21 16:40:13 -05:00
|
|
|
}
|
2014-03-24 02:31:58 -04:00
|
|
|
str_index += direction;
|
2014-01-21 16:40:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-06-28 05:27:23 -04:00
|
|
|
mp_obj_t mp_obj_str_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in) {
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(lhs_in, lhs_data, lhs_len);
|
2014-05-09 21:26:10 -04:00
|
|
|
mp_obj_type_t *lhs_type = mp_obj_get_type(lhs_in);
|
|
|
|
mp_obj_type_t *rhs_type = mp_obj_get_type(rhs_in);
|
2013-12-21 13:17:45 -05:00
|
|
|
switch (op) {
|
2014-03-30 08:35:08 -04:00
|
|
|
case MP_BINARY_OP_ADD:
|
|
|
|
case MP_BINARY_OP_INPLACE_ADD:
|
2014-05-09 21:26:10 -04:00
|
|
|
if (lhs_type == rhs_type) {
|
|
|
|
// add 2 strings or bytes
|
2014-01-22 09:35:10 -05:00
|
|
|
|
|
|
|
GET_STR_DATA_LEN(rhs_in, rhs_data, rhs_len);
|
2014-01-21 16:40:13 -05:00
|
|
|
int alloc_len = lhs_len + rhs_len;
|
2014-01-22 09:35:10 -05:00
|
|
|
|
|
|
|
/* code for making qstr
|
2014-01-21 16:40:13 -05:00
|
|
|
byte *q_ptr;
|
|
|
|
byte *val = qstr_build_start(alloc_len, &q_ptr);
|
|
|
|
memcpy(val, lhs_data, lhs_len);
|
|
|
|
memcpy(val + lhs_len, rhs_data, rhs_len);
|
2014-01-22 09:35:10 -05:00
|
|
|
return MP_OBJ_NEW_QSTR(qstr_build_end(q_ptr));
|
|
|
|
*/
|
|
|
|
|
|
|
|
// code for non-qstr
|
|
|
|
byte *data;
|
2014-05-09 21:26:10 -04:00
|
|
|
mp_obj_t s = mp_obj_str_builder_start(lhs_type, alloc_len, &data);
|
2014-01-22 09:35:10 -05:00
|
|
|
memcpy(data, lhs_data, lhs_len);
|
|
|
|
memcpy(data + lhs_len, rhs_data, rhs_len);
|
|
|
|
return mp_obj_str_builder_end(s);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
break;
|
2014-01-22 09:35:10 -05:00
|
|
|
|
2014-03-30 08:35:08 -04:00
|
|
|
case MP_BINARY_OP_IN:
|
2014-01-11 07:39:33 -05:00
|
|
|
/* NOTE `a in b` is `b.__contains__(a)` */
|
2014-05-09 21:26:10 -04:00
|
|
|
if (lhs_type == rhs_type) {
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(rhs_in, rhs_data, rhs_len);
|
2014-03-24 02:31:58 -04:00
|
|
|
return MP_BOOL(find_subbytes(lhs_data, lhs_len, rhs_data, rhs_len, 1) != NULL);
|
2014-01-11 07:39:33 -05:00
|
|
|
}
|
|
|
|
break;
|
2014-01-22 09:35:10 -05:00
|
|
|
|
2014-05-10 08:55:11 -04:00
|
|
|
case MP_BINARY_OP_MULTIPLY: {
|
2014-08-13 08:22:24 -04:00
|
|
|
mp_int_t n;
|
|
|
|
if (!mp_obj_get_int_maybe(rhs_in, &n)) {
|
2014-05-21 14:42:43 -04:00
|
|
|
return MP_OBJ_NULL; // op not supported
|
2014-01-20 17:27:33 -05:00
|
|
|
}
|
2014-08-13 08:22:24 -04:00
|
|
|
if (n <= 0) {
|
|
|
|
if (lhs_type == &mp_type_str) {
|
|
|
|
return MP_OBJ_NEW_QSTR(MP_QSTR_); // empty str
|
|
|
|
}
|
|
|
|
n = 0;
|
|
|
|
}
|
2014-01-22 09:35:10 -05:00
|
|
|
byte *data;
|
2014-05-09 21:26:10 -04:00
|
|
|
mp_obj_t s = mp_obj_str_builder_start(lhs_type, lhs_len * n, &data);
|
2014-01-22 09:35:10 -05:00
|
|
|
mp_seq_multiply(lhs_data, sizeof(*lhs_data), lhs_len, n, data);
|
|
|
|
return mp_obj_str_builder_end(s);
|
2014-01-20 17:27:33 -05:00
|
|
|
}
|
2014-02-02 01:24:07 -05:00
|
|
|
|
2014-03-31 14:18:28 -04:00
|
|
|
case MP_BINARY_OP_MODULO: {
|
|
|
|
mp_obj_t *args;
|
|
|
|
uint n_args;
|
2014-06-05 13:02:15 -04:00
|
|
|
mp_obj_t dict = MP_OBJ_NULL;
|
2014-03-31 14:18:28 -04:00
|
|
|
if (MP_OBJ_IS_TYPE(rhs_in, &mp_type_tuple)) {
|
|
|
|
// TODO: Support tuple subclasses?
|
|
|
|
mp_obj_tuple_get(rhs_in, &n_args, &args);
|
2014-06-05 13:02:15 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(rhs_in, &mp_type_dict)) {
|
|
|
|
args = NULL;
|
|
|
|
n_args = 0;
|
|
|
|
dict = rhs_in;
|
2014-03-31 14:18:28 -04:00
|
|
|
} else {
|
|
|
|
args = &rhs_in;
|
|
|
|
n_args = 1;
|
|
|
|
}
|
2014-06-05 13:02:15 -04:00
|
|
|
return str_modulo_format(lhs_in, n_args, args, dict);
|
2014-03-31 14:18:28 -04:00
|
|
|
}
|
|
|
|
|
2014-05-09 21:26:10 -04:00
|
|
|
//case MP_BINARY_OP_NOT_EQUAL: // This is never passed here
|
|
|
|
case MP_BINARY_OP_EQUAL: // This will be passed only for bytes, str is dealt with in mp_obj_equal()
|
2014-03-30 08:35:08 -04:00
|
|
|
case MP_BINARY_OP_LESS:
|
|
|
|
case MP_BINARY_OP_LESS_EQUAL:
|
|
|
|
case MP_BINARY_OP_MORE:
|
|
|
|
case MP_BINARY_OP_MORE_EQUAL:
|
2014-05-09 21:26:10 -04:00
|
|
|
if (lhs_type == rhs_type) {
|
2014-02-02 01:24:07 -05:00
|
|
|
GET_STR_DATA_LEN(rhs_in, rhs_data, rhs_len);
|
|
|
|
return MP_BOOL(mp_seq_cmp_bytes(op, lhs_data, lhs_len, rhs_data, rhs_len));
|
|
|
|
}
|
2014-05-15 13:58:40 -04:00
|
|
|
if (lhs_type == &mp_type_bytes) {
|
|
|
|
mp_buffer_info_t bufinfo;
|
|
|
|
if (!mp_get_buffer(rhs_in, &bufinfo, MP_BUFFER_READ)) {
|
|
|
|
goto uncomparable;
|
|
|
|
}
|
|
|
|
return MP_BOOL(mp_seq_cmp_bytes(op, lhs_data, lhs_len, bufinfo.buf, bufinfo.len));
|
|
|
|
}
|
|
|
|
uncomparable:
|
|
|
|
if (op == MP_BINARY_OP_EQUAL) {
|
|
|
|
return mp_const_false;
|
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
2014-05-21 14:42:43 -04:00
|
|
|
return MP_OBJ_NULL; // op not supported
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
2014-06-14 17:35:09 -04:00
|
|
|
#if !MICROPY_PY_BUILTINS_STR_UNICODE
|
|
|
|
// objstrunicode defines own version
|
2014-06-13 23:06:36 -04:00
|
|
|
const byte *str_index_to_ptr(const mp_obj_type_t *type, const byte *self_data, uint self_len,
|
|
|
|
mp_obj_t index, bool is_slice) {
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_uint_t index_val = mp_get_index(type, self_len, index, is_slice);
|
2014-06-13 23:06:36 -04:00
|
|
|
return self_data + index_val;
|
|
|
|
}
|
2014-06-14 17:35:09 -04:00
|
|
|
#endif
|
2014-06-13 23:06:36 -04:00
|
|
|
|
2014-08-11 15:36:38 -04:00
|
|
|
// This is used for both bytes and 8-bit strings. This is not used for unicode strings.
|
|
|
|
STATIC mp_obj_t bytes_subscr(mp_obj_t self_in, mp_obj_t index, mp_obj_t value) {
|
2014-05-11 14:22:59 -04:00
|
|
|
mp_obj_type_t *type = mp_obj_get_type(self_in);
|
2014-04-17 17:10:53 -04:00
|
|
|
GET_STR_DATA_LEN(self_in, self_data, self_len);
|
|
|
|
if (value == MP_OBJ_SENTINEL) {
|
|
|
|
// load
|
2014-06-01 08:32:54 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_SLICE
|
2014-04-17 17:10:53 -04:00
|
|
|
if (MP_OBJ_IS_TYPE(index, &mp_type_slice)) {
|
2014-05-25 14:21:57 -04:00
|
|
|
mp_bound_slice_t slice;
|
|
|
|
if (!mp_seq_get_fast_slice_indexes(self_len, index, &slice)) {
|
2014-05-25 15:12:56 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_NotImplementedError,
|
2014-06-05 13:57:38 -04:00
|
|
|
"only slices with step=1 (aka None) are supported"));
|
2014-04-17 17:10:53 -04:00
|
|
|
}
|
2014-05-25 17:34:34 -04:00
|
|
|
return mp_obj_new_str_of_type(type, self_data + slice.start, slice.stop - slice.start);
|
2014-04-17 17:10:53 -04:00
|
|
|
}
|
|
|
|
#endif
|
2014-08-11 15:36:38 -04:00
|
|
|
mp_uint_t index_val = mp_get_index(type, self_len, index, false);
|
2014-08-11 18:24:29 -04:00
|
|
|
// If we have unicode enabled the type will always be bytes, so take the short cut.
|
|
|
|
if (MICROPY_PY_BUILTINS_STR_UNICODE || type == &mp_type_bytes) {
|
2014-08-11 15:36:38 -04:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(self_data[index_val]);
|
2014-04-17 17:10:53 -04:00
|
|
|
} else {
|
2014-08-11 15:36:38 -04:00
|
|
|
return mp_obj_new_str((char*)&self_data[index_val], 1, true);
|
2014-04-17 17:10:53 -04:00
|
|
|
}
|
|
|
|
} else {
|
2014-05-21 14:42:43 -04:00
|
|
|
return MP_OBJ_NULL; // op not supported
|
2014-04-17 17:10:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t str_join(mp_obj_t self_in, mp_obj_t arg) {
|
2014-05-11 14:13:01 -04:00
|
|
|
assert(is_str_or_bytes(self_in));
|
|
|
|
const mp_obj_type_t *self_type = mp_obj_get_type(self_in);
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2014-01-02 11:36:09 -05:00
|
|
|
// get separation string
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(self_in, sep_str, sep_len);
|
2014-01-02 11:36:09 -05:00
|
|
|
|
|
|
|
// process args
|
2013-12-21 13:17:45 -05:00
|
|
|
uint seq_len;
|
|
|
|
mp_obj_t *seq_items;
|
2014-03-29 09:15:08 -04:00
|
|
|
if (MP_OBJ_IS_TYPE(arg, &mp_type_tuple)) {
|
2013-12-21 13:17:45 -05:00
|
|
|
mp_obj_tuple_get(arg, &seq_len, &seq_items);
|
|
|
|
} else {
|
2014-04-09 14:17:53 -04:00
|
|
|
if (!MP_OBJ_IS_TYPE(arg, &mp_type_list)) {
|
|
|
|
// arg is not a list, try to convert it to one
|
2014-04-09 18:42:40 -04:00
|
|
|
// TODO: Try to optimize?
|
2014-04-09 14:17:53 -04:00
|
|
|
arg = mp_type_list.make_new((mp_obj_t)&mp_type_list, 1, 0, &arg);
|
|
|
|
}
|
|
|
|
mp_obj_list_get(arg, &seq_len, &seq_items);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-01-02 11:36:09 -05:00
|
|
|
|
|
|
|
// count required length
|
|
|
|
int required_len = 0;
|
2013-12-21 13:17:45 -05:00
|
|
|
for (int i = 0; i < seq_len; i++) {
|
2014-05-11 14:13:01 -04:00
|
|
|
if (mp_obj_get_type(seq_items[i]) != self_type) {
|
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError,
|
|
|
|
"join expects a list of str/bytes objects consistent with self object"));
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-01-02 11:36:09 -05:00
|
|
|
if (i > 0) {
|
|
|
|
required_len += sep_len;
|
|
|
|
}
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_LEN(seq_items[i], l);
|
|
|
|
required_len += l;
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// make joined string
|
2014-01-22 09:35:10 -05:00
|
|
|
byte *data;
|
2014-05-11 14:13:01 -04:00
|
|
|
mp_obj_t joined_str = mp_obj_str_builder_start(self_type, required_len, &data);
|
2013-12-21 13:17:45 -05:00
|
|
|
for (int i = 0; i < seq_len; i++) {
|
|
|
|
if (i > 0) {
|
2014-01-22 09:35:10 -05:00
|
|
|
memcpy(data, sep_str, sep_len);
|
|
|
|
data += sep_len;
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(seq_items[i], s, l);
|
|
|
|
memcpy(data, s, l);
|
|
|
|
data += l;
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-01-02 11:36:09 -05:00
|
|
|
|
|
|
|
// return joined string
|
2014-01-22 09:35:10 -05:00
|
|
|
return mp_obj_str_builder_end(joined_str);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
2014-01-20 22:00:21 -05:00
|
|
|
#define is_ws(c) ((c) == ' ' || (c) == '\t')
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t str_split(uint n_args, const mp_obj_t *args) {
|
2014-05-11 14:17:28 -04:00
|
|
|
const mp_obj_type_t *self_type = mp_obj_get_type(args[0]);
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_int_t splits = -1;
|
2014-01-20 22:00:21 -05:00
|
|
|
mp_obj_t sep = mp_const_none;
|
|
|
|
if (n_args > 1) {
|
|
|
|
sep = args[1];
|
|
|
|
if (n_args > 2) {
|
2014-04-06 06:11:15 -04:00
|
|
|
splits = mp_obj_get_int(args[2]);
|
2014-01-20 22:00:21 -05:00
|
|
|
}
|
|
|
|
}
|
2014-04-06 06:11:15 -04:00
|
|
|
|
2014-01-20 22:00:21 -05:00
|
|
|
mp_obj_t res = mp_obj_new_list(0, NULL);
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(args[0], s, len);
|
|
|
|
const byte *top = s + len;
|
2014-04-06 06:11:15 -04:00
|
|
|
|
|
|
|
if (sep == mp_const_none) {
|
|
|
|
// sep not given, so separate on whitespace
|
|
|
|
|
|
|
|
// Initial whitespace is not counted as split, so we pre-do it
|
2014-01-22 09:35:10 -05:00
|
|
|
while (s < top && is_ws(*s)) s++;
|
2014-04-06 06:11:15 -04:00
|
|
|
while (s < top && splits != 0) {
|
|
|
|
const byte *start = s;
|
|
|
|
while (s < top && !is_ws(*s)) s++;
|
2014-05-25 17:34:34 -04:00
|
|
|
mp_obj_list_append(res, mp_obj_new_str_of_type(self_type, start, s - start));
|
2014-04-06 06:11:15 -04:00
|
|
|
if (s >= top) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
while (s < top && is_ws(*s)) s++;
|
|
|
|
if (splits > 0) {
|
|
|
|
splits--;
|
|
|
|
}
|
2014-01-20 22:00:21 -05:00
|
|
|
}
|
|
|
|
|
2014-04-06 06:11:15 -04:00
|
|
|
if (s < top) {
|
2014-05-25 17:34:34 -04:00
|
|
|
mp_obj_list_append(res, mp_obj_new_str_of_type(self_type, s, top - s));
|
2014-04-06 06:11:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
// sep given
|
2014-08-10 16:14:35 -04:00
|
|
|
if (mp_obj_get_type(sep) != self_type) {
|
|
|
|
arg_type_mixup();
|
|
|
|
}
|
2014-04-06 06:11:15 -04:00
|
|
|
|
|
|
|
uint sep_len;
|
|
|
|
const char *sep_str = mp_obj_str_get_data(sep, &sep_len);
|
|
|
|
|
|
|
|
if (sep_len == 0) {
|
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "empty separator"));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
const byte *start = s;
|
|
|
|
for (;;) {
|
|
|
|
if (splits == 0 || s + sep_len > top) {
|
|
|
|
s = top;
|
|
|
|
break;
|
|
|
|
} else if (memcmp(s, sep_str, sep_len) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
}
|
2014-05-25 17:34:34 -04:00
|
|
|
mp_obj_list_append(res, mp_obj_new_str_of_type(self_type, start, s - start));
|
2014-04-06 06:11:15 -04:00
|
|
|
if (s >= top) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s += sep_len;
|
|
|
|
if (splits > 0) {
|
|
|
|
splits--;
|
|
|
|
}
|
|
|
|
}
|
2014-01-20 22:00:21 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-05-13 01:07:08 -04:00
|
|
|
STATIC mp_obj_t str_rsplit(uint n_args, const mp_obj_t *args) {
|
|
|
|
if (n_args < 3) {
|
|
|
|
// If we don't have split limit, it doesn't matter from which side
|
|
|
|
// we split.
|
|
|
|
return str_split(n_args, args);
|
|
|
|
}
|
|
|
|
const mp_obj_type_t *self_type = mp_obj_get_type(args[0]);
|
|
|
|
mp_obj_t sep = args[1];
|
|
|
|
GET_STR_DATA_LEN(args[0], s, len);
|
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_int_t splits = mp_obj_get_int(args[2]);
|
|
|
|
mp_int_t org_splits = splits;
|
2014-05-13 01:07:08 -04:00
|
|
|
// Preallocate list to the max expected # of elements, as we
|
|
|
|
// will fill it from the end.
|
|
|
|
mp_obj_list_t *res = mp_obj_new_list(splits + 1, NULL);
|
|
|
|
int idx = splits;
|
|
|
|
|
|
|
|
if (sep == mp_const_none) {
|
2014-06-03 15:04:23 -04:00
|
|
|
assert(!"TODO: rsplit(None,n) not implemented");
|
2014-05-13 01:07:08 -04:00
|
|
|
} else {
|
|
|
|
uint sep_len;
|
|
|
|
const char *sep_str = mp_obj_str_get_data(sep, &sep_len);
|
|
|
|
|
|
|
|
if (sep_len == 0) {
|
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "empty separator"));
|
|
|
|
}
|
|
|
|
|
|
|
|
const byte *beg = s;
|
|
|
|
const byte *last = s + len;
|
|
|
|
for (;;) {
|
|
|
|
s = last - sep_len;
|
|
|
|
for (;;) {
|
|
|
|
if (splits == 0 || s < beg) {
|
|
|
|
break;
|
|
|
|
} else if (memcmp(s, sep_str, sep_len) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
s--;
|
|
|
|
}
|
|
|
|
if (s < beg || splits == 0) {
|
2014-05-25 17:34:34 -04:00
|
|
|
res->items[idx] = mp_obj_new_str_of_type(self_type, beg, last - beg);
|
2014-05-13 01:07:08 -04:00
|
|
|
break;
|
|
|
|
}
|
2014-05-25 17:34:34 -04:00
|
|
|
res->items[idx--] = mp_obj_new_str_of_type(self_type, s + sep_len, last - s - sep_len);
|
2014-05-13 01:07:08 -04:00
|
|
|
last = s;
|
|
|
|
if (splits > 0) {
|
|
|
|
splits--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (idx != 0) {
|
|
|
|
// We split less parts than split limit, now go cleanup surplus
|
|
|
|
int used = org_splits + 1 - idx;
|
|
|
|
memcpy(res->items, &res->items[idx], used * sizeof(mp_obj_t));
|
|
|
|
mp_seq_clear(res->items, used, res->alloc, sizeof(*res->items));
|
|
|
|
res->len = used;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
STATIC mp_obj_t str_finder(uint n_args, const mp_obj_t *args, mp_int_t direction, bool is_index) {
|
2014-06-13 23:06:36 -04:00
|
|
|
const mp_obj_type_t *self_type = mp_obj_get_type(args[0]);
|
2014-01-12 16:53:52 -05:00
|
|
|
assert(2 <= n_args && n_args <= 4);
|
2014-01-22 09:35:10 -05:00
|
|
|
assert(MP_OBJ_IS_STR(args[0]));
|
|
|
|
assert(MP_OBJ_IS_STR(args[1]));
|
2014-01-12 16:53:52 -05:00
|
|
|
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(args[0], haystack, haystack_len);
|
|
|
|
GET_STR_DATA_LEN(args[1], needle, needle_len);
|
2014-01-12 16:53:52 -05:00
|
|
|
|
2014-06-13 23:06:36 -04:00
|
|
|
const byte *start = haystack;
|
|
|
|
const byte *end = haystack + haystack_len;
|
2014-01-12 16:53:52 -05:00
|
|
|
if (n_args >= 3 && args[2] != mp_const_none) {
|
2014-06-13 23:06:36 -04:00
|
|
|
start = str_index_to_ptr(self_type, haystack, haystack_len, args[2], true);
|
2014-01-12 16:53:52 -05:00
|
|
|
}
|
|
|
|
if (n_args >= 4 && args[3] != mp_const_none) {
|
2014-06-13 23:06:36 -04:00
|
|
|
end = str_index_to_ptr(self_type, haystack, haystack_len, args[3], true);
|
2014-01-12 16:53:52 -05:00
|
|
|
}
|
|
|
|
|
2014-06-13 23:06:36 -04:00
|
|
|
const byte *p = find_subbytes(start, end - start, needle, needle_len, direction);
|
2014-01-13 14:39:01 -05:00
|
|
|
if (p == NULL) {
|
|
|
|
// not found
|
2014-04-08 14:42:19 -04:00
|
|
|
if (is_index) {
|
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "substring not found"));
|
|
|
|
} else {
|
|
|
|
return MP_OBJ_NEW_SMALL_INT(-1);
|
|
|
|
}
|
2014-01-13 14:39:01 -05:00
|
|
|
} else {
|
|
|
|
// found
|
2014-06-13 20:15:00 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_STR_UNICODE
|
|
|
|
if (self_type == &mp_type_str) {
|
|
|
|
return MP_OBJ_NEW_SMALL_INT(utf8_ptr_to_index(haystack, p));
|
|
|
|
}
|
|
|
|
#endif
|
2014-03-24 02:31:58 -04:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(p - haystack);
|
2014-01-12 16:53:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-24 02:31:58 -04:00
|
|
|
STATIC mp_obj_t str_find(uint n_args, const mp_obj_t *args) {
|
2014-04-08 14:42:19 -04:00
|
|
|
return str_finder(n_args, args, 1, false);
|
2014-03-24 02:31:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_rfind(uint n_args, const mp_obj_t *args) {
|
2014-04-08 14:42:19 -04:00
|
|
|
return str_finder(n_args, args, -1, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_index(uint n_args, const mp_obj_t *args) {
|
|
|
|
return str_finder(n_args, args, 1, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_rindex(uint n_args, const mp_obj_t *args) {
|
|
|
|
return str_finder(n_args, args, -1, true);
|
2014-03-24 02:31:58 -04:00
|
|
|
}
|
|
|
|
|
2014-01-22 18:20:40 -05:00
|
|
|
// TODO: (Much) more variety in args
|
2014-05-15 14:18:34 -04:00
|
|
|
STATIC mp_obj_t str_startswith(uint n_args, const mp_obj_t *args) {
|
2014-06-13 23:06:36 -04:00
|
|
|
const mp_obj_type_t *self_type = mp_obj_get_type(args[0]);
|
2014-05-15 14:18:34 -04:00
|
|
|
GET_STR_DATA_LEN(args[0], str, str_len);
|
|
|
|
GET_STR_DATA_LEN(args[1], prefix, prefix_len);
|
2014-06-13 23:06:36 -04:00
|
|
|
const byte *start = str;
|
2014-05-15 14:18:34 -04:00
|
|
|
if (n_args > 2) {
|
2014-06-13 23:06:36 -04:00
|
|
|
start = str_index_to_ptr(self_type, str, str_len, args[2], true);
|
2014-05-15 14:18:34 -04:00
|
|
|
}
|
2014-06-13 23:06:36 -04:00
|
|
|
if (prefix_len + (start - str) > str_len) {
|
2014-01-22 18:20:40 -05:00
|
|
|
return mp_const_false;
|
|
|
|
}
|
2014-06-13 23:06:36 -04:00
|
|
|
return MP_BOOL(memcmp(start, prefix, prefix_len) == 0);
|
2014-01-22 18:20:40 -05:00
|
|
|
}
|
|
|
|
|
2014-05-24 15:46:51 -04:00
|
|
|
STATIC mp_obj_t str_endswith(uint n_args, const mp_obj_t *args) {
|
|
|
|
GET_STR_DATA_LEN(args[0], str, str_len);
|
|
|
|
GET_STR_DATA_LEN(args[1], suffix, suffix_len);
|
|
|
|
assert(n_args == 2);
|
|
|
|
|
|
|
|
if (suffix_len > str_len) {
|
|
|
|
return mp_const_false;
|
|
|
|
}
|
|
|
|
return MP_BOOL(memcmp(str + (str_len - suffix_len), suffix, suffix_len) == 0);
|
|
|
|
}
|
|
|
|
|
2014-04-25 23:20:08 -04:00
|
|
|
enum { LSTRIP, RSTRIP, STRIP };
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_uni_strip(int type, uint n_args, const mp_obj_t *args) {
|
2014-01-08 17:23:45 -05:00
|
|
|
assert(1 <= n_args && n_args <= 2);
|
2014-05-11 06:17:29 -04:00
|
|
|
assert(is_str_or_bytes(args[0]));
|
|
|
|
const mp_obj_type_t *self_type = mp_obj_get_type(args[0]);
|
2014-01-22 09:35:10 -05:00
|
|
|
|
|
|
|
const byte *chars_to_del;
|
|
|
|
uint chars_to_del_len;
|
|
|
|
static const byte whitespace[] = " \t\n\r\v\f";
|
2014-01-08 17:23:45 -05:00
|
|
|
|
|
|
|
if (n_args == 1) {
|
|
|
|
chars_to_del = whitespace;
|
2014-01-22 09:35:10 -05:00
|
|
|
chars_to_del_len = sizeof(whitespace);
|
2014-01-08 17:23:45 -05:00
|
|
|
} else {
|
2014-05-11 06:17:29 -04:00
|
|
|
if (mp_obj_get_type(args[1]) != self_type) {
|
|
|
|
arg_type_mixup();
|
|
|
|
}
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(args[1], s, l);
|
|
|
|
chars_to_del = s;
|
|
|
|
chars_to_del_len = l;
|
2014-01-08 17:23:45 -05:00
|
|
|
}
|
|
|
|
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(args[0], orig_str, orig_str_len);
|
2014-01-08 17:23:45 -05:00
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_uint_t first_good_char_pos = 0;
|
2014-01-08 17:23:45 -05:00
|
|
|
bool first_good_char_pos_set = false;
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_uint_t last_good_char_pos = 0;
|
|
|
|
mp_uint_t i = 0;
|
|
|
|
mp_int_t delta = 1;
|
2014-04-25 23:48:31 -04:00
|
|
|
if (type == RSTRIP) {
|
|
|
|
i = orig_str_len - 1;
|
|
|
|
delta = -1;
|
|
|
|
}
|
2014-07-03 08:25:24 -04:00
|
|
|
for (mp_uint_t len = orig_str_len; len > 0; len--) {
|
2014-03-24 02:31:58 -04:00
|
|
|
if (find_subbytes(chars_to_del, chars_to_del_len, &orig_str[i], 1, 1) == NULL) {
|
2014-01-08 17:23:45 -05:00
|
|
|
if (!first_good_char_pos_set) {
|
2014-05-29 20:07:05 -04:00
|
|
|
first_good_char_pos_set = true;
|
2014-01-08 17:23:45 -05:00
|
|
|
first_good_char_pos = i;
|
2014-04-25 23:20:08 -04:00
|
|
|
if (type == LSTRIP) {
|
|
|
|
last_good_char_pos = orig_str_len - 1;
|
|
|
|
break;
|
2014-04-25 23:48:31 -04:00
|
|
|
} else if (type == RSTRIP) {
|
|
|
|
first_good_char_pos = 0;
|
|
|
|
last_good_char_pos = i;
|
|
|
|
break;
|
2014-04-25 23:20:08 -04:00
|
|
|
}
|
2014-01-08 17:23:45 -05:00
|
|
|
}
|
2014-04-25 23:20:08 -04:00
|
|
|
last_good_char_pos = i;
|
2014-01-08 17:23:45 -05:00
|
|
|
}
|
2014-04-25 23:48:31 -04:00
|
|
|
i += delta;
|
2014-01-08 17:23:45 -05:00
|
|
|
}
|
|
|
|
|
2014-05-29 20:07:05 -04:00
|
|
|
if (!first_good_char_pos_set) {
|
2014-01-22 09:35:10 -05:00
|
|
|
// string is all whitespace, return ''
|
|
|
|
return MP_OBJ_NEW_QSTR(MP_QSTR_);
|
2014-01-08 17:23:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(last_good_char_pos >= first_good_char_pos);
|
|
|
|
//+1 to accomodate the last character
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_uint_t stripped_len = last_good_char_pos - first_good_char_pos + 1;
|
2014-05-29 20:11:44 -04:00
|
|
|
if (stripped_len == orig_str_len) {
|
|
|
|
// If nothing was stripped, don't bother to dup original string
|
|
|
|
// TODO: watch out for this case when we'll get to bytearray.strip()
|
|
|
|
assert(first_good_char_pos == 0);
|
|
|
|
return args[0];
|
|
|
|
}
|
2014-05-25 17:34:34 -04:00
|
|
|
return mp_obj_new_str_of_type(self_type, orig_str + first_good_char_pos, stripped_len);
|
2014-01-08 17:23:45 -05:00
|
|
|
}
|
|
|
|
|
2014-04-25 23:20:08 -04:00
|
|
|
STATIC mp_obj_t str_strip(uint n_args, const mp_obj_t *args) {
|
|
|
|
return str_uni_strip(STRIP, n_args, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_lstrip(uint n_args, const mp_obj_t *args) {
|
|
|
|
return str_uni_strip(LSTRIP, n_args, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_rstrip(uint n_args, const mp_obj_t *args) {
|
|
|
|
return str_uni_strip(RSTRIP, n_args, args);
|
|
|
|
}
|
|
|
|
|
2014-03-31 00:06:50 -04:00
|
|
|
// Takes an int arg, but only parses unsigned numbers, and only changes
|
|
|
|
// *num if at least one digit was parsed.
|
|
|
|
static int str_to_int(const char *str, int *num) {
|
|
|
|
const char *s = str;
|
|
|
|
if (unichar_isdigit(*s)) {
|
|
|
|
*num = 0;
|
|
|
|
do {
|
|
|
|
*num = *num * 10 + (*s - '0');
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
while (unichar_isdigit(*s));
|
|
|
|
}
|
|
|
|
return s - str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool isalignment(char ch) {
|
|
|
|
return ch && strchr("<>=^", ch) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool istype(char ch) {
|
|
|
|
return ch && strchr("bcdeEfFgGnosxX%", ch) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool arg_looks_integer(mp_obj_t arg) {
|
|
|
|
return MP_OBJ_IS_TYPE(arg, &mp_type_bool) || MP_OBJ_IS_INT(arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool arg_looks_numeric(mp_obj_t arg) {
|
|
|
|
return arg_looks_integer(arg)
|
2014-06-01 08:32:54 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2014-03-31 00:06:50 -04:00
|
|
|
|| MP_OBJ_IS_TYPE(arg, &mp_type_float)
|
|
|
|
#endif
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2014-04-07 14:19:51 -04:00
|
|
|
static mp_obj_t arg_as_int(mp_obj_t arg) {
|
2014-06-01 08:32:54 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2014-04-05 11:21:45 -04:00
|
|
|
if (MP_OBJ_IS_TYPE(arg, &mp_type_float)) {
|
2014-04-07 14:19:51 -04:00
|
|
|
|
|
|
|
// TODO: Needs a way to construct an mpz integer from a float
|
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_int_t num = mp_obj_get_float(arg);
|
2014-04-07 14:19:51 -04:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(num);
|
2014-04-05 11:21:45 -04:00
|
|
|
}
|
|
|
|
#endif
|
2014-04-07 14:19:51 -04:00
|
|
|
return arg;
|
2014-04-05 11:21:45 -04:00
|
|
|
}
|
|
|
|
|
2014-04-15 17:03:55 -04:00
|
|
|
mp_obj_t mp_obj_str_format(uint n_args, const mp_obj_t *args) {
|
2014-01-22 09:35:10 -05:00
|
|
|
assert(MP_OBJ_IS_STR(args[0]));
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(args[0], str, len);
|
2014-03-31 00:06:50 -04:00
|
|
|
int arg_i = 0;
|
2013-12-21 13:17:45 -05:00
|
|
|
vstr_t *vstr = vstr_new();
|
2014-03-31 00:06:50 -04:00
|
|
|
pfenv_t pfenv_vstr;
|
|
|
|
pfenv_vstr.data = vstr;
|
|
|
|
pfenv_vstr.print_strn = pfenv_vstr_add_strn;
|
|
|
|
|
2014-01-22 09:35:10 -05:00
|
|
|
for (const byte *top = str + len; str < top; str++) {
|
2014-03-31 00:06:50 -04:00
|
|
|
if (*str == '}') {
|
|
|
|
str++;
|
|
|
|
if (str < top && *str == '}') {
|
|
|
|
vstr_add_char(vstr, '}');
|
|
|
|
continue;
|
|
|
|
}
|
2014-06-05 13:57:38 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "single '}' encountered in format string"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
if (*str != '{') {
|
|
|
|
vstr_add_char(vstr, *str);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
str++;
|
|
|
|
if (str < top && *str == '{') {
|
|
|
|
vstr_add_char(vstr, '{');
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// replacement_field ::= "{" [field_name] ["!" conversion] [":" format_spec] "}"
|
|
|
|
|
|
|
|
vstr_t *field_name = NULL;
|
|
|
|
char conversion = '\0';
|
|
|
|
vstr_t *format_spec = NULL;
|
|
|
|
|
|
|
|
if (str < top && *str != '}' && *str != '!' && *str != ':') {
|
|
|
|
field_name = vstr_new();
|
|
|
|
while (str < top && *str != '}' && *str != '!' && *str != ':') {
|
|
|
|
vstr_add_char(field_name, *str++);
|
|
|
|
}
|
|
|
|
vstr_add_char(field_name, '\0');
|
|
|
|
}
|
|
|
|
|
|
|
|
// conversion ::= "r" | "s"
|
|
|
|
|
|
|
|
if (str < top && *str == '!') {
|
2013-12-21 13:17:45 -05:00
|
|
|
str++;
|
2014-03-31 00:06:50 -04:00
|
|
|
if (str < top && (*str == 'r' || *str == 's')) {
|
|
|
|
conversion = *str++;
|
2014-01-15 15:45:20 -05:00
|
|
|
} else {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "end of format while looking for conversion specifier"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (str < top && *str == ':') {
|
|
|
|
str++;
|
|
|
|
// {:} is the same as {}, which is the same as {!s}
|
|
|
|
// This makes a difference when passing in a True or False
|
|
|
|
// '{}'.format(True) returns 'True'
|
|
|
|
// '{:d}'.format(True) returns '1'
|
|
|
|
// So we treat {:} as {} and this later gets treated to be {!s}
|
|
|
|
if (*str != '}') {
|
2014-06-05 13:57:38 -04:00
|
|
|
format_spec = vstr_new();
|
2014-03-31 00:06:50 -04:00
|
|
|
while (str < top && *str != '}') {
|
|
|
|
vstr_add_char(format_spec, *str++);
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-03-31 00:06:50 -04:00
|
|
|
vstr_add_char(format_spec, '\0');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (str >= top) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "unmatched '{' in format"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
if (*str != '}') {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "expected ':' after format specifier"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t arg = mp_const_none;
|
|
|
|
|
|
|
|
if (field_name) {
|
|
|
|
if (arg_i > 0) {
|
2014-06-05 13:57:38 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "can't switch from automatic field numbering to manual field specification"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
2014-04-14 16:20:30 -04:00
|
|
|
int index = 0;
|
2014-03-31 00:06:50 -04:00
|
|
|
if (str_to_int(vstr_str(field_name), &index) != vstr_len(field_name) - 1) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_KeyError, "attributes not supported yet"));
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-03-31 00:06:50 -04:00
|
|
|
if (index >= n_args - 1) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_IndexError, "tuple index out of range"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
arg = args[index + 1];
|
|
|
|
arg_i = -1;
|
|
|
|
vstr_free(field_name);
|
|
|
|
field_name = NULL;
|
2013-12-21 13:17:45 -05:00
|
|
|
} else {
|
2014-03-31 00:06:50 -04:00
|
|
|
if (arg_i < 0) {
|
2014-06-05 13:57:38 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "can't switch from manual field specification to automatic field numbering"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
if (arg_i >= n_args - 1) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_IndexError, "tuple index out of range"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
arg = args[arg_i + 1];
|
|
|
|
arg_i++;
|
|
|
|
}
|
|
|
|
if (!format_spec && !conversion) {
|
|
|
|
conversion = 's';
|
|
|
|
}
|
|
|
|
if (conversion) {
|
|
|
|
mp_print_kind_t print_kind;
|
|
|
|
if (conversion == 's') {
|
|
|
|
print_kind = PRINT_STR;
|
|
|
|
} else if (conversion == 'r') {
|
|
|
|
print_kind = PRINT_REPR;
|
|
|
|
} else {
|
2014-06-05 13:57:38 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError, "unknown conversion specifier %c", conversion));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
vstr_t *arg_vstr = vstr_new();
|
|
|
|
mp_obj_print_helper((void (*)(void*, const char*, ...))vstr_printf, arg_vstr, arg, print_kind);
|
2014-05-25 17:27:57 -04:00
|
|
|
arg = mp_obj_new_str(vstr_str(arg_vstr), vstr_len(arg_vstr), false);
|
2014-03-31 00:06:50 -04:00
|
|
|
vstr_free(arg_vstr);
|
|
|
|
}
|
|
|
|
|
|
|
|
char sign = '\0';
|
|
|
|
char fill = '\0';
|
|
|
|
char align = '\0';
|
|
|
|
int width = -1;
|
|
|
|
int precision = -1;
|
|
|
|
char type = '\0';
|
|
|
|
int flags = 0;
|
|
|
|
|
|
|
|
if (format_spec) {
|
|
|
|
// The format specifier (from http://docs.python.org/2/library/string.html#formatspec)
|
|
|
|
//
|
|
|
|
// [[fill]align][sign][#][0][width][,][.precision][type]
|
|
|
|
// fill ::= <any character>
|
|
|
|
// align ::= "<" | ">" | "=" | "^"
|
|
|
|
// sign ::= "+" | "-" | " "
|
|
|
|
// width ::= integer
|
|
|
|
// precision ::= integer
|
|
|
|
// type ::= "b" | "c" | "d" | "e" | "E" | "f" | "F" | "g" | "G" | "n" | "o" | "s" | "x" | "X" | "%"
|
|
|
|
|
|
|
|
const char *s = vstr_str(format_spec);
|
|
|
|
if (isalignment(*s)) {
|
|
|
|
align = *s++;
|
|
|
|
} else if (*s && isalignment(s[1])) {
|
|
|
|
fill = *s++;
|
|
|
|
align = *s++;
|
|
|
|
}
|
|
|
|
if (*s == '+' || *s == '-' || *s == ' ') {
|
|
|
|
if (*s == '+') {
|
|
|
|
flags |= PF_FLAG_SHOW_SIGN;
|
|
|
|
} else if (*s == ' ') {
|
|
|
|
flags |= PF_FLAG_SPACE_SIGN;
|
|
|
|
}
|
|
|
|
sign = *s++;
|
|
|
|
}
|
|
|
|
if (*s == '#') {
|
|
|
|
flags |= PF_FLAG_SHOW_PREFIX;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
if (*s == '0') {
|
|
|
|
if (!align) {
|
|
|
|
align = '=';
|
|
|
|
}
|
|
|
|
if (!fill) {
|
|
|
|
fill = '0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s += str_to_int(s, &width);
|
|
|
|
if (*s == ',') {
|
|
|
|
flags |= PF_FLAG_SHOW_COMMA;
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
if (*s == '.') {
|
|
|
|
s++;
|
|
|
|
s += str_to_int(s, &precision);
|
|
|
|
}
|
|
|
|
if (istype(*s)) {
|
|
|
|
type = *s++;
|
|
|
|
}
|
|
|
|
if (*s) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_KeyError, "Invalid conversion specification"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
vstr_free(format_spec);
|
|
|
|
format_spec = NULL;
|
|
|
|
}
|
|
|
|
if (!align) {
|
|
|
|
if (arg_looks_numeric(arg)) {
|
|
|
|
align = '>';
|
|
|
|
} else {
|
|
|
|
align = '<';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!fill) {
|
|
|
|
fill = ' ';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sign) {
|
|
|
|
if (type == 's') {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "Sign not allowed in string format specifier"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
if (type == 'c') {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "Sign not allowed with integer format specifier 'c'"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sign = '-';
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (align) {
|
|
|
|
case '<': flags |= PF_FLAG_LEFT_ADJUST; break;
|
|
|
|
case '=': flags |= PF_FLAG_PAD_AFTER_SIGN; break;
|
|
|
|
case '^': flags |= PF_FLAG_CENTER_ADJUST; break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arg_looks_integer(arg)) {
|
|
|
|
switch (type) {
|
|
|
|
case 'b':
|
2014-06-06 02:09:02 -04:00
|
|
|
pfenv_print_mp_int(&pfenv_vstr, arg, 1, 2, 'a', flags, fill, width, 0);
|
2014-03-31 00:06:50 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
{
|
|
|
|
char ch = mp_obj_get_int(arg);
|
|
|
|
pfenv_print_strn(&pfenv_vstr, &ch, 1, flags, fill, width);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
case '\0': // No explicit format type implies 'd'
|
|
|
|
case 'n': // I don't think we support locales in uPy so use 'd'
|
|
|
|
case 'd':
|
2014-06-06 02:09:02 -04:00
|
|
|
pfenv_print_mp_int(&pfenv_vstr, arg, 1, 10, 'a', flags, fill, width, 0);
|
2014-03-31 00:06:50 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
case 'o':
|
2014-04-07 14:19:51 -04:00
|
|
|
if (flags & PF_FLAG_SHOW_PREFIX) {
|
|
|
|
flags |= PF_FLAG_SHOW_OCTAL_LETTER;
|
|
|
|
}
|
|
|
|
|
2014-06-06 02:09:02 -04:00
|
|
|
pfenv_print_mp_int(&pfenv_vstr, arg, 1, 8, 'a', flags, fill, width, 0);
|
2014-03-31 00:06:50 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
case 'X':
|
2014-06-05 13:57:38 -04:00
|
|
|
case 'x':
|
2014-06-06 02:09:02 -04:00
|
|
|
pfenv_print_mp_int(&pfenv_vstr, arg, 1, 16, type - ('X' - 'A'), flags, fill, width, 0);
|
2014-03-31 00:06:50 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
case 'e':
|
|
|
|
case 'E':
|
|
|
|
case 'f':
|
|
|
|
case 'F':
|
|
|
|
case 'g':
|
|
|
|
case 'G':
|
|
|
|
case '%':
|
|
|
|
// The floating point formatters all work with anything that
|
|
|
|
// looks like an integer
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError,
|
2014-06-05 13:57:38 -04:00
|
|
|
"unknown format code '%c' for object of type '%s'", type, mp_obj_get_type_str(arg)));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
2014-04-02 15:04:15 -04:00
|
|
|
}
|
2014-04-02 12:06:05 -04:00
|
|
|
|
2014-04-02 15:07:31 -04:00
|
|
|
// NOTE: no else here. We need the e, f, g etc formats for integer
|
|
|
|
// arguments (from above if) to take this if.
|
2014-04-02 15:04:15 -04:00
|
|
|
if (arg_looks_numeric(arg)) {
|
2014-03-31 00:06:50 -04:00
|
|
|
if (!type) {
|
|
|
|
|
|
|
|
// Even though the docs say that an unspecified type is the same
|
|
|
|
// as 'g', there is one subtle difference, when the exponent
|
|
|
|
// is one less than the precision.
|
2014-06-05 13:57:38 -04:00
|
|
|
//
|
2014-03-31 00:06:50 -04:00
|
|
|
// '{:10.1}'.format(0.0) ==> '0e+00'
|
|
|
|
// '{:10.1g}'.format(0.0) ==> '0'
|
|
|
|
//
|
|
|
|
// TODO: Figure out how to deal with this.
|
|
|
|
//
|
|
|
|
// A proper solution would involve adding a special flag
|
|
|
|
// or something to format_float, and create a format_double
|
|
|
|
// to deal with doubles. In order to fix this when using
|
|
|
|
// sprintf, we'd need to use the e format and tweak the
|
|
|
|
// returned result to strip trailing zeros like the g format
|
|
|
|
// does.
|
|
|
|
//
|
|
|
|
// {:10.3} and {:10.2e} with 1.23e2 both produce 1.23e+02
|
|
|
|
// but with 1.e2 you get 1e+02 and 1.00e+02
|
|
|
|
//
|
|
|
|
// Stripping the trailing 0's (like g) does would make the
|
|
|
|
// e format give us the right format.
|
|
|
|
//
|
|
|
|
// CPython sources say:
|
|
|
|
// Omitted type specifier. Behaves in the same way as repr(x)
|
|
|
|
// and str(x) if no precision is given, else like 'g', but with
|
|
|
|
// at least one digit after the decimal point. */
|
|
|
|
|
|
|
|
type = 'g';
|
|
|
|
}
|
|
|
|
if (type == 'n') {
|
|
|
|
type = 'g';
|
|
|
|
}
|
|
|
|
|
|
|
|
flags |= PF_FLAG_PAD_NAN_INF; // '{:06e}'.format(float('-inf')) should give '-00inf'
|
|
|
|
switch (type) {
|
2014-06-01 08:32:54 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2014-03-31 00:06:50 -04:00
|
|
|
case 'e':
|
|
|
|
case 'E':
|
|
|
|
case 'f':
|
|
|
|
case 'F':
|
|
|
|
case 'g':
|
|
|
|
case 'G':
|
2014-06-05 13:57:38 -04:00
|
|
|
pfenv_print_float(&pfenv_vstr, mp_obj_get_float(arg), type, flags, fill, width, precision);
|
2014-03-31 00:06:50 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case '%':
|
|
|
|
flags |= PF_FLAG_ADD_PERCENT;
|
|
|
|
pfenv_print_float(&pfenv_vstr, mp_obj_get_float(arg) * 100.0F, 'f', flags, fill, width, precision);
|
|
|
|
break;
|
2014-04-02 15:04:15 -04:00
|
|
|
#endif
|
2014-03-31 00:06:50 -04:00
|
|
|
|
|
|
|
default:
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError,
|
2014-06-05 13:57:38 -04:00
|
|
|
"unknown format code '%c' for object of type 'float'",
|
2014-03-31 00:06:50 -04:00
|
|
|
type, mp_obj_get_type_str(arg)));
|
|
|
|
}
|
|
|
|
} else {
|
2014-04-02 12:06:05 -04:00
|
|
|
// arg doesn't look like a number
|
|
|
|
|
2014-03-31 00:06:50 -04:00
|
|
|
if (align == '=') {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "'=' alignment not allowed in string format specifier"));
|
2014-03-31 00:06:50 -04:00
|
|
|
}
|
2014-04-02 12:06:05 -04:00
|
|
|
|
2014-03-31 00:06:50 -04:00
|
|
|
switch (type) {
|
|
|
|
case '\0':
|
|
|
|
mp_obj_print_helper((void (*)(void*, const char*, ...))vstr_printf, vstr, arg, PRINT_STR);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 's':
|
|
|
|
{
|
|
|
|
uint len;
|
|
|
|
const char *s = mp_obj_str_get_data(arg, &len);
|
|
|
|
if (precision < 0) {
|
|
|
|
precision = len;
|
|
|
|
}
|
|
|
|
if (len > precision) {
|
|
|
|
len = precision;
|
|
|
|
}
|
|
|
|
pfenv_print_strn(&pfenv_vstr, s, len, flags, fill, width);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError,
|
2014-06-05 13:57:38 -04:00
|
|
|
"unknown format code '%c' for object of type 'str'",
|
2014-03-31 00:06:50 -04:00
|
|
|
type, mp_obj_get_type_str(arg)));
|
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-25 17:27:57 -04:00
|
|
|
mp_obj_t s = mp_obj_new_str(vstr->buf, vstr->len, false);
|
2014-01-22 09:35:10 -05:00
|
|
|
vstr_free(vstr);
|
|
|
|
return s;
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
|
|
|
|
2014-06-05 13:02:15 -04:00
|
|
|
STATIC mp_obj_t str_modulo_format(mp_obj_t pattern, uint n_args, const mp_obj_t *args, mp_obj_t dict) {
|
2014-03-31 14:18:28 -04:00
|
|
|
assert(MP_OBJ_IS_STR(pattern));
|
|
|
|
|
|
|
|
GET_STR_DATA_LEN(pattern, str, len);
|
2014-04-02 14:42:39 -04:00
|
|
|
const byte *start_str = str;
|
2014-03-31 14:18:28 -04:00
|
|
|
int arg_i = 0;
|
|
|
|
vstr_t *vstr = vstr_new();
|
2014-04-02 14:42:39 -04:00
|
|
|
pfenv_t pfenv_vstr;
|
|
|
|
pfenv_vstr.data = vstr;
|
|
|
|
pfenv_vstr.print_strn = pfenv_vstr_add_strn;
|
|
|
|
|
2014-03-31 14:18:28 -04:00
|
|
|
for (const byte *top = str + len; str < top; str++) {
|
2014-06-05 13:02:15 -04:00
|
|
|
mp_obj_t arg = MP_OBJ_NULL;
|
2014-04-02 14:42:39 -04:00
|
|
|
if (*str != '%') {
|
|
|
|
vstr_add_char(vstr, *str);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (++str >= top) {
|
|
|
|
break;
|
|
|
|
}
|
2014-03-31 14:18:28 -04:00
|
|
|
if (*str == '%') {
|
2014-04-02 14:42:39 -04:00
|
|
|
vstr_add_char(vstr, '%');
|
|
|
|
continue;
|
|
|
|
}
|
2014-06-05 13:02:15 -04:00
|
|
|
|
|
|
|
// Dictionary value lookup
|
|
|
|
if (*str == '(') {
|
|
|
|
const byte *key = ++str;
|
|
|
|
while (*str != ')') {
|
|
|
|
if (str >= top) {
|
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "incomplete format key"));
|
|
|
|
}
|
|
|
|
++str;
|
|
|
|
}
|
|
|
|
mp_obj_t k_obj = mp_obj_new_str((const char*)key, str - key, true);
|
|
|
|
arg = mp_obj_dict_get(dict, k_obj);
|
|
|
|
str++;
|
2014-04-02 14:42:39 -04:00
|
|
|
}
|
2014-06-05 13:02:15 -04:00
|
|
|
|
2014-04-02 14:42:39 -04:00
|
|
|
int flags = 0;
|
|
|
|
char fill = ' ';
|
2014-06-05 13:57:38 -04:00
|
|
|
int alt = 0;
|
2014-04-02 14:42:39 -04:00
|
|
|
while (str < top) {
|
|
|
|
if (*str == '-') flags |= PF_FLAG_LEFT_ADJUST;
|
|
|
|
else if (*str == '+') flags |= PF_FLAG_SHOW_SIGN;
|
|
|
|
else if (*str == ' ') flags |= PF_FLAG_SPACE_SIGN;
|
2014-06-05 13:57:38 -04:00
|
|
|
else if (*str == '#') alt = PF_FLAG_SHOW_PREFIX;
|
2014-04-02 14:42:39 -04:00
|
|
|
else if (*str == '0') {
|
|
|
|
flags |= PF_FLAG_PAD_AFTER_SIGN;
|
|
|
|
fill = '0';
|
|
|
|
} else break;
|
|
|
|
str++;
|
|
|
|
}
|
|
|
|
// parse width, if it exists
|
2014-06-05 13:57:38 -04:00
|
|
|
int width = 0;
|
2014-04-02 14:42:39 -04:00
|
|
|
if (str < top) {
|
|
|
|
if (*str == '*') {
|
2014-06-05 13:02:15 -04:00
|
|
|
if (arg_i >= n_args) {
|
|
|
|
goto not_enough_args;
|
|
|
|
}
|
2014-04-02 14:42:39 -04:00
|
|
|
width = mp_obj_get_int(args[arg_i++]);
|
|
|
|
str++;
|
2014-03-31 14:18:28 -04:00
|
|
|
} else {
|
2014-04-02 14:42:39 -04:00
|
|
|
for (; str < top && '0' <= *str && *str <= '9'; str++) {
|
|
|
|
width = width * 10 + *str - '0';
|
2014-03-31 14:18:28 -04:00
|
|
|
}
|
2014-04-02 14:42:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
int prec = -1;
|
|
|
|
if (str < top && *str == '.') {
|
|
|
|
if (++str < top) {
|
|
|
|
if (*str == '*') {
|
2014-06-05 13:02:15 -04:00
|
|
|
if (arg_i >= n_args) {
|
|
|
|
goto not_enough_args;
|
|
|
|
}
|
2014-04-02 14:42:39 -04:00
|
|
|
prec = mp_obj_get_int(args[arg_i++]);
|
|
|
|
str++;
|
|
|
|
} else {
|
|
|
|
prec = 0;
|
|
|
|
for (; str < top && '0' <= *str && *str <= '9'; str++) {
|
|
|
|
prec = prec * 10 + *str - '0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (str >= top) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "incomplete format"));
|
2014-04-02 14:42:39 -04:00
|
|
|
}
|
2014-06-05 13:02:15 -04:00
|
|
|
|
|
|
|
// Tuple value lookup
|
|
|
|
if (arg == MP_OBJ_NULL) {
|
|
|
|
if (arg_i >= n_args) {
|
|
|
|
not_enough_args:
|
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "not enough arguments for format string"));
|
|
|
|
}
|
|
|
|
arg = args[arg_i++];
|
|
|
|
}
|
2014-04-02 14:42:39 -04:00
|
|
|
switch (*str) {
|
|
|
|
case 'c':
|
|
|
|
if (MP_OBJ_IS_STR(arg)) {
|
|
|
|
uint len;
|
|
|
|
const char *s = mp_obj_str_get_data(arg, &len);
|
|
|
|
if (len != 1) {
|
2014-06-05 13:57:38 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "%%c requires int or char"));
|
2014-03-31 14:18:28 -04:00
|
|
|
break;
|
2014-04-02 14:42:39 -04:00
|
|
|
}
|
|
|
|
pfenv_print_strn(&pfenv_vstr, s, 1, flags, ' ', width);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (arg_looks_integer(arg)) {
|
|
|
|
char ch = mp_obj_get_int(arg);
|
|
|
|
pfenv_print_strn(&pfenv_vstr, &ch, 1, flags, ' ', width);
|
|
|
|
break;
|
|
|
|
}
|
2014-06-01 08:32:54 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2014-04-02 14:42:39 -04:00
|
|
|
// This is what CPython reports, so we report the same.
|
|
|
|
if (MP_OBJ_IS_TYPE(arg, &mp_type_float)) {
|
2014-06-05 13:57:38 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "integer argument expected, got float"));
|
2014-04-02 14:42:39 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
2014-06-05 13:57:38 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "an integer is required"));
|
|
|
|
break;
|
2014-04-02 14:42:39 -04:00
|
|
|
|
|
|
|
case 'd':
|
|
|
|
case 'i':
|
|
|
|
case 'u':
|
2014-06-06 02:09:02 -04:00
|
|
|
pfenv_print_mp_int(&pfenv_vstr, arg_as_int(arg), 1, 10, 'a', flags, fill, width, prec);
|
2014-04-02 14:42:39 -04:00
|
|
|
break;
|
|
|
|
|
2014-06-01 08:32:54 -04:00
|
|
|
#if MICROPY_PY_BUILTINS_FLOAT
|
2014-04-02 14:42:39 -04:00
|
|
|
case 'e':
|
|
|
|
case 'E':
|
|
|
|
case 'f':
|
|
|
|
case 'F':
|
|
|
|
case 'g':
|
|
|
|
case 'G':
|
|
|
|
pfenv_print_float(&pfenv_vstr, mp_obj_get_float(arg), *str, flags, fill, width, prec);
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
case 'o':
|
|
|
|
if (alt) {
|
2014-04-07 14:19:51 -04:00
|
|
|
flags |= (PF_FLAG_SHOW_PREFIX | PF_FLAG_SHOW_OCTAL_LETTER);
|
2014-04-02 14:42:39 -04:00
|
|
|
}
|
2014-06-06 02:09:02 -04:00
|
|
|
pfenv_print_mp_int(&pfenv_vstr, arg, 1, 8, 'a', flags, fill, width, prec);
|
2014-04-02 14:42:39 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
case 's':
|
|
|
|
{
|
|
|
|
vstr_t *arg_vstr = vstr_new();
|
|
|
|
mp_obj_print_helper((void (*)(void*, const char*, ...))vstr_printf,
|
|
|
|
arg_vstr, arg, *str == 'r' ? PRINT_REPR : PRINT_STR);
|
|
|
|
uint len = vstr_len(arg_vstr);
|
|
|
|
if (prec < 0) {
|
|
|
|
prec = len;
|
|
|
|
}
|
|
|
|
if (len > prec) {
|
|
|
|
len = prec;
|
2014-03-31 14:18:28 -04:00
|
|
|
}
|
2014-04-02 14:42:39 -04:00
|
|
|
pfenv_print_strn(&pfenv_vstr, vstr_str(arg_vstr), len, flags, ' ', width);
|
|
|
|
vstr_free(arg_vstr);
|
|
|
|
break;
|
2014-03-31 14:18:28 -04:00
|
|
|
}
|
2014-04-02 14:42:39 -04:00
|
|
|
|
|
|
|
case 'X':
|
2014-06-05 13:57:38 -04:00
|
|
|
case 'x':
|
2014-06-06 02:09:02 -04:00
|
|
|
pfenv_print_mp_int(&pfenv_vstr, arg, 1, 16, *str - ('X' - 'A'), flags | alt, fill, width, prec);
|
2014-04-02 14:42:39 -04:00
|
|
|
break;
|
2014-04-06 06:11:15 -04:00
|
|
|
|
2014-04-02 14:42:39 -04:00
|
|
|
default:
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError,
|
2014-04-02 14:42:39 -04:00
|
|
|
"unsupported format character '%c' (0x%x) at index %d",
|
|
|
|
*str, *str, str - start_str));
|
2014-03-31 14:18:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arg_i != n_args) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "not all arguments converted during string formatting"));
|
2014-03-31 14:18:28 -04:00
|
|
|
}
|
|
|
|
|
2014-05-25 17:27:57 -04:00
|
|
|
mp_obj_t s = mp_obj_new_str(vstr->buf, vstr->len, false);
|
2014-03-31 14:18:28 -04:00
|
|
|
vstr_free(vstr);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t str_replace(uint n_args, const mp_obj_t *args) {
|
2014-01-31 01:17:30 -05:00
|
|
|
assert(MP_OBJ_IS_STR(args[0]));
|
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_int_t max_rep = -1;
|
2014-01-31 01:17:30 -05:00
|
|
|
if (n_args == 4) {
|
2014-04-06 19:39:13 -04:00
|
|
|
max_rep = mp_obj_get_int(args[3]);
|
2014-02-11 08:29:55 -05:00
|
|
|
if (max_rep == 0) {
|
|
|
|
return args[0];
|
|
|
|
} else if (max_rep < 0) {
|
2014-04-06 19:39:13 -04:00
|
|
|
max_rep = -1;
|
2014-02-11 08:29:55 -05:00
|
|
|
}
|
2014-01-31 01:17:30 -05:00
|
|
|
}
|
2014-01-31 18:45:12 -05:00
|
|
|
|
2014-04-07 17:46:39 -04:00
|
|
|
// if max_rep is still -1 by this point we will need to do all possible replacements
|
2014-01-31 01:17:30 -05:00
|
|
|
|
2014-04-06 19:39:13 -04:00
|
|
|
// check argument types
|
|
|
|
|
|
|
|
if (!MP_OBJ_IS_STR(args[1])) {
|
|
|
|
bad_implicit_conversion(args[1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!MP_OBJ_IS_STR(args[2])) {
|
|
|
|
bad_implicit_conversion(args[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// extract string data
|
|
|
|
|
2014-01-31 01:17:30 -05:00
|
|
|
GET_STR_DATA_LEN(args[0], str, str_len);
|
|
|
|
GET_STR_DATA_LEN(args[1], old, old_len);
|
|
|
|
GET_STR_DATA_LEN(args[2], new, new_len);
|
2014-01-31 18:45:12 -05:00
|
|
|
|
|
|
|
// old won't exist in str if it's longer, so nothing to replace
|
2014-01-31 01:17:30 -05:00
|
|
|
if (old_len > str_len) {
|
2014-02-11 08:29:55 -05:00
|
|
|
return args[0];
|
2014-01-31 01:17:30 -05:00
|
|
|
}
|
|
|
|
|
2014-01-31 18:45:12 -05:00
|
|
|
// data for the replaced string
|
|
|
|
byte *data = NULL;
|
|
|
|
mp_obj_t replaced_str = MP_OBJ_NULL;
|
|
|
|
|
|
|
|
// do 2 passes over the string:
|
|
|
|
// first pass computes the required length of the replaced string
|
|
|
|
// second pass does the replacements
|
|
|
|
for (;;) {
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_uint_t replaced_str_index = 0;
|
|
|
|
mp_uint_t num_replacements_done = 0;
|
2014-01-31 18:45:12 -05:00
|
|
|
const byte *old_occurrence;
|
|
|
|
const byte *offset_ptr = str;
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_uint_t str_len_remain = str_len;
|
2014-04-06 19:39:13 -04:00
|
|
|
if (old_len == 0) {
|
|
|
|
// if old_str is empty, copy new_str to start of replaced string
|
|
|
|
// copy the replacement string
|
|
|
|
if (data != NULL) {
|
|
|
|
memcpy(data, new, new_len);
|
|
|
|
}
|
|
|
|
replaced_str_index += new_len;
|
|
|
|
num_replacements_done++;
|
|
|
|
}
|
|
|
|
while (num_replacements_done != max_rep && str_len_remain > 0 && (old_occurrence = find_subbytes(offset_ptr, str_len_remain, old, old_len, 1)) != NULL) {
|
|
|
|
if (old_len == 0) {
|
|
|
|
old_occurrence += 1;
|
|
|
|
}
|
2014-01-31 18:45:12 -05:00
|
|
|
// copy from just after end of last occurrence of to-be-replaced string to right before start of next occurrence
|
|
|
|
if (data != NULL) {
|
|
|
|
memcpy(data + replaced_str_index, offset_ptr, old_occurrence - offset_ptr);
|
|
|
|
}
|
|
|
|
replaced_str_index += old_occurrence - offset_ptr;
|
|
|
|
// copy the replacement string
|
|
|
|
if (data != NULL) {
|
|
|
|
memcpy(data + replaced_str_index, new, new_len);
|
|
|
|
}
|
|
|
|
replaced_str_index += new_len;
|
|
|
|
offset_ptr = old_occurrence + old_len;
|
2014-04-06 19:39:13 -04:00
|
|
|
str_len_remain = str + str_len - offset_ptr;
|
2014-01-31 18:45:12 -05:00
|
|
|
num_replacements_done++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy from just after end of last occurrence of to-be-replaced string to end of old string
|
|
|
|
if (data != NULL) {
|
2014-04-06 19:39:13 -04:00
|
|
|
memcpy(data + replaced_str_index, offset_ptr, str_len_remain);
|
2014-01-31 18:45:12 -05:00
|
|
|
}
|
2014-04-06 19:39:13 -04:00
|
|
|
replaced_str_index += str_len_remain;
|
2014-01-31 18:45:12 -05:00
|
|
|
|
|
|
|
if (data == NULL) {
|
|
|
|
// first pass
|
|
|
|
if (num_replacements_done == 0) {
|
|
|
|
// no substr found, return original string
|
|
|
|
return args[0];
|
|
|
|
} else {
|
|
|
|
// substr found, allocate new string
|
|
|
|
replaced_str = mp_obj_str_builder_start(mp_obj_get_type(args[0]), replaced_str_index, &data);
|
2014-04-06 19:39:13 -04:00
|
|
|
assert(data != NULL);
|
2014-01-31 18:45:12 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// second pass, we are done
|
|
|
|
break;
|
|
|
|
}
|
2014-01-31 01:17:30 -05:00
|
|
|
}
|
2014-01-31 18:45:12 -05:00
|
|
|
|
2014-01-31 01:17:30 -05:00
|
|
|
return mp_obj_str_builder_end(replaced_str);
|
|
|
|
}
|
|
|
|
|
2014-03-13 01:57:16 -04:00
|
|
|
STATIC mp_obj_t str_count(uint n_args, const mp_obj_t *args) {
|
2014-06-13 23:06:36 -04:00
|
|
|
const mp_obj_type_t *self_type = mp_obj_get_type(args[0]);
|
2014-03-13 01:57:16 -04:00
|
|
|
assert(2 <= n_args && n_args <= 4);
|
|
|
|
assert(MP_OBJ_IS_STR(args[0]));
|
|
|
|
assert(MP_OBJ_IS_STR(args[1]));
|
|
|
|
|
|
|
|
GET_STR_DATA_LEN(args[0], haystack, haystack_len);
|
|
|
|
GET_STR_DATA_LEN(args[1], needle, needle_len);
|
|
|
|
|
2014-06-13 23:06:36 -04:00
|
|
|
const byte *start = haystack;
|
|
|
|
const byte *end = haystack + haystack_len;
|
2014-03-13 01:57:16 -04:00
|
|
|
if (n_args >= 3 && args[2] != mp_const_none) {
|
2014-06-13 23:06:36 -04:00
|
|
|
start = str_index_to_ptr(self_type, haystack, haystack_len, args[2], true);
|
2014-03-13 01:57:16 -04:00
|
|
|
}
|
|
|
|
if (n_args >= 4 && args[3] != mp_const_none) {
|
2014-06-13 23:06:36 -04:00
|
|
|
end = str_index_to_ptr(self_type, haystack, haystack_len, args[3], true);
|
2014-03-13 01:57:16 -04:00
|
|
|
}
|
|
|
|
|
2014-03-13 18:07:55 -04:00
|
|
|
// if needle_len is zero then we count each gap between characters as an occurrence
|
|
|
|
if (needle_len == 0) {
|
2014-06-28 16:14:30 -04:00
|
|
|
return MP_OBJ_NEW_SMALL_INT(unichar_charlen((const char*)start, end - start) + 1);
|
2014-03-13 01:57:16 -04:00
|
|
|
}
|
|
|
|
|
2014-03-13 18:07:55 -04:00
|
|
|
// count the occurrences
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_int_t num_occurrences = 0;
|
2014-06-13 23:06:36 -04:00
|
|
|
for (const byte *haystack_ptr = start; haystack_ptr + needle_len <= end;) {
|
|
|
|
if (memcmp(haystack_ptr, needle, needle_len) == 0) {
|
2014-03-13 03:29:15 -04:00
|
|
|
num_occurrences++;
|
2014-06-13 23:06:36 -04:00
|
|
|
haystack_ptr += needle_len;
|
|
|
|
} else {
|
|
|
|
haystack_ptr = utf8_next_char(haystack_ptr);
|
2014-03-13 03:29:15 -04:00
|
|
|
}
|
2014-03-13 01:57:16 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return MP_OBJ_NEW_SMALL_INT(num_occurrences);
|
|
|
|
}
|
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
STATIC mp_obj_t str_partitioner(mp_obj_t self_in, mp_obj_t arg, mp_int_t direction) {
|
2014-05-10 19:44:46 -04:00
|
|
|
if (!is_str_or_bytes(self_in)) {
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
mp_obj_type_t *self_type = mp_obj_get_type(self_in);
|
|
|
|
if (self_type != mp_obj_get_type(arg)) {
|
|
|
|
arg_type_mixup();
|
2014-03-18 03:06:29 -04:00
|
|
|
}
|
2014-03-21 16:39:40 -04:00
|
|
|
|
2014-03-18 03:06:29 -04:00
|
|
|
GET_STR_DATA_LEN(self_in, str, str_len);
|
|
|
|
GET_STR_DATA_LEN(arg, sep, sep_len);
|
|
|
|
|
|
|
|
if (sep_len == 0) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_ValueError, "empty separator"));
|
2014-03-18 03:06:29 -04:00
|
|
|
}
|
2014-03-21 16:39:40 -04:00
|
|
|
|
|
|
|
mp_obj_t result[] = {MP_OBJ_NEW_QSTR(MP_QSTR_), MP_OBJ_NEW_QSTR(MP_QSTR_), MP_OBJ_NEW_QSTR(MP_QSTR_)};
|
|
|
|
|
|
|
|
if (direction > 0) {
|
|
|
|
result[0] = self_in;
|
2014-03-21 04:12:26 -04:00
|
|
|
} else {
|
2014-03-21 16:39:40 -04:00
|
|
|
result[2] = self_in;
|
2014-03-21 04:12:26 -04:00
|
|
|
}
|
2014-03-18 03:06:29 -04:00
|
|
|
|
2014-03-24 02:31:58 -04:00
|
|
|
const byte *position_ptr = find_subbytes(str, str_len, sep, sep_len, direction);
|
|
|
|
if (position_ptr != NULL) {
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_uint_t position = position_ptr - str;
|
2014-05-25 17:34:34 -04:00
|
|
|
result[0] = mp_obj_new_str_of_type(self_type, str, position);
|
2014-03-24 02:31:58 -04:00
|
|
|
result[1] = arg;
|
2014-05-25 17:34:34 -04:00
|
|
|
result[2] = mp_obj_new_str_of_type(self_type, str + position + sep_len, str_len - position - sep_len);
|
2014-03-18 03:06:29 -04:00
|
|
|
}
|
2014-03-21 16:39:40 -04:00
|
|
|
|
2014-03-21 04:12:26 -04:00
|
|
|
return mp_obj_new_tuple(3, result);
|
2014-03-18 03:06:29 -04:00
|
|
|
}
|
|
|
|
|
2014-03-21 16:39:40 -04:00
|
|
|
STATIC mp_obj_t str_partition(mp_obj_t self_in, mp_obj_t arg) {
|
|
|
|
return str_partitioner(self_in, arg, 1);
|
2014-03-21 04:12:26 -04:00
|
|
|
}
|
2014-03-19 03:46:14 -04:00
|
|
|
|
2014-03-21 16:39:40 -04:00
|
|
|
STATIC mp_obj_t str_rpartition(mp_obj_t self_in, mp_obj_t arg) {
|
|
|
|
return str_partitioner(self_in, arg, -1);
|
2014-03-19 03:46:14 -04:00
|
|
|
}
|
|
|
|
|
2014-05-10 12:47:41 -04:00
|
|
|
// Supposedly not too critical operations, so optimize for code size
|
2014-06-01 13:22:09 -04:00
|
|
|
STATIC mp_obj_t str_caseconv(unichar (*op)(unichar), mp_obj_t self_in) {
|
2014-05-10 12:47:41 -04:00
|
|
|
GET_STR_DATA_LEN(self_in, self_data, self_len);
|
|
|
|
byte *data;
|
|
|
|
mp_obj_t s = mp_obj_str_builder_start(mp_obj_get_type(self_in), self_len, &data);
|
|
|
|
for (int i = 0; i < self_len; i++) {
|
2014-06-01 13:22:09 -04:00
|
|
|
*data++ = op(*self_data++);
|
2014-05-10 12:47:41 -04:00
|
|
|
}
|
|
|
|
*data = 0;
|
|
|
|
return mp_obj_str_builder_end(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_lower(mp_obj_t self_in) {
|
2014-06-01 13:22:09 -04:00
|
|
|
return str_caseconv(unichar_tolower, self_in);
|
2014-05-10 12:47:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_upper(mp_obj_t self_in) {
|
2014-06-01 13:22:09 -04:00
|
|
|
return str_caseconv(unichar_toupper, self_in);
|
2014-05-10 12:47:41 -04:00
|
|
|
}
|
|
|
|
|
2014-06-01 13:22:09 -04:00
|
|
|
STATIC mp_obj_t str_uni_istype(bool (*f)(unichar), mp_obj_t self_in) {
|
2014-05-31 02:30:03 -04:00
|
|
|
GET_STR_DATA_LEN(self_in, self_data, self_len);
|
2014-05-31 04:00:25 -04:00
|
|
|
|
2014-05-31 03:59:34 -04:00
|
|
|
if (self_len == 0) {
|
|
|
|
return mp_const_false; // default to False for empty str
|
|
|
|
}
|
2014-05-31 04:00:25 -04:00
|
|
|
|
2014-06-01 13:22:09 -04:00
|
|
|
if (f != unichar_isupper && f != unichar_islower) {
|
2014-05-31 02:30:03 -04:00
|
|
|
for (int i = 0; i < self_len; i++) {
|
2014-05-31 03:59:34 -04:00
|
|
|
if (!f(*self_data++)) {
|
|
|
|
return mp_const_false;
|
|
|
|
}
|
2014-05-31 02:30:03 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bool contains_alpha = false;
|
2014-05-31 04:00:25 -04:00
|
|
|
|
2014-05-31 02:30:03 -04:00
|
|
|
for (int i = 0; i < self_len; i++) { // only check alphanumeric characters
|
|
|
|
if (unichar_isalpha(*self_data++)) {
|
|
|
|
contains_alpha = true;
|
2014-06-01 13:22:09 -04:00
|
|
|
if (!f(*(self_data - 1))) { // -1 because we already incremented above
|
|
|
|
return mp_const_false;
|
2014-05-31 03:59:34 -04:00
|
|
|
}
|
2014-05-31 02:30:03 -04:00
|
|
|
}
|
|
|
|
}
|
2014-05-31 04:00:25 -04:00
|
|
|
|
2014-05-31 03:59:34 -04:00
|
|
|
if (!contains_alpha) {
|
|
|
|
return mp_const_false;
|
|
|
|
}
|
2014-05-31 02:30:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return mp_const_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_isspace(mp_obj_t self_in) {
|
2014-06-01 13:22:09 -04:00
|
|
|
return str_uni_istype(unichar_isspace, self_in);
|
2014-05-31 02:30:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_isalpha(mp_obj_t self_in) {
|
2014-06-01 13:22:09 -04:00
|
|
|
return str_uni_istype(unichar_isalpha, self_in);
|
2014-05-31 02:30:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_isdigit(mp_obj_t self_in) {
|
2014-06-01 13:22:09 -04:00
|
|
|
return str_uni_istype(unichar_isdigit, self_in);
|
2014-05-31 02:30:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_isupper(mp_obj_t self_in) {
|
2014-06-01 13:22:09 -04:00
|
|
|
return str_uni_istype(unichar_isupper, self_in);
|
2014-05-31 02:30:03 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
STATIC mp_obj_t str_islower(mp_obj_t self_in) {
|
2014-06-01 13:22:09 -04:00
|
|
|
return str_uni_istype(unichar_islower, self_in);
|
2014-05-31 02:30:03 -04:00
|
|
|
}
|
|
|
|
|
2014-04-12 22:28:46 -04:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
|
|
|
// These methods are superfluous in the presense of str() and bytes()
|
|
|
|
// constructors.
|
|
|
|
// TODO: should accept kwargs too
|
|
|
|
STATIC mp_obj_t bytes_decode(uint n_args, const mp_obj_t *args) {
|
|
|
|
mp_obj_t new_args[2];
|
|
|
|
if (n_args == 1) {
|
|
|
|
new_args[0] = args[0];
|
|
|
|
new_args[1] = MP_OBJ_NEW_QSTR(MP_QSTR_utf_hyphen_8);
|
|
|
|
args = new_args;
|
|
|
|
n_args++;
|
|
|
|
}
|
|
|
|
return str_make_new(NULL, n_args, 0, args);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: should accept kwargs too
|
|
|
|
STATIC mp_obj_t str_encode(uint n_args, const mp_obj_t *args) {
|
|
|
|
mp_obj_t new_args[2];
|
|
|
|
if (n_args == 1) {
|
|
|
|
new_args[0] = args[0];
|
|
|
|
new_args[1] = MP_OBJ_NEW_QSTR(MP_QSTR_utf_hyphen_8);
|
|
|
|
args = new_args;
|
|
|
|
n_args++;
|
|
|
|
}
|
|
|
|
return bytes_make_new(NULL, n_args, 0, args);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_int_t mp_obj_str_get_buffer(mp_obj_t self_in, mp_buffer_info_t *bufinfo, int flags) {
|
2014-04-18 17:29:21 -04:00
|
|
|
if (flags == MP_BUFFER_READ) {
|
2014-03-09 15:58:18 -04:00
|
|
|
GET_STR_DATA_LEN(self_in, str_data, str_len);
|
|
|
|
bufinfo->buf = (void*)str_data;
|
|
|
|
bufinfo->len = str_len;
|
2014-04-18 17:29:21 -04:00
|
|
|
bufinfo->typecode = 'b';
|
2014-03-09 15:58:18 -04:00
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
// can't write to a string
|
|
|
|
bufinfo->buf = NULL;
|
|
|
|
bufinfo->len = 0;
|
2014-04-18 17:29:21 -04:00
|
|
|
bufinfo->typecode = -1;
|
2014-03-09 15:58:18 -04:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-12 22:28:46 -04:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
2014-06-13 15:01:26 -04:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(bytes_decode_obj, 1, 3, bytes_decode);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_encode_obj, 1, 3, str_encode);
|
2014-04-12 22:28:46 -04:00
|
|
|
#endif
|
2014-06-13 15:01:26 -04:00
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_find_obj, 2, 4, str_find);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_rfind_obj, 2, 4, str_rfind);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_index_obj, 2, 4, str_index);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_rindex_obj, 2, 4, str_rindex);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_2(str_join_obj, str_join);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_split_obj, 1, 3, str_split);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_rsplit_obj, 1, 3, str_rsplit);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_startswith_obj, 2, 3, str_startswith);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_endswith_obj, 2, 3, str_endswith);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_strip_obj, 1, 2, str_strip);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_lstrip_obj, 1, 2, str_lstrip);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_rstrip_obj, 1, 2, str_rstrip);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR(str_format_obj, 1, mp_obj_str_format);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_replace_obj, 3, 4, str_replace);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(str_count_obj, 2, 4, str_count);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_2(str_partition_obj, str_partition);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_2(str_rpartition_obj, str_rpartition);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(str_lower_obj, str_lower);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(str_upper_obj, str_upper);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(str_isspace_obj, str_isspace);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(str_isalpha_obj, str_isalpha);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(str_isdigit_obj, str_isdigit);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(str_isupper_obj, str_isupper);
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(str_islower_obj, str_islower);
|
2013-12-21 13:17:45 -05:00
|
|
|
|
2014-03-26 17:47:19 -04:00
|
|
|
STATIC const mp_map_elem_t str_locals_dict_table[] = {
|
2014-04-12 22:28:46 -04:00
|
|
|
#if MICROPY_CPYTHON_COMPAT
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_decode), (mp_obj_t)&bytes_decode_obj },
|
2014-06-13 15:41:45 -04:00
|
|
|
#if !MICROPY_PY_BUILTINS_STR_UNICODE
|
|
|
|
// If we have separate unicode type, then here we have methods only
|
|
|
|
// for bytes type, and it should not have encode() methods. Otherwise,
|
|
|
|
// we have non-compliant-but-practical bytestring type, which shares
|
|
|
|
// method table with bytes, so they both have encode() and decode()
|
|
|
|
// methods (which should do type checking at runtime).
|
2014-04-12 22:28:46 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_encode), (mp_obj_t)&str_encode_obj },
|
2014-06-13 15:41:45 -04:00
|
|
|
#endif
|
2014-04-12 22:28:46 -04:00
|
|
|
#endif
|
2014-03-26 17:47:19 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_find), (mp_obj_t)&str_find_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_rfind), (mp_obj_t)&str_rfind_obj },
|
2014-04-08 14:42:19 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_index), (mp_obj_t)&str_index_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_rindex), (mp_obj_t)&str_rindex_obj },
|
2014-03-26 17:47:19 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_join), (mp_obj_t)&str_join_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_split), (mp_obj_t)&str_split_obj },
|
2014-05-13 01:07:08 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_rsplit), (mp_obj_t)&str_rsplit_obj },
|
2014-03-26 17:47:19 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_startswith), (mp_obj_t)&str_startswith_obj },
|
2014-05-24 15:46:51 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_endswith), (mp_obj_t)&str_endswith_obj },
|
2014-03-26 17:47:19 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_strip), (mp_obj_t)&str_strip_obj },
|
2014-04-25 23:20:08 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_lstrip), (mp_obj_t)&str_lstrip_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_rstrip), (mp_obj_t)&str_rstrip_obj },
|
2014-03-26 17:47:19 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_format), (mp_obj_t)&str_format_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_replace), (mp_obj_t)&str_replace_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_count), (mp_obj_t)&str_count_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_partition), (mp_obj_t)&str_partition_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_rpartition), (mp_obj_t)&str_rpartition_obj },
|
2014-05-10 12:47:41 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_lower), (mp_obj_t)&str_lower_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_upper), (mp_obj_t)&str_upper_obj },
|
2014-05-31 02:30:03 -04:00
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_isspace), (mp_obj_t)&str_isspace_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_isalpha), (mp_obj_t)&str_isalpha_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_isdigit), (mp_obj_t)&str_isdigit_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_isupper), (mp_obj_t)&str_isupper_obj },
|
|
|
|
{ MP_OBJ_NEW_QSTR(MP_QSTR_islower), (mp_obj_t)&str_islower_obj },
|
2014-01-06 12:52:29 -05:00
|
|
|
};
|
2014-01-07 10:58:30 -05:00
|
|
|
|
2014-03-26 17:47:19 -04:00
|
|
|
STATIC MP_DEFINE_CONST_DICT(str_locals_dict, str_locals_dict_table);
|
|
|
|
|
2014-06-13 15:41:45 -04:00
|
|
|
#if !MICROPY_PY_BUILTINS_STR_UNICODE
|
2014-03-29 09:43:38 -04:00
|
|
|
const mp_obj_type_t mp_type_str = {
|
2014-02-15 11:10:44 -05:00
|
|
|
{ &mp_type_type },
|
2014-02-15 06:34:50 -05:00
|
|
|
.name = MP_QSTR_str,
|
2014-01-05 15:34:09 -05:00
|
|
|
.print = str_print,
|
2014-03-21 05:39:01 -04:00
|
|
|
.make_new = str_make_new,
|
2014-06-28 05:27:23 -04:00
|
|
|
.binary_op = mp_obj_str_binary_op,
|
2014-08-11 15:36:38 -04:00
|
|
|
.subscr = bytes_subscr,
|
2014-01-24 15:50:40 -05:00
|
|
|
.getiter = mp_obj_new_str_iterator,
|
2014-06-28 05:27:23 -04:00
|
|
|
.buffer_p = { .get_buffer = mp_obj_str_get_buffer },
|
2014-03-26 17:47:19 -04:00
|
|
|
.locals_dict = (mp_obj_t)&str_locals_dict,
|
2014-01-24 15:50:40 -05:00
|
|
|
};
|
2014-06-13 15:41:45 -04:00
|
|
|
#endif
|
2014-01-24 15:50:40 -05:00
|
|
|
|
|
|
|
// Reuses most of methods from str
|
2014-03-29 09:43:38 -04:00
|
|
|
const mp_obj_type_t mp_type_bytes = {
|
2014-02-15 11:10:44 -05:00
|
|
|
{ &mp_type_type },
|
2014-02-15 06:34:50 -05:00
|
|
|
.name = MP_QSTR_bytes,
|
2014-01-24 15:50:40 -05:00
|
|
|
.print = str_print,
|
2014-03-21 17:46:59 -04:00
|
|
|
.make_new = bytes_make_new,
|
2014-06-28 05:27:23 -04:00
|
|
|
.binary_op = mp_obj_str_binary_op,
|
2014-08-11 15:36:38 -04:00
|
|
|
.subscr = bytes_subscr,
|
2014-01-24 15:50:40 -05:00
|
|
|
.getiter = mp_obj_new_bytes_iterator,
|
2014-06-28 05:27:23 -04:00
|
|
|
.buffer_p = { .get_buffer = mp_obj_str_get_buffer },
|
2014-03-26 17:47:19 -04:00
|
|
|
.locals_dict = (mp_obj_t)&str_locals_dict,
|
2013-12-21 13:17:45 -05:00
|
|
|
};
|
|
|
|
|
2014-03-21 17:46:59 -04:00
|
|
|
// the zero-length bytes
|
2014-03-29 09:43:38 -04:00
|
|
|
STATIC const mp_obj_str_t empty_bytes_obj = {{&mp_type_bytes}, 0, 0, NULL};
|
2014-03-21 17:46:59 -04:00
|
|
|
const mp_obj_t mp_const_empty_bytes = (mp_obj_t)&empty_bytes_obj;
|
|
|
|
|
2014-01-24 15:50:40 -05:00
|
|
|
mp_obj_t mp_obj_str_builder_start(const mp_obj_type_t *type, uint len, byte **data) {
|
2014-03-20 10:47:44 -04:00
|
|
|
mp_obj_str_t *o = m_new_obj(mp_obj_str_t);
|
2014-01-24 15:50:40 -05:00
|
|
|
o->base.type = type;
|
2014-01-22 09:35:10 -05:00
|
|
|
o->len = len;
|
2014-04-18 20:09:17 -04:00
|
|
|
o->hash = 0;
|
2014-03-20 10:47:44 -04:00
|
|
|
byte *p = m_new(byte, len + 1);
|
|
|
|
o->data = p;
|
|
|
|
*data = p;
|
2014-01-22 09:35:10 -05:00
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_str_builder_end(mp_obj_t o_in) {
|
|
|
|
mp_obj_str_t *o = o_in;
|
|
|
|
o->hash = qstr_compute_hash(o->data, o->len);
|
2014-03-20 10:47:44 -04:00
|
|
|
byte *p = (byte*)o->data;
|
|
|
|
p[o->len] = '\0'; // for now we add null for compatibility with C ASCIIZ strings
|
2013-12-21 13:17:45 -05:00
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-07-31 05:29:56 -04:00
|
|
|
mp_obj_t mp_obj_str_builder_end_with_len(mp_obj_t o_in, mp_uint_t len) {
|
|
|
|
mp_obj_str_t *o = o_in;
|
|
|
|
o->data = m_renew(byte, (byte*)o->data, o->len + 1, len + 1);
|
|
|
|
o->len = len;
|
|
|
|
o->hash = qstr_compute_hash(o->data, o->len);
|
|
|
|
byte *p = (byte*)o->data;
|
|
|
|
p[o->len] = '\0'; // for now we add null for compatibility with C ASCIIZ strings
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-05-25 17:34:34 -04:00
|
|
|
mp_obj_t mp_obj_new_str_of_type(const mp_obj_type_t *type, const byte* data, uint len) {
|
2014-03-20 10:47:44 -04:00
|
|
|
mp_obj_str_t *o = m_new_obj(mp_obj_str_t);
|
2014-01-24 15:50:40 -05:00
|
|
|
o->base.type = type;
|
|
|
|
o->len = len;
|
2014-03-20 10:47:44 -04:00
|
|
|
if (data) {
|
|
|
|
o->hash = qstr_compute_hash(data, len);
|
|
|
|
byte *p = m_new(byte, len + 1);
|
|
|
|
o->data = p;
|
|
|
|
memcpy(p, data, len * sizeof(byte));
|
|
|
|
p[len] = '\0'; // for now we add null for compatibility with C ASCIIZ strings
|
|
|
|
}
|
2014-01-24 15:50:40 -05:00
|
|
|
return o;
|
|
|
|
}
|
|
|
|
|
2014-05-25 17:27:57 -04:00
|
|
|
mp_obj_t mp_obj_new_str(const char* data, uint len, bool make_qstr_if_not_already) {
|
2014-05-25 17:34:34 -04:00
|
|
|
if (make_qstr_if_not_already) {
|
|
|
|
// use existing, or make a new qstr
|
2014-05-25 17:27:57 -04:00
|
|
|
return MP_OBJ_NEW_QSTR(qstr_from_strn(data, len));
|
2014-01-22 09:35:10 -05:00
|
|
|
} else {
|
2014-05-25 17:34:34 -04:00
|
|
|
qstr q = qstr_find_strn(data, len);
|
|
|
|
if (q != MP_QSTR_NULL) {
|
|
|
|
// qstr with this data already exists
|
|
|
|
return MP_OBJ_NEW_QSTR(q);
|
|
|
|
} else {
|
|
|
|
// no existing qstr, don't make one
|
|
|
|
return mp_obj_new_str_of_type(&mp_type_str, (const byte*)data, len);
|
|
|
|
}
|
2014-01-22 09:35:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-07 18:13:35 -04:00
|
|
|
mp_obj_t mp_obj_str_intern(mp_obj_t str) {
|
|
|
|
GET_STR_DATA_LEN(str, data, len);
|
|
|
|
return MP_OBJ_NEW_QSTR(qstr_from_strn((const char*)data, len));
|
|
|
|
}
|
|
|
|
|
2014-01-24 15:50:40 -05:00
|
|
|
mp_obj_t mp_obj_new_bytes(const byte* data, uint len) {
|
2014-05-25 17:34:34 -04:00
|
|
|
return mp_obj_new_str_of_type(&mp_type_bytes, data, len);
|
2014-01-24 15:50:40 -05:00
|
|
|
}
|
|
|
|
|
2014-01-22 09:35:10 -05:00
|
|
|
bool mp_obj_str_equal(mp_obj_t s1, mp_obj_t s2) {
|
|
|
|
if (MP_OBJ_IS_QSTR(s1) && MP_OBJ_IS_QSTR(s2)) {
|
|
|
|
return s1 == s2;
|
|
|
|
} else {
|
|
|
|
GET_STR_HASH(s1, h1);
|
|
|
|
GET_STR_HASH(s2, h2);
|
2014-04-13 18:43:01 -04:00
|
|
|
// If any of hashes is 0, it means it's not valid
|
|
|
|
if (h1 != 0 && h2 != 0 && h1 != h2) {
|
2014-01-22 09:35:10 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
GET_STR_DATA_LEN(s1, d1, l1);
|
|
|
|
GET_STR_DATA_LEN(s2, d2, l2);
|
|
|
|
if (l1 != l2) {
|
|
|
|
return false;
|
|
|
|
}
|
2014-01-23 13:27:51 -05:00
|
|
|
return memcmp(d1, d2, l1) == 0;
|
2014-01-22 09:35:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-06 06:11:15 -04:00
|
|
|
STATIC void bad_implicit_conversion(mp_obj_t self_in) {
|
2014-04-05 13:32:08 -04:00
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_TypeError, "Can't convert '%s' object to str implicitly", mp_obj_get_type_str(self_in)));
|
2014-01-25 08:51:19 -05:00
|
|
|
}
|
|
|
|
|
2014-05-10 19:44:46 -04:00
|
|
|
STATIC void arg_type_mixup() {
|
|
|
|
nlr_raise(mp_obj_new_exception_msg(&mp_type_TypeError, "Can't mix str and bytes arguments"));
|
|
|
|
}
|
|
|
|
|
2014-01-22 09:35:10 -05:00
|
|
|
uint mp_obj_str_get_hash(mp_obj_t self_in) {
|
2014-04-12 22:41:00 -04:00
|
|
|
// TODO: This has too big overhead for hash accessor
|
|
|
|
if (MP_OBJ_IS_STR(self_in) || MP_OBJ_IS_TYPE(self_in, &mp_type_bytes)) {
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_HASH(self_in, h);
|
|
|
|
return h;
|
|
|
|
} else {
|
2014-01-25 08:51:19 -05:00
|
|
|
bad_implicit_conversion(self_in);
|
2014-01-20 16:33:19 -05:00
|
|
|
}
|
2014-01-22 09:35:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
uint mp_obj_str_get_len(mp_obj_t self_in) {
|
2014-04-15 18:10:00 -04:00
|
|
|
// TODO This has a double check for the type, one in obj.c and one here
|
|
|
|
if (MP_OBJ_IS_STR(self_in) || MP_OBJ_IS_TYPE(self_in, &mp_type_bytes)) {
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_LEN(self_in, l);
|
|
|
|
return l;
|
|
|
|
} else {
|
2014-01-25 08:51:19 -05:00
|
|
|
bad_implicit_conversion(self_in);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// use this if you will anyway convert the string to a qstr
|
|
|
|
// will be more efficient for the case where it's already a qstr
|
|
|
|
qstr mp_obj_str_get_qstr(mp_obj_t self_in) {
|
|
|
|
if (MP_OBJ_IS_QSTR(self_in)) {
|
|
|
|
return MP_OBJ_QSTR_VALUE(self_in);
|
2014-03-29 09:43:38 -04:00
|
|
|
} else if (MP_OBJ_IS_TYPE(self_in, &mp_type_str)) {
|
2014-01-25 08:51:19 -05:00
|
|
|
mp_obj_str_t *self = self_in;
|
|
|
|
return qstr_from_strn((char*)self->data, self->len);
|
|
|
|
} else {
|
|
|
|
bad_implicit_conversion(self_in);
|
2014-01-22 09:35:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// only use this function if you need the str data to be zero terminated
|
|
|
|
// at the moment all strings are zero terminated to help with C ASCIIZ compatibility
|
|
|
|
const char *mp_obj_str_get_str(mp_obj_t self_in) {
|
|
|
|
if (MP_OBJ_IS_STR(self_in)) {
|
|
|
|
GET_STR_DATA_LEN(self_in, s, l);
|
|
|
|
(void)l; // len unused
|
|
|
|
return (const char*)s;
|
|
|
|
} else {
|
2014-01-25 08:51:19 -05:00
|
|
|
bad_implicit_conversion(self_in);
|
2014-01-22 09:35:10 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-08 13:17:23 -05:00
|
|
|
const char *mp_obj_str_get_data(mp_obj_t self_in, uint *len) {
|
2014-05-11 06:51:24 -04:00
|
|
|
if (is_str_or_bytes(self_in)) {
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(self_in, s, l);
|
|
|
|
*len = l;
|
2014-02-08 13:17:23 -05:00
|
|
|
return (const char*)s;
|
2014-01-22 09:35:10 -05:00
|
|
|
} else {
|
2014-01-25 08:51:19 -05:00
|
|
|
bad_implicit_conversion(self_in);
|
2014-01-20 16:33:19 -05:00
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
}
|
2014-01-05 05:47:51 -05:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
/* str iterator */
|
|
|
|
|
|
|
|
typedef struct _mp_obj_str_it_t {
|
|
|
|
mp_obj_base_t base;
|
2014-01-22 09:35:10 -05:00
|
|
|
mp_obj_t str;
|
2014-07-03 08:25:24 -04:00
|
|
|
mp_uint_t cur;
|
2014-01-05 05:47:51 -05:00
|
|
|
} mp_obj_str_it_t;
|
|
|
|
|
2014-06-13 15:41:45 -04:00
|
|
|
#if !MICROPY_PY_BUILTINS_STR_UNICODE
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t str_it_iternext(mp_obj_t self_in) {
|
2014-01-05 05:47:51 -05:00
|
|
|
mp_obj_str_it_t *self = self_in;
|
2014-01-22 09:35:10 -05:00
|
|
|
GET_STR_DATA_LEN(self->str, str, len);
|
|
|
|
if (self->cur < len) {
|
2014-05-25 17:27:57 -04:00
|
|
|
mp_obj_t o_out = mp_obj_new_str((const char*)str + self->cur, 1, true);
|
2014-01-05 05:47:51 -05:00
|
|
|
self->cur += 1;
|
|
|
|
return o_out;
|
|
|
|
} else {
|
2014-04-17 18:19:36 -04:00
|
|
|
return MP_OBJ_STOP_ITERATION;
|
2014-01-05 05:47:51 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-29 09:43:38 -04:00
|
|
|
STATIC const mp_obj_type_t mp_type_str_it = {
|
2014-02-15 11:10:44 -05:00
|
|
|
{ &mp_type_type },
|
2014-02-15 06:34:50 -05:00
|
|
|
.name = MP_QSTR_iterator,
|
2014-03-30 15:00:12 -04:00
|
|
|
.getiter = mp_identity,
|
2014-01-05 15:34:09 -05:00
|
|
|
.iternext = str_it_iternext,
|
2014-01-05 05:47:51 -05:00
|
|
|
};
|
|
|
|
|
2014-06-13 15:41:45 -04:00
|
|
|
mp_obj_t mp_obj_new_str_iterator(mp_obj_t str) {
|
|
|
|
mp_obj_str_it_t *o = m_new_obj(mp_obj_str_it_t);
|
|
|
|
o->base.type = &mp_type_str_it;
|
|
|
|
o->str = str;
|
|
|
|
o->cur = 0;
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-02-12 11:15:40 -05:00
|
|
|
STATIC mp_obj_t bytes_it_iternext(mp_obj_t self_in) {
|
2014-01-24 15:50:40 -05:00
|
|
|
mp_obj_str_it_t *self = self_in;
|
|
|
|
GET_STR_DATA_LEN(self->str, str, len);
|
|
|
|
if (self->cur < len) {
|
2014-07-31 05:49:14 -04:00
|
|
|
mp_obj_t o_out = MP_OBJ_NEW_SMALL_INT(str[self->cur]);
|
2014-01-24 15:50:40 -05:00
|
|
|
self->cur += 1;
|
|
|
|
return o_out;
|
|
|
|
} else {
|
2014-04-17 18:19:36 -04:00
|
|
|
return MP_OBJ_STOP_ITERATION;
|
2014-01-24 15:50:40 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-29 09:43:38 -04:00
|
|
|
STATIC const mp_obj_type_t mp_type_bytes_it = {
|
2014-02-15 11:10:44 -05:00
|
|
|
{ &mp_type_type },
|
2014-02-15 06:34:50 -05:00
|
|
|
.name = MP_QSTR_iterator,
|
2014-03-30 15:00:12 -04:00
|
|
|
.getiter = mp_identity,
|
2014-01-24 15:50:40 -05:00
|
|
|
.iternext = bytes_it_iternext,
|
|
|
|
};
|
|
|
|
|
|
|
|
mp_obj_t mp_obj_new_bytes_iterator(mp_obj_t str) {
|
|
|
|
mp_obj_str_it_t *o = m_new_obj(mp_obj_str_it_t);
|
2014-03-29 09:43:38 -04:00
|
|
|
o->base.type = &mp_type_bytes_it;
|
2014-01-24 15:50:40 -05:00
|
|
|
o->str = str;
|
|
|
|
o->cur = 0;
|
2014-01-05 05:47:51 -05:00
|
|
|
return o;
|
|
|
|
}
|