kernel-doc.py 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. import os
  27. import subprocess
  28. import sys
  29. from docutils import nodes, statemachine
  30. from docutils.parsers.rst import directives
  31. from sphinx.util.compat import Directive
  32. class KernelDocDirective(Directive):
  33. """Extract kernel-doc comments from the specified file"""
  34. required_argument = 1
  35. optional_arguments = 4
  36. option_spec = {
  37. 'doc': directives.unchanged_required,
  38. 'functions': directives.unchanged_required,
  39. 'export': directives.flag,
  40. 'internal': directives.flag,
  41. }
  42. has_content = False
  43. def run(self):
  44. env = self.state.document.settings.env
  45. cmd = [env.config.kerneldoc_bin, '-rst']
  46. filename = env.config.kerneldoc_srctree + '/' + self.arguments[0]
  47. # Tell sphinx of the dependency
  48. env.note_dependency(os.path.abspath(filename))
  49. tab_width = self.options.get('tab-width', self.state.document.settings.tab_width)
  50. source = self.state_machine.input_lines.source(self.lineno - self.state_machine.input_offset - 1)
  51. # FIXME: make this nicer and more robust against errors
  52. if 'export' in self.options:
  53. cmd += ['-export']
  54. elif 'internal' in self.options:
  55. cmd += ['-internal']
  56. elif 'doc' in self.options:
  57. cmd += ['-function', str(self.options.get('doc'))]
  58. elif 'functions' in self.options:
  59. for f in str(self.options.get('functions')).split(' '):
  60. cmd += ['-function', f]
  61. cmd += [filename]
  62. try:
  63. env.app.verbose('calling kernel-doc \'%s\'' % (" ".join(cmd)))
  64. p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
  65. out, err = p.communicate()
  66. # assume the kernel sources are utf-8
  67. out, err = unicode(out, 'utf-8'), unicode(err, 'utf-8')
  68. if p.returncode != 0:
  69. sys.stderr.write(err)
  70. env.app.warn('kernel-doc \'%s\' failed with return code %d' % (" ".join(cmd), p.returncode))
  71. return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
  72. elif env.config.kerneldoc_verbosity > 0:
  73. sys.stderr.write(err)
  74. lines = statemachine.string2lines(out, tab_width, convert_whitespace=True)
  75. self.state_machine.insert_input(lines, source)
  76. return []
  77. except Exception as e:
  78. env.app.warn('kernel-doc \'%s\' processing failed with: %s' %
  79. (" ".join(cmd), str(e)))
  80. return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
  81. def setup(app):
  82. app.add_config_value('kerneldoc_bin', None, 'env')
  83. app.add_config_value('kerneldoc_srctree', None, 'env')
  84. app.add_config_value('kerneldoc_verbosity', 1, 'env')
  85. app.add_directive('kernel-doc', KernelDocDirective)