1 # The MIT License (MIT)
3 # Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
4 # Copyright (c) 2018 Francis Deslauriers <francis.deslauriers@efficios.com>
5 # Copyright (c) 2019 Simon Marchi <simon.marchi@efficios.com>
7 # Permission is hereby granted, free of charge, to any person obtaining a copy
8 # of this software and associated documentation files (the "Software"), to deal
9 # in the Software without restriction, including without limitation the rights
10 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 # copies of the Software, and to permit persons to whom the Software is
12 # furnished to do so, subject to the following conditions:
14 # The above copyright notice and this permission notice shall be included in
15 # all copies or substantial portions of the Software.
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 __all__
= ['_TraceClass']
28 from bt2
import native_bt
, utils
, object
29 import bt2
.stream_class
30 import bt2
.field_class
31 import collections
.abc
35 class _StreamClassIterator(collections
.abc
.Iterator
):
36 def __init__(self
, trace_class
):
37 self
._trace
_class
= trace_class
41 if self
._at
== len(self
._trace
_class
):
44 borrow_stream_class_fn
= (
45 native_bt
.trace_class_borrow_stream_class_by_index_const
47 sc_ptr
= borrow_stream_class_fn(self
._trace
_class
._ptr
, self
._at
)
49 id = native_bt
.stream_class_get_id(sc_ptr
)
55 def _trace_class_destruction_listener_from_native(user_listener
, trace_class_ptr
):
56 trace_class
= bt2
.trace_class
._TraceClass
._create
_from
_ptr
_and
_get
_ref
(
59 user_listener(trace_class
)
62 class _TraceClass(object._SharedObject
, collections
.abc
.Mapping
):
63 _get_ref
= staticmethod(native_bt
.trace_class_get_ref
)
64 _put_ref
= staticmethod(native_bt
.trace_class_put_ref
)
66 # Instantiate a trace of this class.
68 def __call__(self
, name
=None, uuid
=None, env
=None):
69 trace_ptr
= native_bt
.trace_create(self
._ptr
)
72 raise bt2
.MemoryError('cannot create trace class object')
74 trace
= bt2
.trace
._Trace
._create
_from
_ptr
(trace_ptr
)
83 for key
, value
in env
.items():
84 trace
.env
[key
] = value
88 # Number of stream classes in this trace class.
91 count
= native_bt
.trace_class_get_stream_class_count(self
._ptr
)
95 # Get a stream class by stream id.
97 def __getitem__(self
, key
):
98 utils
._check
_uint
64(key
)
100 sc_ptr
= native_bt
.trace_class_borrow_stream_class_by_id_const(self
._ptr
, key
)
104 return bt2
.stream_class
._StreamClass
._create
_from
_ptr
_and
_get
_ref
(sc_ptr
)
107 for idx
in range(len(self
)):
108 sc_ptr
= native_bt
.trace_class_borrow_stream_class_by_index_const(
111 assert sc_ptr
is not None
113 id = native_bt
.stream_class_get_id(sc_ptr
)
118 def create_stream_class(
122 packet_context_field_class
=None,
123 event_common_context_field_class
=None,
124 default_clock_class
=None,
125 assigns_automatic_event_class_id
=True,
126 assigns_automatic_stream_id
=True,
127 supports_packets
=False,
128 packets_have_beginning_default_clock_snapshot
=False,
129 packets_have_end_default_clock_snapshot
=False,
130 supports_discarded_events
=False,
131 discarded_events_have_default_clock_snapshots
=False,
132 supports_discarded_packets
=False,
133 discarded_packets_have_default_clock_snapshots
=False,
136 if self
.assigns_automatic_stream_class_id
:
139 'id provided, but trace class assigns automatic stream class ids'
142 sc_ptr
= native_bt
.stream_class_create(self
._ptr
)
146 'id not provided, but trace class does not assign automatic stream class ids'
149 utils
._check
_uint
64(id)
150 sc_ptr
= native_bt
.stream_class_create_with_id(self
._ptr
, id)
152 sc
= bt2
.stream_class
._StreamClass
._create
_from
_ptr
(sc_ptr
)
157 if event_common_context_field_class
is not None:
158 sc
._event
_common
_context
_field
_class
= event_common_context_field_class
160 if default_clock_class
is not None:
161 sc
._default
_clock
_class
= default_clock_class
163 # call after `sc._default_clock_class` because, if
164 # `packets_have_beginning_default_clock_snapshot` or
165 # `packets_have_end_default_clock_snapshot` is true, then this
166 # stream class needs a default clock class already.
167 sc
._set
_supports
_packets
(
169 packets_have_beginning_default_clock_snapshot
,
170 packets_have_end_default_clock_snapshot
,
173 # call after sc._set_supports_packets() because, if
174 # `packet_context_field_class` is not `None`, then this stream
175 # class needs to support packets already.
176 if packet_context_field_class
is not None:
177 sc
._packet
_context
_field
_class
= packet_context_field_class
179 sc
._assigns
_automatic
_event
_class
_id
= assigns_automatic_event_class_id
180 sc
._assigns
_automatic
_stream
_id
= assigns_automatic_stream_id
181 sc
._set
_supports
_discarded
_events
(
182 supports_discarded_events
, discarded_events_have_default_clock_snapshots
184 sc
._set
_supports
_discarded
_packets
(
185 supports_discarded_packets
, discarded_packets_have_default_clock_snapshots
190 def assigns_automatic_stream_class_id(self
):
191 return native_bt
.trace_class_assigns_automatic_stream_class_id(self
._ptr
)
193 def _assigns_automatic_stream_class_id(self
, auto_id
):
194 utils
._check
_bool
(auto_id
)
195 return native_bt
.trace_class_set_assigns_automatic_stream_class_id(
199 _assigns_automatic_stream_class_id
= property(
200 fset
=_assigns_automatic_stream_class_id
203 # Field class creation methods.
205 def _check_create_status(self
, ptr
, type_name
):
207 raise bt2
.MemoryError('cannot create {} field class'.format(type_name
))
209 def _create_integer_field_class(
210 self
, create_func
, py_cls
, type_name
, field_value_range
, preferred_display_base
212 field_class_ptr
= create_func(self
._ptr
)
213 self
._check
_create
_status
(field_class_ptr
, type_name
)
215 field_class
= py_cls
._create
_from
_ptr
(field_class_ptr
)
217 if field_value_range
is not None:
218 field_class
._field
_value
_range
= field_value_range
220 if preferred_display_base
is not None:
221 field_class
._preferred
_display
_base
= preferred_display_base
225 def create_signed_integer_field_class(
226 self
, field_value_range
=None, preferred_display_base
=None
228 return self
._create
_integer
_field
_class
(
229 native_bt
.field_class_integer_signed_create
,
230 bt2
.field_class
._SignedIntegerFieldClass
,
233 preferred_display_base
,
236 def create_unsigned_integer_field_class(
237 self
, field_value_range
=None, preferred_display_base
=None
239 return self
._create
_integer
_field
_class
(
240 native_bt
.field_class_integer_unsigned_create
,
241 bt2
.field_class
._UnsignedIntegerFieldClass
,
244 preferred_display_base
,
247 def create_signed_enumeration_field_class(
248 self
, field_value_range
=None, preferred_display_base
=None
250 return self
._create
_integer
_field
_class
(
251 native_bt
.field_class_enumeration_signed_create
,
252 bt2
.field_class
._SignedEnumerationFieldClass
,
253 'signed enumeration',
255 preferred_display_base
,
258 def create_unsigned_enumeration_field_class(
259 self
, field_value_range
=None, preferred_display_base
=None
261 return self
._create
_integer
_field
_class
(
262 native_bt
.field_class_enumeration_unsigned_create
,
263 bt2
.field_class
._UnsignedEnumerationFieldClass
,
264 'unsigned enumeration',
266 preferred_display_base
,
269 def create_real_field_class(self
, is_single_precision
=False):
270 field_class_ptr
= native_bt
.field_class_real_create(self
._ptr
)
271 self
._check
_create
_status
(field_class_ptr
, 'real')
273 field_class
= bt2
.field_class
._RealFieldClass
._create
_from
_ptr
(field_class_ptr
)
275 field_class
._is
_single
_precision
= is_single_precision
279 def create_structure_field_class(self
):
280 field_class_ptr
= native_bt
.field_class_structure_create(self
._ptr
)
281 self
._check
_create
_status
(field_class_ptr
, 'structure')
283 return bt2
.field_class
._StructureFieldClass
._create
_from
_ptr
(field_class_ptr
)
285 def create_string_field_class(self
):
286 field_class_ptr
= native_bt
.field_class_string_create(self
._ptr
)
287 self
._check
_create
_status
(field_class_ptr
, 'string')
289 return bt2
.field_class
._StringFieldClass
._create
_from
_ptr
(field_class_ptr
)
291 def create_static_array_field_class(self
, elem_fc
, length
):
292 utils
._check
_type
(elem_fc
, bt2
.field_class
._FieldClass
)
293 utils
._check
_uint
64(length
)
294 ptr
= native_bt
.field_class_array_static_create(self
._ptr
, elem_fc
._ptr
, length
)
295 self
._check
_create
_status
(ptr
, 'static array')
297 return bt2
.field_class
._StaticArrayFieldClass
._create
_from
_ptr
_and
_get
_ref
(ptr
)
299 def create_dynamic_array_field_class(self
, elem_fc
, length_fc
=None):
300 utils
._check
_type
(elem_fc
, bt2
.field_class
._FieldClass
)
303 if length_fc
is not None:
304 utils
._check
_type
(length_fc
, bt2
.field_class
._UnsignedIntegerFieldClass
)
305 length_fc_ptr
= length_fc
._ptr
307 ptr
= native_bt
.field_class_array_dynamic_create(
308 self
._ptr
, elem_fc
._ptr
, length_fc_ptr
310 self
._check
_create
_status
(ptr
, 'dynamic array')
311 return bt2
.field_class
._DynamicArrayFieldClass
._create
_from
_ptr
(ptr
)
313 def create_variant_field_class(self
, selector_fc
=None):
314 selector_fc_ptr
= None
316 if selector_fc
is not None:
317 utils
._check
_type
(selector_fc
, bt2
.field_class
._IntegerFieldClass
)
318 selector_fc_ptr
= selector_fc
._ptr
320 ptr
= native_bt
.field_class_variant_create(self
._ptr
, selector_fc_ptr
)
321 self
._check
_create
_status
(ptr
, 'variant')
322 return bt2
.field_class
._create
_field
_class
_from
_ptr
_and
_get
_ref
(ptr
)
324 # Add a listener to be called when the trace class is destroyed.
326 def add_destruction_listener(self
, listener
):
328 if not callable(listener
):
329 raise TypeError("'listener' parameter is not callable")
331 fn
= native_bt
.bt2_trace_class_add_destruction_listener
332 listener_from_native
= functools
.partial(
333 _trace_class_destruction_listener_from_native
, listener
336 status
, listener_id
= fn(self
._ptr
, listener_from_native
)
337 utils
._handle
_func
_status
(
338 status
, 'cannot add destruction listener to trace class object'
341 return bt2
._ListenerHandle(listener_id
, self
)