bt2: add bt2.get_{greatest_operative,maximal}_mip_version()
[babeltrace.git] / src / bindings / python / bt2 / bt2 / graph.py
CommitLineData
f6a5e476
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
c946c9de
PP
24from bt2 import interrupter as bt2_interrupter
25from bt2 import connection as bt2_connection
26from bt2 import component as bt2_component
f6a5e476 27import functools
c946c9de
PP
28from bt2 import port as bt2_port
29from bt2 import logging as bt2_logging
f6a5e476
PP
30import bt2
31
32
61d96b89
FD
33def _graph_port_added_listener_from_native(
34 user_listener, component_ptr, component_type, port_ptr, port_type
35):
c946c9de 36 component = bt2_component._create_component_from_ptr_and_get_ref(
61d96b89
FD
37 component_ptr, component_type
38 )
c946c9de 39 port = bt2_port._create_from_ptr_and_get_ref(port_ptr, port_type)
871a292a 40 user_listener(component, port)
f6a5e476
PP
41
42
61d96b89
FD
43def _graph_ports_connected_listener_from_native(
44 user_listener,
45 upstream_component_ptr,
46 upstream_component_type,
47 upstream_port_ptr,
48 downstream_component_ptr,
49 downstream_component_type,
50 downstream_port_ptr,
51):
c946c9de 52 upstream_component = bt2_component._create_component_from_ptr_and_get_ref(
61d96b89
FD
53 upstream_component_ptr, upstream_component_type
54 )
c946c9de 55 upstream_port = bt2_port._create_from_ptr_and_get_ref(
61d96b89
FD
56 upstream_port_ptr, native_bt.PORT_TYPE_OUTPUT
57 )
c946c9de 58 downstream_component = bt2_component._create_component_from_ptr_and_get_ref(
61d96b89
FD
59 downstream_component_ptr, downstream_component_type
60 )
c946c9de 61 downstream_port = bt2_port._create_from_ptr_and_get_ref(
61d96b89
FD
62 downstream_port_ptr, native_bt.PORT_TYPE_INPUT
63 )
64 user_listener(
65 upstream_component, upstream_port, downstream_component, downstream_port
66 )
f6a5e476
PP
67
68
c3044a97 69class Graph(object._SharedObject):
a49e2cc3
PP
70 _get_ref = staticmethod(native_bt.graph_get_ref)
71 _put_ref = staticmethod(native_bt.graph_put_ref)
bbb3650f 72
f6a5e476
PP
73 def __init__(self):
74 ptr = native_bt.graph_create()
75
76 if ptr is None:
614743a5 77 raise bt2._MemoryError('cannot create graph object')
f6a5e476
PP
78
79 super().__init__(ptr)
80
61d96b89
FD
81 def add_component(
82 self,
83 component_class,
84 name,
85 params=None,
b20382e2 86 obj=None,
c946c9de 87 logging_level=bt2_logging.LoggingLevel.NONE,
61d96b89 88 ):
c946c9de 89 if isinstance(component_class, bt2_component._SourceComponentClass):
871a292a 90 cc_ptr = component_class._ptr
b20382e2 91 add_fn = native_bt.bt2_graph_add_source_component
bc5c9924 92 cc_type = native_bt.COMPONENT_CLASS_TYPE_SOURCE
c946c9de 93 elif isinstance(component_class, bt2_component._FilterComponentClass):
871a292a 94 cc_ptr = component_class._ptr
b20382e2 95 add_fn = native_bt.bt2_graph_add_filter_component
bc5c9924 96 cc_type = native_bt.COMPONENT_CLASS_TYPE_FILTER
c946c9de 97 elif isinstance(component_class, bt2_component._SinkComponentClass):
871a292a 98 cc_ptr = component_class._ptr
b20382e2 99 add_fn = native_bt.bt2_graph_add_sink_component
871a292a 100 cc_type = native_bt.COMPONENT_CLASS_TYPE_SINK
c946c9de 101 elif issubclass(component_class, bt2_component._UserSourceComponent):
deec48a6 102 cc_ptr = component_class._bt_cc_ptr
b20382e2 103 add_fn = native_bt.bt2_graph_add_source_component
871a292a 104 cc_type = native_bt.COMPONENT_CLASS_TYPE_SOURCE
c946c9de 105 elif issubclass(component_class, bt2_component._UserSinkComponent):
deec48a6 106 cc_ptr = component_class._bt_cc_ptr
b20382e2 107 add_fn = native_bt.bt2_graph_add_sink_component
bc5c9924 108 cc_type = native_bt.COMPONENT_CLASS_TYPE_SINK
c946c9de 109 elif issubclass(component_class, bt2_component._UserFilterComponent):
deec48a6 110 cc_ptr = component_class._bt_cc_ptr
b20382e2 111 add_fn = native_bt.bt2_graph_add_filter_component
871a292a 112 cc_type = native_bt.COMPONENT_CLASS_TYPE_FILTER
f6a5e476 113 else:
61d96b89
FD
114 raise TypeError(
115 "'{}' is not a component class".format(
116 component_class.__class__.__name__
117 )
118 )
f6a5e476
PP
119
120 utils._check_str(name)
cc81b5ab 121 utils._check_log_level(logging_level)
b20382e2
PP
122 base_cc_ptr = component_class._bt_component_class_ptr()
123
124 if obj is not None and not native_bt.bt2_is_python_component_class(base_cc_ptr):
125 raise ValueError('cannot pass a Python object to a non-Python component')
f6a5e476 126
b20382e2 127 params = bt2.create_value(params)
bbb3650f 128 params_ptr = params._ptr if params is not None else None
f6a5e476 129
b20382e2
PP
130 status, comp_ptr = add_fn(
131 self._ptr, cc_ptr, name, params_ptr, obj, logging_level
132 )
fb25b9e3 133 utils._handle_func_status(status, 'cannot add component to graph')
bc5c9924 134 assert comp_ptr
c946c9de 135 return bt2_component._create_component_from_ptr(comp_ptr, cc_type)
f6a5e476
PP
136
137 def connect_ports(self, upstream_port, downstream_port):
c946c9de
PP
138 utils._check_type(upstream_port, bt2_port._OutputPort)
139 utils._check_type(downstream_port, bt2_port._InputPort)
61d96b89
FD
140 status, conn_ptr = native_bt.graph_connect_ports(
141 self._ptr, upstream_port._ptr, downstream_port._ptr
142 )
143 utils._handle_func_status(status, 'cannot connect component ports within graph')
144 assert conn_ptr
c946c9de 145 return bt2_connection._Connection._create_from_ptr(conn_ptr)
f6a5e476 146
871a292a
SM
147 def add_port_added_listener(self, listener):
148 if not callable(listener):
f6a5e476
PP
149 raise TypeError("'listener' parameter is not callable")
150
fb25b9e3 151 fn = native_bt.bt2_graph_add_port_added_listener
61d96b89
FD
152 listener_from_native = functools.partial(
153 _graph_port_added_listener_from_native, listener
154 )
f6a5e476 155
871a292a
SM
156 listener_ids = fn(self._ptr, listener_from_native)
157 if listener_ids is None:
614743a5 158 raise bt2._Error('cannot add listener to graph object')
d09c69f7 159
c946c9de 160 return utils._ListenerHandle(listener_ids, self)
871a292a
SM
161
162 def add_ports_connected_listener(self, listener):
163 if not callable(listener):
164 raise TypeError("'listener' parameter is not callable")
165
fb25b9e3 166 fn = native_bt.bt2_graph_add_ports_connected_listener
61d96b89
FD
167 listener_from_native = functools.partial(
168 _graph_ports_connected_listener_from_native, listener
169 )
871a292a
SM
170
171 listener_ids = fn(self._ptr, listener_from_native)
172 if listener_ids is None:
614743a5 173 raise bt2._Error('cannot add listener to graph object')
d09c69f7 174
c946c9de 175 return utils._ListenerHandle(listener_ids, self)
f6a5e476 176
22b4de6a
PP
177 def run_once(self):
178 status = native_bt.graph_run_once(self._ptr)
179 utils._handle_func_status(status, 'graph object could not run once')
180
f6a5e476
PP
181 def run(self):
182 status = native_bt.graph_run(self._ptr)
183
fb25b9e3 184 try:
d73bb381 185 utils._handle_func_status(status, 'graph object stopped running')
fb25b9e3
PP
186 except bt2.Stop:
187 # done
f6a5e476 188 return
fb25b9e3
PP
189 except Exception:
190 raise
f6a5e476 191
d73bb381 192 def add_interrupter(self, interrupter):
c946c9de 193 utils._check_type(interrupter, bt2_interrupter.Interrupter)
d73bb381 194 native_bt.graph_add_interrupter(self._ptr, interrupter._ptr)
f6a5e476 195
d73bb381
PP
196 def interrupt(self):
197 native_bt.graph_interrupt(self._ptr)
This page took 0.061606 seconds and 4 git commands to generate.