/* * Bittorrent Client using Qt and libtorrent. * Copyright (C) 2016 Vladimir Golovnev * Copyright (C) 2014 sledgehammer999 * * 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) 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 General Public License for more details. * * You should have received a copy of the GNU 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. * * In addition, as a special exception, the copyright holders give permission to * link this program with the OpenSSL project's "OpenSSL" library (or with * modified versions of it that use the same license as the "OpenSSL" library), * and distribute the linked executables. You must obey the GNU General Public * License in all respects for all of the code used other than "OpenSSL". If you * modify file(s), you may extend this exception to your version of the file(s), * but you are not obligated to do so. If you do not wish to do so, delete this * exception statement from your version. */ #include "settingsstorage.h" #include #include #include #include #include #include "logger.h" #include "utils/fs.h" #ifdef Q_OS_MAC #define QSETTINGS_SYNC_IS_SAVE // whether QSettings::sync() is "atomic" #endif namespace { // Encapsulates serialization of settings in "atomic" way. // write() does not leave half-written files, // read() has a workaround for a case of power loss during a previous serialization class TransactionalSettings { public: TransactionalSettings(const QString &name) : m_name(name) { } QVariantHash read(); bool write(const QVariantHash &data); private: // we return actual file names used by QSettings because // there is no other way to get that name except // actually create a QSettings object. // if serialization operation was not successful we return empty string QString deserialize(const QString &name, QVariantHash &data); QString serialize(const QString &name, const QVariantHash &data); using SettingsPtr = std::unique_ptr; SettingsPtr createSettings(const QString &name) { #ifdef Q_OS_WIN return SettingsPtr(new QSettings(QSettings::IniFormat, QSettings::UserScope, "qBittorrent", name)); #else return SettingsPtr(new QSettings("qBittorrent", name)); #endif } QString m_name; }; #ifdef QBT_USES_QT5 typedef QHash MappingTable; #else class MappingTable: public QHash { public: MappingTable(std::initializer_list> list) { reserve(static_cast(list.size())); for (const auto &i : list) insert(i.first, i.second); } }; #endif QString mapKey(const QString &key) { static const MappingTable keyMapping = { { "BitTorrent/Session/MaxRatioAction", "Preferences/Bittorrent/MaxRatioAction" }, { "BitTorrent/Session/DefaultSavePath", "Preferences/Downloads/SavePath" }, { "BitTorrent/Session/TempPath", "Preferences/Downloads/TempPath" }, { "BitTorrent/Session/TempPathEnabled", "Preferences/Downloads/TempPathEnabled" }, { "BitTorrent/Session/AddTorrentPaused", "Preferences/Downloads/StartInPause" }, #ifdef QBT_USES_QT5 { "AddNewTorrentDialog/TreeHeaderState", "AddNewTorrentDialog/qt5/treeHeaderState" }, #else { "AddNewTorrentDialog/TreeHeaderState", "AddNewTorrentDialog/treeHeaderState" }, #endif { "AddNewTorrentDialog/Width", "AddNewTorrentDialog/width" }, { "AddNewTorrentDialog/Position", "AddNewTorrentDialog/y" }, { "AddNewTorrentDialog/Expanded", "AddNewTorrentDialog/expanded" }, { "AddNewTorrentDialog/SavePathHistory", "TorrentAdditionDlg/save_path_history" }, { "AddNewTorrentDialog/Enabled", "Preferences/Downloads/NewAdditionDialog" }, { "AddNewTorrentDialog/TopLevel", "Preferences/Downloads/NewAdditionDialogFront" } }; return keyMapping.value(key, key); } } SettingsStorage *SettingsStorage::m_instance = nullptr; SettingsStorage::SettingsStorage() : m_data{TransactionalSettings(QLatin1String("qBittorrent")).read()} , m_dirty(false) , m_lock(QReadWriteLock::Recursive) { m_timer.setSingleShot(true); m_timer.setInterval(5 * 1000); connect(&m_timer, SIGNAL(timeout()), SLOT(save())); } SettingsStorage::~SettingsStorage() { save(); } void SettingsStorage::initInstance() { if (!m_instance) m_instance = new SettingsStorage; } void SettingsStorage::freeInstance() { delete m_instance; m_instance = nullptr; } SettingsStorage *SettingsStorage::instance() { return m_instance; } bool SettingsStorage::save() { if (!m_dirty) return false; // Obtaining the lock is expensive, let's check early QWriteLocker locker(&m_lock); if (!m_dirty) return false; // something might have changed while we were getting the lock TransactionalSettings settings(QLatin1String("qBittorrent")); if (settings.write(m_data)) { m_dirty = false; return true; } return false; } QVariant SettingsStorage::loadValue(const QString &key, const QVariant &defaultValue) const { QReadLocker locker(&m_lock); return m_data.value(mapKey(key), defaultValue); } void SettingsStorage::storeValue(const QString &key, const QVariant &value) { QString realKey = mapKey(key); QWriteLocker locker(&m_lock); if (m_data.value(realKey) != value) { m_dirty = true; m_data.insert(realKey, value); m_timer.start(); } } void SettingsStorage::removeValue(const QString &key) { QString realKey = mapKey(key); QWriteLocker locker(&m_lock); if (m_data.contains(realKey)) { m_dirty = true; m_data.remove(realKey); m_timer.start(); } } QVariantHash TransactionalSettings::read() { QVariantHash res; #ifdef QSETTINGS_SYNC_IS_SAVE deserialize(m_name, res); #else bool writeBackNeeded = false; QString newPath = deserialize(m_name + QLatin1String("_new"), res); if (!newPath.isEmpty()) { // "_new" file is NOT empty // This means that the PC closed either due to power outage // or because the disk was full. In any case the settings weren't transfered // in their final position. So assume that qbittorrent_new.ini/qbittorrent_new.conf // contains the most recent settings. Logger::instance()->addMessage(QObject::tr("Detected unclean program exit. Using fallback file to restore settings."), Log::WARNING); writeBackNeeded = true; } else { deserialize(m_name, res); } Utils::Fs::forceRemove(newPath); if (writeBackNeeded) write(res); #endif return res; } bool TransactionalSettings::write(const QVariantHash &data) { #ifdef QSETTINGS_SYNC_IS_SAVE serialize(m_name, data); #else // QSettings delete the file before writing it out. This can result in problems // if the disk is full or a power outage occurs. Those events might occur // between deleting the file and recreating it. This is a safety measure. // Write everything to qBittorrent_new.ini/qBittorrent_new.conf and if it succeeds // replace qBittorrent.ini/qBittorrent.conf with it. QString newPath = serialize(m_name + QLatin1String("_new"), data); if (newPath.isEmpty()) { Utils::Fs::forceRemove(newPath); return false; } QString finalPath = newPath; int index = finalPath.lastIndexOf("_new", -1, Qt::CaseInsensitive); finalPath.remove(index, 4); Utils::Fs::forceRemove(finalPath); QFile::rename(newPath, finalPath); #endif return true; } QString TransactionalSettings::deserialize(const QString &name, QVariantHash &data) { SettingsPtr settings = createSettings(name); if (settings->allKeys().isEmpty()) return QString(); // Copy everything into memory. This means even keys inserted in the file manually // or that we don't touch directly in this code (eg disabled by ifdef). This ensures // that they will be copied over when save our settings to disk. foreach (const QString &key, settings->allKeys()) data.insert(key, settings->value(key)); return settings->fileName(); } QString TransactionalSettings::serialize(const QString &name, const QVariantHash &data) { SettingsPtr settings = createSettings(name); for (auto i = data.begin(); i != data.end(); ++i) settings->setValue(i.key(), i.value()); settings->sync(); // Important to get error status QSettings::Status status = settings->status(); if (status != QSettings::NoError) { if (status == QSettings::AccessError) Logger::instance()->addMessage(QObject::tr("An access error occurred while trying to write the configuration file."), Log::CRITICAL); else Logger::instance()->addMessage(QObject::tr("A format error occurred while trying to write the configuration file."), Log::CRITICAL); return QString(); } return settings->fileName(); }