blob: 6818b4603e2e1c6025be2654694902d8c079acdc [file] [log] [blame]
Damien George04b91472014-05-03 23:27:38 +01001/*
2 * This file is part of the Micro Python project, http://micropython.org/
3 *
4 * The MIT License (MIT)
5 *
6 * Copyright (c) 2013, 2014 Damien P. George
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this software and associated documentation files (the "Software"), to deal
10 * in the Software without restriction, including without limitation the rights
11 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 * copies of the Software, and to permit persons to whom the Software is
13 * furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 * THE SOFTWARE.
25 */
26
Paul Sokolovsky58676fc2014-04-14 01:45:06 +030027typedef struct _mp_obj_str_t {
28 mp_obj_base_t base;
29 // XXX here we assume the hash size is 16 bits (it is at the moment; see qstr.c)
Damien George40f3c022014-07-03 13:25:24 +010030 mp_uint_t hash : 16;
Paul Sokolovsky58676fc2014-04-14 01:45:06 +030031 // len == number of bytes used in data, alloc = len + 1 because (at the moment) we also append a null byte
Damien George40f3c022014-07-03 13:25:24 +010032 mp_uint_t len : 16;
Paul Sokolovsky58676fc2014-04-14 01:45:06 +030033 const byte *data;
34} mp_obj_str_t;
35
36#define MP_DEFINE_STR_OBJ(obj_name, str) mp_obj_str_t obj_name = {{&mp_type_str}, 0, sizeof(str) - 1, (const byte*)str};
Damien George897fe0c2014-04-15 22:03:55 +010037
Paul Sokolovsky97319122014-06-13 22:01:26 +030038// use this macro to extract the string hash
39#define GET_STR_HASH(str_obj_in, str_hash) \
40 uint str_hash; if (MP_OBJ_IS_QSTR(str_obj_in)) \
41 { str_hash = qstr_hash(MP_OBJ_QSTR_VALUE(str_obj_in)); } else { str_hash = ((mp_obj_str_t*)str_obj_in)->hash; }
42
43// use this macro to extract the string length
44#define GET_STR_LEN(str_obj_in, str_len) \
45 uint str_len; if (MP_OBJ_IS_QSTR(str_obj_in)) \
46 { str_len = qstr_len(MP_OBJ_QSTR_VALUE(str_obj_in)); } else { str_len = ((mp_obj_str_t*)str_obj_in)->len; }
47
48// use this macro to extract the string data and length
49#define GET_STR_DATA_LEN(str_obj_in, str_data, str_len) \
50 const byte *str_data; uint str_len; if (MP_OBJ_IS_QSTR(str_obj_in)) \
51 { str_data = qstr_data(MP_OBJ_QSTR_VALUE(str_obj_in), &str_len); } \
52 else { str_len = ((mp_obj_str_t*)str_obj_in)->len; str_data = ((mp_obj_str_t*)str_obj_in)->data; }
53
Damien George897fe0c2014-04-15 22:03:55 +010054mp_obj_t mp_obj_str_format(uint n_args, const mp_obj_t *args);
Damien Georgef600a6a2014-05-25 22:34:34 +010055mp_obj_t mp_obj_new_str_of_type(const mp_obj_type_t *type, const byte* data, uint len);
Paul Sokolovsky97319122014-06-13 22:01:26 +030056
Damien Georgee04a44e2014-06-28 10:27:23 +010057mp_obj_t mp_obj_str_binary_op(int op, mp_obj_t lhs_in, mp_obj_t rhs_in);
Damien George40f3c022014-07-03 13:25:24 +010058mp_int_t mp_obj_str_get_buffer(mp_obj_t self_in, mp_buffer_info_t *bufinfo, int flags);
Paul Sokolovsky97319122014-06-13 22:01:26 +030059
Paul Sokolovskyea2c9362014-06-15 00:35:09 +030060const byte *str_index_to_ptr(const mp_obj_type_t *type, const byte *self_data, uint self_len,
61 mp_obj_t index, bool is_slice);
62
Paul Sokolovsky97319122014-06-13 22:01:26 +030063MP_DECLARE_CONST_FUN_OBJ(str_encode_obj);
64MP_DECLARE_CONST_FUN_OBJ(str_find_obj);
65MP_DECLARE_CONST_FUN_OBJ(str_rfind_obj);
66MP_DECLARE_CONST_FUN_OBJ(str_index_obj);
67MP_DECLARE_CONST_FUN_OBJ(str_rindex_obj);
68MP_DECLARE_CONST_FUN_OBJ(str_join_obj);
69MP_DECLARE_CONST_FUN_OBJ(str_split_obj);
70MP_DECLARE_CONST_FUN_OBJ(str_rsplit_obj);
71MP_DECLARE_CONST_FUN_OBJ(str_startswith_obj);
72MP_DECLARE_CONST_FUN_OBJ(str_endswith_obj);
73MP_DECLARE_CONST_FUN_OBJ(str_strip_obj);
74MP_DECLARE_CONST_FUN_OBJ(str_lstrip_obj);
75MP_DECLARE_CONST_FUN_OBJ(str_rstrip_obj);
76MP_DECLARE_CONST_FUN_OBJ(str_format_obj);
77MP_DECLARE_CONST_FUN_OBJ(str_replace_obj);
78MP_DECLARE_CONST_FUN_OBJ(str_count_obj);
79MP_DECLARE_CONST_FUN_OBJ(str_partition_obj);
80MP_DECLARE_CONST_FUN_OBJ(str_rpartition_obj);
81MP_DECLARE_CONST_FUN_OBJ(str_lower_obj);
82MP_DECLARE_CONST_FUN_OBJ(str_upper_obj);
83MP_DECLARE_CONST_FUN_OBJ(str_isspace_obj);
84MP_DECLARE_CONST_FUN_OBJ(str_isalpha_obj);
85MP_DECLARE_CONST_FUN_OBJ(str_isdigit_obj);
86MP_DECLARE_CONST_FUN_OBJ(str_isupper_obj);
87MP_DECLARE_CONST_FUN_OBJ(str_islower_obj);