Numworks Epsilon  1.4.1
Graphing Calculator Operating System
objstr.h
Go to the documentation of this file.
1 /*
2  * This file is part of the MicroPython 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 #ifndef MICROPY_INCLUDED_PY_OBJSTR_H
27 #define MICROPY_INCLUDED_PY_OBJSTR_H
28 
29 #include "py/obj.h"
30 
31 typedef struct _mp_obj_str_t {
34  // len == number of bytes used in data, alloc = len + 1 because (at the moment) we also append a null byte
35  size_t len;
36  const byte *data;
37 } mp_obj_str_t;
38 
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}
40 
41 // use this macro to extract the string hash
42 // warning: the hash can be 0, meaning invalid, and must then be explicitly computed from the data
43 #define GET_STR_HASH(str_obj_in, str_hash) \
44  mp_uint_t str_hash; if (MP_OBJ_IS_QSTR(str_obj_in)) \
45  { 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; }
46 
47 // use this macro to extract the string length
48 #define GET_STR_LEN(str_obj_in, str_len) \
49  size_t str_len; if (MP_OBJ_IS_QSTR(str_obj_in)) \
50  { 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; }
51 
52 // use this macro to extract the string data and length
53 #if MICROPY_OBJ_REPR == MICROPY_OBJ_REPR_C
54 const byte *mp_obj_str_get_data_no_check(mp_obj_t self_in, size_t *len);
55 #define GET_STR_DATA_LEN(str_obj_in, str_data, str_len) \
56  size_t str_len; const byte *str_data = mp_obj_str_get_data_no_check(str_obj_in, &str_len);
57 #else
58 #define GET_STR_DATA_LEN(str_obj_in, str_data, str_len) \
59  const byte *str_data; size_t str_len; if (MP_OBJ_IS_QSTR(str_obj_in)) \
60  { str_data = qstr_data(MP_OBJ_QSTR_VALUE(str_obj_in), &str_len); } \
61  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; }
62 #endif
63 
64 mp_obj_t mp_obj_str_make_new(const mp_obj_type_t *type_in, size_t n_args, size_t n_kw, const mp_obj_t *args);
65 void mp_str_print_json(const mp_print_t *print, const byte *str_data, size_t str_len);
66 mp_obj_t mp_obj_str_format(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs);
67 mp_obj_t mp_obj_str_split(size_t n_args, const mp_obj_t *args);
68 mp_obj_t mp_obj_new_str_of_type(const mp_obj_type_t *type, const byte* data, size_t len);
69 
72 
73 const byte *str_index_to_ptr(const mp_obj_type_t *type, const byte *self_data, size_t self_len,
74  mp_obj_t index, bool is_slice);
75 const byte *find_subbytes(const byte *haystack, size_t hlen, const byte *needle, size_t nlen, int direction);
76 
82 MP_DECLARE_CONST_FUN_OBJ_2(str_join_obj);
84 MP_DECLARE_CONST_FUN_OBJ_KW(str_splitlines_obj);
86 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(str_startswith_obj);
87 MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(str_endswith_obj);
91 MP_DECLARE_CONST_FUN_OBJ_KW(str_format_obj);
94 MP_DECLARE_CONST_FUN_OBJ_2(str_partition_obj);
95 MP_DECLARE_CONST_FUN_OBJ_2(str_rpartition_obj);
96 MP_DECLARE_CONST_FUN_OBJ_2(str_center_obj);
97 MP_DECLARE_CONST_FUN_OBJ_1(str_lower_obj);
98 MP_DECLARE_CONST_FUN_OBJ_1(str_upper_obj);
99 MP_DECLARE_CONST_FUN_OBJ_1(str_isspace_obj);
100 MP_DECLARE_CONST_FUN_OBJ_1(str_isalpha_obj);
101 MP_DECLARE_CONST_FUN_OBJ_1(str_isdigit_obj);
102 MP_DECLARE_CONST_FUN_OBJ_1(str_isupper_obj);
103 MP_DECLARE_CONST_FUN_OBJ_1(str_islower_obj);
104 
105 #endif // MICROPY_INCLUDED_PY_OBJSTR_H
intptr_t mp_int_t
Definition: mpconfigport.h:73
uintptr_t mp_uint_t
Definition: mpconfigport.h:74
def data
Definition: i18n.py:176
size_t len
Definition: objstr.h:35
mp_obj_t mp_obj_str_split(size_t n_args, const mp_obj_t *args)
Definition: objstr.c:484
mp_int_t mp_obj_str_get_buffer(mp_obj_t self_in, mp_buffer_info_t *bufinfo, mp_uint_t flags)
Definition: objstr.c:1883
mp_obj_t mp_obj_str_binary_op(mp_binary_op_t op, mp_obj_t lhs_in, mp_obj_t rhs_in)
Definition: objstr.c:291
const byte * str_index_to_ptr(const mp_obj_type_t *type, const byte *self_data, size_t self_len, mp_obj_t index, bool is_slice)
Definition: objstr.c:399
mp_obj_t mp_obj_new_str_of_type(const mp_obj_type_t *type, const byte *data, size_t len)
Definition: objstr.c:1981
MP_DECLARE_CONST_FUN_OBJ_2(str_join_obj)
mp_obj_t mp_obj_str_make_new(const mp_obj_type_t *type_in, size_t n_args, size_t n_kw, const mp_obj_t *args)
Definition: objstr.c:133
mp_obj_base_t base
Definition: objstr.h:32
const byte * data
Definition: objstr.h:36
mp_binary_op_t
Definition: runtime0.h:67
args
Definition: i18n.py:175
mp_uint_t hash
Definition: objstr.h:33
MP_DECLARE_CONST_FUN_OBJ_KW(str_splitlines_obj)
Definition: obj.h:356
unsigned char byte
Definition: misc.h:37
void mp_str_print_json(const mp_print_t *print, const byte *str_data, size_t str_len)
mp_obj_t mp_obj_str_format(size_t n_args, const mp_obj_t *args, mp_map_t *kwargs)
Definition: objstr.c:1364
struct _mp_obj_str_t mp_obj_str_t
MP_DECLARE_CONST_FUN_OBJ_1(str_lower_obj)
uint64_t mp_obj_t
Definition: obj.h:39
const byte * mp_obj_str_get_data_no_check(mp_obj_t self_in, size_t *len)
Definition: objstr.c:2116
MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(str_encode_obj)
const byte * find_subbytes(const byte *haystack, size_t hlen, const byte *needle, size_t nlen, int direction)
Definition: objstr.c:263