mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +00:00
parent
0cc318664d
commit
26352c9eb4
@ -44,7 +44,6 @@
|
|||||||
#include <libtorrent/info_hash.hpp>
|
#include <libtorrent/info_hash.hpp>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <QBitArray>
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
@ -1250,13 +1249,17 @@ QVector<PeerInfo> TorrentImpl::peers() const
|
|||||||
|
|
||||||
QBitArray TorrentImpl::pieces() const
|
QBitArray TorrentImpl::pieces() const
|
||||||
{
|
{
|
||||||
QBitArray result(m_nativeStatus.pieces.size());
|
if (m_pieces.isEmpty())
|
||||||
for (int i = 0; i < result.size(); ++i)
|
|
||||||
{
|
{
|
||||||
if (m_nativeStatus.pieces[lt::piece_index_t {i}])
|
m_pieces.resize(m_nativeStatus.pieces.size());
|
||||||
result.setBit(i, true);
|
for (int i = 0; i < m_pieces.size(); ++i)
|
||||||
|
{
|
||||||
|
if (m_nativeStatus.pieces[lt::piece_index_t(i)])
|
||||||
|
m_pieces.setBit(i, true);
|
||||||
}
|
}
|
||||||
return result;
|
}
|
||||||
|
|
||||||
|
return m_pieces;
|
||||||
}
|
}
|
||||||
|
|
||||||
QBitArray TorrentImpl::downloadingPieces() const
|
QBitArray TorrentImpl::downloadingPieces() const
|
||||||
@ -2094,6 +2097,7 @@ void TorrentImpl::updateStatus()
|
|||||||
|
|
||||||
void TorrentImpl::updateStatus(const lt::torrent_status &nativeStatus)
|
void TorrentImpl::updateStatus(const lt::torrent_status &nativeStatus)
|
||||||
{
|
{
|
||||||
|
m_pieces.clear();
|
||||||
m_nativeStatus = nativeStatus;
|
m_nativeStatus = nativeStatus;
|
||||||
updateState();
|
updateState();
|
||||||
|
|
||||||
|
@ -37,6 +37,7 @@
|
|||||||
#include <libtorrent/torrent_handle.hpp>
|
#include <libtorrent/torrent_handle.hpp>
|
||||||
#include <libtorrent/torrent_status.hpp>
|
#include <libtorrent/torrent_status.hpp>
|
||||||
|
|
||||||
|
#include <QBitArray>
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
#include <QHash>
|
#include <QHash>
|
||||||
#include <QMap>
|
#include <QMap>
|
||||||
@ -320,5 +321,7 @@ namespace BitTorrent
|
|||||||
bool m_unchecked = false;
|
bool m_unchecked = false;
|
||||||
|
|
||||||
lt::add_torrent_params m_ltAddTorrentParams;
|
lt::add_torrent_params m_ltAddTorrentParams;
|
||||||
|
|
||||||
|
mutable QBitArray m_pieces;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user