/* * * 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 . * */ #include "temp.h" #include #include #include #include #include #include #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(); } } }