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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-03-17 18:15:16 +01:00
|
|
|
#include "libtorrent/pch.hpp"
|
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
#include <ctime>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <iomanip>
|
|
|
|
#include <iterator>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
|
|
|
#include <cctype>
|
|
|
|
#include <algorithm>
|
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
#include <boost/lexical_cast.hpp>
|
|
|
|
#include <boost/filesystem/convenience.hpp>
|
2003-12-09 19:09:34 +01:00
|
|
|
#include <boost/optional.hpp>
|
2004-03-23 23:58:18 +01:00
|
|
|
#include <boost/bind.hpp>
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
#include "libtorrent/peer_id.hpp"
|
2006-04-25 23:04:48 +02:00
|
|
|
#include "libtorrent/bt_peer_connection.hpp"
|
2003-10-30 00:28:09 +01:00
|
|
|
#include "libtorrent/torrent_info.hpp"
|
2004-01-31 11:46:15 +01:00
|
|
|
#include "libtorrent/tracker_manager.hpp"
|
2003-10-30 00:28:09 +01:00
|
|
|
#include "libtorrent/bencode.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/session.hpp"
|
2006-10-11 16:02:21 +02:00
|
|
|
#include "libtorrent/aux_/session_impl.hpp"
|
2004-02-29 17:39:52 +01:00
|
|
|
#include "libtorrent/invariant_check.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
|
|
|
|
|
2004-10-29 15:21:09 +02:00
|
|
|
using boost::bind;
|
2006-04-25 23:04:48 +02:00
|
|
|
using boost::mutex;
|
2006-10-11 16:02:21 +02:00
|
|
|
using libtorrent::aux::session_impl;
|
2004-10-29 15:21:09 +02:00
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2007-06-10 22:46:09 +02:00
|
|
|
namespace fs = boost::filesystem;
|
|
|
|
|
2004-03-23 23:58:18 +01:00
|
|
|
namespace
|
|
|
|
{
|
2005-05-25 12:01:01 +02:00
|
|
|
void throw_invalid_handle()
|
2004-03-30 01:25:13 +02:00
|
|
|
{
|
2005-05-30 19:43:03 +02:00
|
|
|
throw invalid_handle();
|
2005-05-25 12:01:01 +02:00
|
|
|
}
|
|
|
|
|
2007-08-27 02:47:17 +02:00
|
|
|
boost::shared_ptr<torrent> find_torrent(
|
2006-10-11 16:02:21 +02:00
|
|
|
session_impl* ses
|
|
|
|
, aux::checker_impl* chk
|
2007-08-27 02:47:17 +02:00
|
|
|
, sha1_hash const& hash)
|
2004-03-30 01:25:13 +02:00
|
|
|
{
|
2007-09-19 20:34:01 +02:00
|
|
|
aux::piece_checker_data* d = chk->find_torrent(hash);
|
|
|
|
if (d != 0) return d->torrent_ptr;
|
2004-03-30 01:25:13 +02:00
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
boost::shared_ptr<torrent> t = ses->find_torrent(hash).lock();
|
|
|
|
if (t) return t;
|
2004-03-23 23:58:18 +01:00
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
// throwing directly instead of calling
|
|
|
|
// the throw_invalid_handle() function
|
|
|
|
// avoids a warning in gcc
|
2005-05-31 00:50:54 +02:00
|
|
|
throw invalid_handle();
|
2004-03-23 23:58:18 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-02-29 17:39:52 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
|
|
|
|
void torrent_handle::check_invariant() const
|
|
|
|
{
|
2007-09-19 20:34:01 +02:00
|
|
|
assert((m_ses == 0 && m_chk == 0) || (m_ses != 0 && m_chk != 0));
|
2004-02-29 17:39:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::set_max_uploads(int max_uploads) const
|
2003-12-14 06:56:12 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2004-01-25 13:37:15 +01:00
|
|
|
assert(max_uploads >= 2 || max_uploads == -1);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_max_uploads(max_uploads);
|
2003-12-14 06:56:12 +01:00
|
|
|
}
|
2004-01-21 01:59:38 +01:00
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::use_interface(const char* net_interface) const
|
2004-02-26 01:27:06 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->use_interface(net_interface);
|
2004-02-26 01:27:06 +01:00
|
|
|
}
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::set_max_connections(int max_connections) const
|
2004-01-21 01:59:38 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2004-11-18 23:33:50 +01:00
|
|
|
assert(max_connections >= 2 || max_connections == -1);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_max_connections(max_connections);
|
2004-01-21 01:59:38 +01:00
|
|
|
}
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
void torrent_handle::set_peer_upload_limit(tcp::endpoint ip, int limit) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
assert(limit >= -1);
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_peer_upload_limit(ip, limit);
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void torrent_handle::set_peer_download_limit(tcp::endpoint ip, int limit) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
assert(limit >= -1);
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_peer_download_limit(ip, limit);
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::set_upload_limit(int limit) const
|
2003-11-28 18:29:27 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2004-03-23 23:58:18 +01:00
|
|
|
assert(limit >= -1);
|
2003-11-28 18:29:27 +01:00
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_upload_limit(limit);
|
2003-11-28 18:29:27 +01:00
|
|
|
}
|
|
|
|
|
2007-04-10 11:25:17 +02:00
|
|
|
int torrent_handle::upload_limit() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->upload_limit();
|
2007-04-10 11:25:17 +02:00
|
|
|
}
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::set_download_limit(int limit) const
|
2004-07-01 20:51:13 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2004-07-01 20:51:13 +02:00
|
|
|
assert(limit >= -1);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_download_limit(limit);
|
2004-07-01 20:51:13 +02:00
|
|
|
}
|
|
|
|
|
2007-04-10 11:25:17 +02:00
|
|
|
int torrent_handle::download_limit() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-08-27 02:47:17 +02:00
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->download_limit();
|
2007-04-10 11:25:17 +02:00
|
|
|
}
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
void torrent_handle::move_storage(
|
|
|
|
fs::path const& save_path) const
|
2004-07-18 02:39:58 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->move_storage(save_path);
|
2004-07-18 02:39:58 +02:00
|
|
|
}
|
|
|
|
|
2004-09-10 02:47:30 +02:00
|
|
|
bool torrent_handle::has_metadata() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->valid_metadata();
|
2004-09-10 02:47:30 +02:00
|
|
|
}
|
|
|
|
|
2004-09-08 01:16:11 +02:00
|
|
|
bool torrent_handle::is_seed() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->is_seed();
|
2004-09-08 01:16:11 +02:00
|
|
|
}
|
|
|
|
|
2004-03-21 03:03:37 +01:00
|
|
|
bool torrent_handle::is_paused() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->is_paused();
|
2004-03-21 03:03:37 +01:00
|
|
|
}
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::pause() const
|
2004-03-21 03:03:37 +01:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->pause();
|
2004-03-21 03:03:37 +01:00
|
|
|
}
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::resume() const
|
2004-03-21 03:03:37 +01:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->resume();
|
2004-03-23 23:58:18 +01:00
|
|
|
}
|
2004-03-21 03:03:37 +01:00
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::set_tracker_login(std::string const& name
|
|
|
|
, std::string const& password) const
|
2004-03-23 23:58:18 +01:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2004-03-21 03:03:37 +01:00
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_tracker_login(name, password);
|
2004-03-21 03:03:37 +01:00
|
|
|
}
|
|
|
|
|
2006-06-12 01:24:36 +02:00
|
|
|
void torrent_handle::file_progress(std::vector<float>& progress)
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
2007-09-19 20:34:01 +02:00
|
|
|
assert(m_chk);
|
|
|
|
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2006-06-12 01:24:36 +02:00
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
aux::piece_checker_data* d = m_chk->find_torrent(m_info_hash);
|
|
|
|
if (d != 0)
|
2006-06-12 01:24:36 +02:00
|
|
|
{
|
2007-09-19 20:34:01 +02:00
|
|
|
if (!d->processing)
|
2006-06-12 01:24:36 +02:00
|
|
|
{
|
2007-09-19 20:34:01 +02:00
|
|
|
torrent_info const& info = d->torrent_ptr->torrent_file();
|
|
|
|
progress.clear();
|
|
|
|
progress.resize(info.num_files(), 0.f);
|
2006-06-12 01:24:36 +02:00
|
|
|
return;
|
|
|
|
}
|
2007-09-19 20:34:01 +02:00
|
|
|
d->torrent_ptr->file_progress(progress);
|
|
|
|
return;
|
2006-06-12 01:24:36 +02:00
|
|
|
}
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
boost::shared_ptr<torrent> t = m_ses->find_torrent(m_info_hash).lock();
|
|
|
|
if (t) return t->file_progress(progress);
|
2006-06-12 01:24:36 +02:00
|
|
|
|
|
|
|
throw_invalid_handle();
|
|
|
|
}
|
2004-03-23 23:58:18 +01:00
|
|
|
|
|
|
|
torrent_status torrent_handle::status() const
|
2004-02-22 23:40:45 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2005-05-25 12:01:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
2007-09-19 20:34:01 +02:00
|
|
|
assert(m_chk);
|
|
|
|
|
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2004-02-22 23:40:45 +01:00
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
aux::piece_checker_data* d = m_chk->find_torrent(m_info_hash);
|
|
|
|
if (d != 0)
|
2004-02-22 23:40:45 +01:00
|
|
|
{
|
2007-10-01 08:00:17 +02:00
|
|
|
torrent_status st = d->torrent_ptr->status();
|
2004-03-23 23:58:18 +01:00
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (d->processing)
|
2004-02-29 13:26:05 +01:00
|
|
|
{
|
2007-09-19 20:34:01 +02:00
|
|
|
if (d->torrent_ptr->is_allocating())
|
|
|
|
st.state = torrent_status::allocating;
|
2004-03-23 23:58:18 +01:00
|
|
|
else
|
2007-09-19 20:34:01 +02:00
|
|
|
st.state = torrent_status::checking_files;
|
2004-02-29 13:26:05 +01:00
|
|
|
}
|
2007-09-19 20:34:01 +02:00
|
|
|
else
|
|
|
|
st.state = torrent_status::queued_for_checking;
|
|
|
|
st.progress = d->progress;
|
|
|
|
st.paused = d->torrent_ptr->is_paused();
|
|
|
|
return st;
|
2004-02-22 23:40:45 +01:00
|
|
|
}
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
boost::shared_ptr<torrent> t = m_ses->find_torrent(m_info_hash).lock();
|
|
|
|
if (t) return t->status();
|
2005-05-25 12:01:01 +02:00
|
|
|
|
|
|
|
throw_invalid_handle();
|
2005-05-31 00:50:54 +02:00
|
|
|
return torrent_status();
|
2004-02-22 23:40:45 +01:00
|
|
|
}
|
|
|
|
|
2006-09-04 19:17:45 +02:00
|
|
|
void torrent_handle::set_sequenced_download_threshold(int threshold) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_sequenced_download_threshold(threshold);
|
2006-09-04 19:17:45 +02:00
|
|
|
}
|
|
|
|
|
2007-03-20 02:59:00 +01:00
|
|
|
std::string torrent_handle::name() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-08-27 02:47:17 +02:00
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->name();
|
2007-03-20 02:59:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-30 08:52:59 +02:00
|
|
|
void torrent_handle::piece_availability(std::vector<int>& avail) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->piece_availability(avail);
|
2007-05-30 08:52:59 +02:00
|
|
|
}
|
|
|
|
|
2007-03-20 02:59:00 +01:00
|
|
|
void torrent_handle::piece_priority(int index, int priority) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_piece_priority(index, priority);
|
2007-03-20 02:59:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int torrent_handle::piece_priority(int index) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->piece_priority(index);
|
2007-03-20 02:59:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void torrent_handle::prioritize_pieces(std::vector<int> const& pieces) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->prioritize_pieces(pieces);
|
2007-03-20 02:59:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<int> torrent_handle::piece_priorities() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-03-20 02:59:00 +01:00
|
|
|
std::vector<int> ret;
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->piece_priorities(ret);
|
2007-03-20 02:59:00 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void torrent_handle::prioritize_files(std::vector<int> const& files) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->prioritize_files(files);
|
2007-03-20 02:59:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ============ start deprecation ===============
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::filter_piece(int index, bool filter) const
|
2005-05-25 12:01:01 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->filter_piece(index, filter);
|
2005-05-25 12:01:01 +02:00
|
|
|
}
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::filter_pieces(std::vector<bool> const& pieces) const
|
2005-06-23 01:04:37 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->filter_pieces(pieces);
|
2005-06-23 01:04:37 +02:00
|
|
|
}
|
|
|
|
|
2005-05-25 12:01:01 +02:00
|
|
|
bool torrent_handle::is_piece_filtered(int index) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->is_piece_filtered(index);
|
2005-05-25 12:01:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<bool> torrent_handle::filtered_pieces() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2005-05-25 12:01:01 +02:00
|
|
|
std::vector<bool> ret;
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->filtered_pieces(ret);
|
2005-05-25 12:01:01 +02:00
|
|
|
return ret;
|
|
|
|
}
|
2005-07-02 10:47:46 +02:00
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::filter_files(std::vector<bool> const& files) const
|
2005-07-04 01:33:47 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->filter_files(files);
|
2005-07-04 01:33:47 +02:00
|
|
|
}
|
|
|
|
|
2007-03-20 02:59:00 +01:00
|
|
|
// ============ end deprecation ===============
|
|
|
|
|
|
|
|
|
2004-09-12 12:12:16 +02:00
|
|
|
std::vector<announce_entry> const& torrent_handle::trackers() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->trackers();
|
2004-09-12 12:12:16 +02:00
|
|
|
}
|
|
|
|
|
2007-08-17 18:40:55 +02:00
|
|
|
void torrent_handle::add_url_seed(std::string const& url) const
|
2006-04-25 23:04:48 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->add_url_seed(url);
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
|
|
|
|
2007-08-17 18:40:55 +02:00
|
|
|
void torrent_handle::remove_url_seed(std::string const& url) const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->remove_url_seed(url);
|
2007-08-17 18:40:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::set<std::string> torrent_handle::url_seeds() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->url_seeds();
|
2007-08-17 18:40:55 +02:00
|
|
|
}
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::replace_trackers(
|
|
|
|
std::vector<announce_entry> const& urls) const
|
2004-09-12 12:12:16 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->replace_trackers(urls);
|
2004-09-12 12:12:16 +02:00
|
|
|
}
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
torrent_info const& torrent_handle::get_torrent_info() const
|
2004-03-23 23:58:18 +01:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
boost::shared_ptr<torrent> t = find_torrent(m_ses, m_chk, m_info_hash);
|
|
|
|
if (!t->valid_metadata()) throw_invalid_handle();
|
|
|
|
return t->torrent_file();
|
2004-03-23 23:58:18 +01:00
|
|
|
}
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
bool torrent_handle::is_valid() const
|
2003-11-28 18:29:27 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2003-11-28 18:29:27 +01:00
|
|
|
if (m_ses == 0) return false;
|
2007-09-19 20:34:01 +02:00
|
|
|
assert(m_chk);
|
2003-11-28 18:29:27 +01:00
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
|
|
|
aux::piece_checker_data* d = m_chk->find_torrent(m_info_hash);
|
|
|
|
if (d != 0) return true;
|
2003-11-28 18:29:27 +01:00
|
|
|
|
2005-05-25 12:01:01 +02:00
|
|
|
{
|
2006-04-25 23:04:48 +02:00
|
|
|
boost::weak_ptr<torrent> t = m_ses->find_torrent(m_info_hash);
|
|
|
|
if (!t.expired()) return true;
|
2005-05-25 12:01:01 +02:00
|
|
|
}
|
|
|
|
|
2003-11-28 18:29:27 +01:00
|
|
|
return false;
|
2003-10-30 00:28:09 +01:00
|
|
|
}
|
|
|
|
|
2004-02-25 00:55:42 +01:00
|
|
|
entry torrent_handle::write_resume_data() const
|
2004-01-02 21:46:24 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2004-01-02 21:46:24 +01:00
|
|
|
std::vector<int> piece_index;
|
2004-09-16 03:14:16 +02:00
|
|
|
if (m_ses == 0) return entry();
|
2007-09-19 20:34:01 +02:00
|
|
|
assert(m_chk);
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses->m_mutex);
|
|
|
|
boost::shared_ptr<torrent> t = m_ses->find_torrent(m_info_hash).lock();
|
|
|
|
if (!t) return entry();
|
2004-06-14 01:30:42 +02:00
|
|
|
|
|
|
|
if (!t->valid_metadata()) return entry();
|
|
|
|
|
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-03-05 13:04:47 +01:00
|
|
|
ret["file-format"] = "libtorrent resume file";
|
|
|
|
ret["file-version"] = 1;
|
2004-01-03 04:22:53 +01:00
|
|
|
|
2007-04-17 23:54:40 +02:00
|
|
|
ret["allocation"] = t->filesystem().compact_allocation()?"compact":"full";
|
|
|
|
|
2004-01-07 01:48:02 +01:00
|
|
|
const sha1_hash& info_hash = t->torrent_file().info_hash();
|
2004-03-05 13:04:47 +01:00
|
|
|
ret["info-hash"] = std::string((char*)info_hash.begin(), (char*)info_hash.end());
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2004-03-05 13:04:47 +01:00
|
|
|
ret["slots"] = entry(entry::list_t);
|
2004-03-17 13:14:44 +01:00
|
|
|
entry::list_type& slots = ret["slots"].list();
|
2004-01-07 01:48:02 +01:00
|
|
|
std::copy(piece_index.begin(), piece_index.end(), std::back_inserter(slots));
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2006-12-12 13:56:18 +01:00
|
|
|
// blocks per piece
|
|
|
|
int num_blocks_per_piece =
|
|
|
|
static_cast<int>(t->torrent_file().piece_length()) / t->block_size();
|
|
|
|
ret["blocks per piece"] = num_blocks_per_piece;
|
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
// if this torrent is a seed, we won't have a piece picker
|
|
|
|
// and there will be no half-finished pieces.
|
|
|
|
if (!t->is_seed())
|
|
|
|
{
|
|
|
|
const piece_picker& p = t->picker();
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
const std::vector<piece_picker::downloading_piece>& q
|
|
|
|
= p.get_download_queue();
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
// unfinished pieces
|
|
|
|
ret["unfinished"] = entry::list_type();
|
|
|
|
entry::list_type& up = ret["unfinished"].list();
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
// info for each unfinished piece
|
|
|
|
for (std::vector<piece_picker::downloading_piece>::const_iterator i
|
|
|
|
= q.begin(); i != q.end(); ++i)
|
|
|
|
{
|
2007-05-08 13:13:13 +02:00
|
|
|
if (i->finished == 0) continue;
|
2004-01-24 18:14:03 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
entry piece_struct(entry::dictionary_t);
|
2004-01-07 01:48:02 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
// the unfinished piece's index
|
|
|
|
piece_struct["piece"] = i->index;
|
2004-01-02 21:46:24 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
std::string bitmask;
|
|
|
|
const int num_bitmask_bytes
|
2007-08-17 00:14:17 +02:00
|
|
|
= (std::max)(num_blocks_per_piece / 8, 1);
|
2004-01-24 18:14:03 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
for (int j = 0; j < num_bitmask_bytes; ++j)
|
|
|
|
{
|
|
|
|
unsigned char v = 0;
|
2007-08-17 00:14:17 +02:00
|
|
|
int bits = (std::min)(num_blocks_per_piece - j*8, 8);
|
2007-05-31 04:22:04 +02:00
|
|
|
for (int k = 0; k < bits; ++k)
|
2007-06-10 22:46:09 +02:00
|
|
|
v |= (i->info[j*8+k].state == piece_picker::block_info::state_finished)
|
|
|
|
? (1 << k) : 0;
|
2006-12-04 13:20:34 +01:00
|
|
|
bitmask.insert(bitmask.end(), v);
|
2007-05-31 04:22:04 +02:00
|
|
|
assert(bits == 8 || j == num_bitmask_bytes - 1);
|
2006-12-04 13:20:34 +01:00
|
|
|
}
|
|
|
|
piece_struct["bitmask"] = bitmask;
|
2004-01-07 01:48:02 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
assert(t->filesystem().slot_for_piece(i->index) >= 0);
|
|
|
|
unsigned long adler
|
|
|
|
= t->filesystem().piece_crc(
|
|
|
|
t->filesystem().slot_for_piece(i->index)
|
|
|
|
, t->block_size()
|
2007-05-08 13:13:13 +02:00
|
|
|
, i->info);
|
2004-01-24 18:14:03 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
piece_struct["adler32"] = adler;
|
2004-01-07 01:48:02 +01:00
|
|
|
|
2006-12-04 13:20:34 +01:00
|
|
|
// push the struct onto the unfinished-piece list
|
|
|
|
up.push_back(piece_struct);
|
|
|
|
}
|
2004-01-02 21:46:24 +01:00
|
|
|
}
|
2004-01-12 04:05:10 +01:00
|
|
|
// write local peers
|
|
|
|
|
2004-03-05 13:04:47 +01:00
|
|
|
ret["peers"] = entry::list_type();
|
|
|
|
entry::list_type& peer_list = ret["peers"].list();
|
2006-05-28 21:03:54 +02:00
|
|
|
|
|
|
|
policy& pol = t->get_policy();
|
2004-01-12 04:05:10 +01:00
|
|
|
|
2006-05-28 21:03:54 +02:00
|
|
|
for (policy::iterator i = pol.begin_peer()
|
|
|
|
, end(pol.end_peer()); i != end; ++i)
|
2004-01-12 04:05:10 +01:00
|
|
|
{
|
|
|
|
// we cannot save remote connection
|
|
|
|
// since we don't know their listen port
|
2006-05-28 21:03:54 +02:00
|
|
|
// unless they gave us their listen port
|
|
|
|
// through the extension handshake
|
|
|
|
// so, if the peer is not connectable (i.e. we
|
|
|
|
// don't know its listen port) or if it has
|
|
|
|
// been banned, don't save it.
|
2007-10-02 21:11:04 +02:00
|
|
|
if (i->second.type == policy::peer::not_connectable
|
|
|
|
|| i->second.banned) continue;
|
2006-05-28 21:03:54 +02:00
|
|
|
|
2007-10-02 21:11:04 +02:00
|
|
|
tcp::endpoint ip = i->second.ip;
|
2004-03-17 13:14:44 +01:00
|
|
|
entry peer(entry::dictionary_t);
|
2006-04-25 23:04:48 +02:00
|
|
|
peer["ip"] = ip.address().to_string();
|
|
|
|
peer["port"] = ip.port();
|
2004-01-12 04:05:10 +01:00
|
|
|
peer_list.push_back(peer);
|
|
|
|
}
|
|
|
|
|
2007-05-24 20:53:55 +02:00
|
|
|
t->filesystem().write_resume_data(ret);
|
2004-01-17 21:04:19 +01:00
|
|
|
|
2004-01-07 01:48:02 +01:00
|
|
|
return ret;
|
2004-01-02 21:46:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
fs::path torrent_handle::save_path() const
|
2003-12-07 06:53:04 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->save_path();
|
2003-12-07 06:53:04 +01:00
|
|
|
}
|
|
|
|
|
2007-04-10 23:23:13 +02:00
|
|
|
void torrent_handle::connect_peer(tcp::endpoint const& adr, int source) const
|
2004-01-08 18:03:04 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2005-05-25 12:01:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
2007-09-19 20:34:01 +02:00
|
|
|
assert(m_chk);
|
2004-01-08 18:03:04 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses->m_mutex);
|
|
|
|
boost::shared_ptr<torrent> t = m_ses->find_torrent(m_info_hash).lock();
|
2006-04-27 02:39:21 +02:00
|
|
|
|
2006-05-28 21:03:54 +02:00
|
|
|
if (!t)
|
|
|
|
{
|
|
|
|
// the torrent is being checked. Add the peer to its
|
|
|
|
// peer list. The entries in there will be connected
|
|
|
|
// once the checking is complete.
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
aux::piece_checker_data* d = m_chk->find_torrent(m_info_hash);
|
2006-05-28 21:03:54 +02:00
|
|
|
if (d == 0) throw_invalid_handle();
|
|
|
|
d->peers.push_back(adr);
|
|
|
|
return;
|
|
|
|
}
|
2004-01-08 18:03:04 +01:00
|
|
|
|
|
|
|
peer_id id;
|
|
|
|
std::fill(id.begin(), id.end(), 0);
|
2007-04-10 23:23:13 +02:00
|
|
|
t->get_policy().peer_from_tracker(adr, id, source, 0);
|
2004-01-08 18:03:04 +01:00
|
|
|
}
|
|
|
|
|
2005-05-03 15:13:57 +02:00
|
|
|
void torrent_handle::force_reannounce(
|
2007-04-07 05:05:59 +02:00
|
|
|
boost::posix_time::time_duration duration) const
|
2005-05-03 15:13:57 +02:00
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2005-05-25 12:01:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
2007-09-19 20:34:01 +02:00
|
|
|
assert(m_chk);
|
2005-05-03 15:13:57 +02:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses->m_mutex);
|
|
|
|
boost::shared_ptr<torrent> t = m_ses->find_torrent(m_info_hash).lock();
|
|
|
|
if (!t) throw_invalid_handle();
|
2005-05-03 15:13:57 +02:00
|
|
|
|
2007-04-05 00:27:36 +02:00
|
|
|
t->force_tracker_request(time_now()
|
2007-04-07 05:05:59 +02:00
|
|
|
+ seconds(duration.total_seconds()));
|
2005-05-03 15:13:57 +02:00
|
|
|
}
|
|
|
|
|
2004-01-08 18:03:04 +01:00
|
|
|
void torrent_handle::force_reannounce() const
|
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2005-05-25 12:01:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
2007-09-19 20:34:01 +02:00
|
|
|
assert(m_chk);
|
2004-01-08 18:03:04 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses->m_mutex);
|
|
|
|
boost::shared_ptr<torrent> t = m_ses->find_torrent(m_info_hash).lock();
|
|
|
|
if (!t) throw_invalid_handle();
|
2004-01-08 18:03:04 +01:00
|
|
|
|
|
|
|
t->force_tracker_request();
|
|
|
|
}
|
|
|
|
|
2005-10-19 15:58:41 +02:00
|
|
|
void torrent_handle::set_ratio(float ratio) const
|
2004-01-12 04:05:10 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2007-09-19 20:34:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2004-01-12 04:05:10 +01:00
|
|
|
assert(ratio >= 0.f);
|
|
|
|
if (ratio < 1.f && ratio > 0.f)
|
|
|
|
ratio = 1.f;
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->set_ratio(ratio);
|
2004-01-12 04:05:10 +01:00
|
|
|
}
|
|
|
|
|
2007-05-02 21:47:38 +02:00
|
|
|
#ifndef TORRENT_DISABLE_RESOLVE_COUNTRIES
|
2007-01-29 08:39:33 +01:00
|
|
|
void torrent_handle::resolve_countries(bool r)
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
find_torrent(m_ses, m_chk, m_info_hash)->resolve_countries(r);
|
2007-01-29 08:39:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool torrent_handle::resolve_countries() const
|
|
|
|
{
|
|
|
|
INVARIANT_CHECK;
|
2007-09-19 20:34:01 +02:00
|
|
|
|
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
|
|
|
assert(m_chk);
|
|
|
|
|
2007-08-27 03:05:11 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l1(m_ses->m_mutex);
|
|
|
|
mutex::scoped_lock l2(m_chk->m_mutex);
|
2007-08-27 02:47:17 +02:00
|
|
|
return find_torrent(m_ses, m_chk, m_info_hash)->resolving_countries();
|
2007-01-29 08:39:33 +01:00
|
|
|
}
|
2007-05-02 21:47:38 +02:00
|
|
|
#endif
|
2007-01-29 08:39:33 +01:00
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
void torrent_handle::get_peer_info(std::vector<peer_info>& v) const
|
2003-10-30 00:28:09 +01:00
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2005-05-25 12:01:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
2007-09-19 20:34:01 +02:00
|
|
|
assert(m_chk);
|
|
|
|
|
|
|
|
v.clear();
|
2003-11-06 11:44:19 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses->m_mutex);
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
boost::shared_ptr<const torrent> t = m_ses->find_torrent(m_info_hash).lock();
|
|
|
|
if (!t) return;
|
2003-10-30 00:28:09 +01:00
|
|
|
|
2004-01-13 04:08:59 +01:00
|
|
|
for (torrent::const_peer_iterator i = t->begin();
|
2005-05-25 12:01:01 +02:00
|
|
|
i != t->end(); ++i)
|
2003-10-30 00:28:09 +01:00
|
|
|
{
|
2004-01-13 04:08:59 +01:00
|
|
|
peer_connection* peer = i->second;
|
2003-12-01 22:27:27 +01:00
|
|
|
|
2007-06-03 07:57:05 +02:00
|
|
|
// incoming peers that haven't finished the handshake should
|
2003-12-01 22:27:27 +01:00
|
|
|
// not be included in this list
|
2006-04-25 23:04:48 +02:00
|
|
|
if (peer->associated_torrent().expired()) continue;
|
2003-12-01 22:27:27 +01:00
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
v.push_back(peer_info());
|
|
|
|
peer_info& p = v.back();
|
2005-11-02 17:28:39 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
peer->get_peer_info(p);
|
2007-05-02 21:47:38 +02:00
|
|
|
#ifndef TORRENT_DISABLE_RESOLVE_COUNTRIES
|
2007-01-29 08:39:33 +01:00
|
|
|
if (t->resolving_countries())
|
|
|
|
t->resolve_peer_country(intrusive_ptr<peer_connection>(peer));
|
2007-05-02 21:47:38 +02:00
|
|
|
#endif
|
2003-10-30 00:28:09 +01:00
|
|
|
}
|
|
|
|
}
|
2005-03-22 18:50:05 +01:00
|
|
|
|
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
|
|
|
{
|
2004-02-29 17:39:52 +01:00
|
|
|
INVARIANT_CHECK;
|
|
|
|
|
2005-05-25 12:01:01 +02:00
|
|
|
if (m_ses == 0) throw_invalid_handle();
|
2007-09-19 20:34:01 +02:00
|
|
|
assert(m_chk);
|
2003-11-02 22:06:50 +01:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
session_impl::mutex_t::scoped_lock l(m_ses->m_mutex);
|
|
|
|
boost::shared_ptr<torrent> t = m_ses->find_torrent(m_info_hash).lock();
|
2004-06-14 01:30:42 +02:00
|
|
|
|
|
|
|
queue.clear();
|
2006-04-25 23:04:48 +02:00
|
|
|
if (!t) return;
|
2004-06-14 01:30:42 +02:00
|
|
|
if (!t->valid_metadata()) return;
|
2006-12-04 13:20:34 +01:00
|
|
|
// if we're a seed, the piece picker has been removed
|
|
|
|
if (t->is_seed()) 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();
|
|
|
|
|
2007-07-08 22:45:42 +02:00
|
|
|
int block_size = t->block_size();
|
|
|
|
|
2003-11-02 22:06:50 +01:00
|
|
|
for (std::vector<piece_picker::downloading_piece>::const_iterator i
|
2005-08-15 00:04:58 +02:00
|
|
|
= q.begin(); i != q.end(); ++i)
|
2003-11-02 22:06:50 +01:00
|
|
|
{
|
|
|
|
partial_piece_info pi;
|
2007-04-27 02:27:37 +02:00
|
|
|
pi.piece_state = (partial_piece_info::state_t)i->state;
|
2007-05-09 02:49:13 +02:00
|
|
|
pi.blocks_in_piece = p.blocks_in_piece(i->index);
|
2007-08-01 08:14:16 +02:00
|
|
|
pi.finished = (int)i->finished;
|
|
|
|
pi.writing = (int)i->writing;
|
|
|
|
pi.requested = (int)i->requested;
|
2007-07-08 22:45:42 +02:00
|
|
|
int piece_size = t->torrent_file().piece_size(i->index);
|
2007-05-09 02:49:13 +02:00
|
|
|
for (int j = 0; j < pi.blocks_in_piece; ++j)
|
2003-11-02 22:06:50 +01:00
|
|
|
{
|
2007-07-08 22:45:42 +02:00
|
|
|
block_info& bi = pi.blocks[j];
|
|
|
|
bi.state = i->info[j].state;
|
|
|
|
bi.block_size = j < pi.blocks_in_piece - 1 ? block_size
|
|
|
|
: piece_size - (j * block_size);
|
|
|
|
bool complete = bi.state == block_info::writing
|
|
|
|
|| bi.state == block_info::finished;
|
2007-07-04 04:16:49 +02:00
|
|
|
if (i->info[j].peer == 0)
|
2007-07-08 22:45:42 +02:00
|
|
|
{
|
|
|
|
bi.peer = tcp::endpoint();
|
|
|
|
bi.bytes_progress = complete ? bi.block_size : 0;
|
|
|
|
}
|
2007-07-04 04:16:49 +02:00
|
|
|
else
|
2007-07-04 17:46:10 +02:00
|
|
|
{
|
|
|
|
policy::peer* p = static_cast<policy::peer*>(i->info[j].peer);
|
|
|
|
if (p->connection)
|
2007-07-08 22:45:42 +02:00
|
|
|
{
|
|
|
|
bi.peer = p->connection->remote();
|
|
|
|
if (bi.state == block_info::requested)
|
|
|
|
{
|
|
|
|
boost::optional<piece_block_progress> pbp
|
|
|
|
= p->connection->downloading_piece_progress();
|
|
|
|
if (pbp && pbp->piece_index == i->index && pbp->block_index == j)
|
|
|
|
{
|
|
|
|
bi.bytes_progress = pbp->bytes_downloaded;
|
|
|
|
assert(bi.bytes_progress <= bi.block_size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bi.bytes_progress = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bi.bytes_progress = complete ? bi.block_size : 0;
|
|
|
|
}
|
|
|
|
}
|
2007-07-04 17:46:10 +02:00
|
|
|
else
|
2007-07-08 22:45:42 +02:00
|
|
|
{
|
|
|
|
bi.peer = p->ip;
|
|
|
|
bi.bytes_progress = complete ? bi.block_size : 0;
|
|
|
|
}
|
2007-07-04 17:46:10 +02:00
|
|
|
}
|
2007-07-04 04:16:49 +02:00
|
|
|
|
2007-07-06 19:15:35 +02:00
|
|
|
pi.blocks[j].num_peers = i->info[j].num_peers;
|
2003-11-02 22:06:50 +01:00
|
|
|
}
|
|
|
|
pi.piece_index = i->index;
|
|
|
|
queue.push_back(pi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-30 00:28:09 +01:00
|
|
|
}
|
2005-10-19 15:58:41 +02:00
|
|
|
|