-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathdbus_proxy_async_signal.py
More file actions
316 lines (256 loc) · 9.13 KB
/
dbus_proxy_async_signal.py
File metadata and controls
316 lines (256 loc) · 9.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
# SPDX-License-Identifier: LGPL-2.1-or-later
# Copyright (C) 2020-2023 igo95862
# This file is part of python-sdbus
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
from __future__ import annotations
from asyncio import Queue
from collections.abc import AsyncIterable, AsyncIterator
from contextlib import closing
from types import FunctionType
from typing import TYPE_CHECKING, Generic, TypeVar, cast, overload
from weakref import WeakSet
from .dbus_common_elements import (
DbusBoundAsync,
DbusLocalObjectMeta,
DbusMemberAsync,
DbusRemoteObjectMeta,
DbusSignalCommon,
)
from .default_bus import get_default_bus
if TYPE_CHECKING:
from collections.abc import Callable, Sequence
from typing import Any, Optional, Union
from .dbus_proxy_async_interface_base import DbusInterfaceBaseAsync
from .sd_bus_internals import SdBus, SdBusMessage, SdBusSlot
T = TypeVar('T')
class DbusSignalAsync(DbusMemberAsync, DbusSignalCommon, Generic[T]):
def __init__(
self,
signal_name: Optional[str],
signal_signature: str,
args_names: Sequence[str],
flags: int,
original_method: FunctionType
):
super().__init__(
signal_name,
signal_signature,
args_names,
flags,
original_method,
)
self.local_callbacks: WeakSet[Callable[[T], Any]] = WeakSet()
@overload
def __get__(
self,
obj: None,
obj_class: type[DbusInterfaceBaseAsync],
) -> DbusSignalAsync[T]:
...
@overload
def __get__(
self,
obj: DbusInterfaceBaseAsync,
obj_class: type[DbusInterfaceBaseAsync],
) -> DbusBoundSignalAsyncBase[T]:
...
def __get__(
self,
obj: Optional[DbusInterfaceBaseAsync],
obj_class: Optional[type[DbusInterfaceBaseAsync]] = None,
) -> Union[DbusBoundSignalAsyncBase[T], DbusSignalAsync[T]]:
if obj is not None:
dbus_meta = obj._dbus
if isinstance(dbus_meta, DbusRemoteObjectMeta):
return DbusProxySignalAsync(self, dbus_meta)
else:
return DbusLocalSignalAsync(self, dbus_meta)
else:
return self
async def catch_anywhere(
self,
service_name: str,
bus: Optional[SdBus] = None,
) -> AsyncIterable[tuple[str, T]]:
if bus is None:
bus = get_default_bus()
message_queue: Queue[SdBusMessage] = Queue()
match_slot = await bus.match_signal_async(
service_name,
None,
self.interface_name,
self.signal_name,
message_queue.put_nowait,
)
with closing(match_slot):
while True:
next_signal_message = await message_queue.get()
signal_path = next_signal_message.path
assert signal_path is not None
yield (
signal_path,
cast(T, next_signal_message.get_contents())
)
class DbusBoundSignalAsyncBase(DbusBoundAsync, AsyncIterable[T], Generic[T]):
async def catch(self) -> AsyncIterator[T]:
raise NotImplementedError
yield cast(T, None)
__aiter__ = catch
async def catch_anywhere(
self,
service_name: Optional[str] = None,
bus: Optional[SdBus] = None,
) -> AsyncIterable[tuple[str, T]]:
raise NotImplementedError
yield "", cast(T, None)
def emit(self, args: T) -> None:
raise NotImplementedError
class DbusProxySignalAsync(DbusBoundSignalAsyncBase[T]):
def __init__(
self,
dbus_signal: DbusSignalAsync[T],
proxy_meta: DbusRemoteObjectMeta,
):
self.dbus_signal = dbus_signal
self.proxy_meta = proxy_meta
self.__doc__ = dbus_signal.__doc__
async def _register_match_slot(
self,
bus: SdBus,
callback: Callable[[SdBusMessage], Any],
) -> SdBusSlot:
return await bus.match_signal_async(
self.proxy_meta.service_name,
self.proxy_meta.object_path,
self.dbus_signal.interface_name,
self.dbus_signal.signal_name,
callback,
)
async def catch(self) -> AsyncIterator[T]:
message_queue: Queue[SdBusMessage] = Queue()
match_slot = await self._register_match_slot(
self.proxy_meta.attached_bus,
message_queue.put_nowait,
)
with closing(match_slot):
while True:
next_signal_message = await message_queue.get()
yield cast(T, next_signal_message.get_contents())
__aiter__ = catch
async def catch_anywhere(
self,
service_name: Optional[str] = None,
bus: Optional[SdBus] = None,
) -> AsyncIterable[tuple[str, T]]:
if bus is None:
bus = self.proxy_meta.attached_bus
if service_name is None:
service_name = self.proxy_meta.service_name
message_queue: Queue[SdBusMessage] = Queue()
match_slot = await bus.match_signal_async(
service_name,
None,
self.dbus_signal.interface_name,
self.dbus_signal.signal_name,
message_queue.put_nowait,
)
with closing(match_slot):
while True:
next_signal_message = await message_queue.get()
signal_path = next_signal_message.path
assert signal_path is not None
yield (
signal_path,
cast(T, next_signal_message.get_contents())
)
def emit(self, args: T) -> None:
raise RuntimeError("Cannot emit signal from D-Bus proxy.")
class DbusLocalSignalAsync(DbusBoundSignalAsyncBase[T]):
def __init__(
self,
dbus_signal: DbusSignalAsync[T],
local_meta: DbusLocalObjectMeta,
):
self.dbus_signal = dbus_signal
self.local_meta = local_meta
self.__doc__ = dbus_signal.__doc__
async def catch(self) -> AsyncIterator[T]:
new_queue: Queue[T] = Queue()
signal_callbacks = self.dbus_signal.local_callbacks
try:
put_method = new_queue.put_nowait
signal_callbacks.add(put_method)
while True:
next_data = await new_queue.get()
yield next_data
finally:
signal_callbacks.remove(put_method)
__aiter__ = catch
async def catch_anywhere(
self,
service_name: Optional[str] = None,
bus: Optional[SdBus] = None,
) -> AsyncIterable[tuple[str, T]]:
raise NotImplementedError("TODO")
yield
def _emit_dbus_signal(self, args: T) -> None:
attached_bus = self.local_meta.attached_bus
if attached_bus is None:
return
serving_object_path = self.local_meta.serving_object_path
if serving_object_path is None:
return
signal_message = attached_bus.new_signal_message(
serving_object_path,
self.dbus_signal.interface_name,
self.dbus_signal.signal_name,
)
if ((not self.dbus_signal.signal_signature.startswith('('))
and
isinstance(args, tuple)):
signal_message.append_data(
self.dbus_signal.signal_signature, *args)
elif self.dbus_signal.signal_signature == '' and args is None:
...
else:
signal_message.append_data(
self.dbus_signal.signal_signature, args)
signal_message.send()
def emit(self, args: T) -> None:
self._emit_dbus_signal(args)
for callback in self.dbus_signal.local_callbacks:
callback(args)
def dbus_signal_async(
signal_signature: str = '',
signal_args_names: Sequence[str] = (),
flags: int = 0,
signal_name: Optional[str] = None,
) -> Callable[
[Callable[[Any], T]],
DbusSignalAsync[T]
]:
assert not isinstance(signal_signature, FunctionType), (
"Passed function to decorator directly. "
"Did you forget () round brackets?"
)
def signal_decorator(
pseudo_function: Callable[[Any], T]) -> DbusSignalAsync[T]:
assert isinstance(pseudo_function, FunctionType)
return DbusSignalAsync(
signal_name,
signal_signature,
signal_args_names,
flags,
pseudo_function,
)
return signal_decorator