Damien George | 04b9147 | 2014-05-03 23:27:38 +0100 | [diff] [blame] | 1 | /* |
| 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 | */ |
Damien George | 51dfcb4 | 2015-01-01 20:27:54 +0000 | [diff] [blame] | 26 | #ifndef __MICROPY_INCLUDED_PY_OBJSTR_H__ |
| 27 | #define __MICROPY_INCLUDED_PY_OBJSTR_H__ |
| 28 | |
| 29 | #include "py/obj.h" |
Damien George | 04b9147 | 2014-05-03 23:27:38 +0100 | [diff] [blame] | 30 | |
Paul Sokolovsky | 58676fc | 2014-04-14 01:45:06 +0300 | [diff] [blame] | 31 | typedef struct _mp_obj_str_t { |
| 32 | mp_obj_base_t base; |
Damien George | 26a0d4f | 2014-08-22 18:34:28 +0100 | [diff] [blame] | 33 | mp_uint_t hash; |
Paul Sokolovsky | 58676fc | 2014-04-14 01:45:06 +0300 | [diff] [blame] | 34 | // len == number of bytes used in data, alloc = len + 1 because (at the moment) we also append a null byte |
Damien George | 26a0d4f | 2014-08-22 18:34:28 +0100 | [diff] [blame] | 35 | mp_uint_t len; |
Paul Sokolovsky | 58676fc | 2014-04-14 01:45:06 +0300 | [diff] [blame] | 36 | const byte *data; |
| 37 | } mp_obj_str_t; |
| 38 | |
Damien George | 4dea922 | 2015-04-09 15:29:54 +0000 | [diff] [blame] | 39 | #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 George | 897fe0c | 2014-04-15 22:03:55 +0100 | [diff] [blame] | 40 | |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 41 | // use this macro to extract the string hash |
| 42 | #define GET_STR_HASH(str_obj_in, str_hash) \ |
Damien George | 39dc145 | 2014-10-03 19:52:22 +0100 | [diff] [blame] | 43 | mp_uint_t str_hash; if (MP_OBJ_IS_QSTR(str_obj_in)) \ |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 44 | { str_hash = qstr_hash(MP_OBJ_QSTR_VALUE(str_obj_in)); } else { str_hash = ((mp_obj_str_t*)MP_OBJ_TO_PTR(str_obj_in))->hash; } |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 45 | |
| 46 | // use this macro to extract the string length |
| 47 | #define GET_STR_LEN(str_obj_in, str_len) \ |
Damien George | c3f64d9 | 2015-11-27 12:23:18 +0000 | [diff] [blame] | 48 | size_t str_len; if (MP_OBJ_IS_QSTR(str_obj_in)) \ |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 49 | { str_len = qstr_len(MP_OBJ_QSTR_VALUE(str_obj_in)); } else { str_len = ((mp_obj_str_t*)MP_OBJ_TO_PTR(str_obj_in))->len; } |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 50 | |
| 51 | // use this macro to extract the string data and length |
Damien George | 04353cc | 2015-10-18 23:09:04 +0100 | [diff] [blame] | 52 | #if MICROPY_OBJ_REPR == MICROPY_OBJ_REPR_C |
Damien George | c3f64d9 | 2015-11-27 12:23:18 +0000 | [diff] [blame] | 53 | const byte *mp_obj_str_get_data_no_check(mp_obj_t self_in, size_t *len); |
Damien George | 04353cc | 2015-10-18 23:09:04 +0100 | [diff] [blame] | 54 | #define GET_STR_DATA_LEN(str_obj_in, str_data, str_len) \ |
Damien George | c3f64d9 | 2015-11-27 12:23:18 +0000 | [diff] [blame] | 55 | size_t str_len; const byte *str_data = mp_obj_str_get_data_no_check(str_obj_in, &str_len); |
Damien George | 04353cc | 2015-10-18 23:09:04 +0100 | [diff] [blame] | 56 | #else |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 57 | #define GET_STR_DATA_LEN(str_obj_in, str_data, str_len) \ |
Damien George | c3f64d9 | 2015-11-27 12:23:18 +0000 | [diff] [blame] | 58 | const byte *str_data; size_t str_len; if (MP_OBJ_IS_QSTR(str_obj_in)) \ |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 59 | { str_data = qstr_data(MP_OBJ_QSTR_VALUE(str_obj_in), &str_len); } \ |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 60 | else { str_len = ((mp_obj_str_t*)MP_OBJ_TO_PTR(str_obj_in))->len; str_data = ((mp_obj_str_t*)MP_OBJ_TO_PTR(str_obj_in))->data; } |
Damien George | 04353cc | 2015-10-18 23:09:04 +0100 | [diff] [blame] | 61 | #endif |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 62 | |
Damien George | a0c9781 | 2016-01-03 09:59:18 +0000 | [diff] [blame^] | 63 | mp_obj_t mp_obj_str_make_new(mp_obj_t type_in, size_t n_args, size_t n_kw, const mp_obj_t *args); |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 64 | void mp_str_print_json(const mp_print_t *print, const byte *str_data, size_t str_len); |
Paul Sokolovsky | c114496 | 2015-01-04 00:14:13 +0200 | [diff] [blame] | 65 | mp_obj_t mp_obj_str_format(mp_uint_t n_args, const mp_obj_t *args, mp_map_t *kwargs); |
Paul Sokolovsky | 8705171 | 2015-03-23 22:15:12 +0200 | [diff] [blame] | 66 | mp_obj_t mp_obj_str_split(mp_uint_t n_args, const mp_obj_t *args); |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 67 | mp_obj_t mp_obj_new_str_of_type(const mp_obj_type_t *type, const byte* data, size_t len); |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 68 | |
Damien George | ecc88e9 | 2014-08-30 00:35:11 +0100 | [diff] [blame] | 69 | mp_obj_t mp_obj_str_binary_op(mp_uint_t op, mp_obj_t lhs_in, mp_obj_t rhs_in); |
Damien George | 4d91723 | 2014-08-30 14:28:06 +0100 | [diff] [blame] | 70 | mp_int_t mp_obj_str_get_buffer(mp_obj_t self_in, mp_buffer_info_t *bufinfo, mp_uint_t flags); |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 71 | |
Damien George | 999cedb | 2015-11-27 17:01:44 +0000 | [diff] [blame] | 72 | const byte *str_index_to_ptr(const mp_obj_type_t *type, const byte *self_data, size_t self_len, |
Paul Sokolovsky | ea2c936 | 2014-06-15 00:35:09 +0300 | [diff] [blame] | 73 | mp_obj_t index, bool is_slice); |
| 74 | |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 75 | MP_DECLARE_CONST_FUN_OBJ(str_encode_obj); |
| 76 | MP_DECLARE_CONST_FUN_OBJ(str_find_obj); |
| 77 | MP_DECLARE_CONST_FUN_OBJ(str_rfind_obj); |
| 78 | MP_DECLARE_CONST_FUN_OBJ(str_index_obj); |
| 79 | MP_DECLARE_CONST_FUN_OBJ(str_rindex_obj); |
| 80 | MP_DECLARE_CONST_FUN_OBJ(str_join_obj); |
| 81 | MP_DECLARE_CONST_FUN_OBJ(str_split_obj); |
Paul Sokolovsky | ac2f7a7 | 2015-04-04 00:09:23 +0300 | [diff] [blame] | 82 | MP_DECLARE_CONST_FUN_OBJ(str_splitlines_obj); |
Paul Sokolovsky | 9731912 | 2014-06-13 22:01:26 +0300 | [diff] [blame] | 83 | MP_DECLARE_CONST_FUN_OBJ(str_rsplit_obj); |
| 84 | MP_DECLARE_CONST_FUN_OBJ(str_startswith_obj); |
| 85 | MP_DECLARE_CONST_FUN_OBJ(str_endswith_obj); |
| 86 | MP_DECLARE_CONST_FUN_OBJ(str_strip_obj); |
| 87 | MP_DECLARE_CONST_FUN_OBJ(str_lstrip_obj); |
| 88 | MP_DECLARE_CONST_FUN_OBJ(str_rstrip_obj); |
| 89 | MP_DECLARE_CONST_FUN_OBJ(str_format_obj); |
| 90 | MP_DECLARE_CONST_FUN_OBJ(str_replace_obj); |
| 91 | MP_DECLARE_CONST_FUN_OBJ(str_count_obj); |
| 92 | MP_DECLARE_CONST_FUN_OBJ(str_partition_obj); |
| 93 | MP_DECLARE_CONST_FUN_OBJ(str_rpartition_obj); |
| 94 | MP_DECLARE_CONST_FUN_OBJ(str_lower_obj); |
| 95 | MP_DECLARE_CONST_FUN_OBJ(str_upper_obj); |
| 96 | MP_DECLARE_CONST_FUN_OBJ(str_isspace_obj); |
| 97 | MP_DECLARE_CONST_FUN_OBJ(str_isalpha_obj); |
| 98 | MP_DECLARE_CONST_FUN_OBJ(str_isdigit_obj); |
| 99 | MP_DECLARE_CONST_FUN_OBJ(str_isupper_obj); |
| 100 | MP_DECLARE_CONST_FUN_OBJ(str_islower_obj); |
Damien George | 51dfcb4 | 2015-01-01 20:27:54 +0000 | [diff] [blame] | 101 | |
| 102 | #endif // __MICROPY_INCLUDED_PY_OBJSTR_H__ |