Test output port notification iterator
[babeltrace.git] / bindings / python / bt2 / bt2 / notification_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
24import bt2.notification
25import collections.abc
26import bt2.component
27import bt2
28
29
811644b8 30class _NotificationIterator(collections.abc.Iterator):
81447b5b 31 def _handle_status(self, status, gen_error_msg):
811644b8
PP
32 if status == native_bt.NOTIFICATION_ITERATOR_STATUS_CANCELED:
33 raise bt2.NotificationIteratorCanceled
34 elif status == native_bt.NOTIFICATION_ITERATOR_STATUS_AGAIN:
35 raise bt2.TryAgain
36 elif status == native_bt.NOTIFICATION_ITERATOR_STATUS_END:
81447b5b
PP
37 raise bt2.Stop
38 elif status == native_bt.NOTIFICATION_ITERATOR_STATUS_UNSUPPORTED:
39 raise bt2.UnsupportedFeature
40 elif status < 0:
41 raise bt2.Error(gen_error_msg)
42
81447b5b 43 def __next__(self):
811644b8 44 raise NotImplementedError
81447b5b
PP
45
46
811644b8 47class _GenericNotificationIterator(object._Object, _NotificationIterator):
811644b8
PP
48 def _get_notif(self):
49 notif_ptr = native_bt.notification_iterator_get_notification(self._ptr)
50 utils._handle_ptr(notif_ptr, "cannot get notification iterator object's current notification object")
51 return bt2.notification._create_from_ptr(notif_ptr)
52
53 def _next(self):
54 status = native_bt.notification_iterator_next(self._ptr)
55 self._handle_status(status,
56 'unexpected error: cannot advance the notification iterator')
57
58 def __next__(self):
59 self._next()
60 return self._get_notif()
81447b5b 61
811644b8 62
90157d89
PP
63class _PrivateConnectionNotificationIterator(_GenericNotificationIterator):
64 @property
65 def component(self):
66 comp_ptr = native_bt.private_connection_notification_iterator_get_component(self._ptr)
67 assert(comp_ptr)
68 return bt2.component._create_generic_component_from_ptr(comp_ptr)
69
70
811644b8 71class _UserNotificationIterator(_NotificationIterator):
81447b5b 72 def __new__(cls, ptr):
811644b8 73 # User iterator objects are always created by the native side,
81447b5b
PP
74 # that is, never instantiated directly by Python code.
75 #
811644b8
PP
76 # The native code calls this, then manually calls
77 # self.__init__() without the `ptr` argument. The user has
78 # access to self.component during this call, thanks to this
79 # self._ptr argument being set.
81447b5b
PP
80 #
81 # self._ptr is NOT owned by this object here, so there's nothing
82 # to do in __del__().
83 self = super().__new__(cls)
84 self._ptr = ptr
85 return self
86
87 def __init__(self):
88 pass
89
90 @property
811644b8
PP
91 def _component(self):
92 return native_bt.py3_get_user_component_from_user_notif_iter(self._ptr)
81447b5b
PP
93
94 @property
95 def addr(self):
96 return int(self._ptr)
97
811644b8 98 def _finalize(self):
81447b5b
PP
99 pass
100
811644b8
PP
101 def __next__(self):
102 raise bt2.Stop
103
104 def _next_from_native(self):
105 # this can raise anything: it's catched by the native part
106 try:
107 notif = next(self)
108 except StopIteration:
109 raise bt2.Stop
110 except:
111 raise
112
81447b5b
PP
113 utils._check_type(notif, bt2.notification._Notification)
114
811644b8
PP
115 # take a new reference for the native part
116 notif._get()
117 return int(notif._ptr)
This page took 0.033394 seconds and 4 git commands to generate.