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
|
/*
SPDX-FileCopyrightText: 2007 John Tapsell <tapsell@kde.org>
SPDX-License-Identifier: LGPL-2.0-only
*/
#include "systemmonitor.h"
#include <QProcess>
#include <QTimer>
#include <KLocalizedString>
#include <QDebug>
#include <Plasma/DataContainer>
#include <ksgrd/SensorManager.h>
SystemMonitorEngine::SystemMonitorEngine(QObject *parent, const QVariantList &args)
: Plasma::DataEngine(parent, args)
{
KSGRD::SensorMgr = new KSGRD::SensorManager(this);
KSGRD::SensorMgr->engage(QStringLiteral("localhost"), QLatin1String(""), QStringLiteral("ksysguardd"));
m_waitingFor = 0;
connect(KSGRD::SensorMgr, &KSGRD::SensorManager::update, this, &SystemMonitorEngine::updateMonitorsList);
updateMonitorsList();
}
SystemMonitorEngine::~SystemMonitorEngine()
{
}
void SystemMonitorEngine::updateMonitorsList()
{
KSGRD::SensorMgr->sendRequest(QStringLiteral("localhost"), QStringLiteral("monitors"), (KSGRD::SensorClient *)this, -1);
}
QStringList SystemMonitorEngine::sources() const
{
return m_sensors.toList();
}
bool SystemMonitorEngine::sourceRequestEvent(const QString &name)
{
setData(name, DataEngine::Data());
return true;
}
bool SystemMonitorEngine::updateSourceEvent(const QString &sensorName)
{
const int index = m_sensors.indexOf(sensorName);
if (index != -1) {
KSGRD::SensorMgr->sendRequest(QStringLiteral("localhost"), sensorName, (KSGRD::SensorClient *)this, index);
KSGRD::SensorMgr->sendRequest(QStringLiteral("localhost"), QStringLiteral("%1?").arg(sensorName), (KSGRD::SensorClient *)this, -(index + 2));
}
return false;
}
void SystemMonitorEngine::updateSensors()
{
DataEngine::SourceDict sources = containerDict();
DataEngine::SourceDict::iterator it = sources.begin();
m_waitingFor = 0;
while (it != sources.end()) {
m_waitingFor++;
QString sensorName = it.key();
KSGRD::SensorMgr->sendRequest(QStringLiteral("localhost"), sensorName, (KSGRD::SensorClient *)this, -1);
++it;
}
}
void SystemMonitorEngine::answerReceived(int id, const QList<QByteArray> &answer)
{
if (id < -1) {
if (answer.isEmpty() || m_sensors.count() <= (-id - 2)) {
qDebug() << "sensor info answer was empty, (" << answer.isEmpty() << ") or sensors does not exist to us (" << (m_sensors.count() < (-id - 2))
<< ") for index" << (-id - 2);
return;
}
DataEngine::SourceDict sources = containerDict();
DataEngine::SourceDict::const_iterator it = sources.constFind(m_sensors.value(-id - 2));
const QStringList newSensorInfo = QString::fromUtf8(answer[0]).split('\t');
if (newSensorInfo.count() < 4) {
qDebug() << "bad sensor info, only" << newSensorInfo.count() << "entries, and we were expecting 4. Answer was " << answer;
if (it != sources.constEnd())
qDebug() << "value =" << it.value()->data()[QStringLiteral("value")] << "type=" << it.value()->data()[QStringLiteral("type")];
return;
}
const QString &sensorName = newSensorInfo[0];
const QString &min = newSensorInfo[1];
const QString &max = newSensorInfo[2];
const QString &unit = newSensorInfo[3];
if (it != sources.constEnd()) {
it.value()->setData(QStringLiteral("name"), sensorName);
it.value()->setData(QStringLiteral("min"), min);
it.value()->setData(QStringLiteral("max"), max);
it.value()->setData(QStringLiteral("units"), unit);
}
return;
}
if (id == -1) {
QSet<QString> sensors;
m_sensors.clear();
int count = 0;
foreach (const QByteArray &sens, answer) {
const QString sensStr{QString::fromUtf8(sens)};
const auto newSensorInfo = QStringView(sensStr).split('\t');
if (newSensorInfo.count() < 2) {
continue;
}
if (newSensorInfo.at(1) == QLatin1String("logfile"))
continue; // logfile data type not currently supported
const QString newSensor = newSensorInfo[0].toString();
sensors.insert(newSensor);
m_sensors.append(newSensor);
{
// HACK: for backwards compatibility
// in case this source was created in sourceRequestEvent, stop it being
// automagically removed when disconnected from
Plasma::DataContainer *s = containerForSource(newSensor);
if (s) {
disconnect(s, &Plasma::DataContainer::becameUnused, this, &SystemMonitorEngine::removeSource);
}
}
DataEngine::Data d;
d.insert(QStringLiteral("value"), QVariant());
d.insert(QStringLiteral("type"), newSensorInfo[1].toString());
setData(newSensor, d);
KSGRD::SensorMgr->sendRequest(QStringLiteral("localhost"), QStringLiteral("%1?").arg(newSensor), (KSGRD::SensorClient *)this, -(count + 2));
++count;
}
QHash<QString, Plasma::DataContainer *> sourceDict = containerDict();
QHashIterator<QString, Plasma::DataContainer *> it(sourceDict);
while (it.hasNext()) {
it.next();
if (!sensors.contains(it.key())) {
removeSource(it.key());
}
}
return;
}
m_waitingFor--;
QString reply;
if (!answer.isEmpty()) {
reply = QString::fromUtf8(answer[0]);
}
DataEngine::SourceDict sources = containerDict();
DataEngine::SourceDict::const_iterator it = sources.constFind(m_sensors.value(id));
if (it != sources.constEnd()) {
it.value()->setData(QStringLiteral("value"), reply);
}
}
void SystemMonitorEngine::sensorLost(int)
{
m_waitingFor--;
}
K_PLUGIN_CLASS_WITH_JSON(SystemMonitorEngine, "plasma-dataengine-systemmonitor.json")
#include "systemmonitor.moc"
|