1 # -*- coding: utf-8 -*-
5 # Copyright (c) 2015-2019 Red Hat Inc.
8 # Markus Armbruster <armbru@redhat.com>
9 # Marc-André Lureau <marcandre.lureau@redhat.com>
11 # This work is licensed under the terms of the GNU GPL, version 2.
12 # See the COPYING file in the top-level directory.
14 from contextlib
import contextmanager
39 from .source
import QAPISourceInfo
42 def gen_special_features(features
: Sequence
[QAPISchemaFeature
]) -> str:
43 special_features
= [f
"1u << QAPI_{feat.name.upper()}"
44 for feat
in features
if feat
.is_special()]
45 return ' | '.join(special_features
) or '0'
49 def __init__(self
, fname
: str):
54 def preamble_add(self
, text
: str) -> None:
55 self
._preamble
+= text
57 def add(self
, text
: str) -> None:
60 def get_content(self
) -> str:
61 return self
._top
() + self
._preamble
+ self
._body
+ self
._bottom
()
63 def _top(self
) -> str:
64 # pylint: disable=no-self-use
67 def _bottom(self
) -> str:
68 # pylint: disable=no-self-use
71 def write(self
, output_dir
: str) -> None:
72 # Include paths starting with ../ are used to reuse modules of the main
73 # schema in specialised schemas. Don't overwrite the files that are
74 # already generated for the main schema.
75 if self
.fname
.startswith('../'):
77 pathname
= os
.path
.join(output_dir
, self
.fname
)
78 odir
= os
.path
.dirname(pathname
)
81 os
.makedirs(odir
, exist_ok
=True)
83 # use os.open for O_CREAT to create and read a non-existant file
84 fd
= os
.open(pathname
, os
.O_RDWR | os
.O_CREAT
, 0o666)
85 with os
.fdopen(fd
, 'r+', encoding
='utf-8') as fp
:
86 text
= self
.get_content()
87 oldtext
= fp
.read(len(text
) + 1)
94 def _wrap_ifcond(ifcond
: QAPISchemaIfCond
, before
: str, after
: str) -> str:
96 return after
# suppress empty #if ... #endif
98 assert after
.startswith(before
)
100 added
= after
[len(before
):]
104 out
+= ifcond
.gen_if()
106 out
+= ifcond
.gen_endif()
110 def build_params(arg_type
: Optional
[QAPISchemaObjectType
],
112 extra
: Optional
[str] = None) -> str:
117 ret
+= '%s arg' % arg_type
.c_param_type()
120 assert not arg_type
.variants
121 for memb
in arg_type
.members
:
122 assert not memb
.ifcond
.is_present()
126 ret
+= 'bool has_%s, ' % c_name(memb
.name
)
127 ret
+= '%s %s' % (memb
.type.c_param_type(),
131 return ret
if ret
else 'void'
134 class QAPIGenCCode(QAPIGen
):
135 def __init__(self
, fname
: str):
136 super().__init
__(fname
)
137 self
._start
_if
: Optional
[Tuple
[QAPISchemaIfCond
, str, str]] = None
139 def start_if(self
, ifcond
: QAPISchemaIfCond
) -> None:
140 assert self
._start
_if
is None
141 self
._start
_if
= (ifcond
, self
._body
, self
._preamble
)
143 def end_if(self
) -> None:
144 assert self
._start
_if
is not None
145 self
._body
= _wrap_ifcond(self
._start
_if
[0],
146 self
._start
_if
[1], self
._body
)
147 self
._preamble
= _wrap_ifcond(self
._start
_if
[0],
148 self
._start
_if
[2], self
._preamble
)
149 self
._start
_if
= None
151 def get_content(self
) -> str:
152 assert self
._start
_if
is None
153 return super().get_content()
156 class QAPIGenC(QAPIGenCCode
):
157 def __init__(self
, fname
: str, blurb
: str, pydoc
: str):
158 super().__init
__(fname
)
160 self
._copyright
= '\n * '.join(re
.findall(r
'^Copyright .*', pydoc
,
163 def _top(self
) -> str:
165 /* AUTOMATICALLY GENERATED, DO NOT MODIFY */
172 * This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
173 * See the COPYING.LIB file in the top-level directory.
177 blurb
=self
._blurb
, copyright
=self
._copyright
)
179 def _bottom(self
) -> str:
182 /* Dummy declaration to prevent empty .o file */
183 char qapi_dummy_%(name)s;
185 name
=c_fname(self
.fname
))
188 class QAPIGenH(QAPIGenC
):
189 def _top(self
) -> str:
190 return super()._top
() + guardstart(self
.fname
)
192 def _bottom(self
) -> str:
193 return guardend(self
.fname
)
196 class QAPIGenTrace(QAPIGen
):
197 def _top(self
) -> str:
198 return super()._top
() + '# AUTOMATICALLY GENERATED, DO NOT MODIFY\n\n'
202 def ifcontext(ifcond
: QAPISchemaIfCond
, *args
: QAPIGenCCode
) -> Iterator
[None]:
204 A with-statement context manager that wraps with `start_if()` / `end_if()`.
206 :param ifcond: A sequence of conditionals, passed to `start_if()`.
207 :param args: any number of `QAPIGenCCode`.
211 with ifcontext(ifcond, self._genh, self._genc):
212 modify self._genh and self._genc ...
214 Is equivalent to calling::
216 self._genh.start_if(ifcond)
217 self._genc.start_if(ifcond)
218 modify self._genh and self._genc ...
229 class QAPISchemaMonolithicCVisitor(QAPISchemaVisitor
):
235 self
._prefix
= prefix
237 self
._genc
= QAPIGenC(self
._prefix
+ self
._what
+ '.c',
239 self
._genh
= QAPIGenH(self
._prefix
+ self
._what
+ '.h',
242 def write(self
, output_dir
: str) -> None:
243 self
._genc
.write(output_dir
)
244 self
._genh
.write(output_dir
)
247 class QAPISchemaModularCVisitor(QAPISchemaVisitor
):
252 builtin_blurb
: Optional
[str],
254 gen_tracing
: bool = False):
255 self
._prefix
= prefix
257 self
._user
_blurb
= user_blurb
258 self
._builtin
_blurb
= builtin_blurb
260 self
._current
_module
: Optional
[str] = None
261 self
._module
: Dict
[str, Tuple
[QAPIGenC
, QAPIGenH
,
262 Optional
[QAPIGenTrace
]]] = {}
263 self
._main
_module
: Optional
[str] = None
264 self
._gen
_tracing
= gen_tracing
267 def _genc(self
) -> QAPIGenC
:
268 assert self
._current
_module
is not None
269 return self
._module
[self
._current
_module
][0]
272 def _genh(self
) -> QAPIGenH
:
273 assert self
._current
_module
is not None
274 return self
._module
[self
._current
_module
][1]
277 def _gen_trace_events(self
) -> QAPIGenTrace
:
278 assert self
._gen
_tracing
279 assert self
._current
_module
is not None
280 gent
= self
._module
[self
._current
_module
][2]
281 assert gent
is not None
285 def _module_dirname(name
: str) -> str:
286 if QAPISchemaModule
.is_user_module(name
):
287 return os
.path
.dirname(name
)
290 def _module_basename(self
, what
: str, name
: str) -> str:
291 ret
= '' if QAPISchemaModule
.is_builtin_module(name
) else self
._prefix
292 if QAPISchemaModule
.is_user_module(name
):
293 basename
= os
.path
.basename(name
)
295 if name
!= self
._main
_module
:
296 ret
+= '-' + os
.path
.splitext(basename
)[0]
298 assert QAPISchemaModule
.is_system_module(name
)
299 ret
+= re
.sub(r
'-', '-' + name
[2:] + '-', what
)
302 def _module_filename(self
, what
: str, name
: str) -> str:
303 return os
.path
.join(self
._module
_dirname
(name
),
304 self
._module
_basename
(what
, name
))
306 def _add_module(self
, name
: str, blurb
: str) -> None:
307 if QAPISchemaModule
.is_user_module(name
):
308 if self
._main
_module
is None:
309 self
._main
_module
= name
310 basename
= self
._module
_filename
(self
._what
, name
)
311 genc
= QAPIGenC(basename
+ '.c', blurb
, self
._pydoc
)
312 genh
= QAPIGenH(basename
+ '.h', blurb
, self
._pydoc
)
314 gent
: Optional
[QAPIGenTrace
] = None
315 if self
._gen
_tracing
:
316 gent
= QAPIGenTrace(basename
+ '.trace-events')
318 self
._module
[name
] = (genc
, genh
, gent
)
319 self
._current
_module
= name
322 def _temp_module(self
, name
: str) -> Iterator
[None]:
323 old_module
= self
._current
_module
324 self
._current
_module
= name
326 self
._current
_module
= old_module
328 def write(self
, output_dir
: str, opt_builtins
: bool = False) -> None:
329 for name
, (genc
, genh
, gent
) in self
._module
.items():
330 if QAPISchemaModule
.is_builtin_module(name
) and not opt_builtins
:
332 genc
.write(output_dir
)
333 genh
.write(output_dir
)
335 gent
.write(output_dir
)
337 def _begin_builtin_module(self
) -> None:
340 def _begin_user_module(self
, name
: str) -> None:
343 def visit_module(self
, name
: str) -> None:
344 if QAPISchemaModule
.is_builtin_module(name
):
345 if self
._builtin
_blurb
:
346 self
._add
_module
(name
, self
._builtin
_blurb
)
347 self
._begin
_builtin
_module
()
349 # The built-in module has not been created. No code may
351 self
._current
_module
= None
353 assert QAPISchemaModule
.is_user_module(name
)
354 self
._add
_module
(name
, self
._user
_blurb
)
355 self
._begin
_user
_module
(name
)
357 def visit_include(self
, name
: str, info
: Optional
[QAPISourceInfo
]) -> None:
358 relname
= os
.path
.relpath(self
._module
_filename
(self
._what
, name
),
359 os
.path
.dirname(self
._genh
.fname
))
360 self
._genh
.preamble_add(mcgen('''
361 #include "%(relname)s.h"