bt2: honor self component or query log level when logging
[babeltrace.git] / src / bindings / python / bt2 / bt2 / component.py
CommitLineData
81447b5b
PP
1# The MIT License (MIT)
2#
3# Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
4#
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to deal
7# in the Software without restriction, including without limitation the rights
8# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9# copies of the Software, and to permit persons to whom the Software is
10# furnished to do so, subject to the following conditions:
11#
12# The above copyright notice and this permission notice shall be included in
13# all copies or substantial portions of the Software.
14#
15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21# THE SOFTWARE.
22
23from bt2 import native_bt, object, utils
3fb99a22 24from bt2 import message_iterator as bt2_message_iterator
81447b5b 25import collections.abc
3fb99a22
PP
26from bt2 import value as bt2_value
27from bt2 import trace_class as bt2_trace_class
28from bt2 import clock_class as bt2_clock_class
29from bt2 import query_executor as bt2_query_executor
811644b8 30import traceback
3fb99a22 31from bt2 import port as bt2_port
40910fbb 32import sys
81447b5b 33import bt2
811644b8
PP
34import os
35
36
81447b5b
PP
37# This class wraps a component class pointer. This component class could
38# have been created by Python code, but since we only have the pointer,
39# we can only wrap it in a generic way and lose the original Python
40# class.
601c0026
SM
41#
42# Subclasses must implement some methods that this base class uses:
43#
85906b6b 44# - _bt_as_component_class_ptr: static method, convert the passed component class
601c0026
SM
45# pointer to a 'bt_component_class *'.
46
cfbd7cf3 47
68e606ef 48class _ComponentClass(object._SharedObject):
81447b5b
PP
49 @property
50 def name(self):
85906b6b 51 ptr = self._bt_as_component_class_ptr(self._ptr)
601c0026
SM
52 name = native_bt.component_class_get_name(ptr)
53 assert name is not None
811644b8 54 return name
81447b5b
PP
55
56 @property
57 def description(self):
85906b6b 58 ptr = self._bt_as_component_class_ptr(self._ptr)
601c0026 59 return native_bt.component_class_get_description(ptr)
81447b5b 60
40910fbb
PP
61 @property
62 def help(self):
85906b6b 63 ptr = self._bt_as_component_class_ptr(self._ptr)
601c0026
SM
64 return native_bt.component_class_get_help(ptr)
65
85906b6b
FD
66 def _bt_component_class_ptr(self):
67 return self._bt_as_component_class_ptr(self._ptr)
40910fbb 68
811644b8 69 def __eq__(self, other):
68e606ef 70 if not isinstance(other, _ComponentClass):
811644b8
PP
71 try:
72 if not issubclass(other, _UserComponent):
73 return False
74 except TypeError:
75 return False
81447b5b 76
811644b8 77 return self.addr == other.addr
81447b5b
PP
78
79
68e606ef 80class _SourceComponentClass(_ComponentClass):
2f16a6a2
PP
81 _get_ref = staticmethod(native_bt.component_class_source_get_ref)
82 _put_ref = staticmethod(native_bt.component_class_source_put_ref)
cfbd7cf3
FD
83 _bt_as_component_class_ptr = staticmethod(
84 native_bt.component_class_source_as_component_class
85 )
81447b5b
PP
86
87
68e606ef 88class _FilterComponentClass(_ComponentClass):
2f16a6a2
PP
89 _get_ref = staticmethod(native_bt.component_class_filter_get_ref)
90 _put_ref = staticmethod(native_bt.component_class_filter_put_ref)
cfbd7cf3
FD
91 _bt_as_component_class_ptr = staticmethod(
92 native_bt.component_class_filter_as_component_class
93 )
81447b5b
PP
94
95
68e606ef 96class _SinkComponentClass(_ComponentClass):
2f16a6a2
PP
97 _get_ref = staticmethod(native_bt.component_class_sink_get_ref)
98 _put_ref = staticmethod(native_bt.component_class_sink_put_ref)
cfbd7cf3
FD
99 _bt_as_component_class_ptr = staticmethod(
100 native_bt.component_class_sink_as_component_class
101 )
81447b5b
PP
102
103
811644b8
PP
104class _PortIterator(collections.abc.Iterator):
105 def __init__(self, comp_ports):
106 self._comp_ports = comp_ports
107 self._at = 0
108
109 def __next__(self):
110 if self._at == len(self._comp_ports):
111 raise StopIteration
112
113 comp_ports = self._comp_ports
894a8df5
SM
114 comp_ptr = comp_ports._component_ptr
115
116 port_ptr = comp_ports._borrow_port_ptr_at_index(comp_ptr, self._at)
117 assert port_ptr is not None
118
119 name = native_bt.port_get_name(comp_ports._port_pycls._as_port_ptr(port_ptr))
120 assert name is not None
811644b8 121
811644b8
PP
122 self._at += 1
123 return name
124
125
126class _ComponentPorts(collections.abc.Mapping):
894a8df5
SM
127
128 # component_ptr is a bt_component_source *, bt_component_filter * or
129 # bt_component_sink *. Its type must match the type expected by the
130 # functions passed as arguments.
131
cfbd7cf3
FD
132 def __init__(
133 self,
134 component_ptr,
135 borrow_port_ptr_by_name,
136 borrow_port_ptr_at_index,
137 get_port_count,
138 port_pycls,
139 ):
894a8df5
SM
140 self._component_ptr = component_ptr
141 self._borrow_port_ptr_by_name = borrow_port_ptr_by_name
142 self._borrow_port_ptr_at_index = borrow_port_ptr_at_index
143 self._get_port_count = get_port_count
144 self._port_pycls = port_pycls
811644b8
PP
145
146 def __getitem__(self, key):
147 utils._check_str(key)
894a8df5 148 port_ptr = self._borrow_port_ptr_by_name(self._component_ptr, key)
811644b8
PP
149
150 if port_ptr is None:
151 raise KeyError(key)
152
894a8df5 153 return self._port_pycls._create_from_ptr_and_get_ref(port_ptr)
811644b8
PP
154
155 def __len__(self):
894a8df5
SM
156 count = self._get_port_count(self._component_ptr)
157 assert count >= 0
811644b8
PP
158 return count
159
160 def __iter__(self):
161 return _PortIterator(self)
162
163
81447b5b 164# This class holds the methods which are common to both generic
601c0026
SM
165# component objects and Python user component objects.
166#
167# Subclasses must provide these methods or property:
168#
85906b6b 169# - _bt_borrow_component_class_ptr: static method, must return a pointer to the
601c0026
SM
170# specialized component class (e.g. 'bt_component_class_sink *') of the
171# passed specialized component pointer (e.g. 'bt_component_sink *').
85906b6b 172# - _bt_comp_cls_type: property, one of the native_bt.COMPONENT_CLASS_TYPE_*
601c0026 173# constants.
85906b6b 174# - _bt_as_component_ptr: static method, must return the passed specialized
1c9ed2ff 175# component pointer (e.g. 'bt_component_sink *') as a 'bt_component *'.
601c0026 176
cfbd7cf3 177
811644b8 178class _Component:
81447b5b
PP
179 @property
180 def name(self):
85906b6b 181 ptr = self._bt_as_component_ptr(self._ptr)
1c9ed2ff
SM
182 name = native_bt.component_get_name(ptr)
183 assert name is not None
811644b8
PP
184 return name
185
e874da19
PP
186 @property
187 def logging_level(self):
85906b6b 188 ptr = self._bt_as_component_ptr(self._ptr)
e874da19
PP
189 return native_bt.component_get_logging_level(ptr)
190
81447b5b 191 @property
e8ac1aae 192 def cls(self):
85906b6b 193 cc_ptr = self._bt_borrow_component_class_ptr(self._ptr)
601c0026 194 assert cc_ptr is not None
cfbd7cf3
FD
195 return _create_component_class_from_ptr_and_get_ref(
196 cc_ptr, self._bt_comp_cls_type
197 )
81447b5b 198
811644b8
PP
199 def __eq__(self, other):
200 if not hasattr(other, 'addr'):
201 return False
81447b5b 202
811644b8 203 return self.addr == other.addr
81447b5b 204
81447b5b 205
811644b8 206class _SourceComponent(_Component):
cfbd7cf3
FD
207 _bt_borrow_component_class_ptr = staticmethod(
208 native_bt.component_source_borrow_class_const
209 )
85906b6b 210 _bt_comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SOURCE
cfbd7cf3
FD
211 _bt_as_component_class_ptr = staticmethod(
212 native_bt.component_class_source_as_component_class
213 )
85906b6b 214 _bt_as_component_ptr = staticmethod(native_bt.component_source_as_component_const)
81447b5b 215
81447b5b 216
811644b8 217class _FilterComponent(_Component):
cfbd7cf3
FD
218 _bt_borrow_component_class_ptr = staticmethod(
219 native_bt.component_filter_borrow_class_const
220 )
85906b6b 221 _bt_comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_FILTER
cfbd7cf3
FD
222 _bt_as_component_class_ptr = staticmethod(
223 native_bt.component_class_filter_as_component_class
224 )
85906b6b 225 _bt_as_component_ptr = staticmethod(native_bt.component_filter_as_component_const)
81447b5b 226
81447b5b 227
811644b8 228class _SinkComponent(_Component):
cfbd7cf3
FD
229 _bt_borrow_component_class_ptr = staticmethod(
230 native_bt.component_sink_borrow_class_const
231 )
85906b6b 232 _bt_comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SINK
cfbd7cf3
FD
233 _bt_as_component_class_ptr = staticmethod(
234 native_bt.component_class_sink_as_component_class
235 )
85906b6b 236 _bt_as_component_ptr = staticmethod(native_bt.component_sink_as_component_const)
81447b5b
PP
237
238
68e606ef 239# This is analogous to _SourceComponentClass, but for source
81447b5b 240# component objects.
78288f58 241class _GenericSourceComponent(object._SharedObject, _SourceComponent):
894a8df5
SM
242 _get_ref = staticmethod(native_bt.component_source_get_ref)
243 _put_ref = staticmethod(native_bt.component_source_put_ref)
244
811644b8
PP
245 @property
246 def output_ports(self):
cfbd7cf3
FD
247 return _ComponentPorts(
248 self._ptr,
249 native_bt.component_source_borrow_output_port_by_name_const,
250 native_bt.component_source_borrow_output_port_by_index_const,
251 native_bt.component_source_get_output_port_count,
3fb99a22 252 bt2_port._OutputPort,
cfbd7cf3 253 )
81447b5b
PP
254
255
68e606ef 256# This is analogous to _FilterComponentClass, but for filter
81447b5b 257# component objects.
78288f58 258class _GenericFilterComponent(object._SharedObject, _FilterComponent):
894a8df5
SM
259 _get_ref = staticmethod(native_bt.component_filter_get_ref)
260 _put_ref = staticmethod(native_bt.component_filter_put_ref)
261
811644b8
PP
262 @property
263 def output_ports(self):
cfbd7cf3
FD
264 return _ComponentPorts(
265 self._ptr,
266 native_bt.component_filter_borrow_output_port_by_name_const,
267 native_bt.component_filter_borrow_output_port_by_index_const,
268 native_bt.component_filter_get_output_port_count,
3fb99a22 269 bt2_port._OutputPort,
cfbd7cf3 270 )
811644b8
PP
271
272 @property
273 def input_ports(self):
cfbd7cf3
FD
274 return _ComponentPorts(
275 self._ptr,
276 native_bt.component_filter_borrow_input_port_by_name_const,
277 native_bt.component_filter_borrow_input_port_by_index_const,
278 native_bt.component_filter_get_input_port_count,
3fb99a22 279 bt2_port._InputPort,
cfbd7cf3 280 )
81447b5b
PP
281
282
68e606ef 283# This is analogous to _SinkComponentClass, but for sink
81447b5b 284# component objects.
78288f58 285class _GenericSinkComponent(object._SharedObject, _SinkComponent):
2f16a6a2
PP
286 _get_ref = staticmethod(native_bt.component_sink_get_ref)
287 _put_ref = staticmethod(native_bt.component_sink_put_ref)
601c0026 288
811644b8
PP
289 @property
290 def input_ports(self):
cfbd7cf3
FD
291 return _ComponentPorts(
292 self._ptr,
293 native_bt.component_sink_borrow_input_port_by_name_const,
294 native_bt.component_sink_borrow_input_port_by_index_const,
295 native_bt.component_sink_get_input_port_count,
3fb99a22 296 bt2_port._InputPort,
cfbd7cf3 297 )
81447b5b
PP
298
299
811644b8 300_COMP_CLS_TYPE_TO_GENERIC_COMP_PYCLS = {
81447b5b
PP
301 native_bt.COMPONENT_CLASS_TYPE_SOURCE: _GenericSourceComponent,
302 native_bt.COMPONENT_CLASS_TYPE_FILTER: _GenericFilterComponent,
303 native_bt.COMPONENT_CLASS_TYPE_SINK: _GenericSinkComponent,
304}
305
306
811644b8 307_COMP_CLS_TYPE_TO_GENERIC_COMP_CLS_PYCLS = {
68e606ef
PP
308 native_bt.COMPONENT_CLASS_TYPE_SOURCE: _SourceComponentClass,
309 native_bt.COMPONENT_CLASS_TYPE_FILTER: _FilterComponentClass,
310 native_bt.COMPONENT_CLASS_TYPE_SINK: _SinkComponentClass,
81447b5b
PP
311}
312
313
601c0026
SM
314# Create a component Python object of type _GenericSourceComponent,
315# _GenericFilterComponent or _GenericSinkComponent, depending on
316# comp_cls_type.
317#
318# Steals the reference to ptr from the caller.
319
cfbd7cf3 320
601c0026 321def _create_component_from_ptr(ptr, comp_cls_type):
811644b8 322 return _COMP_CLS_TYPE_TO_GENERIC_COMP_PYCLS[comp_cls_type]._create_from_ptr(ptr)
81447b5b 323
5f25509b
SM
324
325# Same as the above, but acquire a new reference instead of stealing the
326# reference from the caller.
327
cfbd7cf3 328
5f25509b 329def _create_component_from_ptr_and_get_ref(ptr, comp_cls_type):
cfbd7cf3
FD
330 return _COMP_CLS_TYPE_TO_GENERIC_COMP_PYCLS[
331 comp_cls_type
332 ]._create_from_ptr_and_get_ref(ptr)
5f25509b
SM
333
334
601c0026 335# Create a component class Python object of type
68e606ef
PP
336# _SourceComponentClass, _FilterComponentClass or
337# _SinkComponentClass, depending on comp_cls_type.
601c0026
SM
338#
339# Acquires a new reference to ptr.
81447b5b 340
cfbd7cf3 341
601c0026 342def _create_component_class_from_ptr_and_get_ref(ptr, comp_cls_type):
cfbd7cf3
FD
343 return _COMP_CLS_TYPE_TO_GENERIC_COMP_CLS_PYCLS[
344 comp_cls_type
345 ]._create_from_ptr_and_get_ref(ptr)
81447b5b
PP
346
347
40910fbb
PP
348def _trim_docstring(docstring):
349 lines = docstring.expandtabs().splitlines()
350 indent = sys.maxsize
351
352 for line in lines[1:]:
353 stripped = line.lstrip()
354
355 if stripped:
356 indent = min(indent, len(line) - len(stripped))
357
358 trimmed = [lines[0].strip()]
359
360 if indent < sys.maxsize:
361 for line in lines[1:]:
362 trimmed.append(line[indent:].rstrip())
363
364 while trimmed and not trimmed[-1]:
365 trimmed.pop()
366
367 while trimmed and not trimmed[0]:
368 trimmed.pop(0)
369
370 return '\n'.join(trimmed)
371
372
81447b5b
PP
373# Metaclass for component classes defined by Python code.
374#
375# The Python user can create a standard Python class which inherits one
811644b8
PP
376# of the three base classes (_UserSourceComponent, _UserFilterComponent,
377# or _UserSinkComponent). Those base classes set this class
81447b5b
PP
378# (_UserComponentType) as their metaclass.
379#
380# Once the body of a user-defined component class is executed, this
381# metaclass is used to create and initialize the class. The metaclass
382# creates a native BT component class of the corresponding type and
383# associates it with this user-defined class. The metaclass also defines
384# class methods like the `name` and `description` properties to match
68e606ef 385# the _ComponentClass interface.
81447b5b
PP
386#
387# The component class name which is used is either:
388#
389# * The `name` parameter of the class:
390#
391# class MySink(bt2.SinkComponent, name='my-custom-sink'):
392# ...
393#
394# * If the `name` class parameter is not used: the name of the class
395# itself (`MySink` in the example above).
396#
397# The component class description which is used is the user-defined
398# class's docstring:
399#
400# class MySink(bt2.SinkComponent):
401# 'Description goes here'
402# ...
403#
404# A user-defined Python component class can have an __init__() method
405# which must at least accept the `params` and `name` arguments:
406#
407# def __init__(self, params, name, something_else):
408# ...
409#
811644b8 410# The user-defined component class can also have a _finalize() method
81447b5b 411# (do NOT use __del__()) to be notified when the component object is
811644b8 412# finalized.
81447b5b
PP
413#
414# User-defined source and filter component classes must use the
5602ef81
SM
415# `message_iterator_class` class parameter to specify the
416# message iterator class to use for this component class:
81447b5b 417#
5602ef81 418# class MyMessageIterator(bt2._UserMessageIterator):
81447b5b
PP
419# ...
420#
811644b8 421# class MySource(bt2._UserSourceComponent,
5602ef81 422# message_iterator_class=MyMessageIterator):
81447b5b
PP
423# ...
424#
5602ef81
SM
425# This message iterator class must inherit
426# bt2._UserMessageIterator, and it must define the _get() and
427# _next() methods. The message iterator class can also define an
81447b5b
PP
428# __init__() method: this method has access to the original Python
429# component object which was used to create it as the `component`
5602ef81 430# property. The message iterator class can also define a
811644b8 431# _finalize() method (again, do NOT use __del__()): this is called when
5602ef81 432# the message iterator is (really) destroyed.
81447b5b
PP
433#
434# When the user-defined class is destroyed, this metaclass's __del__()
435# method is called: the native BT component class pointer is put (not
436# needed anymore, at least not by any Python code since all references
437# are dropped for __del__() to be called).
438class _UserComponentType(type):
439 # __new__() is used to catch custom class parameters
440 def __new__(meta_cls, class_name, bases, attrs, **kwargs):
441 return super().__new__(meta_cls, class_name, bases, attrs)
442
443 def __init__(cls, class_name, bases, namespace, **kwargs):
444 super().__init__(class_name, bases, namespace)
445
446 # skip our own bases; they are never directly instantiated by the user
811644b8
PP
447 own_bases = (
448 '_UserComponent',
449 '_UserFilterSinkComponent',
450 '_UserSourceComponent',
451 '_UserFilterComponent',
452 '_UserSinkComponent',
453 )
454
455 if class_name in own_bases:
81447b5b
PP
456 return
457
458 comp_cls_name = kwargs.get('name', class_name)
811644b8 459 utils._check_str(comp_cls_name)
40910fbb
PP
460 comp_cls_descr = None
461 comp_cls_help = None
462
463 if hasattr(cls, '__doc__') and cls.__doc__ is not None:
811644b8 464 utils._check_str(cls.__doc__)
40910fbb
PP
465 docstring = _trim_docstring(cls.__doc__)
466 lines = docstring.splitlines()
467
468 if len(lines) >= 1:
469 comp_cls_descr = lines[0]
470
471 if len(lines) >= 3:
472 comp_cls_help = '\n'.join(lines[2:])
473
5602ef81 474 iter_cls = kwargs.get('message_iterator_class')
81447b5b 475
811644b8 476 if _UserSourceComponent in bases:
85906b6b 477 _UserComponentType._bt_set_iterator_class(cls, iter_cls)
cfbd7cf3
FD
478 cc_ptr = native_bt.bt2_component_class_source_create(
479 cls, comp_cls_name, comp_cls_descr, comp_cls_help
480 )
811644b8 481 elif _UserFilterComponent in bases:
85906b6b 482 _UserComponentType._bt_set_iterator_class(cls, iter_cls)
cfbd7cf3
FD
483 cc_ptr = native_bt.bt2_component_class_filter_create(
484 cls, comp_cls_name, comp_cls_descr, comp_cls_help
485 )
811644b8 486 elif _UserSinkComponent in bases:
6a91742b 487 if not hasattr(cls, '_user_consume'):
cb06aa27 488 raise bt2._IncompleteUserClass(
6a91742b 489 "cannot create component class '{}': missing a _user_consume() method".format(
cfbd7cf3
FD
490 class_name
491 )
492 )
493
494 cc_ptr = native_bt.bt2_component_class_sink_create(
495 cls, comp_cls_name, comp_cls_descr, comp_cls_help
496 )
81447b5b 497 else:
cb06aa27 498 raise bt2._IncompleteUserClass(
cfbd7cf3
FD
499 "cannot find a known component class base in the bases of '{}'".format(
500 class_name
501 )
502 )
81447b5b
PP
503
504 if cc_ptr is None:
694c792b 505 raise bt2._MemoryError(
cfbd7cf3
FD
506 "cannot create component class '{}'".format(class_name)
507 )
81447b5b 508
85906b6b 509 cls._bt_cc_ptr = cc_ptr
81447b5b 510
85906b6b 511 def _bt_init_from_native(cls, comp_ptr, params_ptr):
811644b8 512 # create instance, not user-initialized yet
81447b5b
PP
513 self = cls.__new__(cls)
514
601c0026 515 # pointer to native self component object (weak/borrowed)
85906b6b 516 self._bt_ptr = comp_ptr
81447b5b 517
811644b8
PP
518 # call user's __init__() method
519 if params_ptr is not None:
3fb99a22 520 params = bt2_value._create_from_ptr_and_get_ref(params_ptr)
811644b8
PP
521 else:
522 params = None
81447b5b 523
811644b8 524 self.__init__(params)
81447b5b
PP
525 return self
526
811644b8 527 def __call__(cls, *args, **kwargs):
ce4923b0 528 raise RuntimeError(
cfbd7cf3
FD
529 'cannot directly instantiate a user component from a Python module'
530 )
81447b5b
PP
531
532 @staticmethod
85906b6b 533 def _bt_set_iterator_class(cls, iter_cls):
81447b5b 534 if iter_cls is None:
cb06aa27 535 raise bt2._IncompleteUserClass(
cfbd7cf3
FD
536 "cannot create component class '{}': missing message iterator class".format(
537 cls.__name__
538 )
539 )
81447b5b 540
3fb99a22 541 if not issubclass(iter_cls, bt2_message_iterator._UserMessageIterator):
cb06aa27 542 raise bt2._IncompleteUserClass(
cfbd7cf3
FD
543 "cannot create component class '{}': message iterator class does not inherit bt2._UserMessageIterator".format(
544 cls.__name__
545 )
546 )
81447b5b 547
811644b8 548 if not hasattr(iter_cls, '__next__'):
cb06aa27 549 raise bt2._IncompleteUserClass(
cfbd7cf3
FD
550 "cannot create component class '{}': message iterator class is missing a __next__() method".format(
551 cls.__name__
552 )
553 )
81447b5b
PP
554
555 cls._iter_cls = iter_cls
556
557 @property
558 def name(cls):
85906b6b 559 ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
601c0026 560 return native_bt.component_class_get_name(ptr)
81447b5b
PP
561
562 @property
563 def description(cls):
85906b6b 564 ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
601c0026 565 return native_bt.component_class_get_description(ptr)
81447b5b 566
40910fbb
PP
567 @property
568 def help(cls):
85906b6b 569 ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
601c0026 570 return native_bt.component_class_get_help(ptr)
40910fbb 571
81447b5b
PP
572 @property
573 def addr(cls):
85906b6b 574 return int(cls._bt_cc_ptr)
81447b5b 575
85906b6b 576 def _bt_query_from_native(cls, query_exec_ptr, obj, params_ptr, log_level):
911dec08 577 # this can raise, in which case the native call to
a67681c1 578 # bt_component_class_query() returns NULL
811644b8 579 if params_ptr is not None:
3fb99a22 580 params = bt2_value._create_from_ptr_and_get_ref(params_ptr)
811644b8
PP
581 else:
582 params = None
583
3fb99a22
PP
584 query_exec = bt2_query_executor.QueryExecutor._create_from_ptr_and_get_ref(
585 query_exec_ptr
586 )
811644b8 587
c7eee084 588 # this can raise, but the native side checks the exception
6a91742b 589 results = cls._user_query(query_exec, obj, params, log_level)
811644b8 590
c7eee084
PP
591 # this can raise, but the native side checks the exception
592 results = bt2.create_value(results)
911dec08
PP
593
594 if results is None:
b5947615 595 results_ptr = native_bt.value_null
911dec08 596 else:
811644b8 597 # return new reference
b5947615 598 results_ptr = results._ptr
911dec08 599
b5947615 600 # We return a new reference.
3fb99a22 601 bt2_value._Value._get_ref(results_ptr)
b5947615
SM
602
603 return int(results_ptr)
911dec08 604
6a91742b 605 def _user_query(cls, query_executor, obj, params, log_level):
76b6c2f7 606 raise bt2.UnknownObject
811644b8 607
85906b6b
FD
608 def _bt_component_class_ptr(self):
609 return self._bt_as_component_class_ptr(self._bt_cc_ptr)
911dec08 610
81447b5b 611 def __del__(cls):
85906b6b
FD
612 if hasattr(cls, '_bt_cc_ptr'):
613 cc_ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
601c0026 614 native_bt.component_class_put_ref(cc_ptr)
81447b5b 615
cfbd7cf3 616
1c9ed2ff
SM
617# Subclasses must provide these methods or property:
618#
85906b6b 619# - _bt_as_not_self_specific_component_ptr: static method, must return the passed
1c9ed2ff
SM
620# specialized self component pointer (e.g. 'bt_self_component_sink *') as a
621# specialized non-self pointer (e.g. 'bt_component_sink *').
85906b6b 622# - _bt_borrow_component_class_ptr: static method, must return a pointer to the
1c9ed2ff
SM
623# specialized component class (e.g. 'bt_component_class_sink *') of the
624# passed specialized component pointer (e.g. 'bt_component_sink *').
85906b6b 625# - _bt_comp_cls_type: property, one of the native_bt.COMPONENT_CLASS_TYPE_*
1c9ed2ff 626# constants.
81447b5b 627
cfbd7cf3 628
811644b8
PP
629class _UserComponent(metaclass=_UserComponentType):
630 @property
631 def name(self):
85906b6b
FD
632 ptr = self._bt_as_not_self_specific_component_ptr(self._bt_ptr)
633 ptr = self._bt_as_component_ptr(ptr)
1c9ed2ff
SM
634 name = native_bt.component_get_name(ptr)
635 assert name is not None
811644b8 636 return name
81447b5b 637
e874da19
PP
638 @property
639 def logging_level(self):
85906b6b
FD
640 ptr = self._bt_as_not_self_specific_component_ptr(self._bt_ptr)
641 ptr = self._bt_as_component_ptr(ptr)
e874da19
PP
642 return native_bt.component_get_logging_level(ptr)
643
811644b8 644 @property
e8ac1aae 645 def cls(self):
85906b6b
FD
646 comp_ptr = self._bt_as_not_self_specific_component_ptr(self._bt_ptr)
647 cc_ptr = self._bt_borrow_component_class_ptr(comp_ptr)
cfbd7cf3
FD
648 return _create_component_class_from_ptr_and_get_ref(
649 cc_ptr, self._bt_comp_cls_type
650 )
81447b5b 651
81447b5b
PP
652 @property
653 def addr(self):
85906b6b 654 return int(self._bt_ptr)
81447b5b 655
811644b8 656 def __init__(self, params=None):
81447b5b
PP
657 pass
658
6a91742b 659 def _user_finalize(self):
81447b5b
PP
660 pass
661
6a91742b 662 def _user_port_connected(self, port, other_port):
811644b8 663 pass
81447b5b 664
cfbd7cf3
FD
665 def _bt_port_connected_from_native(
666 self, self_port_ptr, self_port_type, other_port_ptr
667 ):
3fb99a22 668 port = bt2_port._create_self_from_ptr_and_get_ref(self_port_ptr, self_port_type)
2c67587a
SM
669
670 if self_port_type == native_bt.PORT_TYPE_OUTPUT:
671 other_port_type = native_bt.PORT_TYPE_INPUT
672 else:
673 other_port_type = native_bt.PORT_TYPE_OUTPUT
674
3fb99a22 675 other_port = bt2_port._create_from_ptr_and_get_ref(
cfbd7cf3
FD
676 other_port_ptr, other_port_type
677 )
6a91742b 678 self._user_port_connected(port, other_port)
81447b5b 679
335a2da5 680 def _create_trace_class(self, assigns_automatic_stream_class_id=True):
85906b6b 681 ptr = self._bt_as_self_component_ptr(self._bt_ptr)
fbbe9302
SM
682 tc_ptr = native_bt.trace_class_create(ptr)
683
684 if tc_ptr is None:
694c792b 685 raise bt2._MemoryError('could not create trace class')
fbbe9302 686
3fb99a22 687 tc = bt2_trace_class._TraceClass._create_from_ptr(tc_ptr)
fbbe9302
SM
688 tc._assigns_automatic_stream_class_id = assigns_automatic_stream_class_id
689
690 return tc
691
cfbd7cf3
FD
692 def _create_clock_class(
693 self,
694 frequency=None,
695 name=None,
696 description=None,
697 precision=None,
698 offset=None,
699 origin_is_unix_epoch=True,
700 uuid=None,
701 ):
85906b6b 702 ptr = self._bt_as_self_component_ptr(self._bt_ptr)
3cdfbaea
SM
703 cc_ptr = native_bt.clock_class_create(ptr)
704
705 if cc_ptr is None:
694c792b 706 raise bt2._MemoryError('could not create clock class')
3cdfbaea 707
3fb99a22 708 cc = bt2_clock_class._ClockClass._create_from_ptr(cc_ptr)
2ae9f48c
SM
709
710 if frequency is not None:
711 cc._frequency = frequency
712
be7bbff9
SM
713 if name is not None:
714 cc._name = name
715
716 if description is not None:
717 cc._description = description
718
719 if precision is not None:
720 cc._precision = precision
721
722 if offset is not None:
723 cc._offset = offset
724
725 cc._origin_is_unix_epoch = origin_is_unix_epoch
726
727 if uuid is not None:
728 cc._uuid = uuid
729
2ae9f48c 730 return cc
3cdfbaea 731
81447b5b 732
811644b8 733class _UserSourceComponent(_UserComponent, _SourceComponent):
cfbd7cf3
FD
734 _bt_as_not_self_specific_component_ptr = staticmethod(
735 native_bt.self_component_source_as_component_source
736 )
737 _bt_as_self_component_ptr = staticmethod(
738 native_bt.self_component_source_as_self_component
739 )
1c9ed2ff 740
81447b5b 741 @property
811644b8 742 def _output_ports(self):
894a8df5 743 def get_output_port_count(self_ptr):
85906b6b 744 ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
894a8df5
SM
745 return native_bt.component_source_get_output_port_count(ptr)
746
cfbd7cf3
FD
747 return _ComponentPorts(
748 self._bt_ptr,
749 native_bt.self_component_source_borrow_output_port_by_name,
750 native_bt.self_component_source_borrow_output_port_by_index,
751 get_output_port_count,
3fb99a22 752 bt2_port._UserComponentOutputPort,
cfbd7cf3 753 )
811644b8 754
2e00bc76 755 def _add_output_port(self, name, user_data=None):
811644b8 756 utils._check_str(name)
894a8df5 757 fn = native_bt.self_component_source_add_output_port
85906b6b 758 comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
cfbd7cf3
FD
759 utils._handle_func_status(
760 comp_status, 'cannot add output port to source component object'
761 )
894a8df5 762 assert self_port_ptr is not None
3fb99a22 763 return bt2_port._UserComponentOutputPort._create_from_ptr(self_port_ptr)
811644b8
PP
764
765
766class _UserFilterComponent(_UserComponent, _FilterComponent):
cfbd7cf3
FD
767 _bt_as_not_self_specific_component_ptr = staticmethod(
768 native_bt.self_component_filter_as_component_filter
769 )
770 _bt_as_self_component_ptr = staticmethod(
771 native_bt.self_component_filter_as_self_component
772 )
1c9ed2ff 773
811644b8
PP
774 @property
775 def _output_ports(self):
894a8df5 776 def get_output_port_count(self_ptr):
85906b6b 777 ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
894a8df5
SM
778 return native_bt.component_filter_get_output_port_count(ptr)
779
cfbd7cf3
FD
780 return _ComponentPorts(
781 self._bt_ptr,
782 native_bt.self_component_filter_borrow_output_port_by_name,
783 native_bt.self_component_filter_borrow_output_port_by_index,
784 get_output_port_count,
3fb99a22 785 bt2_port._UserComponentOutputPort,
cfbd7cf3 786 )
81447b5b 787
811644b8
PP
788 @property
789 def _input_ports(self):
894a8df5 790 def get_input_port_count(self_ptr):
85906b6b 791 ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
894a8df5
SM
792 return native_bt.component_filter_get_input_port_count(ptr)
793
cfbd7cf3
FD
794 return _ComponentPorts(
795 self._bt_ptr,
796 native_bt.self_component_filter_borrow_input_port_by_name,
797 native_bt.self_component_filter_borrow_input_port_by_index,
798 get_input_port_count,
3fb99a22 799 bt2_port._UserComponentInputPort,
cfbd7cf3 800 )
811644b8 801
2e00bc76 802 def _add_output_port(self, name, user_data=None):
811644b8 803 utils._check_str(name)
894a8df5 804 fn = native_bt.self_component_filter_add_output_port
85906b6b 805 comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
cfbd7cf3
FD
806 utils._handle_func_status(
807 comp_status, 'cannot add output port to filter component object'
808 )
894a8df5 809 assert self_port_ptr
3fb99a22 810 return bt2_port._UserComponentOutputPort._create_from_ptr(self_port_ptr)
811644b8 811
2e00bc76 812 def _add_input_port(self, name, user_data=None):
811644b8 813 utils._check_str(name)
894a8df5 814 fn = native_bt.self_component_filter_add_input_port
85906b6b 815 comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
cfbd7cf3
FD
816 utils._handle_func_status(
817 comp_status, 'cannot add input port to filter component object'
818 )
894a8df5 819 assert self_port_ptr
3fb99a22 820 return bt2_port._UserComponentInputPort._create_from_ptr(self_port_ptr)
811644b8
PP
821
822
823class _UserSinkComponent(_UserComponent, _SinkComponent):
cfbd7cf3
FD
824 _bt_as_not_self_specific_component_ptr = staticmethod(
825 native_bt.self_component_sink_as_component_sink
826 )
827 _bt_as_self_component_ptr = staticmethod(
828 native_bt.self_component_sink_as_self_component
829 )
1c9ed2ff 830
d14a864a 831 def _bt_graph_is_configured_from_native(self):
6a91742b 832 self._user_graph_is_configured()
d14a864a 833
6a91742b 834 def _user_graph_is_configured(self):
cd1ef6f2
PP
835 pass
836
811644b8
PP
837 @property
838 def _input_ports(self):
894a8df5 839 def get_input_port_count(self_ptr):
85906b6b 840 ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
894a8df5
SM
841 return native_bt.component_sink_get_input_port_count(ptr)
842
cfbd7cf3
FD
843 return _ComponentPorts(
844 self._bt_ptr,
845 native_bt.self_component_sink_borrow_input_port_by_name,
846 native_bt.self_component_sink_borrow_input_port_by_index,
847 get_input_port_count,
3fb99a22 848 bt2_port._UserComponentInputPort,
cfbd7cf3 849 )
811644b8 850
2e00bc76 851 def _add_input_port(self, name, user_data=None):
811644b8 852 utils._check_str(name)
894a8df5 853 fn = native_bt.self_component_sink_add_input_port
85906b6b 854 comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
cfbd7cf3
FD
855 utils._handle_func_status(
856 comp_status, 'cannot add input port to sink component object'
857 )
5f25509b 858 assert self_port_ptr
3fb99a22 859 return bt2_port._UserComponentInputPort._create_from_ptr(self_port_ptr)
ca02df0a
PP
860
861 def _create_input_port_message_iterator(self, input_port):
3fb99a22 862 utils._check_type(input_port, bt2_port._UserComponentInputPort)
ca02df0a
PP
863
864 msg_iter_ptr = native_bt.self_component_port_input_message_iterator_create_from_sink_component(
865 self._bt_ptr, input_port._ptr
866 )
867
868 if msg_iter_ptr is None:
869 raise bt2.CreationError('cannot create message iterator object')
870
3fb99a22 871 return bt2_message_iterator._UserComponentInputPortMessageIterator(msg_iter_ptr)
9b4f9b42
PP
872
873 @property
874 def _is_interrupted(self):
875 return bool(native_bt.self_component_sink_is_interrupted(self._bt_ptr))
This page took 0.089518 seconds and 4 git commands to generate.