blob: dedb24e3bb7ab4035f4f324bfc55d5c060c898b2 [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
Daniel Vetterd90368f2016-06-03 22:21:35 +020033import re
Jani Nikula03d35d92016-06-07 12:13:56 +030034import glob
Jani Nikulac56de1d2016-05-18 23:30:30 +030035
36from docutils import nodes, statemachine
Daniel Vetter16e161c2016-06-02 14:59:18 +020037from docutils.statemachine import ViewList
Jani Nikulac56de1d2016-05-18 23:30:30 +030038from docutils.parsers.rst import directives
39from sphinx.util.compat import Directive
40
41class KernelDocDirective(Directive):
42 """Extract kernel-doc comments from the specified file"""
43 required_argument = 1
44 optional_arguments = 4
45 option_spec = {
46 'doc': directives.unchanged_required,
47 'functions': directives.unchanged_required,
Jani Nikula03d35d92016-06-07 12:13:56 +030048 'export': directives.unchanged,
49 'internal': directives.unchanged,
Jani Nikulac56de1d2016-05-18 23:30:30 +030050 }
51 has_content = False
52
53 def run(self):
54 env = self.state.document.settings.env
Daniel Vetterd90368f2016-06-03 22:21:35 +020055 cmd = [env.config.kerneldoc_bin, '-rst', '-enable-lineno']
Jani Nikulac56de1d2016-05-18 23:30:30 +030056
57 filename = env.config.kerneldoc_srctree + '/' + self.arguments[0]
Jani Nikula03d35d92016-06-07 12:13:56 +030058 export_file_patterns = []
Jani Nikulac56de1d2016-05-18 23:30:30 +030059
60 # Tell sphinx of the dependency
61 env.note_dependency(os.path.abspath(filename))
62
63 tab_width = self.options.get('tab-width', self.state.document.settings.tab_width)
Jani Nikulac56de1d2016-05-18 23:30:30 +030064
65 # FIXME: make this nicer and more robust against errors
66 if 'export' in self.options:
67 cmd += ['-export']
Jani Nikula03d35d92016-06-07 12:13:56 +030068 export_file_patterns = str(self.options.get('export')).split()
Jani Nikulac56de1d2016-05-18 23:30:30 +030069 elif 'internal' in self.options:
70 cmd += ['-internal']
Jani Nikula03d35d92016-06-07 12:13:56 +030071 export_file_patterns = str(self.options.get('internal')).split()
Jani Nikulac56de1d2016-05-18 23:30:30 +030072 elif 'doc' in self.options:
73 cmd += ['-function', str(self.options.get('doc'))]
74 elif 'functions' in self.options:
Jani Nikula057de5c2016-06-08 10:25:40 +030075 for f in str(self.options.get('functions')).split():
Jani Nikulac56de1d2016-05-18 23:30:30 +030076 cmd += ['-function', f]
77
Jani Nikula03d35d92016-06-07 12:13:56 +030078 for pattern in export_file_patterns:
79 for f in glob.glob(env.config.kerneldoc_srctree + '/' + pattern):
80 env.note_dependency(os.path.abspath(f))
81 cmd += ['-export-file', f]
82
Jani Nikulac56de1d2016-05-18 23:30:30 +030083 cmd += [filename]
84
85 try:
86 env.app.verbose('calling kernel-doc \'%s\'' % (" ".join(cmd)))
87
88 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
89 out, err = p.communicate()
90
Jani Nikulaba350182016-05-31 18:09:12 +030091 # python2 needs conversion to unicode.
92 # python3 with universal_newlines=True returns strings.
93 if sys.version_info.major < 3:
94 out, err = unicode(out, 'utf-8'), unicode(err, 'utf-8')
Jani Nikulac56de1d2016-05-18 23:30:30 +030095
96 if p.returncode != 0:
97 sys.stderr.write(err)
98
99 env.app.warn('kernel-doc \'%s\' failed with return code %d' % (" ".join(cmd), p.returncode))
100 return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
101 elif env.config.kerneldoc_verbosity > 0:
102 sys.stderr.write(err)
103
104 lines = statemachine.string2lines(out, tab_width, convert_whitespace=True)
Daniel Vetterd90368f2016-06-03 22:21:35 +0200105 result = ViewList()
106
107 lineoffset = 0;
108 line_regex = re.compile("^#define LINENO ([0-9]+)$")
109 for line in lines:
110 match = line_regex.search(line)
111 if match:
112 # sphinx counts lines from 0
113 lineoffset = int(match.group(1)) - 1
114 # we must eat our comments since the upset the markup
115 else:
Jani Nikula06173fe2016-06-08 13:38:28 +0300116 result.append(line, filename, lineoffset)
Daniel Vetterd90368f2016-06-03 22:21:35 +0200117 lineoffset += 1
Daniel Vetter16e161c2016-06-02 14:59:18 +0200118
119 node = nodes.section()
120 node.document = self.state.document
121 self.state.nested_parse(result, self.content_offset, node)
122
123 return node.children
124
Jani Nikulac56de1d2016-05-18 23:30:30 +0300125 except Exception as e:
126 env.app.warn('kernel-doc \'%s\' processing failed with: %s' %
127 (" ".join(cmd), str(e)))
128 return [nodes.error(None, nodes.paragraph(text = "kernel-doc missing"))]
129
130def setup(app):
131 app.add_config_value('kerneldoc_bin', None, 'env')
132 app.add_config_value('kerneldoc_srctree', None, 'env')
133 app.add_config_value('kerneldoc_verbosity', 1, 'env')
134
135 app.add_directive('kernel-doc', KernelDocDirective)