2017-04-29 11:49:40 +03:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
|
|
* Copyright (C) 2015 Vladimir Golovnev <glassez@yandex.ru>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2021-01-02 15:45:36 +03:00
|
|
|
#include <optional>
|
2020-12-10 09:54:27 +03:00
|
|
|
|
2017-06-05 03:22:17 +03:00
|
|
|
#include <QSet>
|
2017-04-29 11:49:40 +03:00
|
|
|
#include <QString>
|
|
|
|
#include <QVector>
|
|
|
|
|
2021-01-06 15:12:40 +03:00
|
|
|
#include "torrent.h"
|
2020-12-10 09:54:27 +03:00
|
|
|
#include "torrentcontentlayout.h"
|
2017-04-29 11:49:40 +03:00
|
|
|
|
|
|
|
namespace BitTorrent
|
|
|
|
{
|
2019-06-02 12:13:34 +03:00
|
|
|
enum class DownloadPriority;
|
|
|
|
|
2017-04-29 11:49:40 +03:00
|
|
|
struct AddTorrentParams
|
|
|
|
{
|
|
|
|
QString name;
|
|
|
|
QString category;
|
2017-06-05 03:22:17 +03:00
|
|
|
QSet<QString> tags;
|
2017-04-29 11:49:40 +03:00
|
|
|
QString savePath;
|
|
|
|
bool disableTempPath = false; // e.g. for imported torrents
|
|
|
|
bool sequential = false;
|
2016-07-15 05:15:10 +03:00
|
|
|
bool firstLastPiecePriority = false;
|
2021-01-02 16:55:17 +03:00
|
|
|
bool addForced = false;
|
|
|
|
std::optional<bool> addPaused;
|
2019-03-06 08:58:07 +03:00
|
|
|
QVector<DownloadPriority> filePriorities; // used if TorrentInfo is set
|
2017-04-29 11:49:40 +03:00
|
|
|
bool skipChecking = false;
|
2021-01-02 15:45:36 +03:00
|
|
|
std::optional<BitTorrent::TorrentContentLayout> contentLayout;
|
2021-01-02 16:55:17 +03:00
|
|
|
std::optional<bool> useAutoTMM;
|
2017-08-14 14:44:56 +03:00
|
|
|
int uploadLimit = -1;
|
|
|
|
int downloadLimit = -1;
|
2021-01-06 15:12:40 +03:00
|
|
|
int seedingTimeLimit = Torrent::USE_GLOBAL_SEEDING_TIME;
|
|
|
|
qreal ratioLimit = Torrent::USE_GLOBAL_RATIO;
|
2017-04-29 11:49:40 +03:00
|
|
|
};
|
|
|
|
}
|