/* * Bittorrent Client using Qt and libtorrent. * Copyright (C) 2016 Eugene Shalygin * Copyright (C) 2012 Christophe Dumez * * 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. */ #pragma once #include #include #include "base/profile.h" namespace Private { class Profile { public: virtual ~Profile() = default; virtual QString rootPath() const = 0; /** * @brief The base path against to which portable (relative) paths are resolved */ virtual QString basePath() const = 0; virtual QString cacheLocation() const = 0; virtual QString configLocation() const = 0; virtual QString dataLocation() const = 0; virtual QString downloadLocation() const = 0; virtual SettingsPtr applicationSettings(const QString &name) const = 0; QString configurationName() const; /** * @brief QCoreApplication::applicationName() with optional configuration name appended */ QString profileName() const; protected: explicit Profile(const QString &configurationName); QString configurationSuffix() const; private: QString m_configurationName; }; /// Default implementation. Takes paths from system class DefaultProfile final : public Profile { public: explicit DefaultProfile(const QString &configurationName); QString rootPath() const override; QString basePath() const override; QString cacheLocation() const override; QString configLocation() const override; QString dataLocation() const override; QString downloadLocation() const override; SettingsPtr applicationSettings(const QString &name) const override; private: /** * @brief Standard path writable location for profile files * * @param location location kind * @return QStandardPaths::writableLocation(location) / configurationName() */ QString locationWithConfigurationName(QStandardPaths::StandardLocation location) const; }; /// Custom tree: creates directories under the specified root directory class CustomProfile final : public Profile { public: CustomProfile(const QString &rootPath, const QString &configurationName); QString rootPath() const override; QString basePath() const override; QString cacheLocation() const override; QString configLocation() const override; QString dataLocation() const override; QString downloadLocation() const override; SettingsPtr applicationSettings(const QString &name) const override; private: const QDir m_rootDir; const QDir m_baseDir; const QString m_cacheLocation; const QString m_configLocation; const QString m_dataLocation; const QString m_downloadLocation; }; class PathConverter { public: virtual QString toPortablePath(const QString &path) const = 0; virtual QString fromPortablePath(const QString &portablePath) const = 0; virtual ~PathConverter() = default; }; class NoConvertConverter final : public PathConverter { public: QString toPortablePath(const QString &path) const override; QString fromPortablePath(const QString &portablePath) const override; }; class Converter final : public PathConverter { public: explicit Converter(const QString &basePath); QString toPortablePath(const QString &path) const override; QString fromPortablePath(const QString &portablePath) const override; private: QDir m_baseDir; }; }