Remove incorrect assertions
[qBittorrent.git] / src / base / torrentfilter.h
blob3358ef380881c3bc61bd8a6d4629f0952a760751
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
66 // These mean any permutation, including no category / tag.
67 static const std::optional<QString> AnyCategory;
68 static const std::optional<TorrentIDSet> AnyID;
69 static const std::optional<QString> AnyTag;
71 static const TorrentFilter DownloadingTorrent;
72 static const TorrentFilter SeedingTorrent;
73 static const TorrentFilter CompletedTorrent;
74 static const TorrentFilter PausedTorrent;
75 static const TorrentFilter ResumedTorrent;
76 static const TorrentFilter ActiveTorrent;
77 static const TorrentFilter InactiveTorrent;
78 static const TorrentFilter StalledTorrent;
79 static const TorrentFilter StalledUploadingTorrent;
80 static const TorrentFilter StalledDownloadingTorrent;
81 static const TorrentFilter CheckingTorrent;
82 static const TorrentFilter MovingTorrent;
83 static const TorrentFilter ErroredTorrent;
85 TorrentFilter() = default;
86 // category & tags: pass empty string for uncategorized / untagged torrents.
87 TorrentFilter(Type type, const std::optional<TorrentIDSet> &idSet = AnyID
88 , const std::optional<QString> &category = AnyCategory, const std::optional<QString> &tag = AnyTag);
89 TorrentFilter(const QString &filter, const std::optional<TorrentIDSet> &idSet = AnyID
90 , const std::optional<QString> &category = AnyCategory, const std::optional<QString> &tags = AnyTag);
92 bool setType(Type type);
93 bool setTypeByName(const QString &filter);
94 bool setTorrentIDSet(const std::optional<TorrentIDSet> &idSet);
95 bool setCategory(const std::optional<QString> &category);
96 bool setTag(const std::optional<QString> &tag);
98 bool match(const BitTorrent::Torrent *torrent) const;
100 private:
101 bool matchState(const BitTorrent::Torrent *torrent) const;
102 bool matchHash(const BitTorrent::Torrent *torrent) const;
103 bool matchCategory(const BitTorrent::Torrent *torrent) const;
104 bool matchTag(const BitTorrent::Torrent *torrent) const;
106 Type m_type {All};
107 std::optional<QString> m_category;
108 std::optional<QString> m_tag;
109 std::optional<TorrentIDSet> m_idSet;