mirror of
https://github.com/morgan9e/gnome-shell-extension-freon
synced 2026-04-14 00:14:14 +09:00
96 lines
3.1 KiB
JavaScript
96 lines
3.1 KiB
JavaScript
const GLib = imports.gi.GLib;
|
|
|
|
const Me = imports.misc.extensionUtils.getCurrentExtension();
|
|
const CommandLineUtil = Me.imports.commandLineUtil;
|
|
|
|
var SensorsUtil = class extends CommandLineUtil.CommandLineUtil {
|
|
|
|
constructor() {
|
|
super();
|
|
let path = GLib.find_program_in_path('sensors');
|
|
// -A: Do not show adapter -j: JSON output
|
|
this._argv = path ? [path, '-A', '-j'] : null;
|
|
}
|
|
|
|
// Avoid parsing the data more than once.
|
|
execute(callback) {
|
|
super.execute(() => {
|
|
let data = [];
|
|
try {
|
|
data = JSON.parse(this._output.join(''));
|
|
} catch (e) {
|
|
try {
|
|
// fix for wrong lm_sensors output
|
|
// https://github.com/UshakovVasilii/gnome-shell-extension-freon/issues/114#issuecomment-491613545
|
|
let lineRemoved = this._output.filter(l => l.trim() !== ',').join('\n');
|
|
let errorRemoved = lineRemoved.replace(/ERROR.*Can't read/, "");
|
|
errorRemoved = errorRemoved.replace(/ERROR.*I\/O error/, "");
|
|
data = JSON.parse(errorRemoved);
|
|
} catch (e) {
|
|
global.log(e.toString());
|
|
return [];
|
|
}
|
|
}
|
|
this._data = data;
|
|
callback();
|
|
});
|
|
}
|
|
|
|
get temp() {
|
|
return this._parseGenericSensorsOutput(/^temp\d+_input/, 'temp');
|
|
}
|
|
|
|
get gpu() {
|
|
return this._parseGpuSensorsOutput(/^temp\d+_input/, 'temp');
|
|
}
|
|
|
|
get rpm() {
|
|
return this._parseGenericSensorsOutput(/^fan\d+_input/, 'rpm');
|
|
}
|
|
|
|
get volt() {
|
|
return this._parseGenericSensorsOutput(/^in\d+_input/, 'volt');
|
|
}
|
|
|
|
_parseGenericSensorsOutput(sensorFilter, sensorType) {
|
|
return this._parseSensorsOutput(sensorFilter, sensorType, false);
|
|
}
|
|
|
|
_parseGpuSensorsOutput(sensorFilter, sensorType) {
|
|
return this._parseSensorsOutput(sensorFilter, sensorType, true);
|
|
}
|
|
|
|
_parseSensorsOutput(sensorFilter, sensorType, gpuFlag) {
|
|
if(!this._data)
|
|
return [];
|
|
|
|
const data = this._data;
|
|
|
|
let sensors = [];
|
|
for (var chipset in data) {
|
|
let gpuFilter = /(radeon|amdgpu|nouveau)/;
|
|
if (!data.hasOwnProperty(chipset) || (gpuFlag != gpuFilter.test(chipset) && sensorType === 'temp'))
|
|
continue;
|
|
|
|
let chipsetSensors = data[chipset]
|
|
for (var sensor in chipsetSensors) {
|
|
if (!chipsetSensors.hasOwnProperty(sensor))
|
|
continue;
|
|
|
|
let fields = chipsetSensors[sensor];
|
|
for (var key in fields) {
|
|
if (fields.hasOwnProperty(key) && sensorFilter.test(key)) {
|
|
let feature = {
|
|
label: sensor,
|
|
[sensorType]: parseFloat(fields[key])
|
|
};
|
|
sensors.push(feature);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return sensors;
|
|
}
|
|
};
|