2018-02-01 12:14:47 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright 2018 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-08-02 09:01:04 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
from __future__ import unicode_literals
|
2018-08-28 18:01:25 +00:00
|
|
|
import sys
|
|
|
|
try:
|
|
|
|
from builtins import str
|
|
|
|
from builtins import range
|
|
|
|
from builtins import object
|
|
|
|
except ImportError:
|
|
|
|
# This should not happen because the Python packages are checked before invoking this script. However, here is
|
|
|
|
# some output which should help if we missed something.
|
|
|
|
print('Import has failed probably because of the missing "future" package. Please install all the packages for '
|
|
|
|
'interpreter {} from the requirements.txt file.'.format(sys.executable))
|
|
|
|
# The path to requirements.txt is not provided because this script could be invoked from an IDF project (then the
|
|
|
|
# requirements.txt from the IDF_PATH should be used) or from the documentation project (then the requirements.txt
|
|
|
|
# for the documentation directory should be used).
|
|
|
|
sys.exit(1)
|
2018-08-02 09:01:04 +00:00
|
|
|
from io import open
|
2018-02-01 12:14:47 +00:00
|
|
|
import os
|
|
|
|
import argparse
|
|
|
|
import re
|
|
|
|
import fnmatch
|
|
|
|
import collections
|
|
|
|
import textwrap
|
2018-08-02 09:01:04 +00:00
|
|
|
import functools
|
2018-02-01 12:14:47 +00:00
|
|
|
|
|
|
|
# list files here which should not be parsed
|
2018-12-04 12:46:48 +00:00
|
|
|
ignore_files = ['components/mdns/test_afl_fuzz_host/esp32_compat.h']
|
2018-02-01 12:14:47 +00:00
|
|
|
|
2018-07-09 08:51:22 +00:00
|
|
|
# add directories here which should not be parsed
|
2018-12-04 12:46:48 +00:00
|
|
|
ignore_dirs = ('examples')
|
2018-07-09 08:51:22 +00:00
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
# macros from here have higher priorities in case of collisions
|
2018-12-04 12:46:48 +00:00
|
|
|
priority_headers = ['components/esp32/include/esp_err.h']
|
|
|
|
|
|
|
|
err_dict = collections.defaultdict(list) # identified errors are stored here; mapped by the error code
|
|
|
|
rev_err_dict = dict() # map of error string to error code
|
|
|
|
unproc_list = list() # errors with unknown codes which depend on other errors
|
2018-02-01 12:14:47 +00:00
|
|
|
|
|
|
|
|
2018-08-02 09:01:04 +00:00
|
|
|
class ErrItem(object):
|
2018-02-01 12:14:47 +00:00
|
|
|
"""
|
|
|
|
Contains information about the error:
|
|
|
|
- name - error string
|
|
|
|
- file - relative path inside the IDF project to the file which defines this error
|
2018-09-19 12:41:46 +00:00
|
|
|
- include_as - (optional) overwrites the include determined from file
|
2018-02-01 12:14:47 +00:00
|
|
|
- comment - (optional) comment for the error
|
|
|
|
- rel_str - (optional) error string which is a base for the error
|
|
|
|
- rel_off - (optional) offset in relation to the base error
|
|
|
|
"""
|
2018-12-04 12:46:48 +00:00
|
|
|
def __init__(self, name, file, include_as=None, comment="", rel_str="", rel_off=0):
|
2018-02-01 12:14:47 +00:00
|
|
|
self.name = name
|
|
|
|
self.file = file
|
2018-09-19 12:41:46 +00:00
|
|
|
self.include_as = include_as
|
2018-02-01 12:14:47 +00:00
|
|
|
self.comment = comment
|
|
|
|
self.rel_str = rel_str
|
|
|
|
self.rel_off = rel_off
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
def __str__(self):
|
|
|
|
ret = self.name + " from " + self.file
|
|
|
|
if (self.rel_str != ""):
|
|
|
|
ret += " is (" + self.rel_str + " + " + str(self.rel_off) + ")"
|
|
|
|
if self.comment != "":
|
|
|
|
ret += " // " + self.comment
|
|
|
|
return ret
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
def __cmp__(self, other):
|
|
|
|
if self.file in priority_headers and other.file not in priority_headers:
|
|
|
|
return -1
|
|
|
|
elif self.file not in priority_headers and other.file in priority_headers:
|
|
|
|
return 1
|
|
|
|
|
|
|
|
base = "_BASE"
|
|
|
|
|
|
|
|
if self.file == other.file:
|
|
|
|
if self.name.endswith(base) and not(other.name.endswith(base)):
|
|
|
|
return 1
|
|
|
|
elif not(self.name.endswith(base)) and other.name.endswith(base):
|
|
|
|
return -1
|
|
|
|
|
|
|
|
self_key = self.file + self.name
|
|
|
|
other_key = other.file + other.name
|
|
|
|
if self_key < other_key:
|
|
|
|
return -1
|
|
|
|
elif self_key > other_key:
|
|
|
|
return 1
|
|
|
|
else:
|
|
|
|
return 0
|
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
class InputError(RuntimeError):
|
|
|
|
"""
|
|
|
|
Represents and error on the input
|
|
|
|
"""
|
|
|
|
def __init__(self, p, e):
|
|
|
|
super(InputError, self).__init__(p + ": " + e)
|
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-09-19 12:41:46 +00:00
|
|
|
def process(line, idf_path, include_as):
|
2018-02-01 12:14:47 +00:00
|
|
|
"""
|
|
|
|
Process a line of text from file idf_path (relative to IDF project).
|
|
|
|
Fills the global list unproc_list and dictionaries err_dict, rev_err_dict
|
|
|
|
"""
|
|
|
|
if idf_path.endswith(".c"):
|
|
|
|
# We would not try to include a C file
|
|
|
|
raise InputError(idf_path, "This line should be in a header file: %s" % line)
|
|
|
|
|
|
|
|
words = re.split(r' +', line, 2)
|
|
|
|
# words[1] is the error name
|
|
|
|
# words[2] is the rest of the line (value, base + value, comment)
|
2018-08-02 09:01:04 +00:00
|
|
|
if len(words) < 3:
|
2018-02-01 12:14:47 +00:00
|
|
|
raise InputError(idf_path, "Error at line %s" % line)
|
|
|
|
|
|
|
|
line = ""
|
|
|
|
todo_str = words[2]
|
|
|
|
|
|
|
|
comment = ""
|
|
|
|
# identify possible comment
|
|
|
|
m = re.search(r'/\*!<(.+?(?=\*/))', todo_str)
|
|
|
|
if m:
|
2018-08-02 09:01:04 +00:00
|
|
|
comment = m.group(1).strip()
|
2018-12-04 12:46:48 +00:00
|
|
|
todo_str = todo_str[:m.start()].strip() # keep just the part before the comment
|
2018-02-01 12:14:47 +00:00
|
|
|
|
|
|
|
# identify possible parentheses ()
|
|
|
|
m = re.search(r'\((.+)\)', todo_str)
|
|
|
|
if m:
|
2018-12-04 12:46:48 +00:00
|
|
|
todo_str = m.group(1) # keep what is inside the parentheses
|
2018-02-01 12:14:47 +00:00
|
|
|
|
|
|
|
# identify BASE error code, e.g. from the form BASE + 0x01
|
|
|
|
m = re.search(r'\s*(\w+)\s*\+(.+)', todo_str)
|
|
|
|
if m:
|
2018-12-04 12:46:48 +00:00
|
|
|
related = m.group(1) # BASE
|
|
|
|
todo_str = m.group(2) # keep and process only what is after "BASE +"
|
2018-02-01 12:14:47 +00:00
|
|
|
|
|
|
|
# try to match a hexadecimal number
|
|
|
|
m = re.search(r'0x([0-9A-Fa-f]+)', todo_str)
|
|
|
|
if m:
|
|
|
|
num = int(m.group(1), 16)
|
|
|
|
else:
|
|
|
|
# Try to match a decimal number. Negative value is possible for some numbers, e.g. ESP_FAIL
|
|
|
|
m = re.search(r'(-?[0-9]+)', todo_str)
|
|
|
|
if m:
|
|
|
|
num = int(m.group(1), 10)
|
|
|
|
elif re.match(r'\w+', todo_str):
|
|
|
|
# It is possible that there is no number, e.g. #define ERROR BASE
|
2018-12-04 12:46:48 +00:00
|
|
|
related = todo_str # BASE error
|
|
|
|
num = 0 # (BASE + 0)
|
2018-02-01 12:14:47 +00:00
|
|
|
else:
|
|
|
|
raise InputError(idf_path, "Cannot parse line %s" % line)
|
|
|
|
|
|
|
|
try:
|
|
|
|
related
|
|
|
|
except NameError:
|
|
|
|
# The value of the error is known at this moment because it do not depends on some other BASE error code
|
2018-09-19 12:41:46 +00:00
|
|
|
err_dict[num].append(ErrItem(words[1], idf_path, include_as, comment))
|
2018-02-01 12:14:47 +00:00
|
|
|
rev_err_dict[words[1]] = num
|
|
|
|
else:
|
|
|
|
# Store the information available now and compute the error code later
|
2018-09-19 12:41:46 +00:00
|
|
|
unproc_list.append(ErrItem(words[1], idf_path, include_as, comment, related, num))
|
2018-02-01 12:14:47 +00:00
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
def process_remaining_errors():
|
|
|
|
"""
|
|
|
|
Create errors which could not be processed before because the error code
|
|
|
|
for the BASE error code wasn't known.
|
|
|
|
This works for sure only if there is no multiple-time dependency, e.g.:
|
|
|
|
#define BASE1 0
|
|
|
|
#define BASE2 (BASE1 + 10)
|
|
|
|
#define ERROR (BASE2 + 10) - ERROR will be processed successfully only if it processed later than BASE2
|
|
|
|
"""
|
|
|
|
for item in unproc_list:
|
|
|
|
if item.rel_str in rev_err_dict:
|
|
|
|
base_num = rev_err_dict[item.rel_str]
|
|
|
|
num = base_num + item.rel_off
|
2018-09-19 12:41:46 +00:00
|
|
|
err_dict[num].append(ErrItem(item.name, item.file, item.include_as, item.comment))
|
2018-02-01 12:14:47 +00:00
|
|
|
rev_err_dict[item.name] = num
|
|
|
|
else:
|
|
|
|
print(item.rel_str + " referenced by " + item.name + " in " + item.file + " is unknown")
|
|
|
|
|
|
|
|
del unproc_list[:]
|
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
def path_to_include(path):
|
|
|
|
"""
|
|
|
|
Process the path (relative to the IDF project) in a form which can be used
|
|
|
|
to include in a C file. Using just the filename does not work all the
|
|
|
|
time because some files are deeper in the tree. This approach tries to
|
|
|
|
find an 'include' parent directory an include its subdirectories, e.g.
|
|
|
|
"components/XY/include/esp32/file.h" will be transported into "esp32/file.h"
|
|
|
|
So this solution works only works when the subdirectory or subdirectories
|
|
|
|
are inside the "include" directory. Other special cases need to be handled
|
|
|
|
here when the compiler gives an unknown header file error message.
|
|
|
|
"""
|
2018-08-02 09:01:04 +00:00
|
|
|
spl_path = path.split(os.sep)
|
2018-02-01 12:14:47 +00:00
|
|
|
try:
|
|
|
|
i = spl_path.index('include')
|
|
|
|
except ValueError:
|
|
|
|
# no include in the path -> use just the filename
|
|
|
|
return os.path.basename(path)
|
|
|
|
else:
|
2018-12-04 12:46:48 +00:00
|
|
|
return os.sep.join(spl_path[i + 1:]) # subdirectories and filename in "include"
|
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
|
|
|
|
def print_warning(error_list, error_code):
|
|
|
|
"""
|
|
|
|
Print warning about errors with the same error code
|
|
|
|
"""
|
|
|
|
print("[WARNING] The following errors have the same code (%d):" % error_code)
|
|
|
|
for e in error_list:
|
|
|
|
print(" " + str(e))
|
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
def max_string_width():
|
|
|
|
max = 0
|
2018-08-02 09:01:04 +00:00
|
|
|
for k in err_dict:
|
2018-02-01 12:14:47 +00:00
|
|
|
for e in err_dict[k]:
|
|
|
|
x = len(e.name)
|
|
|
|
if x > max:
|
|
|
|
max = x
|
|
|
|
return max
|
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-06-13 08:07:26 +00:00
|
|
|
def generate_c_output(fin, fout):
|
2018-02-01 12:14:47 +00:00
|
|
|
"""
|
|
|
|
Writes the output to fout based on th error dictionary err_dict and
|
|
|
|
template file fin.
|
|
|
|
"""
|
|
|
|
# make includes unique by using a set
|
|
|
|
includes = set()
|
2018-08-02 09:01:04 +00:00
|
|
|
for k in err_dict:
|
2018-02-01 12:14:47 +00:00
|
|
|
for e in err_dict[k]:
|
2018-09-19 12:41:46 +00:00
|
|
|
if e.include_as:
|
|
|
|
includes.add(e.include_as)
|
|
|
|
else:
|
|
|
|
includes.add(path_to_include(e.file))
|
2018-02-01 12:14:47 +00:00
|
|
|
|
|
|
|
# The order in a set in non-deterministic therefore it could happen that the
|
|
|
|
# include order will be different in other machines and false difference
|
|
|
|
# in the output file could be reported. In order to avoid this, the items
|
|
|
|
# are sorted in a list.
|
|
|
|
include_list = list(includes)
|
|
|
|
include_list.sort()
|
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
max_width = max_string_width() + 17 + 1 # length of " ERR_TBL_IT()," with spaces is 17
|
2018-08-02 09:01:04 +00:00
|
|
|
max_decdig = max(len(str(k)) for k in err_dict)
|
2018-02-01 12:14:47 +00:00
|
|
|
|
|
|
|
for line in fin:
|
|
|
|
if re.match(r'@COMMENT@', line):
|
|
|
|
fout.write("//Do not edit this file because it is autogenerated by " + os.path.basename(__file__) + "\n")
|
|
|
|
|
|
|
|
elif re.match(r'@HEADERS@', line):
|
|
|
|
for i in include_list:
|
|
|
|
fout.write("#if __has_include(\"" + i + "\")\n#include \"" + i + "\"\n#endif\n")
|
|
|
|
elif re.match(r'@ERROR_ITEMS@', line):
|
|
|
|
last_file = ""
|
|
|
|
for k in sorted(err_dict.keys()):
|
|
|
|
if len(err_dict[k]) > 1:
|
2018-08-02 09:01:04 +00:00
|
|
|
err_dict[k].sort(key=functools.cmp_to_key(ErrItem.__cmp__))
|
2018-02-01 12:14:47 +00:00
|
|
|
print_warning(err_dict[k], k)
|
|
|
|
for e in err_dict[k]:
|
|
|
|
if e.file != last_file:
|
|
|
|
last_file = e.file
|
|
|
|
fout.write(" // %s\n" % last_file)
|
|
|
|
table_line = (" ERR_TBL_IT(" + e.name + "), ").ljust(max_width) + "/* " + str(k).rjust(max_decdig)
|
|
|
|
fout.write("# ifdef %s\n" % e.name)
|
|
|
|
fout.write(table_line)
|
|
|
|
hexnum_length = 0
|
2018-12-04 12:46:48 +00:00
|
|
|
if k > 0: # negative number and zero should be only ESP_FAIL and ESP_OK
|
2018-02-01 12:14:47 +00:00
|
|
|
hexnum = " 0x%x" % k
|
|
|
|
hexnum_length = len(hexnum)
|
|
|
|
fout.write(hexnum)
|
|
|
|
if e.comment != "":
|
|
|
|
if len(e.comment) < 50:
|
|
|
|
fout.write(" %s" % e.comment)
|
|
|
|
else:
|
|
|
|
indent = " " * (len(table_line) + hexnum_length + 1)
|
2018-12-04 12:46:48 +00:00
|
|
|
w = textwrap.wrap(e.comment, width=120, initial_indent=indent, subsequent_indent=indent)
|
2018-02-01 12:14:47 +00:00
|
|
|
# this couldn't be done with initial_indent because there is no initial_width option
|
|
|
|
fout.write(" %s" % w[0].strip())
|
|
|
|
for i in range(1, len(w)):
|
|
|
|
fout.write("\n%s" % w[i])
|
|
|
|
fout.write(" */\n# endif\n")
|
|
|
|
else:
|
|
|
|
fout.write(line)
|
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-06-13 08:07:26 +00:00
|
|
|
def generate_rst_output(fout):
|
|
|
|
for k in sorted(err_dict.keys()):
|
|
|
|
v = err_dict[k][0]
|
|
|
|
fout.write(':c:macro:`{}` '.format(v.name))
|
|
|
|
if k > 0:
|
|
|
|
fout.write('**(0x{:x})**'.format(k))
|
|
|
|
else:
|
|
|
|
fout.write('({:d})'.format(k))
|
|
|
|
if len(v.comment) > 0:
|
|
|
|
fout.write(': {}'.format(v.comment))
|
|
|
|
fout.write('\n\n')
|
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
def main():
|
2018-06-21 07:21:45 +00:00
|
|
|
if 'IDF_PATH' in os.environ:
|
|
|
|
idf_path = os.environ['IDF_PATH']
|
|
|
|
else:
|
|
|
|
idf_path = os.path.realpath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..'))
|
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
parser = argparse.ArgumentParser(description='ESP32 esp_err_to_name lookup generator for esp_err_t')
|
2018-06-21 07:21:45 +00:00
|
|
|
parser.add_argument('--c_input', help='Path to the esp_err_to_name.c.in template input.', default=idf_path + '/components/esp32/esp_err_to_name.c.in')
|
|
|
|
parser.add_argument('--c_output', help='Path to the esp_err_to_name.c output.', default=idf_path + '/components/esp32/esp_err_to_name.c')
|
2018-06-13 08:07:26 +00:00
|
|
|
parser.add_argument('--rst_output', help='Generate .rst output and save it into this file')
|
2018-02-01 12:14:47 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2018-09-19 12:41:46 +00:00
|
|
|
include_as_pattern = re.compile(r'\s*//\s*{}: [^"]* "([^"]+)"'.format(os.path.basename(__file__)))
|
|
|
|
define_pattern = re.compile(r'\s*#define\s+(ESP_ERR_|ESP_OK|ESP_FAIL)')
|
|
|
|
|
2018-06-21 07:21:45 +00:00
|
|
|
for root, dirnames, filenames in os.walk(idf_path):
|
2018-02-01 12:14:47 +00:00
|
|
|
for filename in fnmatch.filter(filenames, '*.[ch]'):
|
|
|
|
full_path = os.path.join(root, filename)
|
2018-06-21 07:21:45 +00:00
|
|
|
path_in_idf = os.path.relpath(full_path, idf_path)
|
2018-07-09 08:51:22 +00:00
|
|
|
if path_in_idf in ignore_files or path_in_idf.startswith(ignore_dirs):
|
2018-02-01 12:14:47 +00:00
|
|
|
continue
|
2018-08-02 09:01:04 +00:00
|
|
|
with open(full_path, encoding='utf-8') as f:
|
|
|
|
try:
|
2018-09-19 12:41:46 +00:00
|
|
|
include_as = None
|
2018-08-02 09:01:04 +00:00
|
|
|
for line in f:
|
2018-09-19 12:41:46 +00:00
|
|
|
line = line.strip()
|
|
|
|
m = include_as_pattern.search(line)
|
|
|
|
if m:
|
|
|
|
include_as = m.group(1)
|
2018-08-02 09:01:04 +00:00
|
|
|
# match also ESP_OK and ESP_FAIL because some of ESP_ERRs are referencing them
|
2018-09-19 12:41:46 +00:00
|
|
|
elif define_pattern.match(line):
|
2018-08-02 09:01:04 +00:00
|
|
|
try:
|
2018-09-19 12:41:46 +00:00
|
|
|
process(line, path_in_idf, include_as)
|
2018-08-02 09:01:04 +00:00
|
|
|
except InputError as e:
|
2018-09-19 12:41:46 +00:00
|
|
|
print(e)
|
2018-08-02 09:01:04 +00:00
|
|
|
except UnicodeDecodeError:
|
|
|
|
raise ValueError("The encoding of {} is not Unicode.".format(path_in_idf))
|
2018-02-01 12:14:47 +00:00
|
|
|
|
|
|
|
process_remaining_errors()
|
|
|
|
|
2018-06-13 08:07:26 +00:00
|
|
|
if args.rst_output is not None:
|
2018-08-02 09:01:04 +00:00
|
|
|
with open(args.rst_output, 'w', encoding='utf-8') as fout:
|
2018-06-13 08:07:26 +00:00
|
|
|
generate_rst_output(fout)
|
|
|
|
else:
|
2018-08-02 09:01:04 +00:00
|
|
|
with open(args.c_input, 'r', encoding='utf-8') as fin, open(args.c_output, 'w', encoding='utf-8') as fout:
|
2018-06-13 08:07:26 +00:00
|
|
|
generate_c_output(fin, fout)
|
2018-02-01 12:14:47 +00:00
|
|
|
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-02-01 12:14:47 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|