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 utils
, native_bt
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
32 from collections
import namedtuple
36 # a pair of component and ComponentSpec
37 _ComponentAndSpec
= namedtuple('_ComponentAndSpec', ['comp', 'spec'])
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
)
47 self
._params
= bt2
.create_value(params
)
49 self
._logging
_level
= logging_level
60 def logging_level(self
):
61 return self
._logging
_level
64 class ComponentSpec(_BaseComponentSpec
):
65 # A component spec with a specific component class.
71 logging_level
=bt2
.LoggingLevel
.NONE
,
73 if type(params
) is str:
74 params
= {'inputs': [params
]}
76 super().__init
__(params
, obj
, logging_level
)
78 is_cc_object
= isinstance(
80 (bt2
._SourceComponentClassConst
, bt2
._FilterComponentClassConst
),
82 is_user_cc_type
= isinstance(
83 component_class
, bt2_component
._UserComponentType
85 component_class
, (bt2
._UserSourceComponent
, bt2
._UserFilterComponent
)
88 if not is_cc_object
and not is_user_cc_type
:
90 "'{}' is not a source or filter component class".format(
91 component_class
.__class
__.__name
__
95 self
._component
_class
= component_class
98 def component_class(self
):
99 return self
._component
_class
102 def from_named_plugin_and_component_class(
105 component_class_name
,
108 logging_level
=bt2
.LoggingLevel
.NONE
,
110 plugin
= bt2
.find_plugin(plugin_name
)
113 raise ValueError('no such plugin: {}'.format(plugin_name
))
115 if component_class_name
in plugin
.source_component_classes
:
116 comp_class
= plugin
.source_component_classes
[component_class_name
]
117 elif component_class_name
in plugin
.filter_component_classes
:
118 comp_class
= plugin
.filter_component_classes
[component_class_name
]
121 'source or filter component class `{}` not found in plugin `{}`'.format(
122 component_class_name
, plugin_name
126 return cls(comp_class
, params
, obj
, logging_level
)
129 class AutoSourceComponentSpec(_BaseComponentSpec
):
130 # A component spec that does automatic source discovery.
133 def __init__(self
, input, params
=None, obj
=_no_obj
, logging_level
=None):
134 super().__init
__(params
, obj
, logging_level
)
142 def _auto_discover_source_component_specs(auto_source_comp_specs
, plugin_set
):
143 # Transform a list of `AutoSourceComponentSpec` in a list of `ComponentSpec`
144 # using the automatic source discovery mechanism.
145 inputs
= bt2
.ArrayValue([spec
.input for spec
in auto_source_comp_specs
])
147 if plugin_set
is None:
148 plugin_set
= bt2
.find_plugins()
150 utils
._check
_type
(plugin_set
, bt2_plugin
._PluginSet
)
152 res_ptr
= native_bt
.bt2_auto_discover_source_components(
153 inputs
._ptr
, plugin_set
._ptr
157 raise bt2
._MemoryError('cannot auto discover source components')
159 res
= bt2_value
._create
_from
_ptr
(res_ptr
)
161 assert type(res
) == bt2
.MapValue
162 assert 'status' in res
164 status
= res
['status']
165 utils
._handle
_func
_status
(status
, 'cannot auto-discover source components')
168 comp_specs_raw
= res
['results']
169 assert type(comp_specs_raw
) == bt2
.ArrayValue
171 used_input_indices
= set()
173 for comp_spec_raw
in comp_specs_raw
:
174 assert type(comp_spec_raw
) == bt2
.ArrayValue
175 assert len(comp_spec_raw
) == 4
177 plugin_name
= comp_spec_raw
[0]
178 assert type(plugin_name
) == bt2
.StringValue
179 plugin_name
= str(plugin_name
)
181 class_name
= comp_spec_raw
[1]
182 assert type(class_name
) == bt2
.StringValue
183 class_name
= str(class_name
)
185 comp_inputs
= comp_spec_raw
[2]
186 assert type(comp_inputs
) == bt2
.ArrayValue
188 comp_orig_indices
= comp_spec_raw
[3]
189 assert type(comp_orig_indices
)
191 params
= bt2
.MapValue()
192 logging_level
= bt2
.LoggingLevel
.NONE
195 # Compute `params` for this component by piling up params given to all
196 # AutoSourceComponentSpec objects that contributed in the instantiation
199 # The effective log level for a component is the last one specified
200 # across the AutoSourceComponentSpec that contributed in its
202 for idx
in comp_orig_indices
:
203 orig_spec
= auto_source_comp_specs
[idx
]
205 if orig_spec
.params
is not None:
206 params
.update(orig_spec
.params
)
208 if orig_spec
.logging_level
is not None:
209 logging_level
= orig_spec
.logging_level
211 if orig_spec
.obj
is not AutoSourceComponentSpec
._no
_obj
:
214 used_input_indices
.add(int(idx
))
216 params
['inputs'] = comp_inputs
219 ComponentSpec
.from_named_plugin_and_component_class(
224 logging_level
=logging_level
,
228 if len(used_input_indices
) != len(inputs
):
229 unused_input_indices
= set(range(len(inputs
))) - used_input_indices
230 unused_input_indices
= sorted(unused_input_indices
)
231 unused_inputs
= [str(inputs
[x
]) for x
in unused_input_indices
]
234 'Some auto source component specs did not produce any component: '
235 + ', '.join(unused_inputs
)
237 raise RuntimeError(msg
)
242 # datetime.datetime or integral to nanoseconds
247 if isinstance(obj
, numbers
.Real
):
248 # consider that it's already in seconds
250 elif isinstance(obj
, datetime
.datetime
):
255 '"{}" is not an integral number or a datetime.datetime object'.format(obj
)
261 class _TraceCollectionMessageIteratorProxySink(bt2_component
._UserSinkComponent
):
262 def __init__(self
, config
, params
, msg_list
):
263 assert type(msg_list
) is list
264 self
._msg
_list
= msg_list
265 self
._add
_input
_port
('in')
267 def _user_graph_is_configured(self
):
268 self
._msg
_iter
= self
._create
_message
_iterator
(self
._input
_ports
['in'])
270 def _user_consume(self
):
271 assert self
._msg
_list
[0] is None
272 self
._msg
_list
[0] = next(self
._msg
_iter
)
275 class TraceCollectionMessageIterator(bt2_message_iterator
._MessageIterator
):
278 source_component_specs
,
279 filter_component_specs
=None,
280 stream_intersection_mode
=False,
285 utils
._check
_bool
(stream_intersection_mode
)
286 self
._stream
_intersection
_mode
= stream_intersection_mode
287 self
._begin
_ns
= _get_ns(begin
)
288 self
._end
_ns
= _get_ns(end
)
289 self
._msg
_list
= [None]
291 # If a single item is provided, convert to a list.
292 if type(source_component_specs
) in (
294 AutoSourceComponentSpec
,
297 source_component_specs
= [source_component_specs
]
299 # Convert any string to an AutoSourceComponentSpec.
300 def str_to_auto(item
):
301 if type(item
) is str:
302 item
= AutoSourceComponentSpec(item
)
306 source_component_specs
= [str_to_auto(s
) for s
in source_component_specs
]
308 if type(filter_component_specs
) is ComponentSpec
:
309 filter_component_specs
= [filter_component_specs
]
310 elif filter_component_specs
is None:
311 filter_component_specs
= []
313 self
._validate
_source
_component
_specs
(source_component_specs
)
314 self
._validate
_filter
_component
_specs
(filter_component_specs
)
316 # Pass any `ComponentSpec` instance as-is.
317 self
._src
_comp
_specs
= [
318 spec
for spec
in source_component_specs
if type(spec
) is ComponentSpec
321 # Convert any `AutoSourceComponentSpec` in concrete `ComponentSpec` instances.
322 auto_src_comp_specs
= [
324 for spec
in source_component_specs
325 if type(spec
) is AutoSourceComponentSpec
327 self
._src
_comp
_specs
+= _auto_discover_source_component_specs(
328 auto_src_comp_specs
, plugin_set
331 self
._flt
_comp
_specs
= filter_component_specs
332 self
._next
_suffix
= 1
333 self
._connect
_ports
= False
335 # lists of _ComponentAndSpec
336 self
._src
_comps
_and
_specs
= []
337 self
._flt
_comps
_and
_specs
= []
341 def _compute_stream_intersections(self
):
342 # Pre-compute the trimmer range to use for each port in the graph, when
343 # stream intersection mode is enabled.
344 self
._stream
_inter
_port
_to
_range
= {}
346 for src_comp_and_spec
in self
._src
_comps
_and
_specs
:
347 # Query the port's component for the `babeltrace.trace-infos`
348 # object which contains the range for each stream, from which we can
349 # compute the intersection of the streams in each trace.
350 query_exec
= bt2
.QueryExecutor(
351 src_comp_and_spec
.spec
.component_class
,
352 'babeltrace.trace-infos',
353 src_comp_and_spec
.spec
.params
,
355 trace_infos
= query_exec
.query()
357 for trace_info
in trace_infos
:
360 stream
['range-ns']['begin']
361 for stream
in trace_info
['stream-infos']
365 [stream
['range-ns']['end'] for stream
in trace_info
['stream-infos']]
368 # Each port associated to this trace will have this computed
370 for stream
in trace_info
['stream-infos']:
371 # A port name is unique within a component, but not
372 # necessarily across all components. Use a component
373 # and port name pair to make it unique across the graph.
374 port_name
= str(stream
['port-name'])
375 key
= (src_comp_and_spec
.comp
.addr
, port_name
)
376 self
._stream
_inter
_port
_to
_range
[key
] = (begin
, end
)
378 def _validate_source_component_specs(self
, comp_specs
):
379 for comp_spec
in comp_specs
:
381 type(comp_spec
) is not ComponentSpec
382 and type(comp_spec
) is not AutoSourceComponentSpec
385 '"{}" object is not a ComponentSpec or AutoSourceComponentSpec'.format(
390 def _validate_filter_component_specs(self
, comp_specs
):
391 for comp_spec
in comp_specs
:
392 if type(comp_spec
) is not ComponentSpec
:
394 '"{}" object is not a ComponentSpec'.format(type(comp_spec
))
398 assert self
._msg
_list
[0] is None
399 self
._graph
.run_once()
400 msg
= self
._msg
_list
[0]
401 assert msg
is not None
402 self
._msg
_list
[0] = None
405 def _create_stream_intersection_trimmer(self
, component
, port
):
406 key
= (component
.addr
, port
.name
)
407 begin
, end
= self
._stream
_inter
_port
_to
_range
[key
]
408 name
= 'trimmer-{}-{}'.format(component
.name
, port
.name
)
409 return self
._create
_trimmer
(begin
, end
, name
)
411 def _create_muxer(self
):
412 plugin
= bt2
.find_plugin('utils')
415 raise RuntimeError('cannot find "utils" plugin (needed for the muxer)')
417 if 'muxer' not in plugin
.filter_component_classes
:
419 'cannot find "muxer" filter component class in "utils" plugin'
422 comp_cls
= plugin
.filter_component_classes
['muxer']
423 return self
._graph
.add_component(comp_cls
, 'muxer')
425 def _create_trimmer(self
, begin_ns
, end_ns
, name
):
426 plugin
= bt2
.find_plugin('utils')
429 raise RuntimeError('cannot find "utils" plugin (needed for the trimmer)')
431 if 'trimmer' not in plugin
.filter_component_classes
:
433 'cannot find "trimmer" filter component class in "utils" plugin'
438 def ns_to_string(ns
):
439 s_part
= ns
// 1000000000
440 ns_part
= ns
% 1000000000
441 return '{}.{:09d}'.format(s_part
, ns_part
)
443 if begin_ns
is not None:
444 params
['begin'] = ns_to_string(begin_ns
)
446 if end_ns
is not None:
447 params
['end'] = ns_to_string(end_ns
)
449 comp_cls
= plugin
.filter_component_classes
['trimmer']
450 return self
._graph
.add_component(comp_cls
, name
, params
)
452 def _get_unique_comp_name(self
, comp_cls
):
454 comps_and_specs
= itertools
.chain(
455 self
._src
_comps
_and
_specs
, self
._flt
_comps
_and
_specs
458 if name
in [comp_and_spec
.comp
.name
for comp_and_spec
in comps_and_specs
]:
459 name
+= '-{}'.format(self
._next
_suffix
)
460 self
._next
_suffix
+= 1
464 def _create_comp(self
, comp_spec
):
465 comp_cls
= comp_spec
.component_class
466 name
= self
._get
_unique
_comp
_name
(comp_cls
)
467 comp
= self
._graph
.add_component(
468 comp_cls
, name
, comp_spec
.params
, comp_spec
.obj
, comp_spec
.logging_level
472 def _get_free_muxer_input_port(self
):
473 for port
in self
._muxer
_comp
.input_ports
.values():
474 if not port
.is_connected
:
477 def _connect_src_comp_port(self
, component
, port
):
478 # if this trace collection iterator is in stream intersection
479 # mode, we need this connection:
481 # port -> trimmer -> muxer
486 if self
._stream
_intersection
_mode
:
487 trimmer_comp
= self
._create
_stream
_intersection
_trimmer
(component
, port
)
488 self
._graph
.connect_ports(port
, trimmer_comp
.input_ports
['in'])
489 port_to_muxer
= trimmer_comp
.output_ports
['out']
493 self
._graph
.connect_ports(port_to_muxer
, self
._get
_free
_muxer
_input
_port
())
495 def _graph_port_added(self
, component
, port
):
496 if not self
._connect
_ports
:
499 if type(port
) is bt2_port
._InputPortConst
:
502 if component
not in [comp
.comp
for comp
in self
._src
_comps
_and
_specs
]:
503 # do not care about non-source components (muxer, trimmer, etc.)
506 self
._connect
_src
_comp
_port
(component
, port
)
508 def _get_greatest_operative_mip_version(self
):
509 def append_comp_specs_descriptors(descriptors
, comp_specs
):
510 for comp_spec
in comp_specs
:
512 bt2
.ComponentDescriptor(
513 comp_spec
.component_class
, comp_spec
.params
, comp_spec
.obj
518 append_comp_specs_descriptors(descriptors
, self
._src
_comp
_specs
)
519 append_comp_specs_descriptors(descriptors
, self
._flt
_comp
_specs
)
521 if self
._stream
_intersection
_mode
:
522 # we also need at least one `flt.utils.trimmer` component
523 comp_spec
= ComponentSpec
.from_named_plugin_and_component_class(
526 append_comp_specs_descriptors(descriptors
, [comp_spec
])
528 mip_version
= bt2
.get_greatest_operative_mip_version(descriptors
)
530 if mip_version
is None:
531 msg
= 'failed to find an operative message interchange protocol version (components are not interoperable)'
532 raise RuntimeError(msg
)
536 def _build_graph(self
):
537 self
._graph
= bt2
.Graph(self
._get
_greatest
_operative
_mip
_version
())
538 self
._graph
.add_port_added_listener(self
._graph
_port
_added
)
539 self
._muxer
_comp
= self
._create
_muxer
()
541 if self
._begin
_ns
is not None or self
._end
_ns
is not None:
542 trimmer_comp
= self
._create
_trimmer
(self
._begin
_ns
, self
._end
_ns
, 'trimmer')
543 self
._graph
.connect_ports(
544 self
._muxer
_comp
.output_ports
['out'], trimmer_comp
.input_ports
['in']
546 last_flt_out_port
= trimmer_comp
.output_ports
['out']
548 last_flt_out_port
= self
._muxer
_comp
.output_ports
['out']
550 # create extra filter components (chained)
551 for comp_spec
in self
._flt
_comp
_specs
:
552 comp
= self
._create
_comp
(comp_spec
)
553 self
._flt
_comps
_and
_specs
.append(_ComponentAndSpec(comp
, comp_spec
))
555 # connect the extra filter chain
556 for comp_and_spec
in self
._flt
_comps
_and
_specs
:
557 in_port
= list(comp_and_spec
.comp
.input_ports
.values())[0]
558 out_port
= list(comp_and_spec
.comp
.output_ports
.values())[0]
559 self
._graph
.connect_ports(last_flt_out_port
, in_port
)
560 last_flt_out_port
= out_port
562 # Here we create the components, self._graph_port_added() is
563 # called when they add ports, but the callback returns early
564 # because self._connect_ports is False. This is because the
565 # self._graph_port_added() could not find the associated source
566 # component specification in self._src_comps_and_specs because
567 # it does not exist yet (it needs the created component to
569 for comp_spec
in self
._src
_comp
_specs
:
570 comp
= self
._create
_comp
(comp_spec
)
571 self
._src
_comps
_and
_specs
.append(_ComponentAndSpec(comp
, comp_spec
))
573 if self
._stream
_intersection
_mode
:
574 self
._compute
_stream
_intersections
()
576 # Now we connect the ports which exist at this point. We allow
577 # self._graph_port_added() to automatically connect _new_ ports.
578 self
._connect
_ports
= True
580 for comp_and_spec
in self
._src
_comps
_and
_specs
:
581 # Keep a separate list because comp_and_spec.output_ports
582 # could change during the connection of one of its ports.
583 # Any new port is handled by self._graph_port_added().
584 out_ports
= [port
for port
in comp_and_spec
.comp
.output_ports
.values()]
586 for out_port
in out_ports
:
587 if out_port
.is_connected
:
590 self
._connect
_src
_comp
_port
(comp_and_spec
.comp
, out_port
)
592 # Add the proxy sink, passing our message list to share consumed
593 # messages with this trace collection message iterator.
594 sink
= self
._graph
.add_component(
595 _TraceCollectionMessageIteratorProxySink
, 'proxy-sink', obj
=self
._msg
_list
597 sink_in_port
= sink
.input_ports
['in']
599 # connect last filter to proxy sink
600 self
._graph
.connect_ports(last_flt_out_port
, sink_in_port
)