WebUI: migrate to fetch API
[qBittorrent.git] / src / base / bittorrent / infohash.cpp
blobc4b514e8c279da511b1338dc44e5aa51a3f62957
1 /*
2 * Bittorrent Client using Qt and libtorrent.
3 * Copyright (C) 2015, 2021 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 #include "infohash.h"
31 #include <QHash>
33 const int TorrentIDTypeId = qRegisterMetaType<BitTorrent::TorrentID>();
35 BitTorrent::InfoHash::InfoHash(const WrappedType &nativeHash)
36 : m_valid {true}
37 , m_nativeHash {nativeHash}
41 #ifdef QBT_USES_LIBTORRENT2
42 BitTorrent::InfoHash::InfoHash(const SHA1Hash &v1, const SHA256Hash &v2)
43 : InfoHash {WrappedType(v1, v2)}
46 #endif
48 bool BitTorrent::InfoHash::isValid() const
50 return m_valid;
53 bool BitTorrent::InfoHash::isHybrid() const
55 #ifdef QBT_USES_LIBTORRENT2
56 return (m_nativeHash.has_v1() && m_nativeHash.has_v2());
57 #else
58 return false;
59 #endif
62 SHA1Hash BitTorrent::InfoHash::v1() const
64 #ifdef QBT_USES_LIBTORRENT2
65 return (m_nativeHash.has_v1() ? SHA1Hash(m_nativeHash.v1) : SHA1Hash());
66 #else
67 return {m_nativeHash};
68 #endif
71 SHA256Hash BitTorrent::InfoHash::v2() const
73 #ifdef QBT_USES_LIBTORRENT2
74 return (m_nativeHash.has_v2() ? SHA256Hash(m_nativeHash.v2) : SHA256Hash());
75 #else
76 return {};
77 #endif
80 BitTorrent::TorrentID BitTorrent::InfoHash::toTorrentID() const
82 #ifdef QBT_USES_LIBTORRENT2
83 return m_nativeHash.get_best();
84 #else
85 return {m_nativeHash};
86 #endif
89 BitTorrent::InfoHash::operator WrappedType() const
91 return m_nativeHash;
94 BitTorrent::TorrentID BitTorrent::TorrentID::fromString(const QString &hashString)
96 return {BaseType::fromString(hashString)};
99 BitTorrent::TorrentID BitTorrent::TorrentID::fromInfoHash(const BitTorrent::InfoHash &infoHash)
101 return infoHash.toTorrentID();
104 BitTorrent::TorrentID BitTorrent::TorrentID::fromSHA1Hash(const SHA1Hash &hash)
106 return {hash};
109 BitTorrent::TorrentID BitTorrent::TorrentID::fromSHA256Hash(const SHA256Hash &hash)
111 return BaseType::UnderlyingType(static_cast<typename SHA256Hash::UnderlyingType>(hash).data());
114 std::size_t BitTorrent::qHash(const BitTorrent::TorrentID &key, const std::size_t seed)
116 return ::qHash(static_cast<TorrentID::BaseType>(key), seed);
119 std::size_t BitTorrent::qHash(const InfoHash &key, const std::size_t seed)
121 return qHashMulti(seed, key.v1(), key.v2());
124 bool BitTorrent::operator==(const BitTorrent::InfoHash &left, const BitTorrent::InfoHash &right)
126 return (static_cast<InfoHash::WrappedType>(left) == static_cast<InfoHash::WrappedType>(right));