mirror of
https://github.com/bluekitchen/btstack.git
synced 2024-12-27 12:22:38 +00:00
tool/btstack_parser: use raw strings
This commit is contained in:
parent
63a4cec072
commit
239f77ee6b
@ -49,7 +49,7 @@ def read_defines(infile):
|
||||
defines = dict()
|
||||
with open (infile, 'rt') as fin:
|
||||
for line in fin:
|
||||
parts = re.match('#define\s+(\w+)\s+(\w*)[u]',line)
|
||||
parts = re.match(r'#define\s+(\w+)\s+(\w*)[u]',line)
|
||||
if parts and len(parts.groups()) == 2:
|
||||
(key, value) = parts.groups()
|
||||
defines[key] = value.lower()
|
||||
@ -72,14 +72,14 @@ def my_parse_events(path):
|
||||
format = None
|
||||
with open (path, 'rt') as fin:
|
||||
for line in fin:
|
||||
parts = re.match('.*@format\s*([a-zA-Z0-9_' + re.escape(open_bracket) + re.escape(closing_bracket) + ']*)\s*', line)
|
||||
parts = re.match(r'.*@format\s*([a-zA-Z0-9_' + re.escape(open_bracket) + re.escape(closing_bracket) + r']*)\s*', line)
|
||||
if parts and len(parts.groups()) == 1:
|
||||
format = parts.groups()[0]
|
||||
parts = re.match('.*@param\s*(\w*)\s*', line)
|
||||
parts = re.match(r'.*@param\s*(\w*)\s*', line)
|
||||
if parts and len(parts.groups()) == 1:
|
||||
param = parts.groups()[0]
|
||||
params.append(param)
|
||||
parts = re.match('\s*#define\s+(\w+)\s+(\w*)[u]',line)
|
||||
parts = re.match(r'\s*#define\s+(\w+)\s+(\w*)[u]',line)
|
||||
if parts and len(parts.groups()) == 2:
|
||||
(key, value) = parts.groups()
|
||||
if format != None:
|
||||
@ -110,12 +110,12 @@ def my_parse_opcodes(infile, convert_to_camel_case):
|
||||
opcodes = {}
|
||||
with open (infile, 'rt') as fin:
|
||||
for line in fin:
|
||||
definition = re.match('\s*(DAEMON_OPCODE_\w+)\s*=\s*DAEMON_OPCODE\s*\(\s*(\w+)\s*\).*', line)
|
||||
definition = re.match(r'\s*(DAEMON_OPCODE_\w+)\s*=\s*DAEMON_OPCODE\s*\(\s*(\w+)\s*\).*', line)
|
||||
if definition:
|
||||
(opcode, daemon_ocf) = definition.groups()
|
||||
# opcodes.append((opcode, 'OGF_BTSTACK', daemon_ocf))
|
||||
opcodes[opcode] = ('OGF_BTSTACK', daemon_ocf)
|
||||
definition = re.match('\s*(HCI_OPCODE_\w+)\s*=\s*HCI_OPCODE\s*\(\s*(\w+)\s*,\s*(\w+)\s*\).*', line)
|
||||
definition = re.match(r'\s*(HCI_OPCODE_\w+)\s*=\s*HCI_OPCODE\s*\(\s*(\w+)\s*,\s*(\w+)\s*\).*', line)
|
||||
if definition:
|
||||
(opcode, ogf, ocf) = definition.groups()
|
||||
# opcodes.append((opcode, ogf, ocf))
|
||||
@ -136,7 +136,7 @@ def my_parse_commands(infile, opcodes, convert_to_camel_case):
|
||||
params = []
|
||||
for line in fin:
|
||||
|
||||
parts = re.match('.*@param\s*(\w*)\s*', line)
|
||||
parts = re.match(r'.*@param\s*(\w*)\s*', line)
|
||||
if parts and len(parts.groups()) == 1:
|
||||
param = parts.groups()[0]
|
||||
if convert_to_camel_case:
|
||||
@ -146,7 +146,7 @@ def my_parse_commands(infile, opcodes, convert_to_camel_case):
|
||||
params.append(param)
|
||||
continue
|
||||
|
||||
declaration = re.match('const\s+hci_cmd_t\s+(\w+)[\s=]+', line)
|
||||
declaration = re.match(r'const\s+hci_cmd_t\s+(\w+)[\s=]+', line)
|
||||
if declaration:
|
||||
command_name = declaration.groups()[0]
|
||||
# drop _cmd suffix for daemon commands
|
||||
@ -159,7 +159,7 @@ def my_parse_commands(infile, opcodes, convert_to_camel_case):
|
||||
continue
|
||||
|
||||
# HCI_OPCODE or DAEMON_OPCODE definition
|
||||
definition = re.match('\s*(HCI_OPCODE_\w+|DAEMON_OPCODE_\w+)\s*,\s\\"(\w*)\\".*', line)
|
||||
definition = re.match(r'\s*(HCI_OPCODE_\w+|DAEMON_OPCODE_\w+)\s*,\s\"(\w*)\".*', line)
|
||||
if definition:
|
||||
(opcode, format) = definition.groups()
|
||||
if len(params) != len(format):
|
||||
@ -193,7 +193,7 @@ def parse_daemon_commands(camel_case=True):
|
||||
def print_opcode_enum(commands):
|
||||
print("typedef enum {")
|
||||
for command in commands:
|
||||
(name, opcode, format, params) = command
|
||||
(name, ogf, ocf, format, params) = command
|
||||
print(" DAEMON_OPCODE_%s = HCI_OPCODE (%s, %s)," % (name.upper(), ogf, ocf))
|
||||
print("} daemon_opcode_t;")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user