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 logging
as bt2_logging
28 from bt2
import port
as bt2_port
29 from bt2
import component
as bt2_component
30 from bt2
import value
as bt2_value
31 from bt2
import plugin
as bt2_plugin
33 from collections
import namedtuple
37 # a pair of component and ComponentSpec
38 _ComponentAndSpec
= namedtuple('_ComponentAndSpec', ['comp', 'spec'])
41 class _BaseComponentSpec
:
42 def __init__(self
, params
, obj
, logging_level
):
43 if logging_level
is not None:
44 utils
._check
_log
_level
(logging_level
)
46 self
._params
= bt2
.create_value(params
)
48 self
._logging
_level
= logging_level
59 def logging_level(self
):
60 return self
._logging
_level
63 class ComponentSpec(_BaseComponentSpec
):
70 logging_level
=bt2_logging
.LoggingLevel
.NONE
,
72 if type(params
) is str:
73 params
= {'inputs': [params
]}
75 super().__init
__(params
, obj
, logging_level
)
77 utils
._check
_str
(plugin_name
)
78 utils
._check
_str
(class_name
)
80 self
._plugin
_name
= plugin_name
81 self
._class
_name
= class_name
84 def plugin_name(self
):
85 return self
._plugin
_name
89 return self
._class
_name
92 class AutoSourceComponentSpec(_BaseComponentSpec
):
95 def __init__(self
, input, params
=None, obj
=_no_obj
, logging_level
=None):
96 super().__init
__(params
, obj
, logging_level
)
104 def _auto_discover_source_component_specs(auto_source_comp_specs
, plugin_set
):
105 # Transform a list of `AutoSourceComponentSpec` in a list of `ComponentSpec`
106 # using the automatic source discovery mechanism.
107 inputs
= bt2
.ArrayValue([spec
.input for spec
in auto_source_comp_specs
])
109 if plugin_set
is None:
110 plugin_set
= bt2
.find_plugins()
112 utils
._check
_type
(plugin_set
, bt2_plugin
._PluginSet
)
114 res_ptr
= native_bt
.bt2_auto_discover_source_components(
115 inputs
._ptr
, plugin_set
._ptr
119 raise bt2
._MemoryError('cannot auto discover source components')
121 res
= bt2_value
._create
_from
_ptr
(res_ptr
)
123 assert type(res
) == bt2
.MapValue
124 assert 'status' in res
126 status
= res
['status']
127 utils
._handle
_func
_status
(status
, 'cannot auto-discover source components')
130 comp_specs_raw
= res
['results']
131 assert type(comp_specs_raw
) == bt2
.ArrayValue
133 for comp_spec_raw
in comp_specs_raw
:
134 assert type(comp_spec_raw
) == bt2
.ArrayValue
135 assert len(comp_spec_raw
) == 4
137 plugin_name
= comp_spec_raw
[0]
138 assert type(plugin_name
) == bt2
.StringValue
139 plugin_name
= str(plugin_name
)
141 class_name
= comp_spec_raw
[1]
142 assert type(class_name
) == bt2
.StringValue
143 class_name
= str(class_name
)
145 comp_inputs
= comp_spec_raw
[2]
146 assert type(comp_inputs
) == bt2
.ArrayValue
148 comp_orig_indices
= comp_spec_raw
[3]
149 assert type(comp_orig_indices
)
151 params
= bt2
.MapValue()
152 logging_level
= bt2
.LoggingLevel
.NONE
155 # Compute `params` for this component by piling up params given to all
156 # AutoSourceComponentSpec objects that contributed in the instantiation
159 # The effective log level for a component is the last one specified
160 # across the AutoSourceComponentSpec that contributed in its
162 for idx
in comp_orig_indices
:
163 orig_spec
= auto_source_comp_specs
[idx
]
165 if orig_spec
.params
is not None:
166 params
.update(orig_spec
.params
)
168 if orig_spec
.logging_level
is not None:
169 logging_level
= orig_spec
.logging_level
171 if orig_spec
.obj
is not AutoSourceComponentSpec
._no
_obj
:
174 params
['inputs'] = comp_inputs
182 logging_level
=logging_level
,
189 # datetime.datetime or integral to nanoseconds
194 if isinstance(obj
, numbers
.Real
):
195 # consider that it's already in seconds
197 elif isinstance(obj
, datetime
.datetime
):
202 '"{}" is not an integral number or a datetime.datetime object'.format(obj
)
213 class _TraceCollectionMessageIteratorProxySink(bt2_component
._UserSinkComponent
):
214 def __init__(self
, params
, msg_list
):
215 assert type(msg_list
) is list
216 self
._msg
_list
= msg_list
217 self
._add
_input
_port
('in')
219 def _user_graph_is_configured(self
):
220 self
._msg
_iter
= self
._create
_input
_port
_message
_iterator
(
221 self
._input
_ports
['in']
224 def _user_consume(self
):
225 assert self
._msg
_list
[0] is None
226 self
._msg
_list
[0] = next(self
._msg
_iter
)
229 class TraceCollectionMessageIterator(bt2_message_iterator
._MessageIterator
):
232 source_component_specs
,
233 filter_component_specs
=None,
234 stream_intersection_mode
=False,
239 utils
._check
_bool
(stream_intersection_mode
)
240 self
._stream
_intersection
_mode
= stream_intersection_mode
241 self
._begin
_ns
= _get_ns(begin
)
242 self
._end
_ns
= _get_ns(end
)
243 self
._msg
_list
= [None]
245 # If a single item is provided, convert to a list.
246 if type(source_component_specs
) in (
248 AutoSourceComponentSpec
,
251 source_component_specs
= [source_component_specs
]
253 # Convert any string to an AutoSourceComponentSpec.
254 def str_to_auto(item
):
255 if type(item
) is str:
256 item
= AutoSourceComponentSpec(item
)
260 source_component_specs
= [str_to_auto(s
) for s
in source_component_specs
]
262 if type(filter_component_specs
) is ComponentSpec
:
263 filter_component_specs
= [filter_component_specs
]
264 elif filter_component_specs
is None:
265 filter_component_specs
= []
267 self
._validate
_source
_component
_specs
(source_component_specs
)
268 self
._validate
_filter
_component
_specs
(filter_component_specs
)
270 # Pass any `ComponentSpec` instance as-is.
271 self
._src
_comp
_specs
= [
272 spec
for spec
in source_component_specs
if type(spec
) is ComponentSpec
275 # Convert any `AutoSourceComponentSpec` in concrete `ComponentSpec` instances.
276 auto_src_comp_specs
= [
278 for spec
in source_component_specs
279 if type(spec
) is AutoSourceComponentSpec
281 self
._src
_comp
_specs
+= _auto_discover_source_component_specs(
282 auto_src_comp_specs
, plugin_set
285 self
._flt
_comp
_specs
= filter_component_specs
286 self
._next
_suffix
= 1
287 self
._connect
_ports
= False
289 # lists of _ComponentAndSpec
290 self
._src
_comps
_and
_specs
= []
291 self
._flt
_comps
_and
_specs
= []
295 def _validate_source_component_specs(self
, comp_specs
):
296 for comp_spec
in comp_specs
:
298 type(comp_spec
) is not ComponentSpec
299 and type(comp_spec
) is not AutoSourceComponentSpec
302 '"{}" object is not a ComponentSpec or AutoSourceComponentSpec'.format(
307 def _validate_filter_component_specs(self
, comp_specs
):
308 for comp_spec
in comp_specs
:
309 if type(comp_spec
) is not ComponentSpec
:
311 '"{}" object is not a ComponentSpec'.format(type(comp_spec
))
315 assert self
._msg
_list
[0] is None
316 self
._graph
.run_once()
317 msg
= self
._msg
_list
[0]
318 assert msg
is not None
319 self
._msg
_list
[0] = None
322 def _create_stream_intersection_trimmer(self
, component
, port
):
323 # find the original parameters specified by the user to create
324 # this port's component to get the `inputs` parameter
325 for src_comp_and_spec
in self
._src
_comps
_and
_specs
:
326 if component
== src_comp_and_spec
.comp
:
330 inputs
= src_comp_and_spec
.spec
.params
['inputs']
331 except Exception as e
:
333 'all source components must be created with an "inputs" parameter in stream intersection mode'
336 params
= {'inputs': inputs
}
338 # query the port's component for the `babeltrace.trace-info`
339 # object which contains the stream intersection range for each
341 query_exec
= bt2
.QueryExecutor(
342 src_comp_and_spec
.comp
.cls
, 'babeltrace.trace-info', params
344 trace_info_res
= query_exec
.query()
348 # find the trace info for this port's trace
350 for trace_info
in trace_info_res
:
351 for stream
in trace_info
['streams']:
352 if stream
['port-name'] == port
.name
:
353 range_ns
= trace_info
['intersection-range-ns']
354 begin
= range_ns
['begin']
355 end
= range_ns
['end']
360 if begin
is None or end
is None:
362 'cannot find stream intersection range for port "{}"'.format(port
.name
)
365 name
= 'trimmer-{}-{}'.format(src_comp_and_spec
.comp
.name
, port
.name
)
366 return self
._create
_trimmer
(begin
, end
, name
)
368 def _create_muxer(self
):
369 plugin
= bt2
.find_plugin('utils')
372 raise RuntimeError('cannot find "utils" plugin (needed for the muxer)')
374 if 'muxer' not in plugin
.filter_component_classes
:
376 'cannot find "muxer" filter component class in "utils" plugin'
379 comp_cls
= plugin
.filter_component_classes
['muxer']
380 return self
._graph
.add_component(comp_cls
, 'muxer')
382 def _create_trimmer(self
, begin_ns
, end_ns
, name
):
383 plugin
= bt2
.find_plugin('utils')
386 raise RuntimeError('cannot find "utils" plugin (needed for the trimmer)')
388 if 'trimmer' not in plugin
.filter_component_classes
:
390 'cannot find "trimmer" filter component class in "utils" plugin'
395 def ns_to_string(ns
):
396 s_part
= ns
// 1000000000
397 ns_part
= ns
% 1000000000
398 return '{}.{:09d}'.format(s_part
, ns_part
)
400 if begin_ns
is not None:
401 params
['begin'] = ns_to_string(begin_ns
)
403 if end_ns
is not None:
404 params
['end'] = ns_to_string(end_ns
)
406 comp_cls
= plugin
.filter_component_classes
['trimmer']
407 return self
._graph
.add_component(comp_cls
, name
, params
)
409 def _get_unique_comp_name(self
, comp_spec
):
410 name
= '{}-{}'.format(comp_spec
.plugin_name
, comp_spec
.class_name
)
411 comps_and_specs
= itertools
.chain(
412 self
._src
_comps
_and
_specs
, self
._flt
_comps
_and
_specs
415 if name
in [comp_and_spec
.comp
.name
for comp_and_spec
in comps_and_specs
]:
416 name
+= '-{}'.format(self
._next
_suffix
)
417 self
._next
_suffix
+= 1
421 def _create_comp(self
, comp_spec
, comp_cls_type
):
422 plugin
= bt2
.find_plugin(comp_spec
.plugin_name
)
425 raise ValueError('no such plugin: {}'.format(comp_spec
.plugin_name
))
427 if comp_cls_type
== _CompClsType
.SOURCE
:
428 comp_classes
= plugin
.source_component_classes
430 comp_classes
= plugin
.filter_component_classes
432 if comp_spec
.class_name
not in comp_classes
:
433 cc_type
= 'source' if comp_cls_type
== _CompClsType
.SOURCE
else 'filter'
435 'no such {} component class in "{}" plugin: {}'.format(
436 cc_type
, comp_spec
.plugin_name
, comp_spec
.class_name
440 comp_cls
= comp_classes
[comp_spec
.class_name
]
441 name
= self
._get
_unique
_comp
_name
(comp_spec
)
442 comp
= self
._graph
.add_component(
443 comp_cls
, name
, comp_spec
.params
, comp_spec
.obj
, comp_spec
.logging_level
447 def _get_free_muxer_input_port(self
):
448 for port
in self
._muxer
_comp
.input_ports
.values():
449 if not port
.is_connected
:
452 def _connect_src_comp_port(self
, component
, port
):
453 # if this trace collection iterator is in stream intersection
454 # mode, we need this connection:
456 # port -> trimmer -> muxer
461 if self
._stream
_intersection
_mode
:
462 trimmer_comp
= self
._create
_stream
_intersection
_trimmer
(component
, port
)
463 self
._graph
.connect_ports(port
, trimmer_comp
.input_ports
['in'])
464 port_to_muxer
= trimmer_comp
.output_ports
['out']
468 self
._graph
.connect_ports(port_to_muxer
, self
._get
_free
_muxer
_input
_port
())
470 def _graph_port_added(self
, component
, port
):
471 if not self
._connect
_ports
:
474 if type(port
) is bt2_port
._InputPort
:
477 if component
not in [comp
.comp
for comp
in self
._src
_comps
_and
_specs
]:
478 # do not care about non-source components (muxer, trimmer, etc.)
481 self
._connect
_src
_comp
_port
(component
, port
)
483 def _build_graph(self
):
484 self
._graph
= bt2
.Graph()
485 self
._graph
.add_port_added_listener(self
._graph
_port
_added
)
486 self
._muxer
_comp
= self
._create
_muxer
()
488 if self
._begin
_ns
is not None or self
._end
_ns
is not None:
489 trimmer_comp
= self
._create
_trimmer
(self
._begin
_ns
, self
._end
_ns
, 'trimmer')
490 self
._graph
.connect_ports(
491 self
._muxer
_comp
.output_ports
['out'], trimmer_comp
.input_ports
['in']
493 last_flt_out_port
= trimmer_comp
.output_ports
['out']
495 last_flt_out_port
= self
._muxer
_comp
.output_ports
['out']
497 # create extra filter components (chained)
498 for comp_spec
in self
._flt
_comp
_specs
:
499 comp
= self
._create
_comp
(comp_spec
, _CompClsType
.FILTER
)
500 self
._flt
_comps
_and
_specs
.append(_ComponentAndSpec(comp
, comp_spec
))
502 # connect the extra filter chain
503 for comp_and_spec
in self
._flt
_comps
_and
_specs
:
504 in_port
= list(comp_and_spec
.comp
.input_ports
.values())[0]
505 out_port
= list(comp_and_spec
.comp
.output_ports
.values())[0]
506 self
._graph
.connect_ports(last_flt_out_port
, in_port
)
507 last_flt_out_port
= out_port
509 # Here we create the components, self._graph_port_added() is
510 # called when they add ports, but the callback returns early
511 # because self._connect_ports is False. This is because the
512 # self._graph_port_added() could not find the associated source
513 # component specification in self._src_comps_and_specs because
514 # it does not exist yet (it needs the created component to
516 for comp_spec
in self
._src
_comp
_specs
:
517 comp
= self
._create
_comp
(comp_spec
, _CompClsType
.SOURCE
)
518 self
._src
_comps
_and
_specs
.append(_ComponentAndSpec(comp
, comp_spec
))
520 # Now we connect the ports which exist at this point. We allow
521 # self._graph_port_added() to automatically connect _new_ ports.
522 self
._connect
_ports
= True
524 for comp_and_spec
in self
._src
_comps
_and
_specs
:
525 # Keep a separate list because comp_and_spec.output_ports
526 # could change during the connection of one of its ports.
527 # Any new port is handled by self._graph_port_added().
528 out_ports
= [port
for port
in comp_and_spec
.comp
.output_ports
.values()]
530 for out_port
in out_ports
:
531 if out_port
.is_connected
:
534 self
._connect
_src
_comp
_port
(comp_and_spec
.comp
, out_port
)
536 # Add the proxy sink, passing our message list to share consumed
537 # messages with this trace collection message iterator.
538 sink
= self
._graph
.add_component(
539 _TraceCollectionMessageIteratorProxySink
, 'proxy-sink', obj
=self
._msg
_list
541 sink_in_port
= sink
.input_ports
['in']
543 # connect last filter to proxy sink
544 self
._graph
.connect_ports(last_flt_out_port
, sink_in_port
)