blob: bd422870101e8e7775f05f75ec2991b47fdd92c7 [file] [log] [blame]
Jani Nikulac56de1d2016-05-18 23:30:30 +03001# 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>
Jani Nikulaba350182016-05-31 18:09:12 +030026#
27# Please make sure this works on both python2 and python3.
28#
Jani Nikulac56de1d2016-05-18 23:30:30 +030029
30import os
31import subprocess
32import sys
33
34from docutils import nodes, statemachine
Daniel Vetter16e161c2016-06-02 14:59:18 +020035from docutils.statemachine import ViewList
Jani Nikulac56de1d2016-05-18 23:30:30 +030036from docutils.parsers.rst import directives
37from sphinx.util.compat import Directive
38
39class KernelDocDirective(Directive):
40 """Extract kernel-doc comments from the specified file"""
41 required_argument = 1
42 optional_arguments = 4
43 option_spec = {
44 'doc': directives.unchanged_required,
45 'functions': directives.unchanged_required,
46 'export': directives.flag,
47 'internal': directives.flag,
48 }
49 has_content = False
50
51 def run(self):
52 env = self.state.document.settings.env
53 cmd = [env.config.kerneldoc_bin, '-rst']
54
55 filename = env.config.kerneldoc_srctree + '/' + self.arguments[0]
56
57 # Tell sphinx of the dependency
58 env.note_dependency(os.path.abspath(filename))
59
60 tab_width = self.options.get('tab-width', self.state.document.settings.tab_width)
Daniel Vetter9cc1a442016-06-01 11:12:42 +020061 source = filename
Jani Nikulac56de1d2016-05-18 23:30:30 +030062
63 # FIXME: make this nicer and more robust against errors
64 if 'export' in self.options:
65 cmd += ['-export']
66 elif 'internal' in self.options:
67 cmd += ['-internal']
68 elif 'doc' in self.options:
69 cmd += ['-function', str(self.options.get('doc'))]
70 elif 'functions' in self.options:
71 for f in str(self.options.get('functions')).split(' '):
72 cmd += ['-function', f]
73
74 cmd += [filename]
75
76 try:
77 env.app.verbose('calling kernel-doc \'%s\'' % (" ".join(cmd)))
78
79 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
80 out, err = p.communicate()
81
Jani Nikulaba350182016-05-31 18:09:12 +030082 # python2 needs conversion to unicode.
83 # python3 with universal_newlines=True returns strings.
84 if sys.version_info.major < 3:
85 out, err = unicode(out, 'utf-8'), unicode(err, 'utf-8')
Jani Nikulac56de1d2016-05-18 23:30:30 +030086
87 if p.returncode != 0:
88 sys.stderr.write(err)
89
90 env.app.warn('kernel-doc \'%s\' failed with return code %d' % (" ".join(cmd), p.returncode))
91 return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
92 elif env.config.kerneldoc_verbosity > 0:
93 sys.stderr.write(err)
94
95 lines = statemachine.string2lines(out, tab_width, convert_whitespace=True)
Daniel Vetter16e161c2016-06-02 14:59:18 +020096 result = ViewList(lines, source)
97
98 node = nodes.section()
99 node.document = self.state.document
100 self.state.nested_parse(result, self.content_offset, node)
101
102 return node.children
103
Jani Nikulac56de1d2016-05-18 23:30:30 +0300104 except Exception as e:
105 env.app.warn('kernel-doc \'%s\' processing failed with: %s' %
106 (" ".join(cmd), str(e)))
107 return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
108
109def setup(app):
110 app.add_config_value('kerneldoc_bin', None, 'env')
111 app.add_config_value('kerneldoc_srctree', None, 'env')
112 app.add_config_value('kerneldoc_verbosity', 1, 'env')
113
114 app.add_directive('kernel-doc', KernelDocDirective)