-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdbus_client.py
153 lines (125 loc) · 4.61 KB
/
dbus_client.py
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
# SPDX-License-Identifier: GPL-2.0-or-later
# based on rauc-hawkbit/dbus_client.py from github: https://github.com/rauc/rauc-hawkbit/blob/master/rauc_hawkbit/dbus_client.py
import asyncio
from asyncio import QueueEmpty
from gi.repository import Gio, GLib
import traceback
from log import MeticulousLogger
from named_thread import NamedThread
def run_glib_loop():
loop = GLib.MainLoop()
loop.run()
class DBUSException(Exception):
pass
class AsyncDBUSClient(object):
def __init__(self):
self.thread = None
self.logger = MeticulousLogger.getLogger(__name__)
self.dbus_events = asyncio.Queue()
self.loop = asyncio.new_event_loop()
self.signal_subscriptions = []
self.signal_callbacks = {}
self.property_callbacks = {}
self.system_bus = Gio.bus_get_sync(Gio.BusType.SYSTEM, None)
self.new_signal_subscription(
"org.freedesktop.DBus.Properties",
"PropertiesChanged",
self.property_changed_callback,
)
def start(self):
self.thread = NamedThread(name="AsyncDbus thread", target=self.run_loop)
self.thread.start()
def run_loop(self):
try:
asyncio.set_event_loop(self.loop)
self.loop.create_task(asyncio.to_thread(run_glib_loop))
self.loop.create_task(self.handle_dbus_event())
self.loop.run_forever()
except Exception:
self.logger.error("Dbus monitor loop failed")
def __del__(self):
self.cleanup_dbus()
def cleanup_dbus(self):
"""Unsubscribe on deletion."""
for subscription in self.signal_subscriptions:
self.system_bus.signal_unsubscribe(subscription)
def on_dbus_event(self, *args):
"""Generic sync callback for all DBUS events."""
self.dbus_events.put_nowait(args)
async def handle_dbus_event(self):
"""
Retrieves DBUS events from queue and calls corresponding async
callback.
"""
while True:
try:
event = self.dbus_events.get_nowait()
interface = event[3]
signal = event[4]
await self.signal_callbacks[(interface, signal)](*event)
except QueueEmpty:
await asyncio.sleep(0.5)
pass
except Exception as e:
self.logger.info(f"handling dbus events exception: [{e}]")
traceback.print_exc()
self.logger.error(str(e))
def new_proxy(self, interface, object_path):
"""Returns a new managed proxy."""
# assume name is interface without last part
name = ".".join(interface.split(".")[:-1])
proxy = Gio.DBusProxy.new_sync(
self.system_bus, 0, None, name, object_path, interface, None
)
# FIXME: check for methods
if len(proxy.get_cached_property_names()) == 0:
self.logger.warning("Proxy {} contains no properties")
return proxy
def new_signal_subscription(self, interface, signal, callback):
"""Add new signal subscription."""
signal_subscription = self.system_bus.signal_subscribe(
None, interface, signal, None, None, 0, self.on_dbus_event
)
self.signal_callbacks[(interface, signal)] = callback
self.signal_subscriptions.append(signal_subscription)
def new_property_subscription(self, interface, property_, callback):
"""Add new property subscription."""
self.property_callbacks[(interface, property_)] = callback
async def property_changed_callback(
self,
connection,
sender_name,
object_path,
interface_name,
signal_name,
parameters,
):
"""
Callback for changed properties. Calls callbacks for changed
properties as if they were signals.
"""
property_interface = parameters[0]
changed_properties = {
k: v
for k, v in parameters[1].items()
if (property_interface, k) in self.property_callbacks
}
for attribute, status in changed_properties.items():
await self.property_callbacks[(property_interface, attribute)](
connection,
sender_name,
object_path,
property_interface,
attribute,
status,
)
async def just_print(
self,
connection,
sender_name,
object_path,
property_interface,
attribute,
status,
):
self.logger.info(f"property: [{attribute}], is [{status}]")