bt2: make bt_bt2_trace_{,class}_add_destruction_listener return a status
[babeltrace.git] / src / bindings / python / bt2 / bt2 / graph.py
CommitLineData
811644b8
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
24import bt2.connection
25import bt2.component
26import functools
27import bt2.port
e874da19 28import bt2.logging
811644b8
PP
29import bt2
30
31
cfbd7cf3
FD
32def _graph_port_added_listener_from_native(
33 user_listener, component_ptr, component_type, port_ptr, port_type
34):
35 component = bt2.component._create_component_from_ptr_and_get_ref(
36 component_ptr, component_type
37 )
5f25509b
SM
38 port = bt2.port._create_from_ptr_and_get_ref(port_ptr, port_type)
39 user_listener(component, port)
811644b8
PP
40
41
cfbd7cf3
FD
42def _graph_ports_connected_listener_from_native(
43 user_listener,
44 upstream_component_ptr,
45 upstream_component_type,
46 upstream_port_ptr,
47 downstream_component_ptr,
48 downstream_component_type,
49 downstream_port_ptr,
50):
5f25509b 51 upstream_component = bt2.component._create_component_from_ptr_and_get_ref(
cfbd7cf3
FD
52 upstream_component_ptr, upstream_component_type
53 )
5f25509b 54 upstream_port = bt2.port._create_from_ptr_and_get_ref(
cfbd7cf3
FD
55 upstream_port_ptr, native_bt.PORT_TYPE_OUTPUT
56 )
5f25509b 57 downstream_component = bt2.component._create_component_from_ptr_and_get_ref(
cfbd7cf3
FD
58 downstream_component_ptr, downstream_component_type
59 )
5f25509b 60 downstream_port = bt2.port._create_from_ptr_and_get_ref(
cfbd7cf3
FD
61 downstream_port_ptr, native_bt.PORT_TYPE_INPUT
62 )
63 user_listener(
64 upstream_component, upstream_port, downstream_component, downstream_port
65 )
811644b8
PP
66
67
78288f58 68class Graph(object._SharedObject):
2f16a6a2
PP
69 _get_ref = staticmethod(native_bt.graph_get_ref)
70 _put_ref = staticmethod(native_bt.graph_put_ref)
601c0026 71
811644b8
PP
72 def __init__(self):
73 ptr = native_bt.graph_create()
74
75 if ptr is None:
76 raise bt2.CreationError('cannot create graph object')
77
78 super().__init__(ptr)
79
cfbd7cf3
FD
80 def add_component(
81 self,
82 component_class,
83 name,
84 params=None,
85 logging_level=bt2.logging.LoggingLevel.NONE,
86 ):
5f25509b
SM
87 if isinstance(component_class, bt2.component._GenericSourceComponentClass):
88 cc_ptr = component_class._ptr
894a8df5
SM
89 add_fn = native_bt.graph_add_source_component
90 cc_type = native_bt.COMPONENT_CLASS_TYPE_SOURCE
5f25509b
SM
91 elif isinstance(component_class, bt2.component._GenericFilterComponentClass):
92 cc_ptr = component_class._ptr
894a8df5
SM
93 add_fn = native_bt.graph_add_filter_component
94 cc_type = native_bt.COMPONENT_CLASS_TYPE_FILTER
5f25509b
SM
95 elif isinstance(component_class, bt2.component._GenericSinkComponentClass):
96 cc_ptr = component_class._ptr
97 add_fn = native_bt.graph_add_sink_component
98 cc_type = native_bt.COMPONENT_CLASS_TYPE_SINK
99 elif issubclass(component_class, bt2.component._UserSourceComponent):
85906b6b 100 cc_ptr = component_class._bt_cc_ptr
5f25509b
SM
101 add_fn = native_bt.graph_add_source_component
102 cc_type = native_bt.COMPONENT_CLASS_TYPE_SOURCE
894a8df5 103 elif issubclass(component_class, bt2.component._UserSinkComponent):
85906b6b 104 cc_ptr = component_class._bt_cc_ptr
894a8df5
SM
105 add_fn = native_bt.graph_add_sink_component
106 cc_type = native_bt.COMPONENT_CLASS_TYPE_SINK
5f25509b 107 elif issubclass(component_class, bt2.component._UserFilterComponent):
85906b6b 108 cc_ptr = component_class._bt_cc_ptr
5f25509b
SM
109 add_fn = native_bt.graph_add_filter_component
110 cc_type = native_bt.COMPONENT_CLASS_TYPE_FILTER
811644b8 111 else:
cfbd7cf3
FD
112 raise TypeError(
113 "'{}' is not a component class".format(
114 component_class.__class__.__name__
115 )
116 )
811644b8
PP
117
118 utils._check_str(name)
e874da19 119 utils._check_log_level(logging_level)
811644b8
PP
120 params = bt2.create_value(params)
121
601c0026 122 params_ptr = params._ptr if params is not None else None
811644b8 123
cfbd7cf3 124 status, comp_ptr = add_fn(self._ptr, cc_ptr, name, params_ptr, logging_level)
d24d5663 125 utils._handle_func_status(status, 'cannot add component to graph')
894a8df5
SM
126 assert comp_ptr
127 return bt2.component._create_component_from_ptr(comp_ptr, cc_type)
811644b8
PP
128
129 def connect_ports(self, upstream_port, downstream_port):
130 utils._check_type(upstream_port, bt2.port._OutputPort)
131 utils._check_type(downstream_port, bt2.port._InputPort)
cfbd7cf3
FD
132 status, conn_ptr = native_bt.graph_connect_ports(
133 self._ptr, upstream_port._ptr, downstream_port._ptr
134 )
135 utils._handle_func_status(status, 'cannot connect component ports within graph')
136 assert conn_ptr
811644b8
PP
137 return bt2.connection._Connection._create_from_ptr(conn_ptr)
138
5f25509b
SM
139 def add_port_added_listener(self, listener):
140 if not callable(listener):
811644b8
PP
141 raise TypeError("'listener' parameter is not callable")
142
d24d5663 143 fn = native_bt.bt2_graph_add_port_added_listener
cfbd7cf3
FD
144 listener_from_native = functools.partial(
145 _graph_port_added_listener_from_native, listener
146 )
811644b8 147
5f25509b
SM
148 listener_ids = fn(self._ptr, listener_from_native)
149 if listener_ids is None:
150 utils._raise_bt2_error('cannot add listener to graph object')
151 return bt2._ListenerHandle(listener_ids, self)
152
153 def add_ports_connected_listener(self, listener):
154 if not callable(listener):
155 raise TypeError("'listener' parameter is not callable")
156
d24d5663 157 fn = native_bt.bt2_graph_add_ports_connected_listener
cfbd7cf3
FD
158 listener_from_native = functools.partial(
159 _graph_ports_connected_listener_from_native, listener
160 )
5f25509b
SM
161
162 listener_ids = fn(self._ptr, listener_from_native)
163 if listener_ids is None:
164 utils._raise_bt2_error('cannot add listener to graph object')
165 return bt2._ListenerHandle(listener_ids, self)
811644b8
PP
166
167 def run(self):
168 status = native_bt.graph_run(self._ptr)
169
d24d5663 170 try:
cfbd7cf3
FD
171 utils._handle_func_status(
172 status, 'graph object stopped running because of an unexpected error'
173 )
d24d5663
PP
174 except bt2.Stop:
175 # done
811644b8 176 return
d24d5663
PP
177 except Exception:
178 raise
811644b8
PP
179
180 def cancel(self):
181 status = native_bt.graph_cancel(self._ptr)
d24d5663 182 utils._handle_func_status(status, 'cannot cancel graph object')
811644b8
PP
183
184 @property
185 def is_canceled(self):
186 is_canceled = native_bt.graph_is_canceled(self._ptr)
cfbd7cf3 187 assert is_canceled >= 0
811644b8
PP
188 return is_canceled > 0
189
2ae9f48c
SM
190 def create_output_port_message_iterator(self, output_port):
191 utils._check_type(output_port, bt2.port._OutputPort)
cfbd7cf3
FD
192 msg_iter_ptr = native_bt.port_output_message_iterator_create(
193 self._ptr, output_port._ptr
194 )
2ae9f48c
SM
195
196 if msg_iter_ptr is None:
197 raise bt2.CreationError('cannot create output port message iterator')
198
199 return bt2.message_iterator._OutputPortMessageIterator(msg_iter_ptr)
This page took 0.043832 seconds and 4 git commands to generate.