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