test_error.py: remove dangling print()
[babeltrace.git] / src / bindings / python / bt2 / bt2 / trace_collection_message_iterator.py
CommitLineData
d34e69cf
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 utils
24import bt2
88fdcc33 25import itertools
fa4c33e3 26import bt2.message_iterator
d34e69cf 27import datetime
d34e69cf
PP
28from collections import namedtuple
29import numbers
30
31
88fdcc33
PP
32# a pair of component and ComponentSpec
33_ComponentAndSpec = namedtuple('_ComponentAndSpec', ['comp', 'spec'])
d34e69cf
PP
34
35
88fdcc33 36class ComponentSpec:
61d96b89
FD
37 def __init__(
38 self,
39 plugin_name,
40 class_name,
41 params=None,
42 logging_level=bt2.logging.LoggingLevel.NONE,
43 ):
d34e69cf 44 utils._check_str(plugin_name)
c88be1c8 45 utils._check_str(class_name)
cc81b5ab 46 utils._check_log_level(logging_level)
d34e69cf 47 self._plugin_name = plugin_name
c88be1c8 48 self._class_name = class_name
cc81b5ab 49 self._logging_level = logging_level
d34e69cf
PP
50
51 if type(params) is str:
a1040187 52 self._params = bt2.create_value({'inputs': [params]})
d34e69cf
PP
53 else:
54 self._params = bt2.create_value(params)
55
56 @property
57 def plugin_name(self):
58 return self._plugin_name
59
60 @property
c88be1c8
PP
61 def class_name(self):
62 return self._class_name
d34e69cf 63
cc81b5ab
PP
64 @property
65 def logging_level(self):
66 return self._logging_level
67
d34e69cf
PP
68 @property
69 def params(self):
70 return self._params
71
72
73# datetime.datetime or integral to nanoseconds
74def _get_ns(obj):
75 if obj is None:
76 return
77
78 if isinstance(obj, numbers.Real):
79 # consider that it's already in seconds
80 s = obj
81 elif isinstance(obj, datetime.datetime):
82 # s -> ns
83 s = obj.timestamp()
84 else:
61d96b89
FD
85 raise TypeError(
86 '"{}" is not an integral number or a datetime.datetime object'.format(obj)
87 )
d34e69cf
PP
88
89 return int(s * 1e9)
90
91
88fdcc33
PP
92class _CompClsType:
93 SOURCE = 0
94 FILTER = 1
95
96
fa4c33e3 97class TraceCollectionMessageIterator(bt2.message_iterator._MessageIterator):
61d96b89
FD
98 def __init__(
99 self,
100 source_component_specs,
101 filter_component_specs=None,
102 stream_intersection_mode=False,
103 begin=None,
104 end=None,
105 ):
d34e69cf
PP
106 utils._check_bool(stream_intersection_mode)
107 self._stream_intersection_mode = stream_intersection_mode
108 self._begin_ns = _get_ns(begin)
109 self._end_ns = _get_ns(end)
88fdcc33
PP
110
111 if type(source_component_specs) is ComponentSpec:
112 source_component_specs = [source_component_specs]
113
114 if type(filter_component_specs) is ComponentSpec:
115 filter_component_specs = [filter_component_specs]
116 elif filter_component_specs is None:
117 filter_component_specs = []
118
d34e69cf 119 self._src_comp_specs = source_component_specs
88fdcc33 120 self._flt_comp_specs = filter_component_specs
d34e69cf
PP
121 self._next_suffix = 1
122 self._connect_ports = False
123
88fdcc33 124 # lists of _ComponentAndSpec
d34e69cf 125 self._src_comps_and_specs = []
88fdcc33 126 self._flt_comps_and_specs = []
d34e69cf 127
88fdcc33
PP
128 self._validate_component_specs(source_component_specs)
129 self._validate_component_specs(filter_component_specs)
d34e69cf
PP
130 self._build_graph()
131
88fdcc33
PP
132 def _validate_component_specs(self, comp_specs):
133 for comp_spec in comp_specs:
134 if type(comp_spec) is not ComponentSpec:
61d96b89
FD
135 raise TypeError(
136 '"{}" object is not a ComponentSpec'.format(type(comp_spec))
137 )
d34e69cf
PP
138
139 def __next__(self):
fa4c33e3 140 return next(self._msg_iter)
d34e69cf 141
da35796c 142 def _create_stream_intersection_trimmer(self, component, port):
d34e69cf 143 # find the original parameters specified by the user to create
a1040187 144 # this port's component to get the `inputs` parameter
d34e69cf 145 for src_comp_and_spec in self._src_comps_and_specs:
da35796c 146 if component == src_comp_and_spec.comp:
d34e69cf
PP
147 break
148
149 try:
a1040187 150 inputs = src_comp_and_spec.spec.params['inputs']
da35796c 151 except Exception as e:
3b2be708 152 raise ValueError(
a1040187 153 'all source components must be created with an "inputs" parameter in stream intersection mode'
61d96b89 154 ) from e
d34e69cf 155
a1040187 156 params = {'inputs': inputs}
d34e69cf
PP
157
158 # query the port's component for the `trace-info` object which
159 # contains the stream intersection range for each exposed
160 # trace
161 query_exec = bt2.QueryExecutor()
61d96b89
FD
162 trace_info_res = query_exec.query(
163 src_comp_and_spec.comp.cls, 'trace-info', params
164 )
d34e69cf
PP
165 begin = None
166 end = None
167
ddf49b27 168 # find the trace info for this port's trace
f4811b4f
PP
169 try:
170 for trace_info in trace_info_res:
ddf49b27
SM
171 for stream in trace_info['streams']:
172 if stream['port-name'] == port.name:
173 range_ns = trace_info['intersection-range-ns']
174 begin = range_ns['begin']
175 end = range_ns['end']
176 break
da35796c 177 except Exception:
f4811b4f 178 pass
d34e69cf
PP
179
180 if begin is None or end is None:
3b2be708 181 raise RuntimeError(
61d96b89
FD
182 'cannot find stream intersection range for port "{}"'.format(port.name)
183 )
d34e69cf 184
da35796c 185 name = 'trimmer-{}-{}'.format(src_comp_and_spec.comp.name, port.name)
d34e69cf
PP
186 return self._create_trimmer(begin, end, name)
187
188 def _create_muxer(self):
189 plugin = bt2.find_plugin('utils')
190
191 if plugin is None:
3b2be708 192 raise RuntimeError('cannot find "utils" plugin (needed for the muxer)')
d34e69cf
PP
193
194 if 'muxer' not in plugin.filter_component_classes:
3b2be708 195 raise RuntimeError(
61d96b89
FD
196 'cannot find "muxer" filter component class in "utils" plugin'
197 )
d34e69cf
PP
198
199 comp_cls = plugin.filter_component_classes['muxer']
200 return self._graph.add_component(comp_cls, 'muxer')
201
da35796c 202 def _create_trimmer(self, begin_ns, end_ns, name):
d34e69cf
PP
203 plugin = bt2.find_plugin('utils')
204
205 if plugin is None:
3b2be708 206 raise RuntimeError('cannot find "utils" plugin (needed for the trimmer)')
d34e69cf
PP
207
208 if 'trimmer' not in plugin.filter_component_classes:
3b2be708 209 raise RuntimeError(
61d96b89
FD
210 'cannot find "trimmer" filter component class in "utils" plugin'
211 )
d34e69cf
PP
212
213 params = {}
214
da35796c
SM
215 def ns_to_string(ns):
216 s_part = ns // 1000000000
217 ns_part = ns % 1000000000
218 return '{}.{:09d}'.format(s_part, ns_part)
d34e69cf 219
da35796c
SM
220 if begin_ns is not None:
221 params['begin'] = ns_to_string(begin_ns)
222
223 if end_ns is not None:
224 params['end'] = ns_to_string(end_ns)
d34e69cf
PP
225
226 comp_cls = plugin.filter_component_classes['trimmer']
227 return self._graph.add_component(comp_cls, name, params)
228
88fdcc33 229 def _get_unique_comp_name(self, comp_spec):
61d96b89
FD
230 name = '{}-{}'.format(comp_spec.plugin_name, comp_spec.class_name)
231 comps_and_specs = itertools.chain(
232 self._src_comps_and_specs, self._flt_comps_and_specs
233 )
d34e69cf 234
88fdcc33 235 if name in [comp_and_spec.comp.name for comp_and_spec in comps_and_specs]:
d34e69cf
PP
236 name += '-{}'.format(self._next_suffix)
237 self._next_suffix += 1
238
239 return name
240
88fdcc33 241 def _create_comp(self, comp_spec, comp_cls_type):
d34e69cf
PP
242 plugin = bt2.find_plugin(comp_spec.plugin_name)
243
244 if plugin is None:
3b2be708 245 raise ValueError('no such plugin: {}'.format(comp_spec.plugin_name))
d34e69cf 246
88fdcc33
PP
247 if comp_cls_type == _CompClsType.SOURCE:
248 comp_classes = plugin.source_component_classes
249 else:
250 comp_classes = plugin.filter_component_classes
251
c88be1c8 252 if comp_spec.class_name not in comp_classes:
88fdcc33 253 cc_type = 'source' if comp_cls_type == _CompClsType.SOURCE else 'filter'
3b2be708 254 raise ValueError(
61d96b89
FD
255 'no such {} component class in "{}" plugin: {}'.format(
256 cc_type, comp_spec.plugin_name, comp_spec.class_name
257 )
258 )
d34e69cf 259
c88be1c8 260 comp_cls = comp_classes[comp_spec.class_name]
88fdcc33 261 name = self._get_unique_comp_name(comp_spec)
61d96b89
FD
262 comp = self._graph.add_component(
263 comp_cls, name, comp_spec.params, comp_spec.logging_level
264 )
d34e69cf
PP
265 return comp
266
267 def _get_free_muxer_input_port(self):
268 for port in self._muxer_comp.input_ports.values():
269 if not port.is_connected:
270 return port
271
da35796c 272 def _connect_src_comp_port(self, component, port):
d34e69cf
PP
273 # if this trace collection iterator is in stream intersection
274 # mode, we need this connection:
275 #
276 # port -> trimmer -> muxer
277 #
278 # otherwise, simply:
279 #
280 # port -> muxer
281 if self._stream_intersection_mode:
da35796c 282 trimmer_comp = self._create_stream_intersection_trimmer(component, port)
d34e69cf
PP
283 self._graph.connect_ports(port, trimmer_comp.input_ports['in'])
284 port_to_muxer = trimmer_comp.output_ports['out']
285 else:
286 port_to_muxer = port
287
288 self._graph.connect_ports(port_to_muxer, self._get_free_muxer_input_port())
289
da35796c 290 def _graph_port_added(self, component, port):
d34e69cf
PP
291 if not self._connect_ports:
292 return
293
da35796c 294 if type(port) is bt2.port._InputPort:
d34e69cf
PP
295 return
296
da35796c 297 if component not in [comp.comp for comp in self._src_comps_and_specs]:
d34e69cf
PP
298 # do not care about non-source components (muxer, trimmer, etc.)
299 return
300
da35796c 301 self._connect_src_comp_port(component, port)
d34e69cf
PP
302
303 def _build_graph(self):
304 self._graph = bt2.Graph()
da35796c 305 self._graph.add_port_added_listener(self._graph_port_added)
d34e69cf
PP
306 self._muxer_comp = self._create_muxer()
307
308 if self._begin_ns is not None or self._end_ns is not None:
61d96b89
FD
309 trimmer_comp = self._create_trimmer(self._begin_ns, self._end_ns, 'trimmer')
310 self._graph.connect_ports(
311 self._muxer_comp.output_ports['out'], trimmer_comp.input_ports['in']
312 )
fa4c33e3 313 msg_iter_port = trimmer_comp.output_ports['out']
d34e69cf 314 else:
fa4c33e3 315 msg_iter_port = self._muxer_comp.output_ports['out']
d34e69cf 316
88fdcc33
PP
317 # create extra filter components (chained)
318 for comp_spec in self._flt_comp_specs:
319 comp = self._create_comp(comp_spec, _CompClsType.FILTER)
320 self._flt_comps_and_specs.append(_ComponentAndSpec(comp, comp_spec))
321
322 # connect the extra filter chain
323 for comp_and_spec in self._flt_comps_and_specs:
324 in_port = list(comp_and_spec.comp.input_ports.values())[0]
325 out_port = list(comp_and_spec.comp.output_ports.values())[0]
fa4c33e3
SM
326 self._graph.connect_ports(msg_iter_port, in_port)
327 msg_iter_port = out_port
88fdcc33 328
d34e69cf
PP
329 # Here we create the components, self._graph_port_added() is
330 # called when they add ports, but the callback returns early
331 # because self._connect_ports is False. This is because the
332 # self._graph_port_added() could not find the associated source
333 # component specification in self._src_comps_and_specs because
334 # it does not exist yet (it needs the created component to
335 # exist).
336 for comp_spec in self._src_comp_specs:
88fdcc33
PP
337 comp = self._create_comp(comp_spec, _CompClsType.SOURCE)
338 self._src_comps_and_specs.append(_ComponentAndSpec(comp, comp_spec))
d34e69cf
PP
339
340 # Now we connect the ports which exist at this point. We allow
341 # self._graph_port_added() to automatically connect _new_ ports.
342 self._connect_ports = True
343
344 for comp_and_spec in self._src_comps_and_specs:
345 # Keep a separate list because comp_and_spec.output_ports
346 # could change during the connection of one of its ports.
347 # Any new port is handled by self._graph_port_added().
348 out_ports = [port for port in comp_and_spec.comp.output_ports.values()]
349
350 for out_port in out_ports:
da35796c 351 if out_port.is_connected:
d34e69cf
PP
352 continue
353
da35796c 354 self._connect_src_comp_port(comp_and_spec.comp, out_port)
d34e69cf 355
fa4c33e3 356 # create this trace collection iterator's message iterator
da35796c 357 self._msg_iter = self._graph.create_output_port_message_iterator(msg_iter_port)
This page took 0.050126 seconds and 4 git commands to generate.