1 # -*- coding: utf-8; mode: python -*-
2 # pylint: disable=W0141,C0113,C0103,C0325
7 Replacement for the sphinx c-domain.
9 :copyright: Copyright (C) 2016 Markus Heiser
10 :license: GPL Version 2, June 1991 see Linux/COPYING for details.
12 List of customizations:
14 * Moved the *duplicate C object description* warnings for function
15 declarations in the nitpicky mode. See Sphinx documentation for
16 the config values for ``nitpick`` and ``nitpick_ignore``.
18 * Add option 'name' to the "c:function:" directive. With option 'name' the
19 ref-name of a function can be modified. E.g.::
21 .. c:function:: int ioctl( int fd, int request )
22 :name: VIDIOC_LOG_STATUS
24 The func-name (e.g. ioctl) remains in the output but the ref-name changed
25 from 'ioctl' to 'VIDIOC_LOG_STATUS'. The function is referenced by::
27 * :c:func:`VIDIOC_LOG_STATUS` or
28 * :any:`VIDIOC_LOG_STATUS` (``:any:`` needs sphinx 1.3)
30 * Handle signatures of function-like macros well. Don't try to deduce
31 arguments types of function-like macros.
35 from docutils
import nodes
36 from docutils
.parsers
.rst
import directives
39 from sphinx
import addnodes
40 from sphinx
.domains
.c
import c_funcptr_sig_re
, c_sig_re
41 from sphinx
.domains
.c
import CObject
as Base_CObject
42 from sphinx
.domains
.c
import CDomain
as Base_CDomain
47 major
, minor
, patch
= sphinx
.version_info
[:3]
51 if (major
== 1 and minor
< 8):
52 app
.override_domain(CDomain
)
54 app
.add_domain(CDomain
, override
=True)
57 version
= __version__
,
58 parallel_read_safe
= True,
59 parallel_write_safe
= True
62 class CObject(Base_CObject
):
65 Description of a C language object.
68 "name" : directives
.unchanged
71 def handle_func_like_macro(self
, sig
, signode
):
72 u
"""Handles signatures of function-like macros.
74 If the objtype is 'function' and the the signature ``sig`` is a
75 function-like macro, the name of the macro is returned. Otherwise
76 ``False`` is returned. """
78 if not self
.objtype
== 'function':
81 m
= c_funcptr_sig_re
.match(sig
)
83 m
= c_sig_re
.match(sig
)
85 raise ValueError('no match')
87 rettype
, fullname
, arglist
, _const
= m
.groups()
88 arglist
= arglist
.strip()
89 if rettype
or not arglist
:
92 arglist
= arglist
.replace('`', '').replace('\\ ', '') # remove markup
93 arglist
= [a
.strip() for a
in arglist
.split(",")]
95 # has the first argument a type?
96 if len(arglist
[0].split(" ")) > 1:
99 # This is a function-like macro, it's arguments are typeless!
100 signode
+= addnodes
.desc_name(fullname
, fullname
)
101 paramlist
= addnodes
.desc_parameterlist()
104 for argname
in arglist
:
105 param
= addnodes
.desc_parameter('', '', noemph
=True)
106 # separate by non-breaking space in the output
107 param
+= nodes
.emphasis(argname
, argname
)
112 def handle_signature(self
, sig
, signode
):
113 """Transform a C signature into RST nodes."""
115 fullname
= self
.handle_func_like_macro(sig
, signode
)
117 fullname
= super(CObject
, self
).handle_signature(sig
, signode
)
119 if "name" in self
.options
:
120 if self
.objtype
== 'function':
121 fullname
= self
.options
["name"]
123 # FIXME: handle :name: value of other declaration types?
127 def add_target_and_index(self
, name
, sig
, signode
):
128 # for C API items we add a prefix since names are usually not qualified
129 # by a module name and so easily clash with e.g. section titles
130 targetname
= 'c.' + name
131 if targetname
not in self
.state
.document
.ids
:
132 signode
['names'].append(targetname
)
133 signode
['ids'].append(targetname
)
134 signode
['first'] = (not self
.names
)
135 self
.state
.document
.note_explicit_target(signode
)
136 inv
= self
.env
.domaindata
['c']['objects']
137 if (name
in inv
and self
.env
.config
.nitpicky
):
138 if self
.objtype
== 'function':
139 if ('c:func', name
) not in self
.env
.config
.nitpick_ignore
:
140 self
.state_machine
.reporter
.warning(
141 'duplicate C object description of %s, ' % name
+
142 'other instance in ' + self
.env
.doc2path(inv
[name
][0]),
144 inv
[name
] = (self
.env
.docname
, self
.objtype
)
146 indextext
= self
.get_index_text(name
)
148 if major
== 1 and minor
< 4:
149 # indexnode's tuple changed in 1.4
150 # https://github.com/sphinx-doc/sphinx/commit/e6a5a3a92e938fcd75866b4227db9e0524d58f7c
151 self
.indexnode
['entries'].append(
152 ('single', indextext
, targetname
, ''))
154 self
.indexnode
['entries'].append(
155 ('single', indextext
, targetname
, '', None))
157 class CDomain(Base_CDomain
):
159 """C language domain."""