summaryrefslogtreecommitdiff
path: root/py/objstr.h
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2022-08-10 14:09:22 +1000
committerDamien George <damien@micropython.org>2022-08-10 14:31:06 +1000
commitb5986784e4341d7d34b97b2481567d842453732d (patch)
treefec867ea9741fa61f0227306b8c51b1b264cb9fc /py/objstr.h
parent7d91a9bf5b30c11ea2dcf90e8b3d031e40b6e985 (diff)
py/objstr: Reformat str access macros to make them readable.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/objstr.h')
-rw-r--r--py/objstr.h30
1 files changed, 22 insertions, 8 deletions
diff --git a/py/objstr.h b/py/objstr.h
index 8c450baed..8f87c3018 100644
--- a/py/objstr.h
+++ b/py/objstr.h
@@ -41,24 +41,38 @@ typedef struct _mp_obj_str_t {
// use this macro to extract the string hash
// warning: the hash can be 0, meaning invalid, and must then be explicitly computed from the data
#define GET_STR_HASH(str_obj_in, str_hash) \
- mp_uint_t str_hash; if (mp_obj_is_qstr(str_obj_in)) \
- { 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; }
+ mp_uint_t str_hash; \
+ if (mp_obj_is_qstr(str_obj_in)) { \
+ 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; \
+ }
// use this macro to extract the string length
#define GET_STR_LEN(str_obj_in, str_len) \
- size_t str_len; if (mp_obj_is_qstr(str_obj_in)) \
- { 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; }
+ size_t str_len; \
+ if (mp_obj_is_qstr(str_obj_in)) { \
+ 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; \
+ }
// use this macro to extract the string data and length
#if MICROPY_OBJ_REPR == MICROPY_OBJ_REPR_C || MICROPY_OBJ_REPR == MICROPY_OBJ_REPR_D
const byte *mp_obj_str_get_data_no_check(mp_obj_t self_in, size_t *len);
#define GET_STR_DATA_LEN(str_obj_in, str_data, str_len) \
- size_t str_len; const byte *str_data = mp_obj_str_get_data_no_check(str_obj_in, &str_len);
+ size_t str_len; \
+ const byte *str_data = mp_obj_str_get_data_no_check(str_obj_in, &str_len);
#else
#define GET_STR_DATA_LEN(str_obj_in, str_data, str_len) \
- const byte *str_data; size_t str_len; if (mp_obj_is_qstr(str_obj_in)) \
- { str_data = qstr_data(MP_OBJ_QSTR_VALUE(str_obj_in), &str_len); } \
- 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; }
+ const byte *str_data; \
+ size_t str_len; \
+ if (mp_obj_is_qstr(str_obj_in)) { \
+ str_data = qstr_data(MP_OBJ_QSTR_VALUE(str_obj_in), &str_len); \
+ } 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; \
+ }
#endif
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);