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