ea1d7eb3f370a9ad143204e3531027ed25234b41
[babeltrace.git] / src / bindings / python / bt2 / bt2 / trace_collection_message_iterator.py
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
23 from bt2 import utils, native_bt
24 import bt2
25 import itertools
26 from bt2 import message_iterator as bt2_message_iterator
27 from bt2 import port as bt2_port
28 from bt2 import component as bt2_component
29 from bt2 import value as bt2_value
30 from bt2 import plugin as bt2_plugin
31 import datetime
32 from collections import namedtuple
33 import numbers
34
35
36 # a pair of component and ComponentSpec
37 _ComponentAndSpec = namedtuple('_ComponentAndSpec', ['comp', 'spec'])
38
39
40 class _BaseComponentSpec:
41 # Base for any component spec that can be passed to
42 # TraceCollectionMessageIterator.
43 def __init__(self, params, obj, logging_level):
44 if logging_level is not None:
45 utils._check_log_level(logging_level)
46
47 self._params = bt2.create_value(params)
48 self._obj = obj
49 self._logging_level = logging_level
50
51 @property
52 def params(self):
53 return self._params
54
55 @property
56 def obj(self):
57 return self._obj
58
59 @property
60 def logging_level(self):
61 return self._logging_level
62
63
64 class ComponentSpec(_BaseComponentSpec):
65 # A component spec with a specific component class.
66 def __init__(
67 self,
68 component_class,
69 params=None,
70 obj=None,
71 logging_level=bt2.LoggingLevel.NONE,
72 ):
73 if type(params) is str:
74 params = {'inputs': [params]}
75
76 super().__init__(params, obj, logging_level)
77
78 is_cc_object = isinstance(
79 component_class, (bt2._SourceComponentClass, bt2._FilterComponentClass)
80 )
81 is_user_cc_type = isinstance(
82 component_class, bt2_component._UserComponentType
83 ) and issubclass(
84 component_class, (bt2._UserSourceComponent, bt2._UserFilterComponent)
85 )
86
87 if not is_cc_object and not is_user_cc_type:
88 raise TypeError(
89 "'{}' is not a source or filter component class".format(
90 component_class.__class__.__name__
91 )
92 )
93
94 self._component_class = component_class
95
96 @property
97 def component_class(self):
98 return self._component_class
99
100 @classmethod
101 def from_named_plugin_and_component_class(
102 cls,
103 plugin_name,
104 component_class_name,
105 params=None,
106 obj=None,
107 logging_level=bt2.LoggingLevel.NONE,
108 ):
109 plugin = bt2.find_plugin(plugin_name)
110
111 if plugin is None:
112 raise ValueError('no such plugin: {}'.format(plugin_name))
113
114 if component_class_name in plugin.source_component_classes:
115 comp_class = plugin.source_component_classes[component_class_name]
116 elif component_class_name in plugin.filter_component_classes:
117 comp_class = plugin.filter_component_classes[component_class_name]
118 else:
119 raise KeyError(
120 'source or filter component class `{}` not found in plugin `{}`'.format(
121 component_class_name, plugin_name
122 )
123 )
124
125 return cls(comp_class, params, obj, logging_level)
126
127
128 class AutoSourceComponentSpec(_BaseComponentSpec):
129 # A component spec that does automatic source discovery.
130 _no_obj = object()
131
132 def __init__(self, input, params=None, obj=_no_obj, logging_level=None):
133 super().__init__(params, obj, logging_level)
134 self._input = input
135
136 @property
137 def input(self):
138 return self._input
139
140
141 def _auto_discover_source_component_specs(auto_source_comp_specs, plugin_set):
142 # Transform a list of `AutoSourceComponentSpec` in a list of `ComponentSpec`
143 # using the automatic source discovery mechanism.
144 inputs = bt2.ArrayValue([spec.input for spec in auto_source_comp_specs])
145
146 if plugin_set is None:
147 plugin_set = bt2.find_plugins()
148 else:
149 utils._check_type(plugin_set, bt2_plugin._PluginSet)
150
151 res_ptr = native_bt.bt2_auto_discover_source_components(
152 inputs._ptr, plugin_set._ptr
153 )
154
155 if res_ptr is None:
156 raise bt2._MemoryError('cannot auto discover source components')
157
158 res = bt2_value._create_from_ptr(res_ptr)
159
160 assert type(res) == bt2.MapValue
161 assert 'status' in res
162
163 status = res['status']
164 utils._handle_func_status(status, 'cannot auto-discover source components')
165
166 comp_specs = []
167 comp_specs_raw = res['results']
168 assert type(comp_specs_raw) == bt2.ArrayValue
169
170 used_input_indices = set()
171
172 for comp_spec_raw in comp_specs_raw:
173 assert type(comp_spec_raw) == bt2.ArrayValue
174 assert len(comp_spec_raw) == 4
175
176 plugin_name = comp_spec_raw[0]
177 assert type(plugin_name) == bt2.StringValue
178 plugin_name = str(plugin_name)
179
180 class_name = comp_spec_raw[1]
181 assert type(class_name) == bt2.StringValue
182 class_name = str(class_name)
183
184 comp_inputs = comp_spec_raw[2]
185 assert type(comp_inputs) == bt2.ArrayValue
186
187 comp_orig_indices = comp_spec_raw[3]
188 assert type(comp_orig_indices)
189
190 params = bt2.MapValue()
191 logging_level = bt2.LoggingLevel.NONE
192 obj = None
193
194 # Compute `params` for this component by piling up params given to all
195 # AutoSourceComponentSpec objects that contributed in the instantiation
196 # of this component.
197 #
198 # The effective log level for a component is the last one specified
199 # across the AutoSourceComponentSpec that contributed in its
200 # instantiation.
201 for idx in comp_orig_indices:
202 orig_spec = auto_source_comp_specs[idx]
203
204 if orig_spec.params is not None:
205 params.update(orig_spec.params)
206
207 if orig_spec.logging_level is not None:
208 logging_level = orig_spec.logging_level
209
210 if orig_spec.obj is not AutoSourceComponentSpec._no_obj:
211 obj = orig_spec.obj
212
213 used_input_indices.add(int(idx))
214
215 params['inputs'] = comp_inputs
216
217 comp_specs.append(
218 ComponentSpec.from_named_plugin_and_component_class(
219 plugin_name,
220 class_name,
221 params=params,
222 obj=obj,
223 logging_level=logging_level,
224 )
225 )
226
227 if len(used_input_indices) != len(inputs):
228 unused_input_indices = set(range(len(inputs))) - used_input_indices
229 unused_input_indices = sorted(unused_input_indices)
230 unused_inputs = [str(inputs[x]) for x in unused_input_indices]
231
232 msg = (
233 'Some auto source component specs did not produce any component: '
234 + ', '.join(unused_inputs)
235 )
236 raise RuntimeError(msg)
237
238 return comp_specs
239
240
241 # datetime.datetime or integral to nanoseconds
242 def _get_ns(obj):
243 if obj is None:
244 return
245
246 if isinstance(obj, numbers.Real):
247 # consider that it's already in seconds
248 s = obj
249 elif isinstance(obj, datetime.datetime):
250 # s -> ns
251 s = obj.timestamp()
252 else:
253 raise TypeError(
254 '"{}" is not an integral number or a datetime.datetime object'.format(obj)
255 )
256
257 return int(s * 1e9)
258
259
260 class _TraceCollectionMessageIteratorProxySink(bt2_component._UserSinkComponent):
261 def __init__(self, params, msg_list):
262 assert type(msg_list) is list
263 self._msg_list = msg_list
264 self._add_input_port('in')
265
266 def _user_graph_is_configured(self):
267 self._msg_iter = self._create_input_port_message_iterator(
268 self._input_ports['in']
269 )
270
271 def _user_consume(self):
272 assert self._msg_list[0] is None
273 self._msg_list[0] = next(self._msg_iter)
274
275
276 class TraceCollectionMessageIterator(bt2_message_iterator._MessageIterator):
277 def __init__(
278 self,
279 source_component_specs,
280 filter_component_specs=None,
281 stream_intersection_mode=False,
282 begin=None,
283 end=None,
284 plugin_set=None,
285 ):
286 utils._check_bool(stream_intersection_mode)
287 self._stream_intersection_mode = stream_intersection_mode
288 self._begin_ns = _get_ns(begin)
289 self._end_ns = _get_ns(end)
290 self._msg_list = [None]
291
292 # If a single item is provided, convert to a list.
293 if type(source_component_specs) in (
294 ComponentSpec,
295 AutoSourceComponentSpec,
296 str,
297 ):
298 source_component_specs = [source_component_specs]
299
300 # Convert any string to an AutoSourceComponentSpec.
301 def str_to_auto(item):
302 if type(item) is str:
303 item = AutoSourceComponentSpec(item)
304
305 return item
306
307 source_component_specs = [str_to_auto(s) for s in source_component_specs]
308
309 if type(filter_component_specs) is ComponentSpec:
310 filter_component_specs = [filter_component_specs]
311 elif filter_component_specs is None:
312 filter_component_specs = []
313
314 self._validate_source_component_specs(source_component_specs)
315 self._validate_filter_component_specs(filter_component_specs)
316
317 # Pass any `ComponentSpec` instance as-is.
318 self._src_comp_specs = [
319 spec for spec in source_component_specs if type(spec) is ComponentSpec
320 ]
321
322 # Convert any `AutoSourceComponentSpec` in concrete `ComponentSpec` instances.
323 auto_src_comp_specs = [
324 spec
325 for spec in source_component_specs
326 if type(spec) is AutoSourceComponentSpec
327 ]
328 self._src_comp_specs += _auto_discover_source_component_specs(
329 auto_src_comp_specs, plugin_set
330 )
331
332 self._flt_comp_specs = filter_component_specs
333 self._next_suffix = 1
334 self._connect_ports = False
335
336 # lists of _ComponentAndSpec
337 self._src_comps_and_specs = []
338 self._flt_comps_and_specs = []
339
340 self._build_graph()
341
342 def _compute_stream_intersections(self):
343 # Pre-compute the trimmer range to use for each port in the graph, when
344 # stream intersection mode is enabled.
345 self._stream_inter_port_to_range = {}
346
347 for src_comp_and_spec in self._src_comps_and_specs:
348 # query the port's component for the `babeltrace.trace-info`
349 # object which contains the range for each stream, from which we can
350 # compute the intersection of the streams in each trace.
351 query_exec = bt2.QueryExecutor(
352 src_comp_and_spec.spec.component_class,
353 'babeltrace.trace-info',
354 src_comp_and_spec.spec.params,
355 )
356 trace_infos = query_exec.query()
357
358 for trace_info in trace_infos:
359 begin = max(
360 [stream['range-ns']['begin'] for stream in trace_info['streams']]
361 )
362 end = min(
363 [stream['range-ns']['end'] for stream in trace_info['streams']]
364 )
365
366 # Each port associated to this trace will have this computed
367 # range.
368 for stream in trace_info['streams']:
369 # A port name is unique within a component, but not
370 # necessarily across all components. Use a component
371 # and port name pair to make it unique across the graph.
372 port_name = str(stream['port-name'])
373 key = (src_comp_and_spec.comp.addr, port_name)
374 self._stream_inter_port_to_range[key] = (begin, end)
375
376 def _validate_source_component_specs(self, comp_specs):
377 for comp_spec in comp_specs:
378 if (
379 type(comp_spec) is not ComponentSpec
380 and type(comp_spec) is not AutoSourceComponentSpec
381 ):
382 raise TypeError(
383 '"{}" object is not a ComponentSpec or AutoSourceComponentSpec'.format(
384 type(comp_spec)
385 )
386 )
387
388 def _validate_filter_component_specs(self, comp_specs):
389 for comp_spec in comp_specs:
390 if type(comp_spec) is not ComponentSpec:
391 raise TypeError(
392 '"{}" object is not a ComponentSpec'.format(type(comp_spec))
393 )
394
395 def __next__(self):
396 assert self._msg_list[0] is None
397 self._graph.run_once()
398 msg = self._msg_list[0]
399 assert msg is not None
400 self._msg_list[0] = None
401 return msg
402
403 def _create_stream_intersection_trimmer(self, component, port):
404 key = (component.addr, port.name)
405 begin, end = self._stream_inter_port_to_range[key]
406 name = 'trimmer-{}-{}'.format(component.name, port.name)
407 return self._create_trimmer(begin, end, name)
408
409 def _create_muxer(self):
410 plugin = bt2.find_plugin('utils')
411
412 if plugin is None:
413 raise RuntimeError('cannot find "utils" plugin (needed for the muxer)')
414
415 if 'muxer' not in plugin.filter_component_classes:
416 raise RuntimeError(
417 'cannot find "muxer" filter component class in "utils" plugin'
418 )
419
420 comp_cls = plugin.filter_component_classes['muxer']
421 return self._graph.add_component(comp_cls, 'muxer')
422
423 def _create_trimmer(self, begin_ns, end_ns, name):
424 plugin = bt2.find_plugin('utils')
425
426 if plugin is None:
427 raise RuntimeError('cannot find "utils" plugin (needed for the trimmer)')
428
429 if 'trimmer' not in plugin.filter_component_classes:
430 raise RuntimeError(
431 'cannot find "trimmer" filter component class in "utils" plugin'
432 )
433
434 params = {}
435
436 def ns_to_string(ns):
437 s_part = ns // 1000000000
438 ns_part = ns % 1000000000
439 return '{}.{:09d}'.format(s_part, ns_part)
440
441 if begin_ns is not None:
442 params['begin'] = ns_to_string(begin_ns)
443
444 if end_ns is not None:
445 params['end'] = ns_to_string(end_ns)
446
447 comp_cls = plugin.filter_component_classes['trimmer']
448 return self._graph.add_component(comp_cls, name, params)
449
450 def _get_unique_comp_name(self, comp_cls):
451 name = comp_cls.name
452 comps_and_specs = itertools.chain(
453 self._src_comps_and_specs, self._flt_comps_and_specs
454 )
455
456 if name in [comp_and_spec.comp.name for comp_and_spec in comps_and_specs]:
457 name += '-{}'.format(self._next_suffix)
458 self._next_suffix += 1
459
460 return name
461
462 def _create_comp(self, comp_spec):
463 comp_cls = comp_spec.component_class
464 name = self._get_unique_comp_name(comp_cls)
465 comp = self._graph.add_component(
466 comp_cls, name, comp_spec.params, comp_spec.obj, comp_spec.logging_level
467 )
468 return comp
469
470 def _get_free_muxer_input_port(self):
471 for port in self._muxer_comp.input_ports.values():
472 if not port.is_connected:
473 return port
474
475 def _connect_src_comp_port(self, component, port):
476 # if this trace collection iterator is in stream intersection
477 # mode, we need this connection:
478 #
479 # port -> trimmer -> muxer
480 #
481 # otherwise, simply:
482 #
483 # port -> muxer
484 if self._stream_intersection_mode:
485 trimmer_comp = self._create_stream_intersection_trimmer(component, port)
486 self._graph.connect_ports(port, trimmer_comp.input_ports['in'])
487 port_to_muxer = trimmer_comp.output_ports['out']
488 else:
489 port_to_muxer = port
490
491 self._graph.connect_ports(port_to_muxer, self._get_free_muxer_input_port())
492
493 def _graph_port_added(self, component, port):
494 if not self._connect_ports:
495 return
496
497 if type(port) is bt2_port._InputPort:
498 return
499
500 if component not in [comp.comp for comp in self._src_comps_and_specs]:
501 # do not care about non-source components (muxer, trimmer, etc.)
502 return
503
504 self._connect_src_comp_port(component, port)
505
506 def _get_greatest_operative_mip_version(self):
507 def append_comp_specs_descriptors(descriptors, comp_specs):
508 for comp_spec in comp_specs:
509 descriptors.append(
510 bt2.ComponentDescriptor(
511 comp_spec.component_class, comp_spec.params, comp_spec.obj
512 )
513 )
514
515 descriptors = []
516 append_comp_specs_descriptors(descriptors, self._src_comp_specs)
517 append_comp_specs_descriptors(descriptors, self._flt_comp_specs)
518
519 if self._stream_intersection_mode:
520 # we also need at least one `flt.utils.trimmer` component
521 comp_spec = ComponentSpec.from_named_plugin_and_component_class(
522 'utils', 'trimmer'
523 )
524 append_comp_specs_descriptors(descriptors, [comp_spec])
525
526 mip_version = bt2.get_greatest_operative_mip_version(descriptors)
527
528 if mip_version is None:
529 msg = 'failed to find an operative message interchange protocol version (components are not interoperable)'
530 raise RuntimeError(msg)
531
532 return mip_version
533
534 def _build_graph(self):
535 self._graph = bt2.Graph(self._get_greatest_operative_mip_version())
536 self._graph.add_port_added_listener(self._graph_port_added)
537 self._muxer_comp = self._create_muxer()
538
539 if self._begin_ns is not None or self._end_ns is not None:
540 trimmer_comp = self._create_trimmer(self._begin_ns, self._end_ns, 'trimmer')
541 self._graph.connect_ports(
542 self._muxer_comp.output_ports['out'], trimmer_comp.input_ports['in']
543 )
544 last_flt_out_port = trimmer_comp.output_ports['out']
545 else:
546 last_flt_out_port = self._muxer_comp.output_ports['out']
547
548 # create extra filter components (chained)
549 for comp_spec in self._flt_comp_specs:
550 comp = self._create_comp(comp_spec)
551 self._flt_comps_and_specs.append(_ComponentAndSpec(comp, comp_spec))
552
553 # connect the extra filter chain
554 for comp_and_spec in self._flt_comps_and_specs:
555 in_port = list(comp_and_spec.comp.input_ports.values())[0]
556 out_port = list(comp_and_spec.comp.output_ports.values())[0]
557 self._graph.connect_ports(last_flt_out_port, in_port)
558 last_flt_out_port = out_port
559
560 # Here we create the components, self._graph_port_added() is
561 # called when they add ports, but the callback returns early
562 # because self._connect_ports is False. This is because the
563 # self._graph_port_added() could not find the associated source
564 # component specification in self._src_comps_and_specs because
565 # it does not exist yet (it needs the created component to
566 # exist).
567 for comp_spec in self._src_comp_specs:
568 comp = self._create_comp(comp_spec)
569 self._src_comps_and_specs.append(_ComponentAndSpec(comp, comp_spec))
570
571 if self._stream_intersection_mode:
572 self._compute_stream_intersections()
573
574 # Now we connect the ports which exist at this point. We allow
575 # self._graph_port_added() to automatically connect _new_ ports.
576 self._connect_ports = True
577
578 for comp_and_spec in self._src_comps_and_specs:
579 # Keep a separate list because comp_and_spec.output_ports
580 # could change during the connection of one of its ports.
581 # Any new port is handled by self._graph_port_added().
582 out_ports = [port for port in comp_and_spec.comp.output_ports.values()]
583
584 for out_port in out_ports:
585 if out_port.is_connected:
586 continue
587
588 self._connect_src_comp_port(comp_and_spec.comp, out_port)
589
590 # Add the proxy sink, passing our message list to share consumed
591 # messages with this trace collection message iterator.
592 sink = self._graph.add_component(
593 _TraceCollectionMessageIteratorProxySink, 'proxy-sink', obj=self._msg_list
594 )
595 sink_in_port = sink.input_ports['in']
596
597 # connect last filter to proxy sink
598 self._graph.connect_ports(last_flt_out_port, sink_in_port)
This page took 0.04028 seconds and 3 git commands to generate.