summaryrefslogtreecommitdiff
path: root/lib/powerprofiles/power-profiles.vala
blob: 931fc04320936079289ad54735baba4e73d988e8 (plain)
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
namespace AstalPowerProfiles {
[DBus (name = "org.freedesktop.UPower.PowerProfiles")]
private interface IPowerProfiles : DBusProxy {
    public abstract string[] actions { owned get; }
    public abstract string active_profile { owned get; set; }
    public abstract HashTable<string, Variant>[] active_profile_holds { owned get; }
    public abstract string performance_degraded { owned get; }
    public abstract string performance_inhibited { owned get; }
    public abstract HashTable<string, Variant>[] profiles { owned get; }
    public abstract string version { owned get; }

    public signal void profile_released (uint cookie);

    public abstract uint hold_profile(string profile, string reason, string application_id) throws Error;
    public abstract void release_profile(uint cookie) throws Error;
}

public PowerProfiles get_default() {
    /** Gets the default singleton PowerProfiles instance. */
    return PowerProfiles.get_default();
}

/**
 * Client for  [[https://freedesktop-team.pages.debian.net/power-profiles-daemon/gdbus-org.freedesktop.UPower.PowerProfiles.html|PowerProfiles]].
 */
public class PowerProfiles : Object {
    private static PowerProfiles instance;

    /** Gets the default singleton PowerProfiles instance. */
    public static PowerProfiles get_default() {
        if (instance == null)
            instance = new PowerProfiles();

        return instance;
    }

    private IPowerProfiles proxy;

    construct {
        try {
            proxy = Bus.get_proxy_sync(
                GLib.BusType.SYSTEM,
                "org.freedesktop.UPower.PowerProfiles",
                "/org/freedesktop/UPower/PowerProfiles"
            );

            proxy.profile_released.connect((cookie) => profile_released(cookie));
            proxy.g_properties_changed.connect((props) => {
                var map = (HashTable<string, Variant>)props;
                foreach (var key in map.get_keys()) {
                    notify_property(kebab_case(key));
                    if (key == "ActiveProfile")
                        notify_property("icon-name");
                }
            });
        } catch (Error error){
            critical(error.message);
        }
    }

    /**
     * The type of the currently active profile.
     * It might change automatically if a profile is held,
     * using the [[email protected]_profile] method.
     */
    public string active_profile {
        owned get { return proxy.active_profile; }
        set { proxy.active_profile = value; }
    }

    /**
     * Return a named icon based [[email protected]:active_profile].
     */
    public string icon_name {
        owned get { return @"power-profile-$active_profile-symbolic"; }
    }

    /**
     * List of the "actions" implemented in the running daemon.
     * This can used to figure out whether particular functionality is available in the daemon.
     */
    public string[] actions {
        owned get { return proxy.actions.copy(); }
    }

    /**
     * List of dictionaries representing the current profile holds.
     */
    public Hold[] active_profile_holds {
        owned get {
            Hold[] holds = new Hold[proxy.active_profile_holds.length];
            for (var i = 0; i < proxy.active_profile_holds.length; ++i) {
                var hold = proxy.active_profile_holds[i];
                holds[i] = Hold() {
                    application_id = hold.get("ApplicationId").get_string(),
                    profile = hold.get("Profile").get_string(),
                    reason = hold.get("Reason").get_string()
                };
            }
            return holds;
        }
    }

    /**
     * This will be set if the performance power profile is running in degraded mode,
     * with the value being used to identify the reason for that degradation.
     * Possible values are:
     * - "lap-detected" (the computer is sitting on the user's lap)
     * - "high-operating-temperature" (the computer is close to overheating)
     * - "" (the empty string, if not performance is not degraded)
     */
    public string performance_degraded {
        owned get { return proxy.performance_degraded; }
    }

    private string? get_hashtable_string(HashTable<string, Variant> table, string key) {
        var v = table.get(key);
        return v == null ? null : v.get_string();
    }

    /**
     * List of each profile.
     */
    public Profile[] profiles {
        owned get {
            Profile[] profs = new Profile[proxy.profiles.length];
            for (var i = 0; i < proxy.profiles.length; ++i) {
                var prof = proxy.profiles[i];
                profs[i] = Profile() {
                    profile = get_hashtable_string(prof, "Profile"),
                    cpu_driver = get_hashtable_string(prof, "CpuDriver"),
                    platform_driver = get_hashtable_string(prof, "PlatformDriver"),
                    driver = get_hashtable_string(prof, "Driver"),
                };
            }
            return profs;
        }
    }

    /**
     * The version of the power-profiles-daemon software.
     */
    public string version {
        owned get { return proxy.version; }
    }

    /**
     * Emitted when the profile is released because
     * [[email protected]:active_profile] was manually changed.
     * This will only be emitted to the process that originally called
     * [[email protected]_profile].
     */
    public signal void profile_released (uint cookie);

    /**
     * This forces the passed profile (either 'power-saver' or 'performance')
     * to be activated until either the caller quits,
     * [[email protected]_profile] is called,
     * or the [[email protected]:active_profile] is changed by the user.
     * When conflicting profiles are requested to be held,
     * the 'power-saver' profile will be activated in preference to the 'performance' profile.
     * Those holds will be automatically cancelled if the user manually switches to another profile,
     * and the [[email protected]::profile_released] signal will be emitted.
     */
    public int hold_profile(string profile, string reason, string application_id) {
        try {
            return (int)proxy.hold_profile(profile, reason, application_id);
        } catch (Error error) {
            critical(error.message);
            return -1;
        }
    }

    /**
     * This removes the hold that was set on a profile.
     */
    public void release_profile(uint cookie) {
        try {
            proxy.release_profile(cookie);
        } catch (Error error) {
            critical(error.message);
        }
    }
}

public struct Profile {
    /**
     * Will be one of:
     * - "power-saver" (battery saving profile)
     * - "balanced" (the default profile)
     * - "performance" (a profile that does not care about noise or battery consumption)
     */
    public string profile;
    public string cpu_driver;
    public string platform_driver;
    /**
     * Identifies the power-profiles-daemon backend code used to implement the profile.
     */
    public string driver;
}

public struct Hold {
    public string application_id;
    public string profile;
    public string reason;
}

private string kebab_case(string pascal_case) {
    StringBuilder kebab_case = new StringBuilder();

    for (int i = 0; i < pascal_case.length; i++) {
        char c = pascal_case[i];

        if (c >= 'A' && c <= 'Z') {
            if (i != 0) {
                kebab_case.append_c('-');
            }

            kebab_case.append_c((char)(c + 32));
        } else {
            kebab_case.append_c(c);
        }
    }

    return kebab_case.str;
}
}