bt2: validate parameters to _TraceClass.create_stream_class before creating the nativ...
[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
3fb99a22 26from bt2 import clock_class as bt2_clock_class
5783664e 27from bt2 import value as bt2_value
81447b5b 28import collections.abc
81447b5b
PP
29
30
79935628
SM
31def _bt2_trace_class():
32 from bt2 import trace_class as bt2_trace_class
33
34 return bt2_trace_class
35
36
f0a42b33 37class _StreamClassConst(object._SharedObject, collections.abc.Mapping):
fbbe9302
SM
38 _get_ref = staticmethod(native_bt.stream_class_get_ref)
39 _put_ref = staticmethod(native_bt.stream_class_put_ref)
f0a42b33
FD
40 _borrow_event_class_ptr_by_id = staticmethod(
41 native_bt.stream_class_borrow_event_class_by_id_const
42 )
43 _borrow_event_class_ptr_by_index = staticmethod(
44 native_bt.stream_class_borrow_event_class_by_index_const
45 )
46 _borrow_trace_class_ptr = staticmethod(
47 native_bt.stream_class_borrow_trace_class_const
48 )
49 _borrow_packet_context_field_class_ptr = staticmethod(
50 native_bt.stream_class_borrow_packet_context_field_class_const
51 )
52 _borrow_event_common_context_field_class_ptr = staticmethod(
53 native_bt.stream_class_borrow_event_common_context_field_class_const
54 )
55 _borrow_default_clock_class_ptr = staticmethod(
56 native_bt.stream_class_borrow_default_clock_class_const
57 )
2550c437
SM
58 _borrow_user_attributes_ptr = staticmethod(
59 native_bt.stream_class_borrow_user_attributes_const
60 )
f0a42b33
FD
61
62 _event_class_cls = property(lambda _: bt2_event_class._EventClassConst)
79935628 63 _trace_class_cls = property(lambda _: _bt2_trace_class()._TraceClassConst)
f0a42b33 64 _clock_class_cls = property(lambda _: bt2_clock_class._ClockClassConst)
fbbe9302 65
81447b5b 66 def __getitem__(self, key):
811644b8 67 utils._check_int64(key)
f0a42b33 68 ec_ptr = self._borrow_event_class_ptr_by_id(self._ptr, key)
81447b5b
PP
69
70 if ec_ptr is None:
71 raise KeyError(key)
72
f0a42b33 73 return self._event_class_cls._create_from_ptr_and_get_ref(ec_ptr)
81447b5b
PP
74
75 def __len__(self):
50842bdc 76 count = native_bt.stream_class_get_event_class_count(self._ptr)
3cdfbaea 77 assert count >= 0
81447b5b
PP
78 return count
79
80 def __iter__(self):
3cdfbaea 81 for idx in range(len(self)):
f0a42b33 82 ec_ptr = self._borrow_event_class_ptr_by_index(self._ptr, idx)
3cdfbaea
SM
83 assert ec_ptr is not None
84
85 id = native_bt.event_class_get_id(ec_ptr)
86 assert id >= 0
87
88 yield id
81447b5b 89
f0a42b33
FD
90 @property
91 def trace_class(self):
92 tc_ptr = self._borrow_trace_class_ptr(self._ptr)
93
94 if tc_ptr is not None:
95 return self._trace_class_cls._create_from_ptr_and_get_ref(tc_ptr)
96
97 @property
98 def user_attributes(self):
2550c437 99 ptr = self._borrow_user_attributes_ptr(self._ptr)
f0a42b33
FD
100 assert ptr is not None
101 return bt2_value._create_from_ptr_and_get_ref(ptr)
102
103 @property
104 def name(self):
105 return native_bt.stream_class_get_name(self._ptr)
106
107 @property
108 def assigns_automatic_event_class_id(self):
109 return native_bt.stream_class_assigns_automatic_event_class_id(self._ptr)
110
111 @property
112 def assigns_automatic_stream_id(self):
113 return native_bt.stream_class_assigns_automatic_stream_id(self._ptr)
114
115 @property
116 def supports_packets(self):
117 return native_bt.stream_class_supports_packets(self._ptr)
118
119 @property
120 def packets_have_beginning_default_clock_snapshot(self):
121 return native_bt.stream_class_packets_have_beginning_default_clock_snapshot(
122 self._ptr
123 )
124
125 @property
126 def packets_have_end_default_clock_snapshot(self):
127 return native_bt.stream_class_packets_have_end_default_clock_snapshot(self._ptr)
128
129 @property
130 def supports_discarded_events(self):
131 return native_bt.stream_class_supports_discarded_events(self._ptr)
132
133 @property
134 def discarded_events_have_default_clock_snapshots(self):
135 return native_bt.stream_class_discarded_events_have_default_clock_snapshots(
136 self._ptr
137 )
138
139 @property
140 def supports_discarded_packets(self):
141 return native_bt.stream_class_supports_discarded_packets(self._ptr)
142
143 @property
144 def discarded_packets_have_default_clock_snapshots(self):
145 return native_bt.stream_class_discarded_packets_have_default_clock_snapshots(
146 self._ptr
147 )
148
149 @property
150 def id(self):
151 id = native_bt.stream_class_get_id(self._ptr)
152
153 if id < 0:
154 return
155
156 return id
157
158 @property
159 def packet_context_field_class(self):
160 fc_ptr = self._borrow_packet_context_field_class_ptr(self._ptr)
161
162 if fc_ptr is None:
163 return
164
165 return bt2_field_class._create_field_class_from_ptr_and_get_ref(fc_ptr)
166
167 @property
168 def event_common_context_field_class(self):
169 fc_ptr = self._borrow_event_common_context_field_class_ptr(self._ptr)
170
171 if fc_ptr is None:
172 return
173
174 return bt2_field_class._create_field_class_from_ptr_and_get_ref(fc_ptr)
175
176 @property
177 def default_clock_class(self):
178 cc_ptr = self._borrow_default_clock_class_ptr(self._ptr)
179 if cc_ptr is None:
180 return
181
182 return self._clock_class_cls._create_from_ptr_and_get_ref(cc_ptr)
183
184
185class _StreamClass(_StreamClassConst):
186 _get_ref = staticmethod(native_bt.stream_class_get_ref)
187 _put_ref = staticmethod(native_bt.stream_class_put_ref)
188 _borrow_event_class_ptr_by_id = staticmethod(
189 native_bt.stream_class_borrow_event_class_by_id
190 )
191 _borrow_event_class_ptr_by_index = staticmethod(
192 native_bt.stream_class_borrow_event_class_by_index
193 )
194 _borrow_trace_class_ptr = staticmethod(native_bt.stream_class_borrow_trace_class)
195 _borrow_packet_context_field_class_ptr = staticmethod(
196 native_bt.stream_class_borrow_packet_context_field_class
197 )
198 _borrow_event_common_context_field_class_ptr = staticmethod(
199 native_bt.stream_class_borrow_event_common_context_field_class
200 )
201 _borrow_default_clock_class_ptr = staticmethod(
202 native_bt.stream_class_borrow_default_clock_class
203 )
2550c437
SM
204 _borrow_user_attributes_ptr = staticmethod(
205 native_bt.stream_class_borrow_user_attributes
206 )
207
f0a42b33 208 _event_class_cls = property(lambda s: bt2_event_class._EventClass)
79935628 209 _trace_class_cls = property(lambda s: _bt2_trace_class()._TraceClass)
f0a42b33
FD
210 _clock_class_cls = property(lambda s: bt2_clock_class._ClockClass)
211
cfbd7cf3
FD
212 def create_event_class(
213 self,
214 id=None,
215 name=None,
5783664e 216 user_attributes=None,
cfbd7cf3
FD
217 log_level=None,
218 emf_uri=None,
219 specific_context_field_class=None,
220 payload_field_class=None,
221 ):
3cdfbaea
SM
222 if self.assigns_automatic_event_class_id:
223 if id is not None:
cfbd7cf3
FD
224 raise ValueError(
225 'id provided, but stream class assigns automatic event class ids'
226 )
3cdfbaea
SM
227
228 ec_ptr = native_bt.event_class_create(self._ptr)
229 else:
230 if id is None:
cfbd7cf3
FD
231 raise ValueError(
232 'id not provided, but stream class does not assign automatic event class ids'
233 )
3cdfbaea
SM
234
235 utils._check_uint64(id)
236 ec_ptr = native_bt.event_class_create_with_id(self._ptr, id)
237
3fb99a22 238 event_class = bt2_event_class._EventClass._create_from_ptr(ec_ptr)
af4bbfc7
SM
239
240 if name is not None:
241 event_class._name = name
242
5783664e
PP
243 if user_attributes is not None:
244 event_class._user_attributes = user_attributes
245
af4bbfc7
SM
246 if log_level is not None:
247 event_class._log_level = log_level
248
249 if emf_uri is not None:
250 event_class._emf_uri = emf_uri
251
252 if specific_context_field_class is not None:
253 event_class._specific_context_field_class = specific_context_field_class
254
255 if payload_field_class is not None:
256 event_class._payload_field_class = payload_field_class
257
258 return event_class
81447b5b 259
5783664e
PP
260 def _user_attributes(self, user_attributes):
261 value = bt2_value.create_value(user_attributes)
5783664e
PP
262 native_bt.stream_class_set_user_attributes(self._ptr, value._ptr)
263
264 _user_attributes = property(fset=_user_attributes)
265
3cdfbaea 266 def _name(self, name):
d24d5663 267 status = native_bt.stream_class_set_name(self._ptr, name)
cfbd7cf3 268 utils._handle_func_status(status, "cannot set stream class object's name")
81447b5b 269
3cdfbaea
SM
270 _name = property(fset=_name)
271
3cdfbaea 272 def _assigns_automatic_event_class_id(self, auto_id):
d3bf1370 273 native_bt.stream_class_set_assigns_automatic_event_class_id(self._ptr, auto_id)
3cdfbaea
SM
274
275 _assigns_automatic_event_class_id = property(fset=_assigns_automatic_event_class_id)
276
8c2367b8 277 def _assigns_automatic_stream_id(self, auto_id):
d3bf1370 278 native_bt.stream_class_set_assigns_automatic_stream_id(self._ptr, auto_id)
8c2367b8
SM
279
280 _assigns_automatic_stream_id = property(fset=_assigns_automatic_stream_id)
281
26fc5aed 282 def _set_supports_packets(self, supports, with_begin_cs=False, with_end_cs=False):
cfbd7cf3
FD
283 native_bt.stream_class_set_supports_packets(
284 self._ptr, supports, with_begin_cs, with_end_cs
285 )
3cdfbaea 286
2e90378a 287 def _set_supports_discarded_events(self, supports, with_cs=False):
cfbd7cf3
FD
288 native_bt.stream_class_set_supports_discarded_events(
289 self._ptr, supports, with_cs
290 )
2e90378a 291
f0a42b33 292 _supports_discarded_events = property(fset=_set_supports_discarded_events)
2e90378a
PP
293
294 def _set_supports_discarded_packets(self, supports, with_cs):
cfbd7cf3
FD
295 native_bt.stream_class_set_supports_discarded_packets(
296 self._ptr, supports, with_cs
297 )
2e90378a 298
f0a42b33 299 _supports_discarded_packets = property(fset=_set_supports_discarded_packets)
81447b5b 300
3cdfbaea 301 def _packet_context_field_class(self, packet_context_field_class):
d3bf1370
SM
302 status = native_bt.stream_class_set_packet_context_field_class(
303 self._ptr, packet_context_field_class._ptr
304 )
305 utils._handle_func_status(
306 status, "cannot set stream class' packet context field class"
307 )
308
309 _packet_context_field_class = property(fset=_packet_context_field_class)
310
311 def _event_common_context_field_class(self, event_common_context_field_class):
312 set_context_fn = native_bt.stream_class_set_event_common_context_field_class
313 status = set_context_fn(self._ptr, event_common_context_field_class._ptr)
314 utils._handle_func_status(
315 status, "cannot set stream class' event context field type"
316 )
26fc5aed 317
d3bf1370
SM
318 _event_common_context_field_class = property(fset=_event_common_context_field_class)
319
320 def _default_clock_class(self, clock_class):
321 native_bt.stream_class_set_default_clock_class(self._ptr, clock_class._ptr)
322
323 _default_clock_class = property(fset=_default_clock_class)
324
325 @classmethod
326 def _validate_create_params(
327 cls,
328 name,
329 user_attributes,
330 packet_context_field_class,
331 event_common_context_field_class,
332 default_clock_class,
333 assigns_automatic_event_class_id,
334 assigns_automatic_stream_id,
335 supports_packets,
336 packets_have_beginning_default_clock_snapshot,
337 packets_have_end_default_clock_snapshot,
338 supports_discarded_events,
339 discarded_events_have_default_clock_snapshots,
340 supports_discarded_packets,
341 discarded_packets_have_default_clock_snapshots,
342 ):
343 # Name
344 if name is not None:
345 utils._check_str(name)
346
347 # User attributes
348 if user_attributes is not None:
349 value = bt2_value.create_value(user_attributes)
350 utils._check_type(value, bt2_value.MapValue)
351
352 # Packet context field class
353 if packet_context_field_class is not None:
354 if not supports_packets:
91910435
SM
355 raise ValueError(
356 'cannot have a packet context field class without supporting packets'
357 )
26fc5aed 358
d3bf1370
SM
359 utils._check_type(
360 packet_context_field_class, bt2_field_class._StructureFieldClass
cfbd7cf3 361 )
81447b5b 362
d3bf1370 363 # Event common context field class
3cdfbaea 364 if event_common_context_field_class is not None:
cfbd7cf3 365 utils._check_type(
3fb99a22 366 event_common_context_field_class, bt2_field_class._StructureFieldClass
cfbd7cf3 367 )
81447b5b 368
d3bf1370
SM
369 # Default clock class
370 if default_clock_class is not None:
371 utils._check_type(default_clock_class, bt2_clock_class._ClockClass)
372
373 # Assigns automatic event class id
374 utils._check_bool(assigns_automatic_event_class_id)
375
376 # Assigns automatic stream id
377 utils._check_bool(assigns_automatic_stream_id)
378
379 # Packets
380 utils._check_bool(supports_packets)
381 utils._check_bool(packets_have_beginning_default_clock_snapshot)
382 utils._check_bool(packets_have_end_default_clock_snapshot)
383
384 if not supports_packets:
385 if packets_have_beginning_default_clock_snapshot:
386 raise ValueError(
387 'cannot not support packets, but have packet beginning default clock snapshot'
388 )
389 if packets_have_end_default_clock_snapshot:
390 raise ValueError(
391 'cannot not support packets, but have packet end default clock snapshots'
392 )
393
394 # Discarded events
395 utils._check_bool(supports_discarded_events)
396 utils._check_bool(discarded_events_have_default_clock_snapshots)
397
398 if (
399 not supports_discarded_events
400 and discarded_events_have_default_clock_snapshots
401 ):
402 raise ValueError(
403 'cannot not support discarded events, but have default clock snapshots for discarded event messages'
cfbd7cf3 404 )
81447b5b 405
d3bf1370
SM
406 # Discarded packets
407 utils._check_bool(supports_discarded_packets)
408 utils._check_bool(discarded_packets_have_default_clock_snapshots)
81447b5b 409
d3bf1370
SM
410 if supports_discarded_packets and not supports_packets:
411 raise ValueError(
412 'cannot support discarded packets, but not support packets'
413 )
81447b5b 414
d3bf1370
SM
415 if (
416 not supports_discarded_packets
417 and discarded_packets_have_default_clock_snapshots
418 ):
419 raise ValueError(
420 'cannot not support discarded packets, but have default clock snapshots for discarded packet messages'
421 )
This page took 0.072694 seconds and 4 git commands to generate.