-
Notifications
You must be signed in to change notification settings - Fork 52
/
upower_power_profiles_daemon.py
75 lines (61 loc) · 2.66 KB
/
upower_power_profiles_daemon.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
"""power-profiles-daemon >= 0.20 mock template
This creates the expected methods and properties of the main
org.freedesktop.UPower.PowerProfiles object.
This provides the D-Bus API as of version 0.20.
"""
# This program 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 3 of the License, or (at your option) any
# later version. See http://www.gnu.org/copyleft/lgpl.html for the full text
# of the license.
__author__ = "Bastien Nocera"
__copyright__ = """
(c) 2021, Red Hat Inc.
(c) 2017 - 2024 Martin Pitt <[email protected]>
"""
import dbus
BUS_NAME = "org.freedesktop.UPower.PowerProfiles"
MAIN_OBJ = "/org/freedesktop/UPower/PowerProfiles"
MAIN_IFACE = "org.freedesktop.UPower.PowerProfiles"
SYSTEM_BUS = True
def hold_profile(self, profile, reason, application_id):
self.cookie += 1
element = {"Profile": profile, "Reason": reason, "ApplicationId": application_id}
self.holds[self.cookie] = element
self.props[MAIN_IFACE]["ActiveProfileHolds"] = []
for value in self.holds.values():
self.props[MAIN_IFACE]["ActiveProfileHolds"].append(value)
return self.cookie
def release_profile(self, cookie):
self.holds.pop(cookie)
self.props[MAIN_IFACE]["ActiveProfileHolds"] = []
for value in self.holds.values():
self.props[MAIN_IFACE]["ActiveProfileHolds"].append(value)
if len(self.props[MAIN_IFACE]["ActiveProfileHolds"]) == 0:
self.props[MAIN_IFACE]["ActiveProfileHolds"] = dbus.Array([], signature="(aa{sv})")
def load(mock, parameters):
# Loaded!
mock.loaded = True
mock.cookie = 0
mock.hold_profile = hold_profile
mock.release_profile = release_profile
mock.holds = {}
props = {
"ActiveProfile": parameters.get("ActiveProfile", "balanced"),
"PerformanceDegraded": parameters.get("PerformanceDegraded", ""),
"Profiles": [
dbus.Dictionary({"Profile": "power-saver", "Driver": "dbusmock"}, signature="sv"),
dbus.Dictionary({"Profile": "balanced", "Driver": "dbusmock"}, signature="sv"),
dbus.Dictionary({"Profile": "performance", "Driver": "dbusmock"}, signature="sv"),
],
"Actions": dbus.Array([], signature="s"),
"ActiveProfileHolds": dbus.Array([], signature="(aa{sv})"),
}
mock.AddProperties(MAIN_IFACE, dbus.Dictionary(props, signature="sv"))
mock.AddMethods(
MAIN_IFACE,
[
("HoldProfile", "sss", "u", "ret = self.hold_profile(self, args[0], args[1], args[2])"),
("ReleaseProfile", "u", "", "self.release_profile(self, args[0])"),
],
)