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