gen_esp_err_to_name.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. #!/usr/bin/env python
  2. #
  3. # Copyright 2018 Espressif Systems (Shanghai) PTE LTD
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. from __future__ import print_function
  17. from __future__ import unicode_literals
  18. import sys
  19. try:
  20. from builtins import str
  21. from builtins import range
  22. from builtins import object
  23. except ImportError:
  24. # This should not happen because the Python packages are checked before invoking this script. However, here is
  25. # some output which should help if we missed something.
  26. print('Import has failed probably because of the missing "future" package. Please install all the packages for '
  27. 'interpreter {} from the requirements.txt file.'.format(sys.executable))
  28. # The path to requirements.txt is not provided because this script could be invoked from an IDF project (then the
  29. # requirements.txt from the IDF_PATH should be used) or from the documentation project (then the requirements.txt
  30. # for the documentation directory should be used).
  31. sys.exit(1)
  32. from io import open
  33. import os
  34. import argparse
  35. import re
  36. import fnmatch
  37. import collections
  38. import textwrap
  39. import functools
  40. # list files here which should not be parsed
  41. ignore_files = [os.path.join('components', 'mdns', 'test_afl_fuzz_host', 'esp32_compat.h')]
  42. # add directories here which should not be parsed,
  43. ignore_dirs = os.path.join('examples')
  44. # macros from here have higher priorities in case of collisions
  45. priority_headers = [os.path.join('components', 'esp_common', 'include', 'esp_err.h')]
  46. # The following headers won't be included. This is useful if they are permanently included from esp_err_to_name.c.in.
  47. dont_include = [os.path.join('soc', 'soc.h'),
  48. os.path.join('esp_err.h')]
  49. err_dict = collections.defaultdict(list) # identified errors are stored here; mapped by the error code
  50. rev_err_dict = dict() # map of error string to error code
  51. unproc_list = list() # errors with unknown codes which depend on other errors
  52. class ErrItem(object):
  53. """
  54. Contains information about the error:
  55. - name - error string
  56. - file - relative path inside the IDF project to the file which defines this error
  57. - include_as - (optional) overwrites the include determined from file
  58. - comment - (optional) comment for the error
  59. - rel_str - (optional) error string which is a base for the error
  60. - rel_off - (optional) offset in relation to the base error
  61. """
  62. def __init__(self, name, file, include_as=None, comment="", rel_str="", rel_off=0):
  63. self.name = name
  64. self.file = file
  65. self.include_as = include_as
  66. self.comment = comment
  67. self.rel_str = rel_str
  68. self.rel_off = rel_off
  69. def __str__(self):
  70. ret = self.name + " from " + self.file
  71. if (self.rel_str != ""):
  72. ret += " is (" + self.rel_str + " + " + str(self.rel_off) + ")"
  73. if self.comment != "":
  74. ret += " // " + self.comment
  75. return ret
  76. def __cmp__(self, other):
  77. if self.file in priority_headers and other.file not in priority_headers:
  78. return -1
  79. elif self.file not in priority_headers and other.file in priority_headers:
  80. return 1
  81. base = "_BASE"
  82. if self.file == other.file:
  83. if self.name.endswith(base) and not(other.name.endswith(base)):
  84. return 1
  85. elif not(self.name.endswith(base)) and other.name.endswith(base):
  86. return -1
  87. self_key = self.file + self.name
  88. other_key = other.file + other.name
  89. if self_key < other_key:
  90. return -1
  91. elif self_key > other_key:
  92. return 1
  93. else:
  94. return 0
  95. class InputError(RuntimeError):
  96. """
  97. Represents and error on the input
  98. """
  99. def __init__(self, p, e):
  100. super(InputError, self).__init__(p + ": " + e)
  101. def process(line, idf_path, include_as):
  102. """
  103. Process a line of text from file idf_path (relative to IDF project).
  104. Fills the global list unproc_list and dictionaries err_dict, rev_err_dict
  105. """
  106. if idf_path.endswith(".c"):
  107. # We would not try to include a C file
  108. raise InputError(idf_path, "This line should be in a header file: %s" % line)
  109. words = re.split(r' +', line, 2)
  110. # words[1] is the error name
  111. # words[2] is the rest of the line (value, base + value, comment)
  112. if len(words) < 3:
  113. raise InputError(idf_path, "Error at line %s" % line)
  114. line = ""
  115. todo_str = words[2]
  116. comment = ""
  117. # identify possible comment
  118. m = re.search(r'/\*!<(.+?(?=\*/))', todo_str)
  119. if m:
  120. comment = m.group(1).strip()
  121. todo_str = todo_str[:m.start()].strip() # keep just the part before the comment
  122. # identify possible parentheses ()
  123. m = re.search(r'\((.+)\)', todo_str)
  124. if m:
  125. todo_str = m.group(1) # keep what is inside the parentheses
  126. # identify BASE error code, e.g. from the form BASE + 0x01
  127. m = re.search(r'\s*(\w+)\s*\+(.+)', todo_str)
  128. if m:
  129. related = m.group(1) # BASE
  130. todo_str = m.group(2) # keep and process only what is after "BASE +"
  131. # try to match a hexadecimal number
  132. m = re.search(r'0x([0-9A-Fa-f]+)', todo_str)
  133. if m:
  134. num = int(m.group(1), 16)
  135. else:
  136. # Try to match a decimal number. Negative value is possible for some numbers, e.g. ESP_FAIL
  137. m = re.search(r'(-?[0-9]+)', todo_str)
  138. if m:
  139. num = int(m.group(1), 10)
  140. elif re.match(r'\w+', todo_str):
  141. # It is possible that there is no number, e.g. #define ERROR BASE
  142. related = todo_str # BASE error
  143. num = 0 # (BASE + 0)
  144. else:
  145. raise InputError(idf_path, "Cannot parse line %s" % line)
  146. try:
  147. related
  148. except NameError:
  149. # The value of the error is known at this moment because it do not depends on some other BASE error code
  150. err_dict[num].append(ErrItem(words[1], idf_path, include_as, comment))
  151. rev_err_dict[words[1]] = num
  152. else:
  153. # Store the information available now and compute the error code later
  154. unproc_list.append(ErrItem(words[1], idf_path, include_as, comment, related, num))
  155. def process_remaining_errors():
  156. """
  157. Create errors which could not be processed before because the error code
  158. for the BASE error code wasn't known.
  159. This works for sure only if there is no multiple-time dependency, e.g.:
  160. #define BASE1 0
  161. #define BASE2 (BASE1 + 10)
  162. #define ERROR (BASE2 + 10) - ERROR will be processed successfully only if it processed later than BASE2
  163. """
  164. for item in unproc_list:
  165. if item.rel_str in rev_err_dict:
  166. base_num = rev_err_dict[item.rel_str]
  167. num = base_num + item.rel_off
  168. err_dict[num].append(ErrItem(item.name, item.file, item.include_as, item.comment))
  169. rev_err_dict[item.name] = num
  170. else:
  171. print(item.rel_str + " referenced by " + item.name + " in " + item.file + " is unknown")
  172. del unproc_list[:]
  173. def path_to_include(path):
  174. """
  175. Process the path (relative to the IDF project) in a form which can be used
  176. to include in a C file. Using just the filename does not work all the
  177. time because some files are deeper in the tree. This approach tries to
  178. find an 'include' parent directory an include its subdirectories, e.g.
  179. "components/XY/include/esp32/file.h" will be transported into "esp32/file.h"
  180. So this solution works only works when the subdirectory or subdirectories
  181. are inside the "include" directory. Other special cases need to be handled
  182. here when the compiler gives an unknown header file error message.
  183. """
  184. spl_path = path.split(os.sep)
  185. try:
  186. i = spl_path.index('include')
  187. except ValueError:
  188. # no include in the path -> use just the filename
  189. return os.path.basename(path)
  190. else:
  191. return os.sep.join(spl_path[i + 1:]) # subdirectories and filename in "include"
  192. def print_warning(error_list, error_code):
  193. """
  194. Print warning about errors with the same error code
  195. """
  196. print("[WARNING] The following errors have the same code (%d):" % error_code)
  197. for e in error_list:
  198. print(" " + str(e))
  199. def max_string_width():
  200. max = 0
  201. for k in err_dict:
  202. for e in err_dict[k]:
  203. x = len(e.name)
  204. if x > max:
  205. max = x
  206. return max
  207. def generate_c_output(fin, fout):
  208. """
  209. Writes the output to fout based on th error dictionary err_dict and
  210. template file fin.
  211. """
  212. # make includes unique by using a set
  213. includes = set()
  214. for k in err_dict:
  215. for e in err_dict[k]:
  216. if e.include_as:
  217. includes.add(e.include_as)
  218. else:
  219. includes.add(path_to_include(e.file))
  220. # The order in a set in non-deterministic therefore it could happen that the
  221. # include order will be different in other machines and false difference
  222. # in the output file could be reported. In order to avoid this, the items
  223. # are sorted in a list.
  224. include_list = list(includes)
  225. include_list.sort()
  226. max_width = max_string_width() + 17 + 1 # length of " ERR_TBL_IT()," with spaces is 17
  227. max_decdig = max(len(str(k)) for k in err_dict)
  228. for line in fin:
  229. if re.match(r'@COMMENT@', line):
  230. fout.write("//Do not edit this file because it is autogenerated by " + os.path.basename(__file__) + "\n")
  231. elif re.match(r'@HEADERS@', line):
  232. for i in include_list:
  233. if i not in dont_include:
  234. fout.write("#if __has_include(\"" + i + "\")\n#include \"" + i + "\"\n#endif\n")
  235. elif re.match(r'@ERROR_ITEMS@', line):
  236. last_file = ""
  237. for k in sorted(err_dict.keys()):
  238. if len(err_dict[k]) > 1:
  239. err_dict[k].sort(key=functools.cmp_to_key(ErrItem.__cmp__))
  240. print_warning(err_dict[k], k)
  241. for e in err_dict[k]:
  242. if e.file != last_file:
  243. last_file = e.file
  244. fout.write(" // %s\n" % last_file)
  245. table_line = (" ERR_TBL_IT(" + e.name + "), ").ljust(max_width) + "/* " + str(k).rjust(max_decdig)
  246. fout.write("# ifdef %s\n" % e.name)
  247. fout.write(table_line)
  248. hexnum_length = 0
  249. if k > 0: # negative number and zero should be only ESP_FAIL and ESP_OK
  250. hexnum = " 0x%x" % k
  251. hexnum_length = len(hexnum)
  252. fout.write(hexnum)
  253. if e.comment != "":
  254. if len(e.comment) < 50:
  255. fout.write(" %s" % e.comment)
  256. else:
  257. indent = " " * (len(table_line) + hexnum_length + 1)
  258. w = textwrap.wrap(e.comment, width=120, initial_indent=indent, subsequent_indent=indent)
  259. # this couldn't be done with initial_indent because there is no initial_width option
  260. fout.write(" %s" % w[0].strip())
  261. for i in range(1, len(w)):
  262. fout.write("\n%s" % w[i])
  263. fout.write(" */\n# endif\n")
  264. else:
  265. fout.write(line)
  266. def generate_rst_output(fout):
  267. for k in sorted(err_dict.keys()):
  268. v = err_dict[k][0]
  269. fout.write(':c:macro:`{}` '.format(v.name))
  270. if k > 0:
  271. fout.write('**(0x{:x})**'.format(k))
  272. else:
  273. fout.write('({:d})'.format(k))
  274. if len(v.comment) > 0:
  275. fout.write(': {}'.format(v.comment))
  276. fout.write('\n\n')
  277. def main():
  278. if 'IDF_PATH' in os.environ:
  279. idf_path = os.environ['IDF_PATH']
  280. else:
  281. idf_path = os.path.realpath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..'))
  282. parser = argparse.ArgumentParser(description='ESP32 esp_err_to_name lookup generator for esp_err_t')
  283. parser.add_argument('--c_input', help='Path to the esp_err_to_name.c.in template input.',
  284. default=idf_path + '/components/esp_common/src/esp_err_to_name.c.in')
  285. parser.add_argument('--c_output', help='Path to the esp_err_to_name.c output.', default=idf_path + '/components/esp_common/src/esp_err_to_name.c')
  286. parser.add_argument('--rst_output', help='Generate .rst output and save it into this file')
  287. args = parser.parse_args()
  288. include_as_pattern = re.compile(r'\s*//\s*{}: [^"]* "([^"]+)"'.format(os.path.basename(__file__)))
  289. define_pattern = re.compile(r'\s*#define\s+(ESP_ERR_|ESP_OK|ESP_FAIL)')
  290. for root, dirnames, filenames in os.walk(idf_path):
  291. for filename in fnmatch.filter(filenames, '*.[ch]'):
  292. full_path = os.path.join(root, filename)
  293. path_in_idf = os.path.relpath(full_path, idf_path)
  294. if path_in_idf in ignore_files or path_in_idf.startswith(ignore_dirs):
  295. continue
  296. with open(full_path, encoding='utf-8') as f:
  297. try:
  298. include_as = None
  299. for line in f:
  300. line = line.strip()
  301. m = include_as_pattern.search(line)
  302. if m:
  303. include_as = m.group(1)
  304. # match also ESP_OK and ESP_FAIL because some of ESP_ERRs are referencing them
  305. elif define_pattern.match(line):
  306. try:
  307. process(line, path_in_idf, include_as)
  308. except InputError as e:
  309. print(e)
  310. except UnicodeDecodeError:
  311. raise ValueError("The encoding of {} is not Unicode.".format(path_in_idf))
  312. process_remaining_errors()
  313. if args.rst_output is not None:
  314. with open(args.rst_output, 'w', encoding='utf-8') as fout:
  315. generate_rst_output(fout)
  316. else:
  317. with open(args.c_input, 'r', encoding='utf-8') as fin, open(args.c_output, 'w', encoding='utf-8') as fout:
  318. generate_c_output(fin, fout)
  319. if __name__ == "__main__":
  320. main()