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