Sync Changelog entries between branches
[qBittorrent.git] / src / base / torrentfilter.h
blobf1a01e3fea407b5a3a793e6c4324dd8f489371fe
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 <QSet>
32 #include <QString>
34 #include "base/bittorrent/infohash.h"
36 namespace BitTorrent
38 class Torrent;
41 using TorrentIDSet = QSet<BitTorrent::TorrentID>;
43 class TorrentFilter
45 public:
46 enum Type
48 All,
49 Downloading,
50 Seeding,
51 Completed,
52 Resumed,
53 Paused,
54 Active,
55 Inactive,
56 Stalled,
57 StalledUploading,
58 StalledDownloading,
59 Checking,
60 Errored
63 // These mean any permutation, including no category / tag.
64 static const QString AnyCategory;
65 static const TorrentIDSet AnyID;
66 static const QString AnyTag;
68 static const TorrentFilter DownloadingTorrent;
69 static const TorrentFilter SeedingTorrent;
70 static const TorrentFilter CompletedTorrent;
71 static const TorrentFilter PausedTorrent;
72 static const TorrentFilter ResumedTorrent;
73 static const TorrentFilter ActiveTorrent;
74 static const TorrentFilter InactiveTorrent;
75 static const TorrentFilter StalledTorrent;
76 static const TorrentFilter StalledUploadingTorrent;
77 static const TorrentFilter StalledDownloadingTorrent;
78 static const TorrentFilter CheckingTorrent;
79 static const TorrentFilter ErroredTorrent;
81 TorrentFilter() = default;
82 // category & tags: pass empty string for uncategorized / untagged torrents.
83 // Pass null string (QString()) to disable filtering (i.e. all torrents).
84 TorrentFilter(Type type, const TorrentIDSet &idSet = AnyID, const QString &category = AnyCategory, const QString &tag = AnyTag);
85 TorrentFilter(const QString &filter, const TorrentIDSet &idSet = AnyID, const QString &category = AnyCategory, const QString &tags = AnyTag);
87 bool setType(Type type);
88 bool setTypeByName(const QString &filter);
89 bool setTorrentIDSet(const TorrentIDSet &idSet);
90 bool setCategory(const QString &category);
91 bool setTag(const QString &tag);
93 bool match(const BitTorrent::Torrent *torrent) const;
95 private:
96 bool matchState(const BitTorrent::Torrent *torrent) const;
97 bool matchHash(const BitTorrent::Torrent *torrent) const;
98 bool matchCategory(const BitTorrent::Torrent *torrent) const;
99 bool matchTag(const BitTorrent::Torrent *torrent) const;
101 Type m_type {All};
102 QString m_category;
103 QString m_tag;
104 TorrentIDSet m_idSet;