1 # The MIT License (MIT)
3 # Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
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:
12 # The above copyright notice and this permission notice shall be included in
13 # all copies or substantial portions of the Software.
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
23 from bt2
import native_bt
, object, utils
32 def _graph_port_added_listener_from_native(
33 user_listener
, component_ptr
, component_type
, port_ptr
, port_type
35 component
= bt2
.component
._create
_component
_from
_ptr
_and
_get
_ref
(
36 component_ptr
, component_type
38 port
= bt2
.port
._create
_from
_ptr
_and
_get
_ref
(port_ptr
, port_type
)
39 user_listener(component
, port
)
42 def _graph_ports_connected_listener_from_native(
44 upstream_component_ptr
,
45 upstream_component_type
,
47 downstream_component_ptr
,
48 downstream_component_type
,
51 upstream_component
= bt2
.component
._create
_component
_from
_ptr
_and
_get
_ref
(
52 upstream_component_ptr
, upstream_component_type
54 upstream_port
= bt2
.port
._create
_from
_ptr
_and
_get
_ref
(
55 upstream_port_ptr
, native_bt
.PORT_TYPE_OUTPUT
57 downstream_component
= bt2
.component
._create
_component
_from
_ptr
_and
_get
_ref
(
58 downstream_component_ptr
, downstream_component_type
60 downstream_port
= bt2
.port
._create
_from
_ptr
_and
_get
_ref
(
61 downstream_port_ptr
, native_bt
.PORT_TYPE_INPUT
64 upstream_component
, upstream_port
, downstream_component
, downstream_port
68 class Graph(object._SharedObject
):
69 _get_ref
= staticmethod(native_bt
.graph_get_ref
)
70 _put_ref
= staticmethod(native_bt
.graph_put_ref
)
73 ptr
= native_bt
.graph_create()
76 raise bt2
.MemoryError('cannot create graph object')
85 logging_level
=bt2
.logging
.LoggingLevel
.NONE
,
87 if isinstance(component_class
, bt2
.component
._GenericSourceComponentClass
):
88 cc_ptr
= component_class
._ptr
89 add_fn
= native_bt
.graph_add_source_component
90 cc_type
= native_bt
.COMPONENT_CLASS_TYPE_SOURCE
91 elif isinstance(component_class
, bt2
.component
._GenericFilterComponentClass
):
92 cc_ptr
= component_class
._ptr
93 add_fn
= native_bt
.graph_add_filter_component
94 cc_type
= native_bt
.COMPONENT_CLASS_TYPE_FILTER
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
):
100 cc_ptr
= component_class
._bt
_cc
_ptr
101 add_fn
= native_bt
.graph_add_source_component
102 cc_type
= native_bt
.COMPONENT_CLASS_TYPE_SOURCE
103 elif issubclass(component_class
, bt2
.component
._UserSinkComponent
):
104 cc_ptr
= component_class
._bt
_cc
_ptr
105 add_fn
= native_bt
.graph_add_sink_component
106 cc_type
= native_bt
.COMPONENT_CLASS_TYPE_SINK
107 elif issubclass(component_class
, bt2
.component
._UserFilterComponent
):
108 cc_ptr
= component_class
._bt
_cc
_ptr
109 add_fn
= native_bt
.graph_add_filter_component
110 cc_type
= native_bt
.COMPONENT_CLASS_TYPE_FILTER
113 "'{}' is not a component class".format(
114 component_class
.__class
__.__name
__
118 utils
._check
_str
(name
)
119 utils
._check
_log
_level
(logging_level
)
120 params
= bt2
.create_value(params
)
122 params_ptr
= params
._ptr
if params
is not None else None
124 status
, comp_ptr
= add_fn(self
._ptr
, cc_ptr
, name
, params_ptr
, logging_level
)
125 utils
._handle
_func
_status
(status
, 'cannot add component to graph')
127 return bt2
.component
._create
_component
_from
_ptr
(comp_ptr
, cc_type
)
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
)
132 status
, conn_ptr
= native_bt
.graph_connect_ports(
133 self
._ptr
, upstream_port
._ptr
, downstream_port
._ptr
135 utils
._handle
_func
_status
(status
, 'cannot connect component ports within graph')
137 return bt2
.connection
._Connection
._create
_from
_ptr
(conn_ptr
)
139 def add_port_added_listener(self
, listener
):
140 if not callable(listener
):
141 raise TypeError("'listener' parameter is not callable")
143 fn
= native_bt
.bt2_graph_add_port_added_listener
144 listener_from_native
= functools
.partial(
145 _graph_port_added_listener_from_native
, listener
148 listener_ids
= fn(self
._ptr
, listener_from_native
)
149 if listener_ids
is None:
150 raise bt2
.Error('cannot add listener to graph object')
152 return bt2
._ListenerHandle(listener_ids
, self
)
154 def add_ports_connected_listener(self
, listener
):
155 if not callable(listener
):
156 raise TypeError("'listener' parameter is not callable")
158 fn
= native_bt
.bt2_graph_add_ports_connected_listener
159 listener_from_native
= functools
.partial(
160 _graph_ports_connected_listener_from_native
, listener
163 listener_ids
= fn(self
._ptr
, listener_from_native
)
164 if listener_ids
is None:
165 raise bt2
.Error('cannot add listener to graph object')
167 return bt2
._ListenerHandle(listener_ids
, self
)
170 status
= native_bt
.graph_run(self
._ptr
)
173 utils
._handle
_func
_status
(
174 status
, 'graph object stopped running because of an unexpected error'
183 status
= native_bt
.graph_cancel(self
._ptr
)
184 utils
._handle
_func
_status
(status
, 'cannot cancel graph object')
187 def is_canceled(self
):
188 is_canceled
= native_bt
.graph_is_canceled(self
._ptr
)
189 assert is_canceled
>= 0
190 return is_canceled
> 0
192 def create_output_port_message_iterator(self
, output_port
):
193 utils
._check
_type
(output_port
, bt2
.port
._OutputPort
)
194 msg_iter_ptr
= native_bt
.port_output_message_iterator_create(
195 self
._ptr
, output_port
._ptr
198 if msg_iter_ptr
is None:
199 raise bt2
.MemoryError('cannot create output port message iterator')
201 return bt2
.message_iterator
._OutputPortMessageIterator
(msg_iter_ptr
)