kernel-doc.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # coding=utf-8
  2. #
  3. # Copyright © 2016 Intel Corporation
  4. #
  5. # Permission is hereby granted, free of charge, to any person obtaining a
  6. # copy of this software and associated documentation files (the "Software"),
  7. # to deal in the Software without restriction, including without limitation
  8. # the rights to use, copy, modify, merge, publish, distribute, sublicense,
  9. # and/or sell copies of the Software, and to permit persons to whom the
  10. # Software is furnished to do so, subject to the following conditions:
  11. #
  12. # The above copyright notice and this permission notice (including the next
  13. # paragraph) shall be included in all copies or substantial portions of the
  14. # Software.
  15. #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  19. # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  21. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  22. # IN THE SOFTWARE.
  23. #
  24. # Authors:
  25. # Jani Nikula <jani.nikula@intel.com>
  26. #
  27. # Please make sure this works on both python2 and python3.
  28. #
  29. import os
  30. import subprocess
  31. import sys
  32. from docutils import nodes, statemachine
  33. from docutils.parsers.rst import directives
  34. from sphinx.util.compat import Directive
  35. class KernelDocDirective(Directive):
  36. """Extract kernel-doc comments from the specified file"""
  37. required_argument = 1
  38. optional_arguments = 4
  39. option_spec = {
  40. 'doc': directives.unchanged_required,
  41. 'functions': directives.unchanged_required,
  42. 'export': directives.flag,
  43. 'internal': directives.flag,
  44. }
  45. has_content = False
  46. def run(self):
  47. env = self.state.document.settings.env
  48. cmd = [env.config.kerneldoc_bin, '-rst']
  49. filename = env.config.kerneldoc_srctree + '/' + self.arguments[0]
  50. # Tell sphinx of the dependency
  51. env.note_dependency(os.path.abspath(filename))
  52. tab_width = self.options.get('tab-width', self.state.document.settings.tab_width)
  53. source = filename
  54. # FIXME: make this nicer and more robust against errors
  55. if 'export' in self.options:
  56. cmd += ['-export']
  57. elif 'internal' in self.options:
  58. cmd += ['-internal']
  59. elif 'doc' in self.options:
  60. cmd += ['-function', str(self.options.get('doc'))]
  61. elif 'functions' in self.options:
  62. for f in str(self.options.get('functions')).split(' '):
  63. cmd += ['-function', f]
  64. cmd += [filename]
  65. try:
  66. env.app.verbose('calling kernel-doc \'%s\'' % (" ".join(cmd)))
  67. p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
  68. out, err = p.communicate()
  69. # python2 needs conversion to unicode.
  70. # python3 with universal_newlines=True returns strings.
  71. if sys.version_info.major < 3:
  72. out, err = unicode(out, 'utf-8'), unicode(err, 'utf-8')
  73. if p.returncode != 0:
  74. sys.stderr.write(err)
  75. env.app.warn('kernel-doc \'%s\' failed with return code %d' % (" ".join(cmd), p.returncode))
  76. return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
  77. elif env.config.kerneldoc_verbosity > 0:
  78. sys.stderr.write(err)
  79. lines = statemachine.string2lines(out, tab_width, convert_whitespace=True)
  80. self.state_machine.insert_input(lines, source)
  81. return []
  82. except Exception as e:
  83. env.app.warn('kernel-doc \'%s\' processing failed with: %s' %
  84. (" ".join(cmd), str(e)))
  85. return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
  86. def setup(app):
  87. app.add_config_value('kerneldoc_bin', None, 'env')
  88. app.add_config_value('kerneldoc_srctree', None, 'env')
  89. app.add_config_value('kerneldoc_verbosity', 1, 'env')
  90. app.add_directive('kernel-doc', KernelDocDirective)