2015-05-30 22:11:16 +00:00
|
|
|
"""
|
|
|
|
Process raw qstr file and output qstr data with length, hash and data bytes.
|
|
|
|
|
|
|
|
This script works with Python 2.6, 2.7, 3.3 and 3.4.
|
|
|
|
"""
|
|
|
|
|
2014-03-10 07:07:35 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2014-01-21 21:40:13 +00:00
|
|
|
import re
|
2014-03-08 15:03:25 +00:00
|
|
|
import sys
|
2014-01-24 22:22:00 +00:00
|
|
|
|
|
|
|
# codepoint2name is different in Python 2 to Python 3
|
|
|
|
import platform
|
|
|
|
if platform.python_version_tuple()[0] == '2':
|
|
|
|
from htmlentitydefs import codepoint2name
|
|
|
|
elif platform.python_version_tuple()[0] == '3':
|
|
|
|
from html.entities import codepoint2name
|
2014-04-13 02:28:46 +00:00
|
|
|
codepoint2name[ord('-')] = 'hyphen';
|
2014-01-21 21:40:13 +00:00
|
|
|
|
2014-02-15 11:34:50 +00:00
|
|
|
# add some custom names to map characters that aren't in HTML
|
2015-01-11 14:16:24 +00:00
|
|
|
codepoint2name[ord(' ')] = 'space'
|
|
|
|
codepoint2name[ord('\'')] = 'squot'
|
|
|
|
codepoint2name[ord(',')] = 'comma'
|
2014-02-15 11:34:50 +00:00
|
|
|
codepoint2name[ord('.')] = 'dot'
|
2014-02-17 22:06:37 +00:00
|
|
|
codepoint2name[ord(':')] = 'colon'
|
|
|
|
codepoint2name[ord('/')] = 'slash'
|
2014-04-15 11:42:52 +00:00
|
|
|
codepoint2name[ord('%')] = 'percent'
|
2014-04-15 11:50:21 +00:00
|
|
|
codepoint2name[ord('#')] = 'hash'
|
2015-01-11 14:16:24 +00:00
|
|
|
codepoint2name[ord('(')] = 'paren_open'
|
|
|
|
codepoint2name[ord(')')] = 'paren_close'
|
|
|
|
codepoint2name[ord('[')] = 'bracket_open'
|
|
|
|
codepoint2name[ord(']')] = 'bracket_close'
|
2014-04-15 21:03:55 +00:00
|
|
|
codepoint2name[ord('{')] = 'brace_open'
|
|
|
|
codepoint2name[ord('}')] = 'brace_close'
|
2014-04-27 18:23:46 +00:00
|
|
|
codepoint2name[ord('*')] = 'star'
|
2015-01-11 14:16:24 +00:00
|
|
|
codepoint2name[ord('!')] = 'bang'
|
2015-04-01 22:09:24 +00:00
|
|
|
codepoint2name[ord('\\')] = 'backslash'
|
2015-08-30 21:20:38 +00:00
|
|
|
codepoint2name[ord('+')] = 'plus'
|
2014-02-15 11:34:50 +00:00
|
|
|
|
2014-01-21 21:40:13 +00:00
|
|
|
# this must match the equivalent function in qstr.c
|
2015-07-20 11:03:13 +00:00
|
|
|
def compute_hash(qstr, bytes_hash):
|
2014-03-25 15:27:15 +00:00
|
|
|
hash = 5381
|
2014-01-21 21:40:13 +00:00
|
|
|
for char in qstr:
|
2014-03-25 15:27:15 +00:00
|
|
|
hash = (hash * 33) ^ ord(char)
|
2014-06-06 20:55:27 +00:00
|
|
|
# Make sure that valid hash is never zero, zero means "hash not computed"
|
2015-07-20 11:03:13 +00:00
|
|
|
return (hash & ((1 << (8 * bytes_hash)) - 1)) or 1
|
2014-01-21 21:40:13 +00:00
|
|
|
|
|
|
|
def do_work(infiles):
|
|
|
|
# read the qstrs in from the input files
|
2015-01-11 17:52:45 +00:00
|
|
|
qcfgs = {}
|
2014-01-23 22:22:00 +00:00
|
|
|
qstrs = {}
|
2014-01-21 21:40:13 +00:00
|
|
|
for infile in infiles:
|
|
|
|
with open(infile, 'rt') as f:
|
|
|
|
for line in f:
|
2015-01-11 17:52:45 +00:00
|
|
|
line = line.strip()
|
|
|
|
|
|
|
|
# is this a config line?
|
|
|
|
match = re.match(r'^QCFG\((.+), (.+)\)', line)
|
|
|
|
if match:
|
|
|
|
value = match.group(2)
|
|
|
|
if value[0] == '(' and value[-1] == ')':
|
|
|
|
# strip parenthesis from config value
|
|
|
|
value = value[1:-1]
|
|
|
|
qcfgs[match.group(1)] = value
|
|
|
|
continue
|
|
|
|
|
2014-05-02 19:10:47 +00:00
|
|
|
# is this a QSTR line?
|
2015-01-11 17:52:45 +00:00
|
|
|
match = re.match(r'^Q\((.*)\)$', line)
|
2014-05-02 19:10:47 +00:00
|
|
|
if not match:
|
2014-04-13 12:16:51 +00:00
|
|
|
continue
|
2014-01-21 21:40:13 +00:00
|
|
|
|
|
|
|
# get the qstr value
|
|
|
|
qstr = match.group(1)
|
2014-01-23 22:22:00 +00:00
|
|
|
ident = re.sub(r'[^A-Za-z0-9_]', lambda s: "_" + codepoint2name[ord(s.group(0))] + "_", qstr)
|
2014-01-21 21:40:13 +00:00
|
|
|
|
|
|
|
# don't add duplicates
|
2014-01-23 22:22:00 +00:00
|
|
|
if ident in qstrs:
|
2014-01-21 21:40:13 +00:00
|
|
|
continue
|
|
|
|
|
2014-01-24 22:22:00 +00:00
|
|
|
# add the qstr to the list, with order number to retain original order in file
|
2014-04-11 17:36:08 +00:00
|
|
|
qstrs[ident] = (len(qstrs), ident, qstr)
|
2014-01-21 21:40:13 +00:00
|
|
|
|
2015-10-11 08:09:57 +00:00
|
|
|
if not qcfgs:
|
|
|
|
sys.stderr.write("ERROR: Empty preprocessor output - check for errors above\n")
|
|
|
|
sys.exit(1)
|
|
|
|
|
2015-01-11 22:27:30 +00:00
|
|
|
# get config variables
|
|
|
|
cfg_bytes_len = int(qcfgs['BYTES_IN_LEN'])
|
2015-07-20 11:03:13 +00:00
|
|
|
cfg_bytes_hash = int(qcfgs['BYTES_IN_HASH'])
|
2015-01-11 22:27:30 +00:00
|
|
|
cfg_max_len = 1 << (8 * cfg_bytes_len)
|
|
|
|
|
2015-07-31 11:57:36 +00:00
|
|
|
# print out the starter of the generated C header file
|
2014-01-21 21:40:13 +00:00
|
|
|
print('// This file was automatically generated by makeqstrdata.py')
|
2014-01-21 23:28:27 +00:00
|
|
|
print('')
|
2015-01-11 22:27:30 +00:00
|
|
|
|
2015-01-11 17:52:45 +00:00
|
|
|
# add NULL qstr with no hash or data
|
2015-07-20 11:03:13 +00:00
|
|
|
print('QDEF(MP_QSTR_NULL, (const byte*)"%s%s" "")' % ('\\x00' * cfg_bytes_hash, '\\x00' * cfg_bytes_len))
|
2015-01-11 22:27:30 +00:00
|
|
|
|
|
|
|
# go through each qstr and print it out
|
2014-04-11 17:36:08 +00:00
|
|
|
for order, ident, qstr in sorted(qstrs.values(), key=lambda x: x[0]):
|
2015-07-20 11:03:13 +00:00
|
|
|
qhash = compute_hash(qstr, cfg_bytes_hash)
|
2015-04-01 22:09:24 +00:00
|
|
|
# Calculate len of str, taking escapes into account
|
|
|
|
qlen = len(qstr.replace("\\\\", "-").replace("\\", ""))
|
2015-01-11 14:16:24 +00:00
|
|
|
qdata = qstr.replace('"', '\\"')
|
2015-01-11 22:27:30 +00:00
|
|
|
if qlen >= cfg_max_len:
|
|
|
|
print('qstr is too long:', qstr)
|
|
|
|
assert False
|
2015-01-11 22:40:38 +00:00
|
|
|
qlen_str = ('\\x%02x' * cfg_bytes_len) % tuple(((qlen >> (8 * i)) & 0xff) for i in range(cfg_bytes_len))
|
2015-07-20 11:03:13 +00:00
|
|
|
qhash_str = ('\\x%02x' * cfg_bytes_hash) % tuple(((qhash >> (8 * i)) & 0xff) for i in range(cfg_bytes_hash))
|
|
|
|
print('QDEF(MP_QSTR_%s, (const byte*)"%s%s" "%s")' % (ident, qhash_str, qlen_str, qdata))
|
2014-01-21 21:40:13 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2015-05-30 22:11:16 +00:00
|
|
|
do_work(sys.argv[1:])
|