gen_esp_err_to_name.py 15 KB

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