bt2: validate parameters to _TraceClass.create_stream_class before creating the nativ...
[babeltrace.git] / src / bindings / python / bt2 / bt2 / stream_class.py
1 # The MIT License (MIT)
2 #
3 # Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
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
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 clock_class as bt2_clock_class
27 from bt2 import value as bt2_value
28 import collections.abc
29
30
31 def _bt2_trace_class():
32 from bt2 import trace_class as bt2_trace_class
33
34 return bt2_trace_class
35
36
37 class _StreamClassConst(object._SharedObject, collections.abc.Mapping):
38 _get_ref = staticmethod(native_bt.stream_class_get_ref)
39 _put_ref = staticmethod(native_bt.stream_class_put_ref)
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 )
58 _borrow_user_attributes_ptr = staticmethod(
59 native_bt.stream_class_borrow_user_attributes_const
60 )
61
62 _event_class_cls = property(lambda _: bt2_event_class._EventClassConst)
63 _trace_class_cls = property(lambda _: _bt2_trace_class()._TraceClassConst)
64 _clock_class_cls = property(lambda _: bt2_clock_class._ClockClassConst)
65
66 def __getitem__(self, key):
67 utils._check_int64(key)
68 ec_ptr = self._borrow_event_class_ptr_by_id(self._ptr, key)
69
70 if ec_ptr is None:
71 raise KeyError(key)
72
73 return self._event_class_cls._create_from_ptr_and_get_ref(ec_ptr)
74
75 def __len__(self):
76 count = native_bt.stream_class_get_event_class_count(self._ptr)
77 assert count >= 0
78 return count
79
80 def __iter__(self):
81 for idx in range(len(self)):
82 ec_ptr = self._borrow_event_class_ptr_by_index(self._ptr, idx)
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
89
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):
99 ptr = self._borrow_user_attributes_ptr(self._ptr)
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
185 class _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 )
204 _borrow_user_attributes_ptr = staticmethod(
205 native_bt.stream_class_borrow_user_attributes
206 )
207
208 _event_class_cls = property(lambda s: bt2_event_class._EventClass)
209 _trace_class_cls = property(lambda s: _bt2_trace_class()._TraceClass)
210 _clock_class_cls = property(lambda s: bt2_clock_class._ClockClass)
211
212 def create_event_class(
213 self,
214 id=None,
215 name=None,
216 user_attributes=None,
217 log_level=None,
218 emf_uri=None,
219 specific_context_field_class=None,
220 payload_field_class=None,
221 ):
222 if self.assigns_automatic_event_class_id:
223 if id is not None:
224 raise ValueError(
225 'id provided, but stream class assigns automatic event class ids'
226 )
227
228 ec_ptr = native_bt.event_class_create(self._ptr)
229 else:
230 if id is None:
231 raise ValueError(
232 'id not provided, but stream class does not assign automatic event class ids'
233 )
234
235 utils._check_uint64(id)
236 ec_ptr = native_bt.event_class_create_with_id(self._ptr, id)
237
238 event_class = bt2_event_class._EventClass._create_from_ptr(ec_ptr)
239
240 if name is not None:
241 event_class._name = name
242
243 if user_attributes is not None:
244 event_class._user_attributes = user_attributes
245
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
259
260 def _user_attributes(self, user_attributes):
261 value = bt2_value.create_value(user_attributes)
262 native_bt.stream_class_set_user_attributes(self._ptr, value._ptr)
263
264 _user_attributes = property(fset=_user_attributes)
265
266 def _name(self, name):
267 status = native_bt.stream_class_set_name(self._ptr, name)
268 utils._handle_func_status(status, "cannot set stream class object's name")
269
270 _name = property(fset=_name)
271
272 def _assigns_automatic_event_class_id(self, auto_id):
273 native_bt.stream_class_set_assigns_automatic_event_class_id(self._ptr, auto_id)
274
275 _assigns_automatic_event_class_id = property(fset=_assigns_automatic_event_class_id)
276
277 def _assigns_automatic_stream_id(self, auto_id):
278 native_bt.stream_class_set_assigns_automatic_stream_id(self._ptr, auto_id)
279
280 _assigns_automatic_stream_id = property(fset=_assigns_automatic_stream_id)
281
282 def _set_supports_packets(self, supports, with_begin_cs=False, with_end_cs=False):
283 native_bt.stream_class_set_supports_packets(
284 self._ptr, supports, with_begin_cs, with_end_cs
285 )
286
287 def _set_supports_discarded_events(self, supports, with_cs=False):
288 native_bt.stream_class_set_supports_discarded_events(
289 self._ptr, supports, with_cs
290 )
291
292 _supports_discarded_events = property(fset=_set_supports_discarded_events)
293
294 def _set_supports_discarded_packets(self, supports, with_cs):
295 native_bt.stream_class_set_supports_discarded_packets(
296 self._ptr, supports, with_cs
297 )
298
299 _supports_discarded_packets = property(fset=_set_supports_discarded_packets)
300
301 def _packet_context_field_class(self, packet_context_field_class):
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 )
317
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:
355 raise ValueError(
356 'cannot have a packet context field class without supporting packets'
357 )
358
359 utils._check_type(
360 packet_context_field_class, bt2_field_class._StructureFieldClass
361 )
362
363 # Event common context field class
364 if event_common_context_field_class is not None:
365 utils._check_type(
366 event_common_context_field_class, bt2_field_class._StructureFieldClass
367 )
368
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'
404 )
405
406 # Discarded packets
407 utils._check_bool(supports_discarded_packets)
408 utils._check_bool(discarded_packets_have_default_clock_snapshots)
409
410 if supports_discarded_packets and not supports_packets:
411 raise ValueError(
412 'cannot support discarded packets, but not support packets'
413 )
414
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.037198 seconds and 4 git commands to generate.