gen-kconfig-doc.py 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # gen-kconfig-doc.py — generate Sphinx .rst file from Kconfig files
  5. #
  6. # This script iterates over Kconfig and Kconfig.projbuild files in
  7. # ESP-IDF component directories, and outputs documentation for these options
  8. # as ReST markup.
  9. # For each option in Kconfig file (e.g. 'FOO'), CONFIG_FOO link target is
  10. # generated, allowing options to be referenced in other documents
  11. # (using :ref:`CONFIG_FOO`)
  12. #
  13. # This script uses kconfiglib library to do all the work of parsing Kconfig
  14. # files: https://github.com/ulfalizer/Kconfiglib
  15. #
  16. # Copyright 2017 Espressif Systems (Shanghai) PTE LTD
  17. #
  18. # Licensed under the Apache License, Version 2.0 (the "License");
  19. # you may not use this file except in compliance with the License.
  20. # You may obtain a copy of the License at
  21. #
  22. # http:#www.apache.org/licenses/LICENSE-2.0
  23. #
  24. # Unless required by applicable law or agreed to in writing, software
  25. # distributed under the License is distributed on an "AS IS" BASIS,
  26. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  27. # See the License for the specific language governing permissions and
  28. # limitations under the License.
  29. import os
  30. import kconfiglib
  31. # Indentation to be used in the generated file
  32. INDENT = ' '
  33. # Characters used when underlining section heading
  34. HEADING_SYMBOLS = '#*=-^"+'
  35. # Keep the heading level in sync with api-reference/kconfig.rst
  36. INITIAL_HEADING_LEVEL = 2
  37. MAX_HEADING_LEVEL = 5
  38. OPTION_HEADING_LEVEL = 6
  39. def print_menu_contents(title, items, heading_level, breadcrumbs):
  40. if title:
  41. print_section_heading(title, heading_level)
  42. for entry in items:
  43. if entry.is_menu():
  44. if len(breadcrumbs) > 0:
  45. new_breadcrumbs = breadcrumbs + ' > ' + entry.get_title()
  46. else:
  47. new_breadcrumbs = entry.get_title()
  48. print_menu_contents(entry.get_title(), entry.get_items(),
  49. min(heading_level + 1, MAX_HEADING_LEVEL),
  50. new_breadcrumbs)
  51. elif entry.is_choice():
  52. print_choice(entry, breadcrumbs)
  53. else:
  54. if len(entry.get_prompts()) == 0:
  55. # Skip entries which can never be visible
  56. continue
  57. # Currently this does not handle 'menuconfig' entires in any special way,
  58. # as Kconfglib offers no way of recognizing them automatically.
  59. print_option(entry, breadcrumbs)
  60. # Trailing newline after every option
  61. print
  62. def print_choice(choice, breadcrumbs):
  63. print_option(choice, breadcrumbs)
  64. print
  65. print '%sAvailable options:' % INDENT
  66. for opt in choice.get_symbols():
  67. # Format available options as a list
  68. print '%s- %s' % (INDENT * 2, opt.name)
  69. def print_section_heading(title, heading_level):
  70. print title
  71. print HEADING_SYMBOLS[heading_level] * len(title)
  72. print
  73. def print_option(opt, breadcrumbs):
  74. # add link target so we can use :ref:`CONFIG_FOO`
  75. print '.. _CONFIG_%s:' % opt.name
  76. print
  77. print_section_heading(opt.name, OPTION_HEADING_LEVEL)
  78. if len(opt.prompts) > 0:
  79. print '%s%s' % (INDENT, opt.prompts[0][0])
  80. print
  81. print '%s:emphasis:`Found in: %s`' % (INDENT, breadcrumbs)
  82. print
  83. if opt.get_help() is not None:
  84. # Help text normally contains newlines, but spaces at the beginning of
  85. # each line are stripped by kconfiglib. We need to re-indent the text
  86. # to produce valid ReST.
  87. print '%s%s' % (INDENT, opt.get_help().replace('\n', '\n%s' % INDENT))
  88. def process_kconfig_file(kconfig_file, heading_level, breadcrumbs):
  89. if os.path.exists(kconfig_file):
  90. cfg = kconfiglib.Config(kconfig_file, print_warnings=True)
  91. print_menu_contents(None, cfg.get_top_level_items(), heading_level, breadcrumbs)
  92. def print_all_components():
  93. heading_level = INITIAL_HEADING_LEVEL
  94. # Currently this works only for IDF components.
  95. # TODO: figure out if this can be re-used for documenting applications?
  96. components_path = os.path.join(os.path.curdir, '../..', 'components')
  97. for component_name in os.listdir(components_path):
  98. if component_name.startswith('.'):
  99. continue # skip system thumbnail folders
  100. kconfig_file_path = os.path.join(components_path, component_name, 'Kconfig')
  101. process_kconfig_file(kconfig_file_path, heading_level, 'Component config')
  102. process_kconfig_file(kconfig_file_path + '.projbuild', heading_level, '')
  103. if __name__ == '__main__':
  104. print_all_components()