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