2003-10-30 00:28:09 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <ctime>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <iterator>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
|
|
|
#include <cctype>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <boost/filesystem/convenience.hpp>
|
2003-12-09 19:09:34 +01:00
|
|
|
#include <boost/optional.hpp>
|
2003-10-30 00:28:09 +01:00
|
|
|
|
|
|
|
#include "libtorrent/peer_id.hpp"
|
|
|
|
#include "libtorrent/torrent_info.hpp"
|
|
|
|
#include "libtorrent/url_handler.hpp"
|
|
|
|
#include "libtorrent/bencode.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/session.hpp"
|
2004-01-02 21:46:24 +01:00
|
|
|
// TODO: peer_connection is only used because of detail::write_int
|
|
|
|
// and detail::read_int, they should probably be moved to a common
|
|
|
|
// header.
|
|
|
|
#include "libtorrent/peer_connection.hpp"
|
2003-10-30 00:28:09 +01:00
|
|
|
|
|
|
|
#if defined(_MSC_VER) && _MSC_VER < 1300
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
using ::srand;
|
2004-01-02 21:46:24 +01:00
|
|
|
using ::isalnum;
|
2003-10-30 00:28:09 +01:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2003-12-14 06:56:12 +01:00
|
|
|
|
|
|
|
void torrent_handle::set_max_uploads(int max_uploads)
|
|
|
|
{
|
|
|
|
if (m_ses == 0) throw invalid_handle();
|
|
|
|
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_ses->m_mutex);
|
|
|
|
torrent* t = m_ses->find_torrent(m_info_hash);
|
|
|
|
if (t != 0)
|
|
|
|
{
|
|
|
|
t->get_policy().set_max_uploads(max_uploads);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
if (m_chk)
|
2003-12-14 06:56:12 +01:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_chk->m_mutex);
|
|
|
|
|
|
|
|
detail::piece_checker_data* d = m_chk->find_torrent(m_info_hash);
|
|
|
|
if (d != 0)
|
|
|
|
{
|
|
|
|
d->torrent_ptr->get_policy().set_max_uploads(max_uploads);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
throw invalid_handle();
|
|
|
|
}
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
torrent_status torrent_handle::status() const
|
2003-10-30 00:28:09 +01:00
|
|
|
{
|
2003-11-28 18:29:27 +01:00
|
|
|
if (m_ses == 0) throw invalid_handle();
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2003-10-31 05:02:51 +01:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_ses->m_mutex);
|
|
|
|
torrent* t = m_ses->find_torrent(m_info_hash);
|
|
|
|
if (t != 0) return t->status();
|
|
|
|
}
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
if (m_chk)
|
2003-10-30 00:28:09 +01:00
|
|
|
{
|
2003-10-31 05:02:51 +01:00
|
|
|
boost::mutex::scoped_lock l(m_chk->m_mutex);
|
|
|
|
|
|
|
|
detail::piece_checker_data* d = m_chk->find_torrent(m_info_hash);
|
|
|
|
if (d != 0)
|
|
|
|
{
|
|
|
|
torrent_status st;
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2003-10-31 05:02:51 +01:00
|
|
|
if (d == &m_chk->m_torrents.front())
|
|
|
|
st.state = torrent_status::checking_files;
|
|
|
|
else
|
|
|
|
st.state = torrent_status::queued_for_checking;
|
|
|
|
st.progress = d->progress;
|
2003-11-05 00:27:06 +01:00
|
|
|
st.next_announce = boost::posix_time::time_duration();
|
2003-11-20 20:58:29 +01:00
|
|
|
st.pieces.clear();
|
|
|
|
st.pieces.resize(d->torrent_ptr->torrent_file().num_pieces(), false);
|
2003-10-31 05:02:51 +01:00
|
|
|
return st;
|
|
|
|
}
|
2003-10-30 00:28:09 +01:00
|
|
|
}
|
|
|
|
|
2003-11-28 18:29:27 +01:00
|
|
|
throw invalid_handle();
|
|
|
|
}
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
const torrent_info& torrent_handle::get_torrent_info() const
|
2003-11-28 18:29:27 +01:00
|
|
|
{
|
|
|
|
if (m_ses == 0) throw invalid_handle();
|
|
|
|
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_ses->m_mutex);
|
|
|
|
torrent* t = m_ses->find_torrent(m_info_hash);
|
|
|
|
if (t != 0) return t->torrent_file();
|
|
|
|
}
|
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
if (m_chk)
|
2003-11-28 18:29:27 +01:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_chk->m_mutex);
|
|
|
|
detail::piece_checker_data* d = m_chk->find_torrent(m_info_hash);
|
|
|
|
if (d != 0) return d->torrent_ptr->torrent_file();
|
|
|
|
}
|
|
|
|
|
|
|
|
throw invalid_handle();
|
|
|
|
}
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
bool torrent_handle::is_valid() const
|
2003-11-28 18:29:27 +01:00
|
|
|
{
|
|
|
|
if (m_ses == 0) return false;
|
|
|
|
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_ses->m_mutex);
|
|
|
|
torrent* t = m_ses->find_torrent(m_info_hash);
|
|
|
|
if (t != 0) return true;
|
|
|
|
}
|
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
if (m_chk)
|
2003-11-28 18:29:27 +01:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_chk->m_mutex);
|
|
|
|
detail::piece_checker_data* d = m_chk->find_torrent(m_info_hash);
|
|
|
|
if (d != 0) return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2003-10-30 00:28:09 +01:00
|
|
|
}
|
|
|
|
|
2004-01-07 01:48:02 +01:00
|
|
|
entry torrent_handle::write_resume_data()
|
2004-01-02 21:46:24 +01:00
|
|
|
{
|
|
|
|
std::vector<int> piece_index;
|
2004-01-07 01:48:02 +01:00
|
|
|
if (m_ses == 0)
|
|
|
|
throw invalid_handle();
|
2004-01-02 21:46:24 +01:00
|
|
|
|
|
|
|
boost::mutex::scoped_lock l(m_ses->m_mutex);
|
|
|
|
torrent* t = m_ses->find_torrent(m_info_hash);
|
2004-01-07 01:48:02 +01:00
|
|
|
if (t == 0)
|
|
|
|
throw invalid_handle();
|
2004-01-02 21:46:24 +01:00
|
|
|
|
|
|
|
t->filesystem().export_piece_map(piece_index);
|
|
|
|
|
2004-01-07 01:48:02 +01:00
|
|
|
entry ret(entry::dictionary_t);
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2004-01-07 01:48:02 +01:00
|
|
|
ret.dict()["file-format"] = "libtorrent resume file";
|
|
|
|
ret.dict()["file-version"] = 1;
|
2004-01-03 04:22:53 +01:00
|
|
|
|
2004-01-07 01:48:02 +01:00
|
|
|
const sha1_hash& info_hash = t->torrent_file().info_hash();
|
|
|
|
ret.dict()["info-hash"] = std::string(info_hash.begin(), info_hash.end());
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2004-01-07 01:48:02 +01:00
|
|
|
ret.dict()["slots"] = entry(entry::list_t);
|
|
|
|
entry::list_type& slots = ret.dict()["slots"].list();
|
|
|
|
std::copy(piece_index.begin(), piece_index.end(), std::back_inserter(slots));
|
2004-01-02 21:46:24 +01:00
|
|
|
|
|
|
|
const piece_picker& p = t->picker();
|
|
|
|
|
|
|
|
const std::vector<piece_picker::downloading_piece>& q
|
|
|
|
= p.get_download_queue();
|
|
|
|
|
|
|
|
// blocks per piece
|
|
|
|
int num_blocks_per_piece =
|
|
|
|
t->torrent_file().piece_length() / t->block_size();
|
2004-01-07 01:48:02 +01:00
|
|
|
ret.dict()["blocks per piece"] = num_blocks_per_piece;
|
2004-01-02 21:46:24 +01:00
|
|
|
|
|
|
|
// num unfinished pieces
|
|
|
|
int num_unfinished = q.size();
|
2004-01-07 01:48:02 +01:00
|
|
|
ret.dict()["unfinished"] = entry(entry::list_t);
|
|
|
|
entry::list_type& up = ret.dict()["unfinished"].list();
|
2004-01-02 21:46:24 +01:00
|
|
|
|
|
|
|
// info for each unfinished piece
|
|
|
|
for (std::vector<piece_picker::downloading_piece>::const_iterator i
|
|
|
|
= q.begin();
|
|
|
|
i != q.end();
|
|
|
|
++i)
|
|
|
|
{
|
2004-01-07 01:48:02 +01:00
|
|
|
entry piece_struct(entry::list_t);
|
|
|
|
|
|
|
|
// the unfinished piece's index
|
|
|
|
piece_struct.list().push_back(i->index);
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2004-01-07 01:48:02 +01:00
|
|
|
std::string bitmask;
|
2004-01-04 05:29:13 +01:00
|
|
|
const int num_bitmask_bytes = std::max(num_blocks_per_piece / 8, 1);
|
|
|
|
for (int j = 0; j < num_bitmask_bytes; ++j)
|
2004-01-02 21:46:24 +01:00
|
|
|
{
|
2004-01-04 05:29:13 +01:00
|
|
|
unsigned char v = 0;
|
|
|
|
for (int k = 0; k < 8; ++k)
|
|
|
|
v |= i->finished_blocks[j*8+k]?(1 << k):0;
|
2004-01-07 01:48:02 +01:00
|
|
|
bitmask.push_back(v);
|
2004-01-02 21:46:24 +01:00
|
|
|
}
|
2004-01-07 01:48:02 +01:00
|
|
|
piece_struct.list().push_back(bitmask);
|
|
|
|
|
|
|
|
// TODO: add a hash to piece_struct
|
|
|
|
|
|
|
|
// push the struct onto the unfinished-piece list
|
|
|
|
up.push_back(piece_struct);
|
2004-01-02 21:46:24 +01:00
|
|
|
}
|
2004-01-07 01:48:02 +01:00
|
|
|
return ret;
|
2004-01-02 21:46:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
boost::filesystem::path torrent_handle::save_path() const
|
|
|
|
{
|
|
|
|
if (m_ses == 0) throw invalid_handle();
|
|
|
|
|
|
|
|
// copy the path into this local variable before
|
|
|
|
// unlocking and returning. Since we could get really
|
|
|
|
// unlucky and having the path removed after we
|
|
|
|
// have unlocked the data but before the return
|
|
|
|
// value has been copied into the destination
|
|
|
|
boost::filesystem::path ret;
|
|
|
|
|
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_ses->m_mutex);
|
|
|
|
torrent* t = m_ses->find_torrent(m_info_hash);
|
|
|
|
if (t != 0)
|
|
|
|
{
|
|
|
|
ret = t->save_path();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
if (m_chk)
|
2003-12-07 06:53:04 +01:00
|
|
|
{
|
|
|
|
boost::mutex::scoped_lock l(m_chk->m_mutex);
|
|
|
|
detail::piece_checker_data* d = m_chk->find_torrent(m_info_hash);
|
|
|
|
if (d != 0)
|
|
|
|
{
|
|
|
|
ret = d->save_path;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
throw invalid_handle();
|
|
|
|
}
|
|
|
|
|
|
|
|
void torrent_handle::get_peer_info(std::vector<peer_info>& v) const
|
2003-10-30 00:28:09 +01:00
|
|
|
{
|
|
|
|
v.clear();
|
2003-11-28 18:29:27 +01:00
|
|
|
if (m_ses == 0) throw invalid_handle();
|
2003-11-06 11:44:19 +01:00
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
boost::mutex::scoped_lock l(m_ses->m_mutex);
|
|
|
|
|
2003-10-31 05:02:51 +01:00
|
|
|
const torrent* t = m_ses->find_torrent(m_info_hash);
|
|
|
|
if (t == 0) return;
|
2003-10-30 00:28:09 +01:00
|
|
|
|
|
|
|
for (std::vector<peer_connection*>::const_iterator i = t->begin();
|
|
|
|
i != t->end();
|
|
|
|
++i)
|
|
|
|
{
|
|
|
|
peer_connection* peer = *i;
|
2003-12-01 22:27:27 +01:00
|
|
|
|
|
|
|
// peers that hasn't finished the handshake should
|
|
|
|
// not be included in this list
|
|
|
|
if (peer->associated_torrent() == 0) continue;
|
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
v.push_back(peer_info());
|
|
|
|
peer_info& p = v.back();
|
|
|
|
|
|
|
|
const stat& statistics = peer->statistics();
|
|
|
|
p.down_speed = statistics.download_rate();
|
|
|
|
p.up_speed = statistics.upload_rate();
|
|
|
|
p.id = peer->get_peer_id();
|
|
|
|
p.ip = peer->get_socket()->sender();
|
|
|
|
|
2003-12-01 06:01:40 +01:00
|
|
|
// TODO: add the prev_amount_downloaded and prev_amount_uploaded
|
|
|
|
// from the peer list in the policy
|
2003-12-22 08:14:35 +01:00
|
|
|
p.total_download = statistics.total_payload_download();
|
|
|
|
p.total_upload = statistics.total_payload_upload();
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2003-11-09 19:17:09 +01:00
|
|
|
p.upload_limit = peer->send_quota();
|
2003-12-08 17:39:05 +01:00
|
|
|
p.upload_ceiling = peer->send_quota_limit();
|
2003-11-09 19:17:09 +01:00
|
|
|
|
2003-12-16 14:33:29 +01:00
|
|
|
p.load_balancing = peer->total_free_upload();
|
|
|
|
|
2004-01-05 00:51:54 +01:00
|
|
|
p.download_queue_length = peer->download_queue().size();
|
|
|
|
|
2003-12-09 19:09:34 +01:00
|
|
|
boost::optional<piece_block_progress> ret = peer->downloading_piece();
|
|
|
|
if (ret)
|
|
|
|
{
|
|
|
|
p.downloading_piece_index = ret->piece_index;
|
|
|
|
p.downloading_block_index = ret->block_index;
|
|
|
|
p.downloading_progress = ret->bytes_downloaded;
|
|
|
|
p.downloading_total = ret->full_block_bytes;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p.downloading_piece_index = -1;
|
|
|
|
p.downloading_block_index = -1;
|
|
|
|
p.downloading_progress = 0;
|
|
|
|
p.downloading_total = 0;
|
|
|
|
}
|
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
p.flags = 0;
|
|
|
|
if (peer->is_interesting()) p.flags |= peer_info::interesting;
|
2003-12-01 06:01:40 +01:00
|
|
|
if (peer->is_choked()) p.flags |= peer_info::choked;
|
2003-10-30 00:28:09 +01:00
|
|
|
if (peer->is_peer_interested()) p.flags |= peer_info::remote_interested;
|
|
|
|
if (peer->has_peer_choked()) p.flags |= peer_info::remote_choked;
|
2004-01-04 05:29:13 +01:00
|
|
|
if (peer->support_extensions()) p.flags |= peer_info::supports_extensions;
|
2003-10-30 00:28:09 +01:00
|
|
|
|
|
|
|
p.pieces = peer->get_bitfield();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
void torrent_handle::get_download_queue(std::vector<partial_piece_info>& queue) const
|
2003-10-30 00:28:09 +01:00
|
|
|
{
|
2003-11-02 22:06:50 +01:00
|
|
|
queue.clear();
|
|
|
|
|
2003-11-28 18:29:27 +01:00
|
|
|
if (m_ses == 0) throw invalid_handle();
|
2003-11-02 22:06:50 +01:00
|
|
|
|
|
|
|
boost::mutex::scoped_lock l(m_ses->m_mutex);
|
|
|
|
torrent* t = m_ses->find_torrent(m_info_hash);
|
|
|
|
if (t == 0) return;
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2003-11-02 22:06:50 +01:00
|
|
|
const piece_picker& p = t->picker();
|
|
|
|
|
|
|
|
const std::vector<piece_picker::downloading_piece>& q
|
|
|
|
= p.get_download_queue();
|
|
|
|
|
|
|
|
for (std::vector<piece_picker::downloading_piece>::const_iterator i
|
|
|
|
= q.begin();
|
|
|
|
i != q.end();
|
|
|
|
++i)
|
|
|
|
{
|
|
|
|
partial_piece_info pi;
|
|
|
|
pi.finished_blocks = i->finished_blocks;
|
|
|
|
pi.requested_blocks = i->requested_blocks;
|
|
|
|
for (int j = 0; j < partial_piece_info::max_blocks_per_piece; ++j)
|
|
|
|
{
|
|
|
|
pi.peer[j] = i->info[j].peer;
|
|
|
|
pi.num_downloads[j] = i->info[j].num_downloads;
|
|
|
|
}
|
|
|
|
pi.piece_index = i->index;
|
|
|
|
pi.blocks_in_piece = p.blocks_in_piece(i->index);
|
|
|
|
queue.push_back(pi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
}
|