diff options
author | Christopher Roy Bratusek <nano@jpberlin.de> | 2015-05-22 22:01:59 +0200 |
---|---|---|
committer | Christopher Roy Bratusek <nano@jpberlin.de> | 2015-05-22 22:01:59 +0200 |
commit | 80bdcd360536433f37948c6ae09cdf96287b2279 (patch) | |
tree | 42e072b6e6d5b7c7e2e34cd26804b3fefd6b7711 /libLumina/LuminaOS-Debian.cpp | |
parent | LUtils::getCmdOutput enforce LANG=C (diff) | |
download | lumina-80bdcd360536433f37948c6ae09cdf96287b2279.tar.gz lumina-80bdcd360536433f37948c6ae09cdf96287b2279.tar.bz2 lumina-80bdcd360536433f37948c6ae09cdf96287b2279.zip |
update Debian support
- LOS::userHasShutdownAccess -- proper return [fix compiler warning]
- LOS::systemCanSuspend -- proper return [fix compiler warning]
- LOS::CPUTemperatures -- get cpu temp [XXX untested as my FX-8350 doesn't talk to me]
- LOS::CPUUsagePercent -- get cpu usage
- LOS::MemoryUsagePercent -- get memory usage
Diffstat (limited to 'libLumina/LuminaOS-Debian.cpp')
-rw-r--r-- | libLumina/LuminaOS-Debian.cpp | 32 |
1 files changed, 27 insertions, 5 deletions
diff --git a/libLumina/LuminaOS-Debian.cpp b/libLumina/LuminaOS-Debian.cpp index e3aabeae..d1d5d344 100644 --- a/libLumina/LuminaOS-Debian.cpp +++ b/libLumina/LuminaOS-Debian.cpp @@ -138,7 +138,7 @@ void LOS::startMixerUtility(){ //Check for user system permission (shutdown/restart) bool LOS::userHasShutdownAccess(){ - QProcess::startDetached("dbus-send --system --print-reply=literal \ + return QProcess::startDetached("dbus-send --system --print-reply=literal \ --type=method_call --dest=org.freedesktop.login1 \ /org/freedesktop/login1 org.freedesktop.login1.Manager.CanPowerOff"); } @@ -159,7 +159,7 @@ void LOS::systemRestart(){ //start reboot sequence //Check for suspend support bool LOS::systemCanSuspend(){ - QProcess::startDetached("dbus-send --system --print-reply=literal \ + return QProcess::startDetached("dbus-send --system --print-reply=literal \ --type=method_call --dest=org.freedesktop.login1 \ /org/freedesktop/login1 org.freedesktop.login1.Manager.CanSuspend"); } @@ -236,15 +236,37 @@ QString LOS::FileSystemCapacity(QString dir) { //Return: percentage capacity as } QStringList LOS::CPUTemperatures(){ //Returns: List containing the temperature of any CPU's ("50C" for example) - return QStringList(); //not implemented yet + QStringList temp = LUtils::getCmdOutput("acpi -t").filter("degrees"); + for(int i=0; i<temp.length(); i++){ + if(temp[i].startsWith("Thermal")){ + temp[i] = temp[i].section(" ", 4, 6); + }else{ + temp.removeAt(i); i--; + } + } + qDebug() << "teperatures" << temp; + return temp; } int LOS::CPUUsagePercent(){ //Returns: Overall percentage of the amount of CPU cycles in use (-1 for errors) - return -1; //not implemented yet + QStringList info = LUtils::getCmdOutput("top -bn1").filter("Cpu(s)"); + if(info.isEmpty()){ return -1; } + QString idle = info.first().section(" ", 7, 7, QString::SectionSkipEmpty); + if(idle.isEmpty()){ return -1; } + else{ + return (100 - idle.toDouble()); + } } int LOS::MemoryUsagePercent(){ - return -1; //not implemented yet + QStringList mem = LUtils::getCmdOutput("top -bn1").filter("Mem:"); + if(mem.isEmpty()){ return -1; } + double fB = 0; //Free Bytes + double uB = 0; //Used Bytes + fB = mem.first().section(" ", 6, 6, QString::SectionSkipEmpty).toDouble(); + uB = mem.first().section(" ", 4, 4, QString::SectionSkipEmpty).toDouble(); + double per = (uB/(fB+uB)) * 100.0; + return qRound(per); } #endif |