bt2: Add `_Clock*Const` classes and adapt tests
[babeltrace.git] / src / bindings / python / bt2 / bt2 / stream_class.py
CommitLineData
81447b5b
PP
1# The MIT License (MIT)
2#
811644b8 3# Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
81447b5b
PP
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
23from bt2 import native_bt, object, utils
3fb99a22
PP
24from bt2 import field_class as bt2_field_class
25from bt2 import event_class as bt2_event_class
26from bt2 import trace_class as bt2_trace_class
27from bt2 import clock_class as bt2_clock_class
5783664e 28from bt2 import value as bt2_value
81447b5b 29import collections.abc
81447b5b
PP
30
31
2c6f8520 32class _StreamClass(object._SharedObject, collections.abc.Mapping):
fbbe9302
SM
33 _get_ref = staticmethod(native_bt.stream_class_get_ref)
34 _put_ref = staticmethod(native_bt.stream_class_put_ref)
35
81447b5b 36 def __getitem__(self, key):
811644b8 37 utils._check_int64(key)
3cdfbaea 38 ec_ptr = native_bt.stream_class_borrow_event_class_by_id(self._ptr, key)
81447b5b
PP
39
40 if ec_ptr is None:
41 raise KeyError(key)
42
3fb99a22 43 return bt2_event_class._EventClass._create_from_ptr_and_get_ref(ec_ptr)
81447b5b
PP
44
45 def __len__(self):
50842bdc 46 count = native_bt.stream_class_get_event_class_count(self._ptr)
3cdfbaea 47 assert count >= 0
81447b5b
PP
48 return count
49
50 def __iter__(self):
3cdfbaea 51 for idx in range(len(self)):
cfbd7cf3
FD
52 ec_ptr = native_bt.stream_class_borrow_event_class_by_index_const(
53 self._ptr, idx
54 )
3cdfbaea
SM
55 assert ec_ptr is not None
56
57 id = native_bt.event_class_get_id(ec_ptr)
58 assert id >= 0
59
60 yield id
81447b5b 61
cfbd7cf3
FD
62 def create_event_class(
63 self,
64 id=None,
65 name=None,
5783664e 66 user_attributes=None,
cfbd7cf3
FD
67 log_level=None,
68 emf_uri=None,
69 specific_context_field_class=None,
70 payload_field_class=None,
71 ):
3cdfbaea
SM
72 if self.assigns_automatic_event_class_id:
73 if id is not None:
cfbd7cf3
FD
74 raise ValueError(
75 'id provided, but stream class assigns automatic event class ids'
76 )
3cdfbaea
SM
77
78 ec_ptr = native_bt.event_class_create(self._ptr)
79 else:
80 if id is None:
cfbd7cf3
FD
81 raise ValueError(
82 'id not provided, but stream class does not assign automatic event class ids'
83 )
3cdfbaea
SM
84
85 utils._check_uint64(id)
86 ec_ptr = native_bt.event_class_create_with_id(self._ptr, id)
87
3fb99a22 88 event_class = bt2_event_class._EventClass._create_from_ptr(ec_ptr)
af4bbfc7
SM
89
90 if name is not None:
91 event_class._name = name
92
5783664e
PP
93 if user_attributes is not None:
94 event_class._user_attributes = user_attributes
95
af4bbfc7
SM
96 if log_level is not None:
97 event_class._log_level = log_level
98
99 if emf_uri is not None:
100 event_class._emf_uri = emf_uri
101
102 if specific_context_field_class is not None:
103 event_class._specific_context_field_class = specific_context_field_class
104
105 if payload_field_class is not None:
106 event_class._payload_field_class = payload_field_class
107
108 return event_class
81447b5b
PP
109
110 @property
3cdfbaea
SM
111 def trace_class(self):
112 tc_ptr = native_bt.stream_class_borrow_trace_class_const(self._ptr)
81447b5b
PP
113
114 if tc_ptr is not None:
3fb99a22 115 return bt2_trace_class._TraceClass._create_from_ptr_and_get_ref(tc_ptr)
81447b5b 116
5783664e
PP
117 @property
118 def user_attributes(self):
119 ptr = native_bt.stream_class_borrow_user_attributes(self._ptr)
120 assert ptr is not None
121 return bt2_value._create_from_ptr_and_get_ref(ptr)
122
123 def _user_attributes(self, user_attributes):
124 value = bt2_value.create_value(user_attributes)
125 utils._check_type(value, bt2_value.MapValue)
126 native_bt.stream_class_set_user_attributes(self._ptr, value._ptr)
127
128 _user_attributes = property(fset=_user_attributes)
129
81447b5b
PP
130 @property
131 def name(self):
50842bdc 132 return native_bt.stream_class_get_name(self._ptr)
81447b5b 133
3cdfbaea 134 def _name(self, name):
81447b5b 135 utils._check_str(name)
d24d5663 136 status = native_bt.stream_class_set_name(self._ptr, name)
cfbd7cf3 137 utils._handle_func_status(status, "cannot set stream class object's name")
81447b5b 138
3cdfbaea
SM
139 _name = property(fset=_name)
140
141 @property
142 def assigns_automatic_event_class_id(self):
143 return native_bt.stream_class_assigns_automatic_event_class_id(self._ptr)
144
145 def _assigns_automatic_event_class_id(self, auto_id):
146 utils._check_bool(auto_id)
cfbd7cf3
FD
147 return native_bt.stream_class_set_assigns_automatic_event_class_id(
148 self._ptr, auto_id
149 )
3cdfbaea
SM
150
151 _assigns_automatic_event_class_id = property(fset=_assigns_automatic_event_class_id)
152
8c2367b8
SM
153 @property
154 def assigns_automatic_stream_id(self):
155 return native_bt.stream_class_assigns_automatic_stream_id(self._ptr)
156
157 def _assigns_automatic_stream_id(self, auto_id):
158 utils._check_bool(auto_id)
cfbd7cf3
FD
159 return native_bt.stream_class_set_assigns_automatic_stream_id(
160 self._ptr, auto_id
161 )
8c2367b8
SM
162
163 _assigns_automatic_stream_id = property(fset=_assigns_automatic_stream_id)
164
26fc5aed
PP
165 @property
166 def supports_packets(self):
167 return native_bt.stream_class_supports_packets(self._ptr)
168
3cdfbaea 169 @property
9b24b6aa 170 def packets_have_beginning_default_clock_snapshot(self):
cfbd7cf3
FD
171 return native_bt.stream_class_packets_have_beginning_default_clock_snapshot(
172 self._ptr
173 )
3cdfbaea 174
3cdfbaea 175 @property
9b24b6aa
PP
176 def packets_have_end_default_clock_snapshot(self):
177 return native_bt.stream_class_packets_have_end_default_clock_snapshot(self._ptr)
3cdfbaea 178
26fc5aed
PP
179 def _set_supports_packets(self, supports, with_begin_cs=False, with_end_cs=False):
180 utils._check_bool(supports)
181 utils._check_bool(with_begin_cs)
182 utils._check_bool(with_end_cs)
183
184 if not supports and (with_begin_cs or with_end_cs):
cfbd7cf3
FD
185 raise ValueError(
186 'cannot not support packets, but have default clock snapshots'
187 )
26fc5aed
PP
188
189 if not supports and self.packet_context_field_class is not None:
190 raise ValueError('stream class already has a packet context field class')
3cdfbaea 191
cfbd7cf3
FD
192 native_bt.stream_class_set_supports_packets(
193 self._ptr, supports, with_begin_cs, with_end_cs
194 )
3cdfbaea 195
2e90378a
PP
196 @property
197 def supports_discarded_events(self):
198 return native_bt.stream_class_supports_discarded_events(self._ptr)
199
200 def _set_supports_discarded_events(self, supports, with_cs=False):
201 utils._check_bool(supports)
202 utils._check_bool(with_cs)
203
204 if not supports and with_cs:
cfbd7cf3
FD
205 raise ValueError(
206 'cannot not support discarded events, but have default clock snapshots'
207 )
2e90378a 208
cfbd7cf3
FD
209 native_bt.stream_class_set_supports_discarded_events(
210 self._ptr, supports, with_cs
211 )
2e90378a
PP
212
213 @property
214 def discarded_events_have_default_clock_snapshots(self):
cfbd7cf3
FD
215 return native_bt.stream_class_discarded_events_have_default_clock_snapshots(
216 self._ptr
217 )
2e90378a
PP
218
219 @property
220 def supports_discarded_packets(self):
221 return native_bt.stream_class_supports_discarded_packets(self._ptr)
222
223 def _set_supports_discarded_packets(self, supports, with_cs):
224 utils._check_bool(supports)
225 utils._check_bool(with_cs)
226
26fc5aed 227 if supports and not self.supports_packets:
cfbd7cf3
FD
228 raise ValueError(
229 'cannot support discarded packets, but not support packets'
230 )
26fc5aed 231
2e90378a 232 if not supports and with_cs:
cfbd7cf3
FD
233 raise ValueError(
234 'cannot not support discarded packets, but have default clock snapshots'
235 )
2e90378a 236
cfbd7cf3
FD
237 native_bt.stream_class_set_supports_discarded_packets(
238 self._ptr, supports, with_cs
239 )
2e90378a
PP
240
241 @property
242 def discarded_packets_have_default_clock_snapshots(self):
cfbd7cf3
FD
243 return native_bt.stream_class_discarded_packets_have_default_clock_snapshots(
244 self._ptr
245 )
2e90378a 246
81447b5b
PP
247 @property
248 def id(self):
50842bdc 249 id = native_bt.stream_class_get_id(self._ptr)
81447b5b 250
811644b8
PP
251 if id < 0:
252 return
81447b5b
PP
253
254 return id
255
81447b5b 256 @property
b4f45851 257 def packet_context_field_class(self):
cfbd7cf3
FD
258 fc_ptr = native_bt.stream_class_borrow_packet_context_field_class_const(
259 self._ptr
260 )
81447b5b 261
b4f45851 262 if fc_ptr is None:
81447b5b
PP
263 return
264
3fb99a22 265 return bt2_field_class._create_field_class_from_ptr_and_get_ref(fc_ptr)
81447b5b 266
3cdfbaea 267 def _packet_context_field_class(self, packet_context_field_class):
b4f45851 268 if packet_context_field_class is not None:
cfbd7cf3 269 utils._check_type(
3fb99a22 270 packet_context_field_class, bt2_field_class._StructureFieldClass
cfbd7cf3 271 )
26fc5aed
PP
272
273 if not self.supports_packets:
274 raise ValueError('stream class does not support packets')
275
cfbd7cf3
FD
276 status = native_bt.stream_class_set_packet_context_field_class(
277 self._ptr, packet_context_field_class._ptr
278 )
279 utils._handle_func_status(
280 status, "cannot set stream class' packet context field class"
281 )
81447b5b 282
3cdfbaea 283 _packet_context_field_class = property(fset=_packet_context_field_class)
81447b5b
PP
284
285 @property
3cdfbaea 286 def event_common_context_field_class(self):
cfbd7cf3
FD
287 fc_ptr = native_bt.stream_class_borrow_event_common_context_field_class_const(
288 self._ptr
289 )
81447b5b 290
b4f45851 291 if fc_ptr is None:
81447b5b
PP
292 return
293
3fb99a22 294 return bt2_field_class._create_field_class_from_ptr_and_get_ref(fc_ptr)
81447b5b 295
3cdfbaea
SM
296 def _event_common_context_field_class(self, event_common_context_field_class):
297 if event_common_context_field_class is not None:
cfbd7cf3 298 utils._check_type(
3fb99a22 299 event_common_context_field_class, bt2_field_class._StructureFieldClass
cfbd7cf3 300 )
81447b5b 301
3cdfbaea 302 set_context_fn = native_bt.stream_class_set_event_common_context_field_class
d24d5663 303 status = set_context_fn(self._ptr, event_common_context_field_class._ptr)
cfbd7cf3
FD
304 utils._handle_func_status(
305 status, "cannot set stream class' event context field type"
306 )
81447b5b 307
3cdfbaea 308 _event_common_context_field_class = property(fset=_event_common_context_field_class)
81447b5b 309
3cdfbaea
SM
310 @property
311 def default_clock_class(self):
312 cc_ptr = native_bt.stream_class_borrow_default_clock_class(self._ptr)
313 if cc_ptr is None:
81447b5b
PP
314 return
315
3fb99a22 316 return bt2_clock_class._ClockClass._create_from_ptr_and_get_ref(cc_ptr)
81447b5b 317
3cdfbaea 318 def _default_clock_class(self, clock_class):
3fb99a22 319 utils._check_type(clock_class, bt2_clock_class._ClockClass)
cfbd7cf3 320 native_bt.stream_class_set_default_clock_class(self._ptr, clock_class._ptr)
81447b5b 321
3cdfbaea 322 _default_clock_class = property(fset=_default_clock_class)
This page took 0.06548 seconds and 4 git commands to generate.