123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- /*
- * <one line to give the library's name and an idea of what it does.>
- * Copyright 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 General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License or (at your option) version 3 or any later version
- * accepted by the membership of KDE e.V. (or its successor approved
- * by the membership of KDE e.V.), which shall act as a proxy
- * defined in Section 14 of version 3 of the license.
- *
- * 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- #include "temp.h"
- #include <QtCore/QTextStream>
- #include <QtCore/QFile>
- #include <QtCore/QDir>
- #include <QtCore/QDebug>
- #include <KConfigCore/KSharedConfig>
- #include <KConfigCore/KConfigGroup>
- #include "hwmon.h"
- namespace Fancontrol
- {
- Temp::Temp(Hwmon *parent, uint index) :
- Sensor(parent, index, QString(parent->name() + QStringLiteral("/temp") + QString::number(index))),
- m_valueStream(new QTextStream)
- {
- if (QDir(parent->path()).isReadable())
- {
- QFile *valueFile = new QFile(parent->path() + "/temp" + QString::number(index) + "_input", this);
- QFile labelFile(parent->path() + "/temp" + QString::number(index) + "_label");
- if (valueFile->open(QFile::ReadOnly))
- {
- m_valueStream->setDevice(valueFile);
- *m_valueStream >> m_value;
- m_value /= 1000;
- }
- else
- qCritical() << "Can't open valueFile " << parent->path() + "/temp" + QString::number(index) + "_input";
- if (labelFile.open(QFile::ReadOnly))
- m_label = QTextStream(&labelFile).readLine();
- }
- }
- Temp::~Temp()
- {
- delete m_valueStream;
- }
- QString Temp::name() const
- {
- KConfigGroup names = KSharedConfig::openConfig(QStringLiteral("fancontrol-gui"))->group("names");
- KConfigGroup localNames = names.group(m_parent->name());
- QString name = localNames.readEntry("temp" + QString::number(m_index), QString());
- if (name.isEmpty())
- {
- if (m_label.isEmpty())
- return "temp" + QString::number(m_index);
- return m_label;
- }
- return name;
- }
- void Temp::setName(const QString &name)
- {
- KConfigGroup names = KSharedConfig::openConfig(QStringLiteral("fancontrol-gui"))->group("names");
- KConfigGroup localNames = names.group(m_parent->name());
- if (name != localNames.readEntry("temp" + QString::number(m_index), QString())
- && !name.isEmpty())
- {
- localNames.writeEntry(m_parent->name() + "temp" + QString::number(m_index), name);
- emit nameChanged();
- }
- }
- void Temp::reset()
- {
- QIODevice *oldFile = m_valueStream->device();
- delete m_valueStream;
- delete oldFile;
- if (QDir(m_parent->path()).isReadable())
- {
- QFile *valueFile = new QFile(m_parent->path() + "/temp" + QString::number(m_index) + "_input", this);
- if (valueFile->open(QFile::ReadOnly))
- {
- m_valueStream = new QTextStream(valueFile);
- *m_valueStream >> m_value;
- m_value /= 1000;
- }
- else
- qCritical() << "Can't open valueFile " << m_parent->path() + "/temp" + QString::number(m_index) + "_input";
- }
- }
- void Temp::update()
- {
- m_valueStream->seek(0);
- int value;
- *m_valueStream >> value;
- value /= 1000;
- if (value != m_value)
- {
- m_value = value;
- emit valueChanged();
- }
- }
- }
|