forked from konkor/cpufreq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathextension.js
491 lines (440 loc) · 16 KB
/
extension.js
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
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
/*
* This is a part of CPUFreq Manager
* Copyright (C) 2016-2019 konkor <konkor.github.io>
*
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
const Lang = imports.lang;
const GLib = imports.gi.GLib;
const Gio = imports.gi.Gio;
const St = imports.gi.St;
const Main = imports.ui.main;
const PanelMenu = imports.ui.panelMenu;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension ();
const Logger = Me.imports.common.Logger;
const Convenience = Me.imports.convenience;
const EXTENSIONDIR = Me.dir.get_path ();
const APP_PATH = EXTENSIONDIR + "/cpufreq-application";
const SAVE_SETTINGS_KEY = 'save-settings';
const EXTENSION_MODE_KEY= 'extension-mode';
const SHOW_SPLASH_KEY = 'show-splash';
const PROFILE_ID_KEY = 'profile-id';
const MONITOR_KEY = 'monitor';
const EPROFILES_KEY = 'event-profiles';
const LABEL_KEY = 'label'
const LABEL_SHOW_KEY = 'label-show';
const UNITS_SHOW_KEY = 'units-show';
const FREQ_SHOW_KEY = 'frequency-show';
const GOVS_SHOW_KEY = 'governors-show';
const LOAD_SHOW_KEY = 'load-show';
const COLOR_SHOW_KEY = 'color-show';
const COLOR_SHOW_CUSTOM_KEY = 'color-show-custom';
const COLOR_SHOW_CUSTOM_NORMAL_KEY = 'color-show-custom-normal';
const COLOR_SHOW_CUSTOM_WARNING_KEY = 'color-show-custom-warning';
const COLOR_SHOW_CUSTOM_CRITICAL_KEY = 'color-show-custom-critical';
let color_show = false;
let color_show_custom = false;
let color_show_default_normal = ''; //'#33d552';
let color_show_default_warning = 'orange';
let color_show_default_critical = 'red';
let color_show_custom_normal = '#ebebeb';
let color_show_custom_warning = '#ebebeb';
let color_show_custom_critical = '#ff0000';
//const SETTINGS_ID = 'org.gnome.shell.extensions.cpufreq';
let event = 0;
let event_style = 0;
let monitor_event = 0;
let settingsID, powerID, scheduleID;
let save = false;
let extmode = true;
let splash = true;
let label_text = "";
let label_show = false;
let units_show = true;
let frequency_show = true;
let governor_show = false;
let load_show = false;
let title_text = "\u26A0";
let title_style = "";
let monitor_timeout = 500;
let eprofiles = [
{percent:0, event:0, guid:""},
{percent:100, event:1, guid:""}
];
let first_boot = true;
let guid_battery = "";
const UP_BUS_NAME = 'org.freedesktop.UPower';
const UP_OBJECT_PATH = '/org/freedesktop/UPower/devices/DisplayDevice';
const DisplayDeviceInterface = '<node> \
<interface name="org.freedesktop.UPower.Device"> \
<property name="Type" type="u" access="read"/> \
<property name="State" type="u" access="read"/> \
<property name="Percentage" type="d" access="read"/> \
<property name="TimeToEmpty" type="x" access="read"/> \
<property name="TimeToFull" type="x" access="read"/> \
<property name="IsPresent" type="b" access="read"/> \
<property name="IconName" type="s" access="read"/> \
</interface> \
</node>';
const PowerManagerProxy = Gio.DBusProxy.makeProxyWrapper(DisplayDeviceInterface);
const BUS_NAME = 'org.konkor.cpufreq.service';
const OBJECT_PATH = '/org/konkor/cpufreq/service';
const CpufreqServiceIface = '<node> \
<interface name="org.konkor.cpufreq.service"> \
<property name="Frequency" type="t" access="read"/> \
<signal name="MonitorEvent"> \
<arg name="metrics" type="s"/> \
</signal> \
<signal name="LoadingEvent"> \
<arg name="loading" type="t"/> \
</signal> \
<signal name="StyleChanged"> \
<arg name="style" type="s"/> \
</signal> \
</interface> \
</node>';
const CpufreqServiceProxy = Gio.DBusProxy.makeProxyWrapper (CpufreqServiceIface);
const FrequencyIndicator = new Lang.Class({
Name: 'Cpufreq',
Extends: PanelMenu.Button,
_init: function () {
this.parent (0.0, "CPU Frequency Indicator", false);
this.settings = Convenience.getSettings();
this.on_settings (null, null);
this.statusLabel = new St.Label ({
text: title_text, y_expand: true, y_align: 2, style_class:'cpufreq-text'
});
this.statusLabel.style = title_style;
let _box = new St.BoxLayout();
_box.add_actor (this.statusLabel);
this.actor.add_actor (_box);
this.actor.connect ('button-press-event', () => {
var args = extmode ? "--extension" : "";
if (splash)
if (!this.app_running) this.show_splash ();
if (!guid_battery || (guid_battery == this.guid)) this.launch_app (args);
else this.launch_app (args + " --no-save");
});
if (!monitor_timeout) this.statusLabel.set_text (this.get_title ());
this.add_event ();
//TODO: Workaround updating title
this.settings.set_boolean (SAVE_SETTINGS_KEY, !save);
this.settings.set_boolean (SAVE_SETTINGS_KEY, save);
if (settingsID) this.settings.disconnect (settingsID);
settingsID = this.settings.connect ("changed", this.on_settings.bind (this));
this.power = new PowerManagerProxy (Gio.DBus.system, UP_BUS_NAME, UP_OBJECT_PATH, (proxy, e) => {
if (e) {
error (e.message);
return;
}
this.on_power_state (proxy.State, proxy.Percentage);
if (save && first_boot && !guid_battery) this.launch_app ("-p user");
first_boot = false;
GLib.timeout_add (0, 8000, () => {
powerID = this.power.connect ('g-properties-changed', (o,a) => {
//a = a{sv}
this.on_power_state (this.power.State, this.power.Percentage);
});
});
});
},
on_settings: function (o, key) {
let s;
o = o || this.settings;
if (!key) {
this.guid = o.get_string (PROFILE_ID_KEY);
monitor_timeout = o.get_int (MONITOR_KEY);
save = o.get_boolean (SAVE_SETTINGS_KEY);
extmode = o.get_boolean (EXTENSION_MODE_KEY);
splash = o.get_boolean (SHOW_SPLASH_KEY);
label_text = o.get_string (LABEL_KEY);
label_show = o.get_boolean (LABEL_SHOW_KEY);
units_show = o.get_boolean (UNITS_SHOW_KEY);
frequency_show = o.get_boolean (FREQ_SHOW_KEY);
governor_show = o.get_boolean (GOVS_SHOW_KEY);
load_show = o.get_boolean (LOAD_SHOW_KEY);
color_show = o.get_boolean (COLOR_SHOW_KEY);
color_show_custom = o.get_boolean (COLOR_SHOW_CUSTOM_KEY);
color_show_custom_normal = o.get_string (COLOR_SHOW_CUSTOM_NORMAL_KEY);
color_show_custom_warning = o.get_string (COLOR_SHOW_CUSTOM_WARNING_KEY);
color_show_custom_critical = o.get_string (COLOR_SHOW_CUSTOM_CRITICAL_KEY);
s = o.get_string (EPROFILES_KEY);
if (s) eprofiles = JSON.parse (s);
}
if (key == MONITOR_KEY) {
monitor_timeout = o.get_int (MONITOR_KEY);
if (monitor_event) {
GLib.source_remove (monitor_event);
monitor_event = 0;
}
monitor_event = GLib.timeout_add (100, 1000, this.add_event.bind (this));
} else if (key == PROFILE_ID_KEY) {
this.guid = o.get_string (PROFILE_ID_KEY);
} else if (key == EPROFILES_KEY) {
s = o.get_string (EPROFILES_KEY);
if (s) eprofiles = JSON.parse (s);
} else if (key == EXTENSION_MODE_KEY) {
extmode = o.get_boolean (EXTENSION_MODE_KEY);
} else if (key == SHOW_SPLASH_KEY) {
splash = o.get_boolean (SHOW_SPLASH_KEY);
} else if (key == LABEL_KEY) {
label_text = o.get_string (LABEL_KEY);
} else if (key == LABEL_SHOW_KEY) {
label_show = o.get_boolean (LABEL_SHOW_KEY);
} else if (key == UNITS_SHOW_KEY) {
units_show = o.get_boolean (UNITS_SHOW_KEY);
} else if (key == FREQ_SHOW_KEY) {
frequency_show = o.get_boolean (FREQ_SHOW_KEY);
} else if (key == GOVS_SHOW_KEY) {
governor_show = o.get_boolean (GOVS_SHOW_KEY);
} else if (key == LOAD_SHOW_KEY) {
load_show = o.get_boolean (LOAD_SHOW_KEY);
}else if (key == COLOR_SHOW_KEY) {
color_show = o.get_boolean (COLOR_SHOW_KEY);
} else if (key == COLOR_SHOW_CUSTOM_KEY) {
color_show_custom = o.get_boolean (COLOR_SHOW_CUSTOM_KEY);
} else if (key == COLOR_SHOW_CUSTOM_NORMAL_KEY) {
color_show_custom_normal = o.get_string (COLOR_SHOW_CUSTOM_NORMAL_KEY);
} else if (key == COLOR_SHOW_CUSTOM_WARNING_KEY) {
color_show_custom_warning = o.get_string (COLOR_SHOW_CUSTOM_WARNING_KEY);
} else if (key == COLOR_SHOW_CUSTOM_CRITICAL_KEY) {
color_show_custom_critical = o.get_string (COLOR_SHOW_CUSTOM_CRITICAL_KEY);
}
//TODO: statusLabel
if ((key == LABEL_KEY) && !monitor_timeout) this.statusLabel.set_text (this.get_title ());
/*if ((key == "power-state") || (key == "power-percentage")) {
debug ("power-state changed...");
this.on_power_state (o.get_uint ("power-state"), o.get_double ("power-percentage"));
}*/
},
on_power_state: function (state, percentage) {
let id = eprofiles[1].guid;
//debug ("on_power_state: %s %s%%".format (this.power.State, this.power.Percentage));
debug ("on_power_state: %s %s%%".format (state, percentage));
if (!id) return;
if (state == 2) {
//on battery
if (id == guid_battery) return;
if (percentage < eprofiles[1].percent) {
this.schedule_profile ('--no-save -p ' + id);
guid_battery = id;
}
} else {
//restoring prev state
if (guid_battery == this.guid) return;
this.schedule_profile ('-p user');
guid_battery = this.guid;
}
},
unschedule_profile: function () {
GLib.source_remove (scheduleID);
scheduleID = 0;
},
schedule_profile: function (options) {
if (scheduleID) this.unschedule_profile ();
scheduleID = GLib.timeout_add (0, 5000, () => {
this.launch_app (options);
scheduleID = 0;
});
},
launch_app: function (options) {
let extra = "";
/*if (Logger.debug_lvl == 2) extra = " --debug";
else if (Logger.debug_lvl == 1) extra = " --verbose";*/
options = options || "";
info ("launch_app " + options + extra);
GLib.spawn_command_line_async ("%s %s".format (APP_PATH, options + extra));
},
get app_running () {
let res = GLib.spawn_command_line_sync ("ps -A");
let o, n;
if (res[0]) o = Convenience.byteArrayToString (res[1]).toString().split("\n");
for (let i = 0; i < o.length; i++) {
if (o[i].indexOf ("cpufreq-app") > -1) {
n = parseInt (o[i].trim().split(" ")[0]);
if (Number.isInteger(n) && n > 0) return n;
}
}
return 0;
},
get_title: function (text) {
if (!text) return title_text;
let metrics = JSON.parse (text), s = "", f = 0, units;
if (frequency_show) {
f = metrics.frequency_maximum;
if (f) if (f < 1000000) {
units = " \u3392";
s = (f / 1000).toFixed(0).toString ();
} else {
units = "\u3393";
s = (f / 1000000).toFixed(2).toString ();
}
if (units_show) s += units;
}
if (governor_show && metrics.governor) {
s += " " + this.get_governor_symbolyc (metrics.governor);
}
if (load_show && Number.isInteger (metrics.state))
s += ' ' + this.get_state_symbolyc (metrics.state);
if (label_show) s += ' ' + label_text;
if (s) title_text = s.trim ();
else title_text = label_text;
if (color_show && Number.isInteger (metrics.state)) {
s = this.get_stylestring (metrics.state);
} else title_style = "";
if (s != title_style) {
title_style = s;
this.statusLabel.style = title_style;
}
return title_text;
},
get_governor_symbolyc: function (name) {
let g = name;
if (g == "mixed") g = "\u25cd";
else if (g == "powersave") g = "\uf06c";
else if (g == "performance") g = "\uf197";
else if (g == "ondemand") g = "\uf0e7";
else if (g == "conservative") g = "\ue976";
else if (g == "schedutil") g = "\ue953";
else if (g == "userspace") g = "\uf007";
else g = "\uf0e7";
return g;
},
get_state_symbolyc: function (state) {
let g = "☺";
if (state == 1) g = "";
else if (state == 2) g = "☹";
return g;
},
get_stylestring: function (state) {
let s;
if (color_show_custom) state += 3;
switch (state) {
case 0:
s = "color:" + color_show_default_normal + ";";
break;
case 1:
s = "color:" + color_show_default_warning + ";";
break;
case 2:
s = "color:" + color_show_default_critical + ";";
break;
case 3:
s = "color:" + color_show_custom_normal + ";";
break;
case 4:
s = "color:" + color_show_custom_warning + ";";
break;
case 5:
s = "color:" + color_show_custom_critical + ";";
break;
default:
s = "";
}
return s;
},
add_event: function () {
this.remove_proxy ();
if (monitor_timeout > 0) {
if (!GLib.spawn_command_line_async (EXTENSIONDIR + "/cpufreq-service")) {
//error ("Unable to start cpufreq service...");
return;
}
this.proxy = new CpufreqServiceProxy (Gio.DBus.session, BUS_NAME, OBJECT_PATH, (proxy, e) => {
if (e) {
error (e.message);
return;
}
event = this.proxy.connectSignal ('MonitorEvent', (o, s, metrics) => {
if (metrics) this.statusLabel.set_text (this.get_title (metrics.toString ()));
});
event_style = this.proxy.connectSignal ('StyleChanged', (o, s, style) => {
if (style) {
title_style = style.toString ();
this.statusLabel.style = title_style;
}
});
});
}
monitor_event = 0;
// cpufreq-service should stop auto on disabled monitors
//else GLib.spawn_command_line_async ("killall cpufreq-service");
},
remove_proxy: function () {
if (this.proxy) {
if (event) this.proxy.disconnectSignal (event);
if (event_style) this.proxy.disconnectSignal (event_style);
delete this.proxy;
}
this.proxy = null;
event = 0;
event_style = 0;
},
remove_events: function () {
this.remove_proxy ();
if (settingsID) this.settings.disconnect (settingsID);
if (powerID) this.power.disconnect (powerID);
if (monitor_event) GLib.source_remove (monitor_event);
event = 0; monitor_event = 0;
settingsID = 0; powerID = 0;
//GLib.spawn_command_line_async ("killall cpufreq-service");
},
show_splash: function () {
let monitor = Main.layoutManager.focusMonitor;
let height = monitor.height < monitor.width ? monitor.height : monitor.width;
let width = 512 * height / 1200;
if (!this.splash)
this.splash = Gio.icon_new_for_string (EXTENSIONDIR + "/data/splash.svg");
let splash = new St.Icon ({gicon: this.splash, icon_size: width});
Main.uiGroup.add_actor (splash);
splash.set_position (Math.floor (monitor.width / 2 - splash.width / 2),
Math.floor (monitor.height / 2 - splash.height / 2));
if (splash.ease) splash.ease ({
opacity: 20, mode: 8, duration: 1200,
onComplete: () => { remove_actor (splash)}
}); else GLib.timeout_add (0, 1200, () => { return remove_actor (splash)});
}
});
function remove_actor (o) {
Main.uiGroup.remove_actor (o);
o.destroy ();
return false;
}
function show_notify (message, style) {
//var text = new St.Label ({text: message, style_class: style?style:'cpufreq-notify'});
var text = new St.Label ({text: message, style_class: "modal-dialog audio-selection-content restart-message"});
text.opacity = 255;
Main.uiGroup.add_actor (text);
text.set_position (Math.floor (Main.layoutManager.primaryMonitor.width / 2 - text.width / 2),
Math.floor (Main.layoutManager.primaryMonitor.height / 2 - text.height / 2));
GLib.timeout_add (0, 1200, () => { return remove_actor (text)});
}
function show_warn (message) {
show_notify (message, "warn-label");
}
let monitor;
Logger.init (Logger.LEVEL.ERROR, true);
function info (msg) {
Logger.info ("extension", msg);
}
function debug (msg) {
Logger.debug ("extension", msg);
}
function error (msg) {
Logger.error ("extension", msg);
}
function init () {
}
function enable () {
monitor = new FrequencyIndicator;
Main.panel.addToStatusArea ('cpufreq-indicator', monitor);
}
function disable () {
monitor.remove_events ();
monitor.destroy ();
monitor = null;
}