blob: 7cb6ae2e98d2f78e19511229106e9d2ec410c6f7 [file] [log] [blame]
Damien George55baff42014-01-21 21:40:13 +00001// See qstrraw.h for a list of qstr's that are available as constants.
2// Reference them as MP_QSTR_xxxx.
3//
4// Note: it would be possible to define MP_QSTR_xxx as qstr_from_str_static("xxx")
5// for qstrs that are referenced this way, but you don't want to have them in ROM.
6
7enum {
8 MP_QSTR_NULL = 0, // indicates invalid/no qstr
9 MP_QSTR_ = 1, // the empty qstr
10#define Q(id, str) MP_QSTR_##id,
Damien Georged553be52014-04-17 18:03:27 +010011#include "genhdr/qstrdefs.generated.h"
Damien George55baff42014-01-21 21:40:13 +000012#undef Q
13 MP_QSTR_number_of,
Damien George2813cb62014-04-12 17:53:05 +010014};
Damien George55baff42014-01-21 21:40:13 +000015
16typedef machine_uint_t qstr;
17
18#define QSTR_FROM_STR_STATIC(s) (qstr_from_strn((s), strlen(s)))
19
20void qstr_init(void);
21
Damien George5fa93b62014-01-22 14:35:10 +000022machine_uint_t qstr_compute_hash(const byte *data, uint len);
23qstr qstr_find_strn(const byte *str, uint str_len); // returns MP_QSTR_NULL if not found
24
Damien George55baff42014-01-21 21:40:13 +000025qstr qstr_from_str(const char *str);
26qstr qstr_from_strn(const char *str, uint len);
27//qstr qstr_from_str_static(const char *str);
28qstr qstr_from_strn_take(char *str, uint alloc_len, uint len);
29//qstr qstr_from_strn_copy(const char *str, int len);
30
31byte* qstr_build_start(uint len, byte **q_ptr);
32qstr qstr_build_end(byte *q_ptr);
33
34machine_uint_t qstr_hash(qstr q);
35const char* qstr_str(qstr q);
36uint qstr_len(qstr q);
37const byte* qstr_data(qstr q, uint *len);
Damien George4d5b28c2014-01-29 18:56:46 +000038
39void qstr_pool_info(uint *n_pool, uint *n_qstr, uint *n_str_data_bytes, uint *n_total_bytes);