bt2: Adapt test_trace.py and make it pass
[babeltrace.git] / 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
81447b5b
PP
25import collections.abc
26import bt2.ctf_writer
27import bt2.stream
28import copy
29import bt2
30
31
32class _EventClassIterator(collections.abc.Iterator):
33 def __init__(self, stream_class):
34 self._stream_class = stream_class
35 self._at = 0
36
37 def __next__(self):
38 if self._at == len(self._stream_class):
39 raise StopIteration
40
50842bdc 41 ec_ptr = native_bt.stream_class_get_event_class_by_index(self._stream_class._ptr,
0b03f63e 42 self._at)
811644b8 43 assert(ec_ptr)
50842bdc 44 ev_id = native_bt.event_class_get_id(ec_ptr)
81447b5b 45 native_bt.put(ec_ptr)
811644b8 46 utils._handle_ret(ev_id, "cannot get event class object's ID")
81447b5b 47 self._at += 1
811644b8 48 return ev_id
81447b5b
PP
49
50
78288f58 51class StreamClass(object._SharedObject, collections.abc.Mapping):
fbbe9302
SM
52 _get_ref = staticmethod(native_bt.stream_class_get_ref)
53 _put_ref = staticmethod(native_bt.stream_class_put_ref)
54
b4f45851
SM
55 def __init__(self, name=None, id=None, packet_context_field_class=None,
56 event_header_field_class=None, event_context_field_class=None,
81447b5b 57 event_classes=None):
50842bdc 58 ptr = native_bt.stream_class_create_empty(None)
81447b5b
PP
59
60 if ptr is None:
61 raise bt2.CreationError('cannot create stream class object')
62
63 super().__init__(ptr)
64
65 if name is not None:
66 self.name = name
67
68 if id is not None:
69 self.id = id
70
b4f45851
SM
71 if packet_context_field_class is not None:
72 self.packet_context_field_class = packet_context_field_class
81447b5b 73
b4f45851
SM
74 if event_header_field_class is not None:
75 self.event_header_field_class = event_header_field_class
81447b5b 76
b4f45851
SM
77 if event_context_field_class is not None:
78 self.event_context_field_class = event_context_field_class
81447b5b
PP
79
80 if event_classes is not None:
81 for event_class in event_classes:
82 self.add_event_class(event_class)
83
84 def __getitem__(self, key):
811644b8 85 utils._check_int64(key)
50842bdc 86 ec_ptr = native_bt.stream_class_get_event_class_by_id(self._ptr,
0b03f63e 87 key)
81447b5b
PP
88
89 if ec_ptr is None:
90 raise KeyError(key)
91
92 return bt2.EventClass._create_from_ptr(ec_ptr)
93
94 def __len__(self):
50842bdc 95 count = native_bt.stream_class_get_event_class_count(self._ptr)
811644b8 96 assert(count >= 0)
81447b5b
PP
97 return count
98
99 def __iter__(self):
100 return _EventClassIterator(self)
101
81447b5b
PP
102 def add_event_class(self, event_class):
103 utils._check_type(event_class, bt2.EventClass)
50842bdc 104 ret = native_bt.stream_class_add_event_class(self._ptr, event_class._ptr)
81447b5b
PP
105 utils._handle_ret(ret, "cannot add event class object to stream class object's")
106
107 @property
108 def trace(self):
50842bdc 109 tc_ptr = native_bt.stream_class_get_trace(self._ptr)
81447b5b
PP
110
111 if tc_ptr is not None:
112 return bt2.Trace._create_from_ptr(tc_ptr)
113
114 @property
115 def name(self):
50842bdc 116 return native_bt.stream_class_get_name(self._ptr)
81447b5b
PP
117
118 @name.setter
119 def name(self, name):
120 utils._check_str(name)
50842bdc 121 ret = native_bt.stream_class_set_name(self._ptr, name)
81447b5b
PP
122 utils._handle_ret(ret, "cannot set stream class object's name")
123
8c2367b8
SM
124 @property
125 def assigns_automatic_stream_id(self):
126 return native_bt.stream_class_assigns_automatic_stream_id(self._ptr)
127
128 def _assigns_automatic_stream_id(self, auto_id):
129 utils._check_bool(auto_id)
130 return native_bt.stream_class_set_assigns_automatic_stream_id(self._ptr, auto_id)
131
132 _assigns_automatic_stream_id = property(fset=_assigns_automatic_stream_id)
133
81447b5b
PP
134 @property
135 def id(self):
50842bdc 136 id = native_bt.stream_class_get_id(self._ptr)
81447b5b 137
811644b8
PP
138 if id < 0:
139 return
81447b5b
PP
140
141 return id
142
143 @id.setter
144 def id(self, id):
145 utils._check_int64(id)
50842bdc 146 ret = native_bt.stream_class_set_id(self._ptr, id)
81447b5b
PP
147 utils._handle_ret(ret, "cannot set stream class object's ID")
148
149 @property
150 def clock(self):
50842bdc 151 clock_ptr = native_bt.stream_class_get_clock(self._ptr)
81447b5b
PP
152
153 if clock_ptr is None:
154 return
155
156 return bt2.ctf_writer.CtfWriterClock._create_from_ptr(clock_ptr)
157
158 @clock.setter
159 def clock(self, clock):
160 utils._check_type(clock, bt2.ctf_writer.CtfWriterClock)
50842bdc 161 ret = native_bt.stream_class_set_clock(self._ptr, clock._ptr)
81447b5b
PP
162 utils._handle_ret(ret, "cannot set stream class object's CTF writer clock object")
163
164 @property
b4f45851
SM
165 def packet_context_field_class(self):
166 fc_ptr = native_bt.stream_class_get_packet_context_type(self._ptr)
81447b5b 167
b4f45851 168 if fc_ptr is None:
81447b5b
PP
169 return
170
b4f45851 171 return bt2.field_class._create_from_ptr(fc_ptr)
81447b5b 172
b4f45851
SM
173 @packet_context_field_class.setter
174 def packet_context_field_class(self, packet_context_field_class):
175 packet_context_field_class_ptr = None
81447b5b 176
b4f45851
SM
177 if packet_context_field_class is not None:
178 utils._check_type(packet_context_field_class, bt2.field_class._FieldClass)
179 packet_context_field_class_ptr = packet_context_field_class._ptr
81447b5b 180
50842bdc 181 ret = native_bt.stream_class_set_packet_context_type(self._ptr,
b4f45851
SM
182 packet_context_field_class_ptr)
183 utils._handle_ret(ret, "cannot set stream class object's packet context field class")
81447b5b
PP
184
185 @property
b4f45851
SM
186 def event_header_field_class(self):
187 fc_ptr = native_bt.stream_class_get_event_header_type(self._ptr)
81447b5b 188
b4f45851 189 if fc_ptr is None:
81447b5b
PP
190 return
191
b4f45851 192 return bt2.field_class._create_from_ptr(fc_ptr)
81447b5b 193
b4f45851
SM
194 @event_header_field_class.setter
195 def event_header_field_class(self, event_header_field_class):
196 event_header_field_class_ptr = None
81447b5b 197
b4f45851
SM
198 if event_header_field_class is not None:
199 utils._check_type(event_header_field_class, bt2.field_class._FieldClass)
200 event_header_field_class_ptr = event_header_field_class._ptr
81447b5b 201
50842bdc 202 ret = native_bt.stream_class_set_event_header_type(self._ptr,
b4f45851
SM
203 event_header_field_class_ptr)
204 utils._handle_ret(ret, "cannot set stream class object's event header field class")
81447b5b
PP
205
206 @property
b4f45851
SM
207 def event_context_field_class(self):
208 fc_ptr = native_bt.stream_class_get_event_context_type(self._ptr)
81447b5b 209
b4f45851 210 if fc_ptr is None:
81447b5b
PP
211 return
212
b4f45851 213 return bt2.field_class._create_from_ptr(fc_ptr)
81447b5b 214
b4f45851
SM
215 @event_context_field_class.setter
216 def event_context_field_class(self, event_context_field_class):
217 event_context_field_class_ptr = None
81447b5b 218
b4f45851
SM
219 if event_context_field_class is not None:
220 utils._check_type(event_context_field_class, bt2.field_class._FieldClass)
221 event_context_field_class_ptr = event_context_field_class._ptr
81447b5b 222
50842bdc 223 ret = native_bt.stream_class_set_event_context_type(self._ptr,
b4f45851
SM
224 event_context_field_class_ptr)
225 utils._handle_ret(ret, "cannot set stream class object's event context field class")
81447b5b 226
811644b8 227 def __call__(self, name=None, id=None):
81447b5b
PP
228 if name is not None:
229 utils._check_str(name)
230
811644b8 231 if id is None:
50842bdc 232 stream_ptr = native_bt.stream_create(self._ptr, name)
811644b8 233 else:
50842bdc 234 stream_ptr = native_bt.stream_create_with_id(self._ptr, name, id)
81447b5b
PP
235
236 if stream_ptr is None:
237 raise bt2.CreationError('cannot create stream object')
238
239 return bt2.stream._create_from_ptr(stream_ptr)
240
241 def __eq__(self, other):
242 if type(other) is not type(self):
243 return False
244
245 if self.addr == other.addr:
246 return True
247
248 self_event_classes = list(self.values())
249 other_event_classes = list(other.values())
250 self_props = (
251 self_event_classes,
252 self.name,
253 self.id,
b4f45851
SM
254 self.packet_context_field_class,
255 self.event_header_field_class,
256 self.event_context_field_class,
811644b8 257 self.clock,
81447b5b
PP
258 )
259 other_props = (
260 other_event_classes,
261 other.name,
262 other.id,
b4f45851
SM
263 other.packet_context_field_class,
264 other.event_header_field_class,
265 other.event_context_field_class,
811644b8 266 other.clock,
81447b5b 267 )
811644b8 268
81447b5b
PP
269 return self_props == other_props
270
b4f45851 271 def _copy(self, fc_copy_func, ev_copy_func):
81447b5b 272 cpy = StreamClass()
811644b8
PP
273
274 if self.id is not None:
275 cpy.id = self.id
276
277 if self.name is not None:
278 cpy.name = self.name
279
280 if self.clock is not None:
281 cpy.clock = self.clock
282
b4f45851
SM
283 cpy.packet_context_field_class = fc_copy_func(self.packet_context_field_class)
284 cpy.event_header_field_class = fc_copy_func(self.event_header_field_class)
285 cpy.event_context_field_class = fc_copy_func(self.event_context_field_class)
81447b5b
PP
286
287 for event_class in self.values():
288 cpy.add_event_class(ev_copy_func(event_class))
289
290 return cpy
291
292 def __copy__(self):
b4f45851 293 return self._copy(lambda fc: fc, copy.copy)
81447b5b
PP
294
295 def __deepcopy__(self, memo):
296 cpy = self._copy(copy.deepcopy, copy.deepcopy)
297 memo[id(self)] = cpy
298 return cpy
This page took 0.048711 seconds and 4 git commands to generate.