Apply black code formatter on all Python code
[babeltrace.git] / src / bindings / python / bt2 / bt2 / message_iterator.py
CommitLineData
81447b5b
PP
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
23from bt2 import native_bt, object, utils
5602ef81 24import bt2.message
81447b5b
PP
25import collections.abc
26import bt2.component
27import bt2
28
29
5602ef81 30class _MessageIterator(collections.abc.Iterator):
81447b5b 31 def __next__(self):
811644b8 32 raise NotImplementedError
81447b5b
PP
33
34
78288f58 35class _GenericMessageIterator(object._SharedObject, _MessageIterator):
2ae9f48c 36 def __init__(self, ptr):
cfbd7cf3
FD
37 self._current_msgs = []
38 self._at = 0
39 super().__init__(ptr)
811644b8
PP
40
41 def __next__(self):
2ae9f48c
SM
42 if len(self._current_msgs) == self._at:
43 status, msgs = self._get_msg_range(self._ptr)
cfbd7cf3
FD
44 utils._handle_func_status(
45 status, 'unexpected error: cannot advance the message iterator'
46 )
2ae9f48c
SM
47 self._current_msgs = msgs
48 self._at = 0
49
50 msg_ptr = self._current_msgs[self._at]
51 self._at += 1
52
53 return bt2.message._create_from_ptr(msg_ptr)
81447b5b 54
f00b8d40
SM
55 @property
56 def can_seek_beginning(self):
57 res = self._can_seek_beginning(self._ptr)
58 return res != 0
59
60 def seek_beginning(self):
61 # Forget about buffered messages, they won't be valid after seeking..
62 self._current_msgs.clear()
63 self._at = 0
64
65 status = self._seek_beginning(self._ptr)
cfbd7cf3 66 utils._handle_func_status(status, 'cannot seek message iterator beginning')
f00b8d40 67
811644b8 68
c5f330cd 69# This is created when a component wants to iterate on one of its input ports.
5f25509b 70class _UserComponentInputPortMessageIterator(_GenericMessageIterator):
d24d5663 71 _get_msg_range = staticmethod(native_bt.bt2_self_component_port_input_get_msg_range)
cfbd7cf3
FD
72 _get_ref = staticmethod(
73 native_bt.self_component_port_input_message_iterator_get_ref
74 )
75 _put_ref = staticmethod(
76 native_bt.self_component_port_input_message_iterator_put_ref
77 )
78 _can_seek_beginning = staticmethod(
79 native_bt.self_component_port_input_message_iterator_can_seek_beginning
80 )
81 _seek_beginning = staticmethod(
82 native_bt.self_component_port_input_message_iterator_seek_beginning
83 )
90157d89
PP
84
85
c5f330cd
SM
86# This is created when the user wants to iterate on a component's output port,
87# from outside the graph.
5602ef81 88class _OutputPortMessageIterator(_GenericMessageIterator):
d24d5663 89 _get_msg_range = staticmethod(native_bt.bt2_port_output_get_msg_range)
2ae9f48c
SM
90 _get_ref = staticmethod(native_bt.port_output_message_iterator_get_ref)
91 _put_ref = staticmethod(native_bt.port_output_message_iterator_put_ref)
cfbd7cf3
FD
92 _can_seek_beginning = staticmethod(
93 native_bt.port_output_message_iterator_can_seek_beginning
94 )
95 _seek_beginning = staticmethod(
96 native_bt.port_output_message_iterator_seek_beginning
97 )
dc43190b
PP
98
99
c5f330cd
SM
100# This is extended by the user to implement component classes in Python. It
101# is created for a given output port when an input port message iterator is
102# created on the input port on the other side of the connection. It is also
103# created when an output port message iterator is created on this output port.
104#
105# Its purpose is to feed the messages that should go out through this output
106# port.
5602ef81 107class _UserMessageIterator(_MessageIterator):
81447b5b 108 def __new__(cls, ptr):
811644b8 109 # User iterator objects are always created by the native side,
81447b5b
PP
110 # that is, never instantiated directly by Python code.
111 #
811644b8
PP
112 # The native code calls this, then manually calls
113 # self.__init__() without the `ptr` argument. The user has
114 # access to self.component during this call, thanks to this
85906b6b 115 # self._bt_ptr argument being set.
81447b5b 116 #
85906b6b 117 # self._bt_ptr is NOT owned by this object here, so there's nothing
81447b5b
PP
118 # to do in __del__().
119 self = super().__new__(cls)
85906b6b 120 self._bt_ptr = ptr
81447b5b
PP
121 return self
122
85906b6b 123 def _bt_init_from_native(self, self_output_port_ptr):
c5f330cd 124 self_output_port = bt2.port._create_self_from_ptr_and_get_ref(
cfbd7cf3
FD
125 self_output_port_ptr, native_bt.PORT_TYPE_OUTPUT
126 )
c5f330cd
SM
127 self.__init__(self_output_port)
128
129 def __init__(self, output_port):
81447b5b
PP
130 pass
131
132 @property
811644b8 133 def _component(self):
85906b6b 134 return native_bt.bt2_get_user_component_from_user_msg_iter(self._bt_ptr)
81447b5b
PP
135
136 @property
137 def addr(self):
85906b6b 138 return int(self._bt_ptr)
81447b5b 139
811644b8 140 def _finalize(self):
81447b5b
PP
141 pass
142
811644b8
PP
143 def __next__(self):
144 raise bt2.Stop
145
85906b6b 146 def _bt_next_from_native(self):
811644b8
PP
147 # this can raise anything: it's catched by the native part
148 try:
5602ef81 149 msg = next(self)
811644b8
PP
150 except StopIteration:
151 raise bt2.Stop
152 except:
153 raise
154
5602ef81 155 utils._check_type(msg, bt2.message._Message)
81447b5b 156
d79a8353
SM
157 # The reference we return will be given to the message array.
158 # However, the `msg` Python object may stay alive, if the user has kept
159 # a reference to it. Acquire a new reference to account for that.
160 msg._get_ref(msg._ptr)
161 return int(msg._ptr)
2ae9f48c 162
f00b8d40 163 @property
85906b6b 164 def _bt_can_seek_beginning_from_native(self):
f00b8d40
SM
165 # Here, we mimic the behavior of the C API:
166 #
167 # - If the iterator has a _can_seek_beginning attribute, read it and use
168 # that result.
169 # - Otherwise, the presence or absence of a `_seek_beginning`
170 # method indicates whether the iterator can seek beginning.
171 if hasattr(self, '_can_seek_beginning'):
172 can_seek_beginning = self._can_seek_beginning
173 utils._check_bool(can_seek_beginning)
174 return can_seek_beginning
175 else:
176 return hasattr(self, '_seek_beginning')
177
85906b6b 178 def _bt_seek_beginning_from_native(self):
f00b8d40
SM
179 self._seek_beginning()
180
cfbd7cf3
FD
181 def _create_event_message(
182 self, event_class, parent=None, default_clock_snapshot=None
183 ):
2c6f8520 184 utils._check_type(event_class, bt2.event_class._EventClass)
26fc5aed
PP
185
186 if event_class.stream_class.supports_packets:
187 utils._check_type(parent, bt2.packet._Packet)
188 else:
189 utils._check_type(parent, bt2.stream._Stream)
2ae9f48c
SM
190
191 if default_clock_snapshot is not None:
c6af194f 192 if event_class.stream_class.default_clock_class is None:
cfbd7cf3
FD
193 raise ValueError(
194 'event messages in this stream must not have a default clock snapshot'
195 )
c6af194f 196
2ae9f48c 197 utils._check_uint64(default_clock_snapshot)
26fc5aed
PP
198
199 if event_class.stream_class.supports_packets:
200 ptr = native_bt.message_event_create_with_packet_and_default_clock_snapshot(
cfbd7cf3
FD
201 self._bt_ptr, event_class._ptr, parent._ptr, default_clock_snapshot
202 )
26fc5aed
PP
203 else:
204 ptr = native_bt.message_event_create_with_default_clock_snapshot(
cfbd7cf3
FD
205 self._bt_ptr, event_class._ptr, parent._ptr, default_clock_snapshot
206 )
2ae9f48c 207 else:
c6af194f 208 if event_class.stream_class.default_clock_class is not None:
cfbd7cf3
FD
209 raise ValueError(
210 'event messages in this stream must have a default clock snapshot'
211 )
c6af194f 212
26fc5aed
PP
213 if event_class.stream_class.supports_packets:
214 ptr = native_bt.message_event_create_with_packet(
cfbd7cf3
FD
215 self._bt_ptr, event_class._ptr, parent._ptr
216 )
26fc5aed
PP
217 else:
218 ptr = native_bt.message_event_create(
cfbd7cf3
FD
219 self._bt_ptr, event_class._ptr, parent._ptr
220 )
2ae9f48c
SM
221
222 if ptr is None:
223 raise bt2.CreationError('cannot create event message object')
224
225 return bt2.message._EventMessage(ptr)
226
9ec609ec
SM
227 def _create_message_iterator_inactivity_message(self, clock_class, clock_snapshot):
228 utils._check_type(clock_class, bt2.clock_class._ClockClass)
229 ptr = native_bt.message_message_iterator_inactivity_create(
cfbd7cf3
FD
230 self._bt_ptr, clock_class._ptr, clock_snapshot
231 )
9ec609ec
SM
232
233 if ptr is None:
234 raise bt2.CreationError('cannot create inactivity message object')
235
236 return bt2.message._MessageIteratorInactivityMessage(ptr)
237
188edac1 238 def _create_stream_beginning_message(self, stream, default_clock_snapshot=None):
2ae9f48c
SM
239 utils._check_type(stream, bt2.stream._Stream)
240
85906b6b 241 ptr = native_bt.message_stream_beginning_create(self._bt_ptr, stream._ptr)
2ae9f48c
SM
242 if ptr is None:
243 raise bt2.CreationError('cannot create stream beginning message object')
244
188edac1 245 msg = bt2.message._StreamBeginningMessage(ptr)
9ec609ec 246
188edac1
SM
247 if default_clock_snapshot is not None:
248 msg._default_clock_snapshot = default_clock_snapshot
9ec609ec 249
9ec609ec
SM
250 return msg
251
188edac1 252 def _create_stream_end_message(self, stream, default_clock_snapshot=None):
5f25509b
SM
253 utils._check_type(stream, bt2.stream._Stream)
254
85906b6b 255 ptr = native_bt.message_stream_end_create(self._bt_ptr, stream._ptr)
5f25509b
SM
256 if ptr is None:
257 raise bt2.CreationError('cannot create stream end message object')
258
188edac1
SM
259 msg = bt2.message._StreamEndMessage(ptr)
260
261 if default_clock_snapshot is not None:
262 msg._default_clock_snapshot = default_clock_snapshot
263
264 return msg
5f25509b 265
2ae9f48c
SM
266 def _create_packet_beginning_message(self, packet, default_clock_snapshot=None):
267 utils._check_type(packet, bt2.packet._Packet)
268
e8ac1aae 269 if packet.stream.cls.packets_have_beginning_default_clock_snapshot:
2ae9f48c 270 if default_clock_snapshot is None:
cfbd7cf3
FD
271 raise ValueError(
272 "packet beginning messages in this stream must have a default clock snapshot"
273 )
2ae9f48c
SM
274
275 utils._check_uint64(default_clock_snapshot)
276 ptr = native_bt.message_packet_beginning_create_with_default_clock_snapshot(
cfbd7cf3
FD
277 self._bt_ptr, packet._ptr, default_clock_snapshot
278 )
2ae9f48c
SM
279 else:
280 if default_clock_snapshot is not None:
cfbd7cf3
FD
281 raise ValueError(
282 "packet beginning messages in this stream must not have a default clock snapshot"
283 )
2ae9f48c 284
85906b6b 285 ptr = native_bt.message_packet_beginning_create(self._bt_ptr, packet._ptr)
2ae9f48c
SM
286
287 if ptr is None:
288 raise bt2.CreationError('cannot create packet beginning message object')
289
290 return bt2.message._PacketBeginningMessage(ptr)
5f25509b
SM
291
292 def _create_packet_end_message(self, packet, default_clock_snapshot=None):
293 utils._check_type(packet, bt2.packet._Packet)
5f25509b 294
e8ac1aae 295 if packet.stream.cls.packets_have_end_default_clock_snapshot:
9ec609ec 296 if default_clock_snapshot is None:
cfbd7cf3
FD
297 raise ValueError(
298 "packet end messages in this stream must have a default clock snapshot"
299 )
9ec609ec 300
5f25509b
SM
301 utils._check_uint64(default_clock_snapshot)
302 ptr = native_bt.message_packet_end_create_with_default_clock_snapshot(
cfbd7cf3
FD
303 self._bt_ptr, packet._ptr, default_clock_snapshot
304 )
5f25509b 305 else:
9ec609ec 306 if default_clock_snapshot is not None:
cfbd7cf3
FD
307 raise ValueError(
308 "packet end messages in this stream must not have a default clock snapshot"
309 )
9ec609ec 310
85906b6b 311 ptr = native_bt.message_packet_end_create(self._bt_ptr, packet._ptr)
5f25509b
SM
312
313 if ptr is None:
314 raise bt2.CreationError('cannot create packet end message object')
315
316 return bt2.message._PacketEndMessage(ptr)
9ec609ec 317
cfbd7cf3
FD
318 def _create_discarded_events_message(
319 self, stream, count=None, beg_clock_snapshot=None, end_clock_snapshot=None
320 ):
9ec609ec
SM
321 utils._check_type(stream, bt2.stream._Stream)
322
e8ac1aae 323 if not stream.cls.supports_discarded_events:
2e90378a
PP
324 raise ValueError('stream class does not support discarded events')
325
e8ac1aae 326 if stream.cls.discarded_events_have_default_clock_snapshots:
2e90378a 327 if beg_clock_snapshot is None or end_clock_snapshot is None:
cfbd7cf3
FD
328 raise ValueError(
329 'discarded events have default clock snapshots for this stream class'
330 )
2e90378a 331
9ec609ec
SM
332 utils._check_uint64(beg_clock_snapshot)
333 utils._check_uint64(end_clock_snapshot)
334 ptr = native_bt.message_discarded_events_create_with_default_clock_snapshots(
cfbd7cf3
FD
335 self._bt_ptr, stream._ptr, beg_clock_snapshot, end_clock_snapshot
336 )
9ec609ec 337 else:
2e90378a 338 if beg_clock_snapshot is not None or end_clock_snapshot is not None:
cfbd7cf3
FD
339 raise ValueError(
340 'discarded events have no default clock snapshots for this stream class'
341 )
2e90378a 342
cfbd7cf3 343 ptr = native_bt.message_discarded_events_create(self._bt_ptr, stream._ptr)
9ec609ec
SM
344
345 if ptr is None:
346 raise bt2.CreationError('cannot discarded events message object')
347
348 msg = bt2.message._DiscardedEventsMessage(ptr)
349
350 if count is not None:
351 msg._count = count
352
353 return msg
354
cfbd7cf3
FD
355 def _create_discarded_packets_message(
356 self, stream, count=None, beg_clock_snapshot=None, end_clock_snapshot=None
357 ):
9ec609ec
SM
358 utils._check_type(stream, bt2.stream._Stream)
359
e8ac1aae 360 if not stream.cls.supports_discarded_packets:
2e90378a
PP
361 raise ValueError('stream class does not support discarded packets')
362
e8ac1aae 363 if stream.cls.discarded_packets_have_default_clock_snapshots:
2e90378a 364 if beg_clock_snapshot is None or end_clock_snapshot is None:
cfbd7cf3
FD
365 raise ValueError(
366 'discarded packets have default clock snapshots for this stream class'
367 )
2e90378a 368
9ec609ec
SM
369 utils._check_uint64(beg_clock_snapshot)
370 utils._check_uint64(end_clock_snapshot)
371 ptr = native_bt.message_discarded_packets_create_with_default_clock_snapshots(
cfbd7cf3
FD
372 self._bt_ptr, stream._ptr, beg_clock_snapshot, end_clock_snapshot
373 )
9ec609ec 374 else:
2e90378a 375 if beg_clock_snapshot is not None or end_clock_snapshot is not None:
cfbd7cf3
FD
376 raise ValueError(
377 'discarded packets have no default clock snapshots for this stream class'
378 )
2e90378a 379
cfbd7cf3 380 ptr = native_bt.message_discarded_packets_create(self._bt_ptr, stream._ptr)
9ec609ec
SM
381
382 if ptr is None:
383 raise bt2.CreationError('cannot discarded packets message object')
384
385 msg = bt2.message._DiscardedPacketsMessage(ptr)
386
387 if count is not None:
388 msg._count = count
389
390 return msg
This page took 0.06151 seconds and 4 git commands to generate.