blob: 779ebcb4a9a3a8f26cfdfe40c88fcfcf25494a9a [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,
11// TODO having 'build/py.' here is a bit of a hack, should take config variable from Makefile
Dave Hylandsc89c6812014-01-24 01:05:30 -080012#include "build/py/qstrdefs.generated.h"
Damien George55baff42014-01-21 21:40:13 +000013#undef Q
14 MP_QSTR_number_of,
15} category_t;
16
17typedef machine_uint_t qstr;
18
19#define QSTR_FROM_STR_STATIC(s) (qstr_from_strn((s), strlen(s)))
20
21void qstr_init(void);
22
Damien George5fa93b62014-01-22 14:35:10 +000023machine_uint_t qstr_compute_hash(const byte *data, uint len);
24qstr qstr_find_strn(const byte *str, uint str_len); // returns MP_QSTR_NULL if not found
25
Damien George55baff42014-01-21 21:40:13 +000026qstr qstr_from_str(const char *str);
27qstr qstr_from_strn(const char *str, uint len);
28//qstr qstr_from_str_static(const char *str);
29qstr qstr_from_strn_take(char *str, uint alloc_len, uint len);
30//qstr qstr_from_strn_copy(const char *str, int len);
31
32byte* qstr_build_start(uint len, byte **q_ptr);
33qstr qstr_build_end(byte *q_ptr);
34
35machine_uint_t qstr_hash(qstr q);
36const char* qstr_str(qstr q);
37uint qstr_len(qstr q);
38const byte* qstr_data(qstr q, uint *len);
Damien George4d5b28c2014-01-29 18:56:46 +000039
40void qstr_pool_info(uint *n_pool, uint *n_qstr, uint *n_str_data_bytes, uint *n_total_bytes);