Sync translations from Transifex and run lupdate
[qBittorrent.git] / src / base / torrentfilter.h
blob4c49d904be28307560132693d1f229e0f36a7ee1
1 /*
2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2014 Vladimir Golovnev <glassez@yandex.ru>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * In addition, as a special exception, the copyright holders give permission to
20 * link this program with the OpenSSL project's "OpenSSL" library (or with
21 * modified versions of it that use the same license as the "OpenSSL" library),
22 * and distribute the linked executables. You must obey the GNU General Public
23 * License in all respects for all of the code used other than "OpenSSL". If you
24 * modify file(s), you may extend this exception to your version of the file(s),
25 * but you are not obligated to do so. If you do not wish to do so, delete this
26 * exception statement from your version.
29 #pragma once
31 #include <optional>
33 #include <QSet>
34 #include <QString>
36 #include "base/bittorrent/infohash.h"
38 namespace BitTorrent
40 class Torrent;
43 using TorrentIDSet = QSet<BitTorrent::TorrentID>;
45 class TorrentFilter
47 public:
48 enum Type
50 All,
51 Downloading,
52 Seeding,
53 Completed,
54 Resumed,
55 Paused,
56 Active,
57 Inactive,
58 Stalled,
59 StalledUploading,
60 StalledDownloading,
61 Checking,
62 Moving,
63 Errored,
65 _Count
68 // These mean any permutation, including no category / tag.
69 static const std::optional<QString> AnyCategory;
70 static const std::optional<TorrentIDSet> AnyID;
71 static const std::optional<QString> AnyTag;
73 static const TorrentFilter DownloadingTorrent;
74 static const TorrentFilter SeedingTorrent;
75 static const TorrentFilter CompletedTorrent;
76 static const TorrentFilter PausedTorrent;
77 static const TorrentFilter ResumedTorrent;
78 static const TorrentFilter ActiveTorrent;
79 static const TorrentFilter InactiveTorrent;
80 static const TorrentFilter StalledTorrent;
81 static const TorrentFilter StalledUploadingTorrent;
82 static const TorrentFilter StalledDownloadingTorrent;
83 static const TorrentFilter CheckingTorrent;
84 static const TorrentFilter MovingTorrent;
85 static const TorrentFilter ErroredTorrent;
87 TorrentFilter() = default;
88 // category & tags: pass empty string for uncategorized / untagged torrents.
89 TorrentFilter(Type type, const std::optional<TorrentIDSet> &idSet = AnyID
90 , const std::optional<QString> &category = AnyCategory, const std::optional<QString> &tag = AnyTag);
91 TorrentFilter(const QString &filter, const std::optional<TorrentIDSet> &idSet = AnyID
92 , const std::optional<QString> &category = AnyCategory, const std::optional<QString> &tags = AnyTag);
94 bool setType(Type type);
95 bool setTypeByName(const QString &filter);
96 bool setTorrentIDSet(const std::optional<TorrentIDSet> &idSet);
97 bool setCategory(const std::optional<QString> &category);
98 bool setTag(const std::optional<QString> &tag);
100 bool match(const BitTorrent::Torrent *torrent) const;
102 private:
103 bool matchState(const BitTorrent::Torrent *torrent) const;
104 bool matchHash(const BitTorrent::Torrent *torrent) const;
105 bool matchCategory(const BitTorrent::Torrent *torrent) const;
106 bool matchTag(const BitTorrent::Torrent *torrent) const;
108 Type m_type {All};
109 std::optional<QString> m_category;
110 std::optional<QString> m_tag;
111 std::optional<TorrentIDSet> m_idSet;