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