lib: rename INVALID_OBJECT status to UNKNOWN_OBJECT
[babeltrace.git] / src / bindings / python / bt2 / bt2 / component.py
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
23 from bt2 import native_bt, object, utils
24 from bt2 import message_iterator as bt2_message_iterator
25 import collections.abc
26 from bt2 import value as bt2_value
27 from bt2 import trace_class as bt2_trace_class
28 from bt2 import clock_class as bt2_clock_class
29 from bt2 import query_executor as bt2_query_executor
30 import traceback
31 from bt2 import port as bt2_port
32 import sys
33 import bt2
34 import os
35
36
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.
41 #
42 # Subclasses must implement some methods that this base class uses:
43 #
44 # - _bt_as_component_class_ptr: static method, convert the passed component class
45 # pointer to a 'bt_component_class *'.
46
47
48 class _ComponentClass(object._SharedObject):
49 @property
50 def name(self):
51 ptr = self._bt_as_component_class_ptr(self._ptr)
52 name = native_bt.component_class_get_name(ptr)
53 assert name is not None
54 return name
55
56 @property
57 def description(self):
58 ptr = self._bt_as_component_class_ptr(self._ptr)
59 return native_bt.component_class_get_description(ptr)
60
61 @property
62 def help(self):
63 ptr = self._bt_as_component_class_ptr(self._ptr)
64 return native_bt.component_class_get_help(ptr)
65
66 def _bt_component_class_ptr(self):
67 return self._bt_as_component_class_ptr(self._ptr)
68
69 def __eq__(self, other):
70 if not isinstance(other, _ComponentClass):
71 try:
72 if not issubclass(other, _UserComponent):
73 return False
74 except TypeError:
75 return False
76
77 return self.addr == other.addr
78
79
80 class _SourceComponentClass(_ComponentClass):
81 _get_ref = staticmethod(native_bt.component_class_source_get_ref)
82 _put_ref = staticmethod(native_bt.component_class_source_put_ref)
83 _bt_as_component_class_ptr = staticmethod(
84 native_bt.component_class_source_as_component_class
85 )
86
87
88 class _FilterComponentClass(_ComponentClass):
89 _get_ref = staticmethod(native_bt.component_class_filter_get_ref)
90 _put_ref = staticmethod(native_bt.component_class_filter_put_ref)
91 _bt_as_component_class_ptr = staticmethod(
92 native_bt.component_class_filter_as_component_class
93 )
94
95
96 class _SinkComponentClass(_ComponentClass):
97 _get_ref = staticmethod(native_bt.component_class_sink_get_ref)
98 _put_ref = staticmethod(native_bt.component_class_sink_put_ref)
99 _bt_as_component_class_ptr = staticmethod(
100 native_bt.component_class_sink_as_component_class
101 )
102
103
104 class _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
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
121
122 self._at += 1
123 return name
124
125
126 class _ComponentPorts(collections.abc.Mapping):
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
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 ):
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
145
146 def __getitem__(self, key):
147 utils._check_str(key)
148 port_ptr = self._borrow_port_ptr_by_name(self._component_ptr, key)
149
150 if port_ptr is None:
151 raise KeyError(key)
152
153 return self._port_pycls._create_from_ptr_and_get_ref(port_ptr)
154
155 def __len__(self):
156 count = self._get_port_count(self._component_ptr)
157 assert count >= 0
158 return count
159
160 def __iter__(self):
161 return _PortIterator(self)
162
163
164 # This class holds the methods which are common to both generic
165 # component objects and Python user component objects.
166 #
167 # Subclasses must provide these methods or property:
168 #
169 # - _bt_borrow_component_class_ptr: static method, must return a pointer to the
170 # specialized component class (e.g. 'bt_component_class_sink *') of the
171 # passed specialized component pointer (e.g. 'bt_component_sink *').
172 # - _bt_comp_cls_type: property, one of the native_bt.COMPONENT_CLASS_TYPE_*
173 # constants.
174 # - _bt_as_component_ptr: static method, must return the passed specialized
175 # component pointer (e.g. 'bt_component_sink *') as a 'bt_component *'.
176
177
178 class _Component:
179 @property
180 def name(self):
181 ptr = self._bt_as_component_ptr(self._ptr)
182 name = native_bt.component_get_name(ptr)
183 assert name is not None
184 return name
185
186 @property
187 def logging_level(self):
188 ptr = self._bt_as_component_ptr(self._ptr)
189 return native_bt.component_get_logging_level(ptr)
190
191 @property
192 def cls(self):
193 cc_ptr = self._bt_borrow_component_class_ptr(self._ptr)
194 assert cc_ptr is not None
195 return _create_component_class_from_ptr_and_get_ref(
196 cc_ptr, self._bt_comp_cls_type
197 )
198
199 def __eq__(self, other):
200 if not hasattr(other, 'addr'):
201 return False
202
203 return self.addr == other.addr
204
205
206 class _SourceComponent(_Component):
207 _bt_borrow_component_class_ptr = staticmethod(
208 native_bt.component_source_borrow_class_const
209 )
210 _bt_comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SOURCE
211 _bt_as_component_class_ptr = staticmethod(
212 native_bt.component_class_source_as_component_class
213 )
214 _bt_as_component_ptr = staticmethod(native_bt.component_source_as_component_const)
215
216
217 class _FilterComponent(_Component):
218 _bt_borrow_component_class_ptr = staticmethod(
219 native_bt.component_filter_borrow_class_const
220 )
221 _bt_comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_FILTER
222 _bt_as_component_class_ptr = staticmethod(
223 native_bt.component_class_filter_as_component_class
224 )
225 _bt_as_component_ptr = staticmethod(native_bt.component_filter_as_component_const)
226
227
228 class _SinkComponent(_Component):
229 _bt_borrow_component_class_ptr = staticmethod(
230 native_bt.component_sink_borrow_class_const
231 )
232 _bt_comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SINK
233 _bt_as_component_class_ptr = staticmethod(
234 native_bt.component_class_sink_as_component_class
235 )
236 _bt_as_component_ptr = staticmethod(native_bt.component_sink_as_component_const)
237
238
239 # This is analogous to _SourceComponentClass, but for source
240 # component objects.
241 class _GenericSourceComponent(object._SharedObject, _SourceComponent):
242 _get_ref = staticmethod(native_bt.component_source_get_ref)
243 _put_ref = staticmethod(native_bt.component_source_put_ref)
244
245 @property
246 def output_ports(self):
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,
252 bt2_port._OutputPort,
253 )
254
255
256 # This is analogous to _FilterComponentClass, but for filter
257 # component objects.
258 class _GenericFilterComponent(object._SharedObject, _FilterComponent):
259 _get_ref = staticmethod(native_bt.component_filter_get_ref)
260 _put_ref = staticmethod(native_bt.component_filter_put_ref)
261
262 @property
263 def output_ports(self):
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,
269 bt2_port._OutputPort,
270 )
271
272 @property
273 def input_ports(self):
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,
279 bt2_port._InputPort,
280 )
281
282
283 # This is analogous to _SinkComponentClass, but for sink
284 # component objects.
285 class _GenericSinkComponent(object._SharedObject, _SinkComponent):
286 _get_ref = staticmethod(native_bt.component_sink_get_ref)
287 _put_ref = staticmethod(native_bt.component_sink_put_ref)
288
289 @property
290 def input_ports(self):
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,
296 bt2_port._InputPort,
297 )
298
299
300 _COMP_CLS_TYPE_TO_GENERIC_COMP_PYCLS = {
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
307 _COMP_CLS_TYPE_TO_GENERIC_COMP_CLS_PYCLS = {
308 native_bt.COMPONENT_CLASS_TYPE_SOURCE: _SourceComponentClass,
309 native_bt.COMPONENT_CLASS_TYPE_FILTER: _FilterComponentClass,
310 native_bt.COMPONENT_CLASS_TYPE_SINK: _SinkComponentClass,
311 }
312
313
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
320
321 def _create_component_from_ptr(ptr, comp_cls_type):
322 return _COMP_CLS_TYPE_TO_GENERIC_COMP_PYCLS[comp_cls_type]._create_from_ptr(ptr)
323
324
325 # Same as the above, but acquire a new reference instead of stealing the
326 # reference from the caller.
327
328
329 def _create_component_from_ptr_and_get_ref(ptr, comp_cls_type):
330 return _COMP_CLS_TYPE_TO_GENERIC_COMP_PYCLS[
331 comp_cls_type
332 ]._create_from_ptr_and_get_ref(ptr)
333
334
335 # Create a component class Python object of type
336 # _SourceComponentClass, _FilterComponentClass or
337 # _SinkComponentClass, depending on comp_cls_type.
338 #
339 # Acquires a new reference to ptr.
340
341
342 def _create_component_class_from_ptr_and_get_ref(ptr, comp_cls_type):
343 return _COMP_CLS_TYPE_TO_GENERIC_COMP_CLS_PYCLS[
344 comp_cls_type
345 ]._create_from_ptr_and_get_ref(ptr)
346
347
348 def _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
373 # Metaclass for component classes defined by Python code.
374 #
375 # The Python user can create a standard Python class which inherits one
376 # of the three base classes (_UserSourceComponent, _UserFilterComponent,
377 # or _UserSinkComponent). Those base classes set this class
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
385 # the _ComponentClass interface.
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 #
410 # The user-defined component class can also have a _finalize() method
411 # (do NOT use __del__()) to be notified when the component object is
412 # finalized.
413 #
414 # User-defined source and filter component classes must use the
415 # `message_iterator_class` class parameter to specify the
416 # message iterator class to use for this component class:
417 #
418 # class MyMessageIterator(bt2._UserMessageIterator):
419 # ...
420 #
421 # class MySource(bt2._UserSourceComponent,
422 # message_iterator_class=MyMessageIterator):
423 # ...
424 #
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
428 # __init__() method: this method has access to the original Python
429 # component object which was used to create it as the `component`
430 # property. The message iterator class can also define a
431 # _finalize() method (again, do NOT use __del__()): this is called when
432 # the message iterator is (really) destroyed.
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).
438 class _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
447 own_bases = (
448 '_UserComponent',
449 '_UserFilterSinkComponent',
450 '_UserSourceComponent',
451 '_UserFilterComponent',
452 '_UserSinkComponent',
453 )
454
455 if class_name in own_bases:
456 return
457
458 comp_cls_name = kwargs.get('name', class_name)
459 utils._check_str(comp_cls_name)
460 comp_cls_descr = None
461 comp_cls_help = None
462
463 if hasattr(cls, '__doc__') and cls.__doc__ is not None:
464 utils._check_str(cls.__doc__)
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
474 iter_cls = kwargs.get('message_iterator_class')
475
476 if _UserSourceComponent in bases:
477 _UserComponentType._bt_set_iterator_class(cls, iter_cls)
478 cc_ptr = native_bt.bt2_component_class_source_create(
479 cls, comp_cls_name, comp_cls_descr, comp_cls_help
480 )
481 elif _UserFilterComponent in bases:
482 _UserComponentType._bt_set_iterator_class(cls, iter_cls)
483 cc_ptr = native_bt.bt2_component_class_filter_create(
484 cls, comp_cls_name, comp_cls_descr, comp_cls_help
485 )
486 elif _UserSinkComponent in bases:
487 if not hasattr(cls, '_user_consume'):
488 raise bt2._IncompleteUserClass(
489 "cannot create component class '{}': missing a _user_consume() method".format(
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 )
497 else:
498 raise bt2._IncompleteUserClass(
499 "cannot find a known component class base in the bases of '{}'".format(
500 class_name
501 )
502 )
503
504 if cc_ptr is None:
505 raise bt2._MemoryError(
506 "cannot create component class '{}'".format(class_name)
507 )
508
509 cls._bt_cc_ptr = cc_ptr
510
511 def _bt_init_from_native(cls, comp_ptr, params_ptr):
512 # create instance, not user-initialized yet
513 self = cls.__new__(cls)
514
515 # pointer to native self component object (weak/borrowed)
516 self._bt_ptr = comp_ptr
517
518 # call user's __init__() method
519 if params_ptr is not None:
520 params = bt2_value._create_from_ptr_and_get_ref(params_ptr)
521 else:
522 params = None
523
524 self.__init__(params)
525 return self
526
527 def __call__(cls, *args, **kwargs):
528 raise RuntimeError(
529 'cannot directly instantiate a user component from a Python module'
530 )
531
532 @staticmethod
533 def _bt_set_iterator_class(cls, iter_cls):
534 if iter_cls is None:
535 raise bt2._IncompleteUserClass(
536 "cannot create component class '{}': missing message iterator class".format(
537 cls.__name__
538 )
539 )
540
541 if not issubclass(iter_cls, bt2_message_iterator._UserMessageIterator):
542 raise bt2._IncompleteUserClass(
543 "cannot create component class '{}': message iterator class does not inherit bt2._UserMessageIterator".format(
544 cls.__name__
545 )
546 )
547
548 if not hasattr(iter_cls, '__next__'):
549 raise bt2._IncompleteUserClass(
550 "cannot create component class '{}': message iterator class is missing a __next__() method".format(
551 cls.__name__
552 )
553 )
554
555 cls._iter_cls = iter_cls
556
557 @property
558 def name(cls):
559 ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
560 return native_bt.component_class_get_name(ptr)
561
562 @property
563 def description(cls):
564 ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
565 return native_bt.component_class_get_description(ptr)
566
567 @property
568 def help(cls):
569 ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
570 return native_bt.component_class_get_help(ptr)
571
572 @property
573 def addr(cls):
574 return int(cls._bt_cc_ptr)
575
576 def _bt_query_from_native(cls, query_exec_ptr, obj, params_ptr, log_level):
577 # this can raise, in which case the native call to
578 # bt_component_class_query() returns NULL
579 if params_ptr is not None:
580 params = bt2_value._create_from_ptr_and_get_ref(params_ptr)
581 else:
582 params = None
583
584 query_exec = bt2_query_executor.QueryExecutor._create_from_ptr_and_get_ref(
585 query_exec_ptr
586 )
587
588 # this can raise, but the native side checks the exception
589 results = cls._user_query(query_exec, obj, params, log_level)
590
591 # this can raise, but the native side checks the exception
592 results = bt2.create_value(results)
593
594 if results is None:
595 results_ptr = native_bt.value_null
596 else:
597 # return new reference
598 results_ptr = results._ptr
599
600 # We return a new reference.
601 bt2_value._Value._get_ref(results_ptr)
602
603 return int(results_ptr)
604
605 def _user_query(cls, query_executor, obj, params, log_level):
606 raise bt2.UnknownObject
607
608 def _bt_component_class_ptr(self):
609 return self._bt_as_component_class_ptr(self._bt_cc_ptr)
610
611 def __del__(cls):
612 if hasattr(cls, '_bt_cc_ptr'):
613 cc_ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
614 native_bt.component_class_put_ref(cc_ptr)
615
616
617 # Subclasses must provide these methods or property:
618 #
619 # - _bt_as_not_self_specific_component_ptr: static method, must return the passed
620 # specialized self component pointer (e.g. 'bt_self_component_sink *') as a
621 # specialized non-self pointer (e.g. 'bt_component_sink *').
622 # - _bt_borrow_component_class_ptr: static method, must return a pointer to the
623 # specialized component class (e.g. 'bt_component_class_sink *') of the
624 # passed specialized component pointer (e.g. 'bt_component_sink *').
625 # - _bt_comp_cls_type: property, one of the native_bt.COMPONENT_CLASS_TYPE_*
626 # constants.
627
628
629 class _UserComponent(metaclass=_UserComponentType):
630 @property
631 def name(self):
632 ptr = self._bt_as_not_self_specific_component_ptr(self._bt_ptr)
633 ptr = self._bt_as_component_ptr(ptr)
634 name = native_bt.component_get_name(ptr)
635 assert name is not None
636 return name
637
638 @property
639 def logging_level(self):
640 ptr = self._bt_as_not_self_specific_component_ptr(self._bt_ptr)
641 ptr = self._bt_as_component_ptr(ptr)
642 return native_bt.component_get_logging_level(ptr)
643
644 @property
645 def cls(self):
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)
648 return _create_component_class_from_ptr_and_get_ref(
649 cc_ptr, self._bt_comp_cls_type
650 )
651
652 @property
653 def addr(self):
654 return int(self._bt_ptr)
655
656 def __init__(self, params=None):
657 pass
658
659 def _user_finalize(self):
660 pass
661
662 def _user_port_connected(self, port, other_port):
663 pass
664
665 def _bt_port_connected_from_native(
666 self, self_port_ptr, self_port_type, other_port_ptr
667 ):
668 port = bt2_port._create_self_from_ptr_and_get_ref(self_port_ptr, self_port_type)
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
675 other_port = bt2_port._create_from_ptr_and_get_ref(
676 other_port_ptr, other_port_type
677 )
678 self._user_port_connected(port, other_port)
679
680 def _create_trace_class(self, assigns_automatic_stream_class_id=True):
681 ptr = self._bt_as_self_component_ptr(self._bt_ptr)
682 tc_ptr = native_bt.trace_class_create(ptr)
683
684 if tc_ptr is None:
685 raise bt2._MemoryError('could not create trace class')
686
687 tc = bt2_trace_class._TraceClass._create_from_ptr(tc_ptr)
688 tc._assigns_automatic_stream_class_id = assigns_automatic_stream_class_id
689
690 return tc
691
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 ):
702 ptr = self._bt_as_self_component_ptr(self._bt_ptr)
703 cc_ptr = native_bt.clock_class_create(ptr)
704
705 if cc_ptr is None:
706 raise bt2._MemoryError('could not create clock class')
707
708 cc = bt2_clock_class._ClockClass._create_from_ptr(cc_ptr)
709
710 if frequency is not None:
711 cc._frequency = frequency
712
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
730 return cc
731
732
733 class _UserSourceComponent(_UserComponent, _SourceComponent):
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 )
740
741 @property
742 def _output_ports(self):
743 def get_output_port_count(self_ptr):
744 ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
745 return native_bt.component_source_get_output_port_count(ptr)
746
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,
752 bt2_port._UserComponentOutputPort,
753 )
754
755 def _add_output_port(self, name, user_data=None):
756 utils._check_str(name)
757 fn = native_bt.self_component_source_add_output_port
758 comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
759 utils._handle_func_status(
760 comp_status, 'cannot add output port to source component object'
761 )
762 assert self_port_ptr is not None
763 return bt2_port._UserComponentOutputPort._create_from_ptr(self_port_ptr)
764
765
766 class _UserFilterComponent(_UserComponent, _FilterComponent):
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 )
773
774 @property
775 def _output_ports(self):
776 def get_output_port_count(self_ptr):
777 ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
778 return native_bt.component_filter_get_output_port_count(ptr)
779
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,
785 bt2_port._UserComponentOutputPort,
786 )
787
788 @property
789 def _input_ports(self):
790 def get_input_port_count(self_ptr):
791 ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
792 return native_bt.component_filter_get_input_port_count(ptr)
793
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,
799 bt2_port._UserComponentInputPort,
800 )
801
802 def _add_output_port(self, name, user_data=None):
803 utils._check_str(name)
804 fn = native_bt.self_component_filter_add_output_port
805 comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
806 utils._handle_func_status(
807 comp_status, 'cannot add output port to filter component object'
808 )
809 assert self_port_ptr
810 return bt2_port._UserComponentOutputPort._create_from_ptr(self_port_ptr)
811
812 def _add_input_port(self, name, user_data=None):
813 utils._check_str(name)
814 fn = native_bt.self_component_filter_add_input_port
815 comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
816 utils._handle_func_status(
817 comp_status, 'cannot add input port to filter component object'
818 )
819 assert self_port_ptr
820 return bt2_port._UserComponentInputPort._create_from_ptr(self_port_ptr)
821
822
823 class _UserSinkComponent(_UserComponent, _SinkComponent):
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 )
830
831 def _bt_graph_is_configured_from_native(self):
832 self._user_graph_is_configured()
833
834 def _user_graph_is_configured(self):
835 pass
836
837 @property
838 def _input_ports(self):
839 def get_input_port_count(self_ptr):
840 ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
841 return native_bt.component_sink_get_input_port_count(ptr)
842
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,
848 bt2_port._UserComponentInputPort,
849 )
850
851 def _add_input_port(self, name, user_data=None):
852 utils._check_str(name)
853 fn = native_bt.self_component_sink_add_input_port
854 comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
855 utils._handle_func_status(
856 comp_status, 'cannot add input port to sink component object'
857 )
858 assert self_port_ptr
859 return bt2_port._UserComponentInputPort._create_from_ptr(self_port_ptr)
860
861 def _create_input_port_message_iterator(self, input_port):
862 utils._check_type(input_port, bt2_port._UserComponentInputPort)
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
871 return bt2_message_iterator._UserComponentInputPortMessageIterator(msg_iter_ptr)
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.047341 seconds and 4 git commands to generate.