123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /*
- * Copyright (C) 2015 Malte Veerman <maldela@halloarsch.de>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- *
- */
- #include "hwmon.h"
- #include "loader.h"
- #include <QDir>
- #include <QTextStream>
- #include <QtQml>
- #include <QDebug>
- Hwmon::Hwmon(const QString &path, Loader *parent) : QObject(parent),
- m_parent(parent),
- m_path(path)
- {
- m_index = path.split('/').last().remove("hwmon").toInt();
- QFile nameFile(path + "/name");
- if (nameFile.open(QFile::ReadOnly))
- m_name = QTextStream(&nameFile).readLine();
- else
- m_name = path.split('/').last();
-
- connect(this, SIGNAL(configUpdateNeeded()), parent, SLOT(createConfigFile()));
- connect(this, SIGNAL(pwmFansChanged()), parent, SLOT(emitAllPwmFansChanged()));
- connect(this, SIGNAL(tempsChanged()), parent, SLOT(emitAllTempsChanged()));
- initialize();
- }
- void Hwmon::initialize()
- {
- QDir dir(m_path);
- QStringList entrys = dir.entryList(QDir::Files | QDir::NoDotAndDotDot);
- foreach (QString entry, entrys)
- {
- QString str = entry;
- uint index = str.remove(QRegExp("\\D+")).toUInt();
- if (entry.contains("fan") && entry.contains("input"))
- {
- if (QFile::exists(m_path + "/pwm" + QString::number(index)))
- {
- PwmFan *newPwmFan = Q_NULLPTR;
-
- foreach (PwmFan *pwmFan, m_pwmFans)
- {
- if (pwmFan->index() == index)
- {
- newPwmFan = pwmFan;
- newPwmFan->reset();
- break;
- }
- }
-
- if (!newPwmFan)
- {
- newPwmFan = new PwmFan(this, index);
- connect(this, SIGNAL(sensorsUpdateNeeded()), newPwmFan, SLOT(update()));
- m_pwmFans << newPwmFan;
- emit pwmFansChanged();
- }
-
- Fan *newFan = qobject_cast<Fan *>(newPwmFan);
- if (!m_fans.contains(newFan))
- {
- m_fans << newFan;
- emit fansChanged();
- }
- }
- else
- {
- Fan *newFan = Q_NULLPTR;
-
- foreach (Fan *fan, m_fans)
- {
- if (fan->index() == index)
- {
- newFan = fan;
- newFan->reset();
- break;
- }
- }
-
- if (!newFan)
- {
- newFan = new Fan(this, index);
- connect(this, SIGNAL(sensorsUpdateNeeded()), newFan, SLOT(update()));
- m_fans << newFan;
- emit fansChanged();
- }
- }
- }
- if (entry.contains("temp") && entry.contains("input"))
- {
- Temp *newTemp = Q_NULLPTR;
-
- foreach (Temp *temp, m_temps)
- {
- if (temp->index() == index)
- {
- newTemp = temp;
- newTemp->reset();
- break;
- }
- }
-
- if (!newTemp)
- {
- newTemp = new Temp(this, index);
- connect(this, SIGNAL(sensorsUpdateNeeded()), newTemp, SLOT(update()));
- m_temps << newTemp;
- emit tempsChanged();
- }
- }
- }
- }
- QList<QObject *> Hwmon::fans() const
- {
- QList<QObject *> list;
- foreach (Fan *fan, m_fans)
- {
- list << qobject_cast<QObject *>(fan);
- }
- return list;
- }
- QList<QObject *> Hwmon::pwmFans() const
- {
- QList<QObject *> list;
- foreach (PwmFan *pwmFan, m_pwmFans)
- {
- list << qobject_cast<QObject *>(pwmFan);
- }
- return list;
- }
- QList<QObject *> Hwmon::temps() const
- {
- QList<QObject *> list;
- foreach (Temp *temp, m_temps)
- {
- list << qobject_cast<QObject *>(temp);
- }
- return list;
- }
- void Hwmon::testFans()
- {
- for (int i=0; i<m_pwmFans.size(); i++)
- {
- m_pwmFans.at(i)->test();
- }
- }
|