Apply black code formatter on all Python code
[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 import bt2.field_class
25 import bt2.event_class
26 import collections.abc
27 import bt2.stream
28 import bt2
29
30
31 class _StreamClass(object._SharedObject, collections.abc.Mapping):
32 _get_ref = staticmethod(native_bt.stream_class_get_ref)
33 _put_ref = staticmethod(native_bt.stream_class_put_ref)
34
35 def __getitem__(self, key):
36 utils._check_int64(key)
37 ec_ptr = native_bt.stream_class_borrow_event_class_by_id(self._ptr, key)
38
39 if ec_ptr is None:
40 raise KeyError(key)
41
42 return bt2.event_class._EventClass._create_from_ptr_and_get_ref(ec_ptr)
43
44 def __len__(self):
45 count = native_bt.stream_class_get_event_class_count(self._ptr)
46 assert count >= 0
47 return count
48
49 def __iter__(self):
50 for idx in range(len(self)):
51 ec_ptr = native_bt.stream_class_borrow_event_class_by_index_const(
52 self._ptr, idx
53 )
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
60
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 ):
70 if self.assigns_automatic_event_class_id:
71 if id is not None:
72 raise ValueError(
73 'id provided, but stream class assigns automatic event class ids'
74 )
75
76 ec_ptr = native_bt.event_class_create(self._ptr)
77 else:
78 if id is None:
79 raise ValueError(
80 'id not provided, but stream class does not assign automatic event class ids'
81 )
82
83 utils._check_uint64(id)
84 ec_ptr = native_bt.event_class_create_with_id(self._ptr, id)
85
86 event_class = bt2.event_class._EventClass._create_from_ptr(ec_ptr)
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
104
105 @property
106 def trace_class(self):
107 tc_ptr = native_bt.stream_class_borrow_trace_class_const(self._ptr)
108
109 if tc_ptr is not None:
110 return bt2._TraceClass._create_from_ptr_and_get_ref(tc_ptr)
111
112 @property
113 def name(self):
114 return native_bt.stream_class_get_name(self._ptr)
115
116 def _name(self, name):
117 utils._check_str(name)
118 status = native_bt.stream_class_set_name(self._ptr, name)
119 utils._handle_func_status(status, "cannot set stream class object's name")
120
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)
129 return native_bt.stream_class_set_assigns_automatic_event_class_id(
130 self._ptr, auto_id
131 )
132
133 _assigns_automatic_event_class_id = property(fset=_assigns_automatic_event_class_id)
134
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)
141 return native_bt.stream_class_set_assigns_automatic_stream_id(
142 self._ptr, auto_id
143 )
144
145 _assigns_automatic_stream_id = property(fset=_assigns_automatic_stream_id)
146
147 @property
148 def supports_packets(self):
149 return native_bt.stream_class_supports_packets(self._ptr)
150
151 @property
152 def packets_have_beginning_default_clock_snapshot(self):
153 return native_bt.stream_class_packets_have_beginning_default_clock_snapshot(
154 self._ptr
155 )
156
157 @property
158 def packets_have_end_default_clock_snapshot(self):
159 return native_bt.stream_class_packets_have_end_default_clock_snapshot(self._ptr)
160
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):
167 raise ValueError(
168 'cannot not support packets, but have default clock snapshots'
169 )
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')
173
174 native_bt.stream_class_set_supports_packets(
175 self._ptr, supports, with_begin_cs, with_end_cs
176 )
177
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:
187 raise ValueError(
188 'cannot not support discarded events, but have default clock snapshots'
189 )
190
191 native_bt.stream_class_set_supports_discarded_events(
192 self._ptr, supports, with_cs
193 )
194
195 @property
196 def discarded_events_have_default_clock_snapshots(self):
197 return native_bt.stream_class_discarded_events_have_default_clock_snapshots(
198 self._ptr
199 )
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
209 if supports and not self.supports_packets:
210 raise ValueError(
211 'cannot support discarded packets, but not support packets'
212 )
213
214 if not supports and with_cs:
215 raise ValueError(
216 'cannot not support discarded packets, but have default clock snapshots'
217 )
218
219 native_bt.stream_class_set_supports_discarded_packets(
220 self._ptr, supports, with_cs
221 )
222
223 @property
224 def discarded_packets_have_default_clock_snapshots(self):
225 return native_bt.stream_class_discarded_packets_have_default_clock_snapshots(
226 self._ptr
227 )
228
229 @property
230 def id(self):
231 id = native_bt.stream_class_get_id(self._ptr)
232
233 if id < 0:
234 return
235
236 return id
237
238 @id.setter
239 def id(self, id):
240 utils._check_int64(id)
241 status = native_bt.stream_class_set_id(self._ptr, id)
242 utils._handle_func_status(status, "cannot set stream class object's ID")
243
244 @property
245 def packet_context_field_class(self):
246 fc_ptr = native_bt.stream_class_borrow_packet_context_field_class_const(
247 self._ptr
248 )
249
250 if fc_ptr is None:
251 return
252
253 return bt2.field_class._create_field_class_from_ptr_and_get_ref(fc_ptr)
254
255 def _packet_context_field_class(self, packet_context_field_class):
256 if packet_context_field_class is not None:
257 utils._check_type(
258 packet_context_field_class, bt2.field_class._StructureFieldClass
259 )
260
261 if not self.supports_packets:
262 raise ValueError('stream class does not support packets')
263
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 )
270
271 _packet_context_field_class = property(fset=_packet_context_field_class)
272
273 @property
274 def event_common_context_field_class(self):
275 fc_ptr = native_bt.stream_class_borrow_event_common_context_field_class_const(
276 self._ptr
277 )
278
279 if fc_ptr is None:
280 return
281
282 return bt2.field_class._create_field_class_from_ptr_and_get_ref(fc_ptr)
283
284 def _event_common_context_field_class(self, event_common_context_field_class):
285 if event_common_context_field_class is not None:
286 utils._check_type(
287 event_common_context_field_class, bt2.field_class._StructureFieldClass
288 )
289
290 set_context_fn = native_bt.stream_class_set_event_common_context_field_class
291 status = set_context_fn(self._ptr, event_common_context_field_class._ptr)
292 utils._handle_func_status(
293 status, "cannot set stream class' event context field type"
294 )
295
296 _event_common_context_field_class = property(fset=_event_common_context_field_class)
297
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:
302 return
303
304 return bt2.clock_class._ClockClass._create_from_ptr_and_get_ref(cc_ptr)
305
306 def _default_clock_class(self, clock_class):
307 utils._check_type(clock_class, bt2.clock_class._ClockClass)
308 native_bt.stream_class_set_default_clock_class(self._ptr, clock_class._ptr)
309
310 _default_clock_class = property(fset=_default_clock_class)
This page took 0.035282 seconds and 4 git commands to generate.