Explicitly mention `black` in CodingStyle guidelines
[babeltrace.git] / src / bindings / python / bt2 / bt2 / component.py
index 3480f6570703e2ae49db6c0a99d62daabf89b0a7..18b502ac6c1e150fbb328bab9f7bac0451061678 100644 (file)
@@ -31,10 +31,6 @@ import bt2
 import os
 
 
-_env_var = os.environ.get('BABELTRACE_PYTHON_BT2_NO_TRACEBACK')
-_NO_PRINT_TRACEBACK = _env_var == '1'
-
-
 # This class wraps a component class pointer. This component class could
 # have been created by Python code, but since we only have the pointer,
 # we can only wrap it in a generic way and lose the original Python
@@ -42,29 +38,29 @@ _NO_PRINT_TRACEBACK = _env_var == '1'
 #
 # Subclasses must implement some methods that this base class uses:
 #
-#   - _as_component_class_ptr: static method, convert the passed component class
+#   - _bt_as_component_class_ptr: static method, convert the passed component class
 #     pointer to a 'bt_component_class *'.
 
 class _GenericComponentClass(object._SharedObject):
     @property
     def name(self):
-        ptr = self._as_component_class_ptr(self._ptr)
+        ptr = self._bt_as_component_class_ptr(self._ptr)
         name = native_bt.component_class_get_name(ptr)
         assert name is not None
         return name
 
     @property
     def description(self):
-        ptr = self._as_component_class_ptr(self._ptr)
+        ptr = self._bt_as_component_class_ptr(self._ptr)
         return native_bt.component_class_get_description(ptr)
 
     @property
     def help(self):
-        ptr = self._as_component_class_ptr(self._ptr)
+        ptr = self._bt_as_component_class_ptr(self._ptr)
         return native_bt.component_class_get_help(ptr)
 
-    def _component_class_ptr(self):
-        return self._as_component_class_ptr(self._ptr)
+    def _bt_component_class_ptr(self):
+        return self._bt_as_component_class_ptr(self._ptr)
 
     def __eq__(self, other):
         if not isinstance(other, _GenericComponentClass):
@@ -80,30 +76,19 @@ class _GenericComponentClass(object._SharedObject):
 class _GenericSourceComponentClass(_GenericComponentClass):
     _get_ref = staticmethod(native_bt.component_class_source_get_ref)
     _put_ref = staticmethod(native_bt.component_class_source_put_ref)
-    _as_component_class_ptr = staticmethod(native_bt.component_class_source_as_component_class)
+    _bt_as_component_class_ptr = staticmethod(native_bt.component_class_source_as_component_class)
 
 
 class _GenericFilterComponentClass(_GenericComponentClass):
     _get_ref = staticmethod(native_bt.component_class_filter_get_ref)
     _put_ref = staticmethod(native_bt.component_class_filter_put_ref)
-    _as_component_class_ptr = staticmethod(native_bt.component_class_filter_as_component_class)
+    _bt_as_component_class_ptr = staticmethod(native_bt.component_class_filter_as_component_class)
 
 
 class _GenericSinkComponentClass(_GenericComponentClass):
     _get_ref = staticmethod(native_bt.component_class_sink_get_ref)
     _put_ref = staticmethod(native_bt.component_class_sink_put_ref)
-    _as_component_class_ptr = staticmethod(native_bt.component_class_sink_as_component_class)
-
-
-def _handle_component_status(status, gen_error_msg):
-    if status == native_bt.SELF_COMPONENT_STATUS_END:
-        raise bt2.Stop
-    elif status == native_bt.SELF_COMPONENT_STATUS_AGAIN:
-        raise bt2.TryAgain
-    elif status == native_bt.SELF_COMPONENT_STATUS_REFUSE_PORT_CONNECTION:
-        raise bt2.PortConnectionRefused
-    elif status < 0:
-        raise bt2.Error(gen_error_msg)
+    _bt_as_component_class_ptr = staticmethod(native_bt.component_class_sink_as_component_class)
 
 
 class _PortIterator(collections.abc.Iterator):
@@ -168,27 +153,32 @@ class _ComponentPorts(collections.abc.Mapping):
 #
 # Subclasses must provide these methods or property:
 #
-#   - _borrow_component_class_ptr: static method, must return a pointer to the
+#   - _bt_borrow_component_class_ptr: static method, must return a pointer to the
 #     specialized component class (e.g. 'bt_component_class_sink *') of the
 #     passed specialized component pointer (e.g. 'bt_component_sink *').
-#   - _comp_cls_type: property, one of the native_bt.COMPONENT_CLASS_TYPE_*
+#   - _bt_comp_cls_type: property, one of the native_bt.COMPONENT_CLASS_TYPE_*
 #     constants.
-#   - _as_component_ptr: static method, must return the passed specialized
+#   - _bt_as_component_ptr: static method, must return the passed specialized
 #     component pointer (e.g. 'bt_component_sink *') as a 'bt_component *'.
 
 class _Component:
     @property
     def name(self):
-        ptr = self._as_component_ptr(self._ptr)
+        ptr = self._bt_as_component_ptr(self._ptr)
         name = native_bt.component_get_name(ptr)
         assert name is not None
         return name
 
+    @property
+    def logging_level(self):
+        ptr = self._bt_as_component_ptr(self._ptr)
+        return native_bt.component_get_logging_level(ptr)
+
     @property
     def cls(self):
-        cc_ptr = self._borrow_component_class_ptr(self._ptr)
+        cc_ptr = self._bt_borrow_component_class_ptr(self._ptr)
         assert cc_ptr is not None
-        return _create_component_class_from_ptr_and_get_ref(cc_ptr, self._comp_cls_type)
+        return _create_component_class_from_ptr_and_get_ref(cc_ptr, self._bt_comp_cls_type)
 
     def __eq__(self, other):
         if not hasattr(other, 'addr'):
@@ -198,24 +188,24 @@ class _Component:
 
 
 class _SourceComponent(_Component):
-    _borrow_component_class_ptr = staticmethod(native_bt.component_source_borrow_class_const)
-    _comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SOURCE
-    _as_component_class_ptr = staticmethod(native_bt.component_class_source_as_component_class)
-    _as_component_ptr = staticmethod(native_bt.component_source_as_component_const)
+    _bt_borrow_component_class_ptr = staticmethod(native_bt.component_source_borrow_class_const)
+    _bt_comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SOURCE
+    _bt_as_component_class_ptr = staticmethod(native_bt.component_class_source_as_component_class)
+    _bt_as_component_ptr = staticmethod(native_bt.component_source_as_component_const)
 
 
 class _FilterComponent(_Component):
-    _borrow_component_class_ptr = staticmethod(native_bt.component_filter_borrow_class_const)
-    _comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_FILTER
-    _as_component_class_ptr = staticmethod(native_bt.component_class_filter_as_component_class)
-    _as_component_ptr = staticmethod(native_bt.component_filter_as_component_const)
+    _bt_borrow_component_class_ptr = staticmethod(native_bt.component_filter_borrow_class_const)
+    _bt_comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_FILTER
+    _bt_as_component_class_ptr = staticmethod(native_bt.component_class_filter_as_component_class)
+    _bt_as_component_ptr = staticmethod(native_bt.component_filter_as_component_const)
 
 
 class _SinkComponent(_Component):
-    _borrow_component_class_ptr = staticmethod(native_bt.component_sink_borrow_class_const)
-    _comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SINK
-    _as_component_class_ptr = staticmethod(native_bt.component_class_sink_as_component_class)
-    _as_component_ptr = staticmethod(native_bt.component_sink_as_component_const)
+    _bt_borrow_component_class_ptr = staticmethod(native_bt.component_sink_borrow_class_const)
+    _bt_comp_cls_type = native_bt.COMPONENT_CLASS_TYPE_SINK
+    _bt_as_component_class_ptr = staticmethod(native_bt.component_class_sink_as_component_class)
+    _bt_as_component_ptr = staticmethod(native_bt.component_sink_as_component_const)
 
 
 # This is analogous to _GenericSourceComponentClass, but for source
@@ -441,22 +431,25 @@ class _UserComponentType(type):
         iter_cls = kwargs.get('message_iterator_class')
 
         if _UserSourceComponent in bases:
-            _UserComponentType._set_iterator_class(cls, iter_cls)
-            cc_ptr = native_bt.py3_component_class_source_create(cls,
+            _UserComponentType._bt_set_iterator_class(cls, iter_cls)
+            cc_ptr = native_bt.bt2_component_class_source_create(cls,
                                                                  comp_cls_name,
                                                                  comp_cls_descr,
                                                                  comp_cls_help)
         elif _UserFilterComponent in bases:
-            _UserComponentType._set_iterator_class(cls, iter_cls)
-            cc_ptr = native_bt.py3_component_class_filter_create(cls,
+            _UserComponentType._bt_set_iterator_class(cls, iter_cls)
+            cc_ptr = native_bt.bt2_component_class_filter_create(cls,
                                                                  comp_cls_name,
                                                                  comp_cls_descr,
                                                                  comp_cls_help)
         elif _UserSinkComponent in bases:
+            if not hasattr(cls, '_graph_is_configured'):
+                raise bt2.IncompleteUserClass("cannot create component class '{}': missing a _graph_is_configured() method".format(class_name))
+
             if not hasattr(cls, '_consume'):
                 raise bt2.IncompleteUserClass("cannot create component class '{}': missing a _consume() method".format(class_name))
 
-            cc_ptr = native_bt.py3_component_class_sink_create(cls,
+            cc_ptr = native_bt.bt2_component_class_sink_create(cls,
                                                                comp_cls_name,
                                                                comp_cls_descr,
                                                                comp_cls_help)
@@ -466,14 +459,14 @@ class _UserComponentType(type):
         if cc_ptr is None:
             raise bt2.CreationError("cannot create component class '{}'".format(class_name))
 
-        cls._cc_ptr = cc_ptr
+        cls._bt_cc_ptr = cc_ptr
 
-    def _init_from_native(cls, comp_ptr, params_ptr):
+    def _bt_init_from_native(cls, comp_ptr, params_ptr):
         # create instance, not user-initialized yet
         self = cls.__new__(cls)
 
         # pointer to native self component object (weak/borrowed)
-        self._ptr = comp_ptr
+        self._bt_ptr = comp_ptr
 
         # call user's __init__() method
         if params_ptr is not None:
@@ -488,7 +481,7 @@ class _UserComponentType(type):
         raise bt2.Error('cannot directly instantiate a user component from a Python module')
 
     @staticmethod
-    def _set_iterator_class(cls, iter_cls):
+    def _bt_set_iterator_class(cls, iter_cls):
         if iter_cls is None:
             raise bt2.IncompleteUserClass("cannot create component class '{}': missing message iterator class".format(cls.__name__))
 
@@ -502,24 +495,24 @@ class _UserComponentType(type):
 
     @property
     def name(cls):
-        ptr = cls._as_component_class_ptr(cls._cc_ptr)
+        ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
         return native_bt.component_class_get_name(ptr)
 
     @property
     def description(cls):
-        ptr = cls._as_component_class_ptr(cls._cc_ptr)
+        ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
         return native_bt.component_class_get_description(ptr)
 
     @property
     def help(cls):
-        ptr = cls._as_component_class_ptr(cls._cc_ptr)
+        ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
         return native_bt.component_class_get_help(ptr)
 
     @property
     def addr(cls):
-        return int(cls._cc_ptr)
+        return int(cls._bt_cc_ptr)
 
-    def _query_from_native(cls, query_exec_ptr, obj, params_ptr):
+    def _bt_query_from_native(cls, query_exec_ptr, obj, params_ptr, log_level):
         # this can raise, in which case the native call to
         # bt_component_class_query() returns NULL
         if params_ptr is not None:
@@ -531,59 +524,68 @@ class _UserComponentType(type):
             query_exec_ptr)
 
         # this can raise, but the native side checks the exception
-        results = cls._query(query_exec, obj, params)
+        results = cls._query(query_exec, obj, params, log_level)
 
         # this can raise, but the native side checks the exception
         results = bt2.create_value(results)
 
         if results is None:
-            results_addr = int(native_bt.value_null)
+            results_ptr = native_bt.value_null
         else:
             # return new reference
-            results_addr = int(results._release())
+            results_ptr = results._ptr
+
+        # We return a new reference.
+        bt2.value._Value._get_ref(results_ptr)
 
-        return results_addr
+        return int(results_ptr)
 
-    def _query(cls, query_executor, obj, params):
+    def _query(cls, query_executor, obj, params, log_level):
         raise NotImplementedError
 
-    def _component_class_ptr(self):
-        return self._as_component_class_ptr(self._cc_ptr)
+    def _bt_component_class_ptr(self):
+        return self._bt_as_component_class_ptr(self._bt_cc_ptr)
 
     def __del__(cls):
-        if hasattr(cls, '_cc_ptr'):
-            cc_ptr = cls._as_component_class_ptr(cls._cc_ptr)
+        if hasattr(cls, '_bt_cc_ptr'):
+            cc_ptr = cls._bt_as_component_class_ptr(cls._bt_cc_ptr)
             native_bt.component_class_put_ref(cc_ptr)
 
 # Subclasses must provide these methods or property:
 #
-#   - _as_not_self_specific_component_ptr: static method, must return the passed
+#   - _bt_as_not_self_specific_component_ptr: static method, must return the passed
 #     specialized self component pointer (e.g. 'bt_self_component_sink *') as a
 #     specialized non-self pointer (e.g. 'bt_component_sink *').
-#   - _borrow_component_class_ptr: static method, must return a pointer to the
+#   - _bt_borrow_component_class_ptr: static method, must return a pointer to the
 #     specialized component class (e.g. 'bt_component_class_sink *') of the
 #     passed specialized component pointer (e.g. 'bt_component_sink *').
-#   - _comp_cls_type: property, one of the native_bt.COMPONENT_CLASS_TYPE_*
+#   - _bt_comp_cls_type: property, one of the native_bt.COMPONENT_CLASS_TYPE_*
 #     constants.
 
 class _UserComponent(metaclass=_UserComponentType):
     @property
     def name(self):
-        ptr = self._as_not_self_specific_component_ptr(self._ptr)
-        ptr = self._as_component_ptr(ptr)
+        ptr = self._bt_as_not_self_specific_component_ptr(self._bt_ptr)
+        ptr = self._bt_as_component_ptr(ptr)
         name = native_bt.component_get_name(ptr)
         assert name is not None
         return name
 
+    @property
+    def logging_level(self):
+        ptr = self._bt_as_not_self_specific_component_ptr(self._bt_ptr)
+        ptr = self._bt_as_component_ptr(ptr)
+        return native_bt.component_get_logging_level(ptr)
+
     @property
     def cls(self):
-        comp_ptr = self._as_not_self_specific_component_ptr(self._ptr)
-        cc_ptr = self._borrow_component_class_ptr(comp_ptr)
-        return _create_component_class_from_ptr_and_get_ref(cc_ptr, self._comp_cls_type)
+        comp_ptr = self._bt_as_not_self_specific_component_ptr(self._bt_ptr)
+        cc_ptr = self._bt_borrow_component_class_ptr(comp_ptr)
+        return _create_component_class_from_ptr_and_get_ref(cc_ptr, self._bt_comp_cls_type)
 
     @property
     def addr(self):
-        return int(self._ptr)
+        return int(self._bt_ptr)
 
     def __init__(self, params=None):
         pass
@@ -591,31 +593,10 @@ class _UserComponent(metaclass=_UserComponentType):
     def _finalize(self):
         pass
 
-    def _accept_port_connection(self, port, other_port):
-        return True
-
-    def _accept_port_connection_from_native(self, self_port_ptr, self_port_type, other_port_ptr):
-        port = bt2.port._create_self_from_ptr_and_get_ref(
-            self_port_ptr, self_port_type)
-
-        if self_port_type == native_bt.PORT_TYPE_OUTPUT:
-            other_port_type = native_bt.PORT_TYPE_INPUT
-        else:
-            other_port_type = native_bt.PORT_TYPE_OUTPUT
-
-        other_port = bt2.port._create_from_ptr_and_get_ref(
-            other_port_ptr, other_port_type)
-        res = self._accept_port_connection(port, other_port_ptr)
-
-        if type(res) is not bool:
-            raise TypeError("'{}' is not a 'bool' object")
-
-        return res
-
     def _port_connected(self, port, other_port):
         pass
 
-    def _port_connected_from_native(self, self_port_ptr, self_port_type, other_port_ptr):
+    def _bt_port_connected_from_native(self, self_port_ptr, self_port_type, other_port_ptr):
         port = bt2.port._create_self_from_ptr_and_get_ref(
             self_port_ptr, self_port_type)
 
@@ -628,26 +609,17 @@ class _UserComponent(metaclass=_UserComponentType):
             other_port_ptr, other_port_type)
         self._port_connected(port, other_port)
 
-    def _graph_is_configured_from_native(self):
+    def _bt_graph_is_configured_from_native(self):
         self._graph_is_configured()
 
-    def _create_trace_class(self, env=None, uuid=None,
-                            assigns_automatic_stream_class_id=True):
-        ptr = self._as_self_component_ptr(self._ptr)
+    def _create_trace_class(self, assigns_automatic_stream_class_id=True):
+        ptr = self._bt_as_self_component_ptr(self._bt_ptr)
         tc_ptr = native_bt.trace_class_create(ptr)
 
         if tc_ptr is None:
             raise bt2.CreationError('could not create trace class')
 
         tc = bt2._TraceClass._create_from_ptr(tc_ptr)
-
-        if env is not None:
-            for key, value in env.items():
-                tc.env[key] = value
-
-        if uuid is not None:
-            tc._uuid = uuid
-
         tc._assigns_automatic_stream_class_id = assigns_automatic_stream_class_id
 
         return tc
@@ -655,7 +627,7 @@ class _UserComponent(metaclass=_UserComponentType):
     def _create_clock_class(self, frequency=None, name=None, description=None,
                             precision=None, offset=None, origin_is_unix_epoch=True,
                             uuid=None):
-        ptr = self._as_self_component_ptr(self._ptr)
+        ptr = self._bt_as_self_component_ptr(self._bt_ptr)
         cc_ptr = native_bt.clock_class_create(ptr)
 
         if cc_ptr is None:
@@ -687,16 +659,16 @@ class _UserComponent(metaclass=_UserComponentType):
 
 
 class _UserSourceComponent(_UserComponent, _SourceComponent):
-    _as_not_self_specific_component_ptr = staticmethod(native_bt.self_component_source_as_component_source)
-    _as_self_component_ptr = staticmethod(native_bt.self_component_source_as_self_component)
+    _bt_as_not_self_specific_component_ptr = staticmethod(native_bt.self_component_source_as_component_source)
+    _bt_as_self_component_ptr = staticmethod(native_bt.self_component_source_as_self_component)
 
     @property
     def _output_ports(self):
         def get_output_port_count(self_ptr):
-            ptr = self._as_not_self_specific_component_ptr(self_ptr)
+            ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
             return native_bt.component_source_get_output_port_count(ptr)
 
-        return _ComponentPorts(self._ptr,
+        return _ComponentPorts(self._bt_ptr,
                                native_bt.self_component_source_borrow_output_port_by_name,
                                native_bt.self_component_source_borrow_output_port_by_index,
                                get_output_port_count,
@@ -705,24 +677,24 @@ class _UserSourceComponent(_UserComponent, _SourceComponent):
     def _add_output_port(self, name, user_data=None):
         utils._check_str(name)
         fn = native_bt.self_component_source_add_output_port
-        comp_status, self_port_ptr = fn(self._ptr, name, user_data)
-        _handle_component_status(comp_status,
-                                 'cannot add output port to source component object')
+        comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
+        utils._handle_func_status(comp_status,
+                                  'cannot add output port to source component object')
         assert self_port_ptr is not None
         return bt2.port._UserComponentOutputPort._create_from_ptr(self_port_ptr)
 
 
 class _UserFilterComponent(_UserComponent, _FilterComponent):
-    _as_not_self_specific_component_ptr = staticmethod(native_bt.self_component_filter_as_component_filter)
-    _as_self_component_ptr = staticmethod(native_bt.self_component_filter_as_self_component)
+    _bt_as_not_self_specific_component_ptr = staticmethod(native_bt.self_component_filter_as_component_filter)
+    _bt_as_self_component_ptr = staticmethod(native_bt.self_component_filter_as_self_component)
 
     @property
     def _output_ports(self):
         def get_output_port_count(self_ptr):
-            ptr = self._as_not_self_specific_component_ptr(self_ptr)
+            ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
             return native_bt.component_filter_get_output_port_count(ptr)
 
-        return _ComponentPorts(self._ptr,
+        return _ComponentPorts(self._bt_ptr,
                                native_bt.self_component_filter_borrow_output_port_by_name,
                                native_bt.self_component_filter_borrow_output_port_by_index,
                                get_output_port_count,
@@ -731,10 +703,10 @@ class _UserFilterComponent(_UserComponent, _FilterComponent):
     @property
     def _input_ports(self):
         def get_input_port_count(self_ptr):
-            ptr = self._as_not_self_specific_component_ptr(self_ptr)
+            ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
             return native_bt.component_filter_get_input_port_count(ptr)
 
-        return _ComponentPorts(self._ptr,
+        return _ComponentPorts(self._bt_ptr,
                                native_bt.self_component_filter_borrow_input_port_by_name,
                                native_bt.self_component_filter_borrow_input_port_by_index,
                                get_input_port_count,
@@ -743,33 +715,33 @@ class _UserFilterComponent(_UserComponent, _FilterComponent):
     def _add_output_port(self, name, user_data=None):
         utils._check_str(name)
         fn = native_bt.self_component_filter_add_output_port
-        comp_status, self_port_ptr = fn(self._ptr, name, user_data)
-        _handle_component_status(comp_status,
-                                 'cannot add output port to filter component object')
+        comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
+        utils._handle_func_status(comp_status,
+                                  'cannot add output port to filter component object')
         assert self_port_ptr
         return bt2.port._UserComponentOutputPort._create_from_ptr(self_port_ptr)
 
     def _add_input_port(self, name, user_data=None):
         utils._check_str(name)
         fn = native_bt.self_component_filter_add_input_port
-        comp_status, self_port_ptr = fn(self._ptr, name, user_data)
-        _handle_component_status(comp_status,
-                                 'cannot add input port to filter component object')
+        comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
+        utils._handle_func_status(comp_status,
+                                  'cannot add input port to filter component object')
         assert self_port_ptr
         return bt2.port._UserComponentInputPort._create_from_ptr(self_port_ptr)
 
 
 class _UserSinkComponent(_UserComponent, _SinkComponent):
-    _as_not_self_specific_component_ptr = staticmethod(native_bt.self_component_sink_as_component_sink)
-    _as_self_component_ptr = staticmethod(native_bt.self_component_sink_as_self_component)
+    _bt_as_not_self_specific_component_ptr = staticmethod(native_bt.self_component_sink_as_component_sink)
+    _bt_as_self_component_ptr = staticmethod(native_bt.self_component_sink_as_self_component)
 
     @property
     def _input_ports(self):
         def get_input_port_count(self_ptr):
-            ptr = self._as_not_self_specific_component_ptr(self_ptr)
+            ptr = self._bt_as_not_self_specific_component_ptr(self_ptr)
             return native_bt.component_sink_get_input_port_count(ptr)
 
-        return _ComponentPorts(self._ptr,
+        return _ComponentPorts(self._bt_ptr,
                                native_bt.self_component_sink_borrow_input_port_by_name,
                                native_bt.self_component_sink_borrow_input_port_by_index,
                                get_input_port_count,
@@ -778,8 +750,8 @@ class _UserSinkComponent(_UserComponent, _SinkComponent):
     def _add_input_port(self, name, user_data=None):
         utils._check_str(name)
         fn = native_bt.self_component_sink_add_input_port
-        comp_status, self_port_ptr = fn(self._ptr, name, user_data)
-        _handle_component_status(comp_status,
-                                 'cannot add input port to sink component object')
+        comp_status, self_port_ptr = fn(self._bt_ptr, name, user_data)
+        utils._handle_func_status(comp_status,
+                                  'cannot add input port to sink component object')
         assert self_port_ptr
         return bt2.port._UserComponentInputPort._create_from_ptr(self_port_ptr)
This page took 0.033079 seconds and 4 git commands to generate.