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 native_bt
, object, utils
24 from bt2
import field_class
as bt2_field_class
25 from bt2
import event_class
as bt2_event_class
26 from bt2
import trace_class
as bt2_trace_class
27 from bt2
import clock_class
as bt2_clock_class
28 from bt2
import value
as bt2_value
29 import collections
.abc
32 class _StreamClassConst(object._SharedObject
, collections
.abc
.Mapping
):
33 _get_ref
= staticmethod(native_bt
.stream_class_get_ref
)
34 _put_ref
= staticmethod(native_bt
.stream_class_put_ref
)
35 _borrow_event_class_ptr_by_id
= staticmethod(
36 native_bt
.stream_class_borrow_event_class_by_id_const
38 _borrow_event_class_ptr_by_index
= staticmethod(
39 native_bt
.stream_class_borrow_event_class_by_index_const
41 _borrow_trace_class_ptr
= staticmethod(
42 native_bt
.stream_class_borrow_trace_class_const
44 _borrow_packet_context_field_class_ptr
= staticmethod(
45 native_bt
.stream_class_borrow_packet_context_field_class_const
47 _borrow_event_common_context_field_class_ptr
= staticmethod(
48 native_bt
.stream_class_borrow_event_common_context_field_class_const
50 _borrow_default_clock_class_ptr
= staticmethod(
51 native_bt
.stream_class_borrow_default_clock_class_const
53 _borrow_user_attributes_ptr
= staticmethod(
54 native_bt
.stream_class_borrow_user_attributes_const
57 _event_class_cls
= property(lambda _
: bt2_event_class
._EventClassConst
)
58 _trace_class_cls
= property(lambda _
: bt2_trace_class
._TraceClassConst
)
59 _clock_class_cls
= property(lambda _
: bt2_clock_class
._ClockClassConst
)
61 def __getitem__(self
, key
):
62 utils
._check
_int
64(key
)
63 ec_ptr
= self
._borrow
_event
_class
_ptr
_by
_id
(self
._ptr
, key
)
68 return self
._event
_class
_cls
._create
_from
_ptr
_and
_get
_ref
(ec_ptr
)
71 count
= native_bt
.stream_class_get_event_class_count(self
._ptr
)
76 for idx
in range(len(self
)):
77 ec_ptr
= self
._borrow
_event
_class
_ptr
_by
_index
(self
._ptr
, idx
)
78 assert ec_ptr
is not None
80 id = native_bt
.event_class_get_id(ec_ptr
)
86 def trace_class(self
):
87 tc_ptr
= self
._borrow
_trace
_class
_ptr
(self
._ptr
)
89 if tc_ptr
is not None:
90 return self
._trace
_class
_cls
._create
_from
_ptr
_and
_get
_ref
(tc_ptr
)
93 def user_attributes(self
):
94 ptr
= self
._borrow
_user
_attributes
_ptr
(self
._ptr
)
95 assert ptr
is not None
96 return bt2_value
._create
_from
_ptr
_and
_get
_ref
(ptr
)
100 return native_bt
.stream_class_get_name(self
._ptr
)
103 def assigns_automatic_event_class_id(self
):
104 return native_bt
.stream_class_assigns_automatic_event_class_id(self
._ptr
)
107 def assigns_automatic_stream_id(self
):
108 return native_bt
.stream_class_assigns_automatic_stream_id(self
._ptr
)
111 def supports_packets(self
):
112 return native_bt
.stream_class_supports_packets(self
._ptr
)
115 def packets_have_beginning_default_clock_snapshot(self
):
116 return native_bt
.stream_class_packets_have_beginning_default_clock_snapshot(
121 def packets_have_end_default_clock_snapshot(self
):
122 return native_bt
.stream_class_packets_have_end_default_clock_snapshot(self
._ptr
)
125 def supports_discarded_events(self
):
126 return native_bt
.stream_class_supports_discarded_events(self
._ptr
)
129 def discarded_events_have_default_clock_snapshots(self
):
130 return native_bt
.stream_class_discarded_events_have_default_clock_snapshots(
135 def supports_discarded_packets(self
):
136 return native_bt
.stream_class_supports_discarded_packets(self
._ptr
)
139 def discarded_packets_have_default_clock_snapshots(self
):
140 return native_bt
.stream_class_discarded_packets_have_default_clock_snapshots(
146 id = native_bt
.stream_class_get_id(self
._ptr
)
154 def packet_context_field_class(self
):
155 fc_ptr
= self
._borrow
_packet
_context
_field
_class
_ptr
(self
._ptr
)
160 return bt2_field_class
._create
_field
_class
_from
_ptr
_and
_get
_ref
(fc_ptr
)
163 def event_common_context_field_class(self
):
164 fc_ptr
= self
._borrow
_event
_common
_context
_field
_class
_ptr
(self
._ptr
)
169 return bt2_field_class
._create
_field
_class
_from
_ptr
_and
_get
_ref
(fc_ptr
)
172 def default_clock_class(self
):
173 cc_ptr
= self
._borrow
_default
_clock
_class
_ptr
(self
._ptr
)
177 return self
._clock
_class
_cls
._create
_from
_ptr
_and
_get
_ref
(cc_ptr
)
180 class _StreamClass(_StreamClassConst
):
181 _get_ref
= staticmethod(native_bt
.stream_class_get_ref
)
182 _put_ref
= staticmethod(native_bt
.stream_class_put_ref
)
183 _borrow_event_class_ptr_by_id
= staticmethod(
184 native_bt
.stream_class_borrow_event_class_by_id
186 _borrow_event_class_ptr_by_index
= staticmethod(
187 native_bt
.stream_class_borrow_event_class_by_index
189 _borrow_trace_class_ptr
= staticmethod(native_bt
.stream_class_borrow_trace_class
)
190 _borrow_packet_context_field_class_ptr
= staticmethod(
191 native_bt
.stream_class_borrow_packet_context_field_class
193 _borrow_event_common_context_field_class_ptr
= staticmethod(
194 native_bt
.stream_class_borrow_event_common_context_field_class
196 _borrow_default_clock_class_ptr
= staticmethod(
197 native_bt
.stream_class_borrow_default_clock_class
199 _borrow_user_attributes_ptr
= staticmethod(
200 native_bt
.stream_class_borrow_user_attributes
203 _event_class_cls
= property(lambda s
: bt2_event_class
._EventClass
)
204 _trace_class_cls
= property(lambda s
: bt2_trace_class
._TraceClass
)
205 _clock_class_cls
= property(lambda s
: bt2_clock_class
._ClockClass
)
207 def create_event_class(
211 user_attributes
=None,
214 specific_context_field_class
=None,
215 payload_field_class
=None,
217 if self
.assigns_automatic_event_class_id
:
220 'id provided, but stream class assigns automatic event class ids'
223 ec_ptr
= native_bt
.event_class_create(self
._ptr
)
227 'id not provided, but stream class does not assign automatic event class ids'
230 utils
._check
_uint
64(id)
231 ec_ptr
= native_bt
.event_class_create_with_id(self
._ptr
, id)
233 event_class
= bt2_event_class
._EventClass
._create
_from
_ptr
(ec_ptr
)
236 event_class
._name
= name
238 if user_attributes
is not None:
239 event_class
._user
_attributes
= user_attributes
241 if log_level
is not None:
242 event_class
._log
_level
= log_level
244 if emf_uri
is not None:
245 event_class
._emf
_uri
= emf_uri
247 if specific_context_field_class
is not None:
248 event_class
._specific
_context
_field
_class
= specific_context_field_class
250 if payload_field_class
is not None:
251 event_class
._payload
_field
_class
= payload_field_class
255 def _user_attributes(self
, user_attributes
):
256 value
= bt2_value
.create_value(user_attributes
)
257 utils
._check
_type
(value
, bt2_value
.MapValue
)
258 native_bt
.stream_class_set_user_attributes(self
._ptr
, value
._ptr
)
260 _user_attributes
= property(fset
=_user_attributes
)
262 def _name(self
, name
):
263 utils
._check
_str
(name
)
264 status
= native_bt
.stream_class_set_name(self
._ptr
, name
)
265 utils
._handle
_func
_status
(status
, "cannot set stream class object's name")
267 _name
= property(fset
=_name
)
269 def _assigns_automatic_event_class_id(self
, auto_id
):
270 utils
._check
_bool
(auto_id
)
271 return native_bt
.stream_class_set_assigns_automatic_event_class_id(
275 _assigns_automatic_event_class_id
= property(fset
=_assigns_automatic_event_class_id
)
277 def _assigns_automatic_stream_id(self
, auto_id
):
278 utils
._check
_bool
(auto_id
)
279 return native_bt
.stream_class_set_assigns_automatic_stream_id(
283 _assigns_automatic_stream_id
= property(fset
=_assigns_automatic_stream_id
)
285 def _set_supports_packets(self
, supports
, with_begin_cs
=False, with_end_cs
=False):
286 utils
._check
_bool
(supports
)
287 utils
._check
_bool
(with_begin_cs
)
288 utils
._check
_bool
(with_end_cs
)
290 if not supports
and (with_begin_cs
or with_end_cs
):
292 'cannot not support packets, but have default clock snapshots'
295 if not supports
and self
.packet_context_field_class
is not None:
296 raise ValueError('stream class already has a packet context field class')
298 native_bt
.stream_class_set_supports_packets(
299 self
._ptr
, supports
, with_begin_cs
, with_end_cs
302 def _set_supports_discarded_events(self
, supports
, with_cs
=False):
303 utils
._check
_bool
(supports
)
304 utils
._check
_bool
(with_cs
)
306 if not supports
and with_cs
:
308 'cannot not support discarded events, but have default clock snapshots'
311 native_bt
.stream_class_set_supports_discarded_events(
312 self
._ptr
, supports
, with_cs
315 _supports_discarded_events
= property(fset
=_set_supports_discarded_events
)
317 def _set_supports_discarded_packets(self
, supports
, with_cs
):
318 utils
._check
_bool
(supports
)
319 utils
._check
_bool
(with_cs
)
321 if supports
and not self
.supports_packets
:
323 'cannot support discarded packets, but not support packets'
326 if not supports
and with_cs
:
328 'cannot not support discarded packets, but have default clock snapshots'
331 native_bt
.stream_class_set_supports_discarded_packets(
332 self
._ptr
, supports
, with_cs
335 _supports_discarded_packets
= property(fset
=_set_supports_discarded_packets
)
337 def _packet_context_field_class(self
, packet_context_field_class
):
338 if packet_context_field_class
is not None:
340 packet_context_field_class
, bt2_field_class
._StructureFieldClass
343 if not self
.supports_packets
:
344 raise ValueError('stream class does not support packets')
346 status
= native_bt
.stream_class_set_packet_context_field_class(
347 self
._ptr
, packet_context_field_class
._ptr
349 utils
._handle
_func
_status
(
350 status
, "cannot set stream class' packet context field class"
353 _packet_context_field_class
= property(fset
=_packet_context_field_class
)
355 def _event_common_context_field_class(self
, event_common_context_field_class
):
356 if event_common_context_field_class
is not None:
358 event_common_context_field_class
, bt2_field_class
._StructureFieldClass
361 set_context_fn
= native_bt
.stream_class_set_event_common_context_field_class
362 status
= set_context_fn(self
._ptr
, event_common_context_field_class
._ptr
)
363 utils
._handle
_func
_status
(
364 status
, "cannot set stream class' event context field type"
367 _event_common_context_field_class
= property(fset
=_event_common_context_field_class
)
369 def _default_clock_class(self
, clock_class
):
370 utils
._check
_type
(clock_class
, bt2_clock_class
._ClockClass
)
371 native_bt
.stream_class_set_default_clock_class(self
._ptr
, clock_class
._ptr
)
373 _default_clock_class
= property(fset
=_default_clock_class
)