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