2003-10-23 01:00:57 +02: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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_TORRENT_HPP_INCLUDE
|
|
|
|
#define TORRENT_TORRENT_HPP_INCLUDE
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
|
|
|
#include <list>
|
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include <boost/limits.hpp>
|
2005-05-30 19:43:03 +02:00
|
|
|
#include <boost/tuple/tuple.hpp>
|
2005-10-13 09:59:05 +02:00
|
|
|
#include <boost/enable_shared_from_this.hpp>
|
2005-11-01 19:30:39 +01:00
|
|
|
#include <boost/scoped_ptr.hpp>
|
2007-01-10 16:02:25 +01:00
|
|
|
#include <boost/intrusive_ptr.hpp>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2003-10-26 18:35:23 +01:00
|
|
|
#include "libtorrent/torrent_handle.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/torrent_info.hpp"
|
|
|
|
#include "libtorrent/socket.hpp"
|
2009-11-23 09:38:50 +01:00
|
|
|
#include "libtorrent/address.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/policy.hpp"
|
2004-01-31 11:46:15 +01:00
|
|
|
#include "libtorrent/tracker_manager.hpp"
|
2003-12-07 06:53:04 +01:00
|
|
|
#include "libtorrent/stat.hpp"
|
2003-12-22 08:14:35 +01:00
|
|
|
#include "libtorrent/alert.hpp"
|
2005-10-13 09:59:05 +02:00
|
|
|
#include "libtorrent/piece_picker.hpp"
|
2005-11-01 19:30:39 +01:00
|
|
|
#include "libtorrent/config.hpp"
|
2006-04-25 23:04:48 +02:00
|
|
|
#include "libtorrent/escape_string.hpp"
|
2007-12-31 10:41:50 +01:00
|
|
|
#include "libtorrent/bandwidth_limit.hpp"
|
|
|
|
#include "libtorrent/bandwidth_queue_entry.hpp"
|
2009-11-23 09:38:50 +01:00
|
|
|
#include "libtorrent/storage_defs.hpp"
|
2007-06-10 22:46:09 +02:00
|
|
|
#include "libtorrent/hasher.hpp"
|
2007-09-10 08:12:41 +02:00
|
|
|
#include "libtorrent/assert.hpp"
|
2008-05-28 04:35:02 +02:00
|
|
|
#include "libtorrent/bitfield.hpp"
|
2009-04-26 02:21:59 +02:00
|
|
|
#include "libtorrent/aux_/session_impl.hpp"
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/deadline_timer.hpp"
|
2010-02-14 02:39:55 +01:00
|
|
|
#include "libtorrent/union_endpoint.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2010-03-03 08:42:51 +01:00
|
|
|
#if TORRENT_COMPLETE_TYPES_REQUIRED
|
|
|
|
#include "libtorrent/peer_connection.hpp"
|
|
|
|
#endif
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
2011-02-21 06:24:41 +01:00
|
|
|
class http_parser;
|
2010-12-30 02:47:30 +01:00
|
|
|
|
2010-02-08 05:51:34 +01:00
|
|
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
2003-10-23 01:00:57 +02:00
|
|
|
struct logger;
|
|
|
|
#endif
|
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
class piece_manager;
|
2006-11-14 01:08:16 +01:00
|
|
|
struct torrent_plugin;
|
2008-05-28 04:35:02 +02:00
|
|
|
struct bitfield;
|
2008-11-29 09:38:40 +01:00
|
|
|
struct announce_entry;
|
|
|
|
struct tracker_request;
|
2009-02-03 08:46:24 +01:00
|
|
|
struct add_torrent_params;
|
2009-11-23 09:38:50 +01:00
|
|
|
struct storage_interface;
|
2011-02-21 06:24:41 +01:00
|
|
|
class bt_peer_connection;
|
2011-09-12 05:51:49 +02:00
|
|
|
struct listen_socket_t;
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
namespace aux
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
struct session_impl;
|
2004-06-14 01:30:42 +02:00
|
|
|
struct piece_checker_data;
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// a torrent is a class that holds information
|
|
|
|
// for a specific download. It updates itself against
|
|
|
|
// the tracker
|
2005-11-01 19:30:39 +01:00
|
|
|
class TORRENT_EXPORT torrent: public request_callback
|
2005-10-13 09:59:05 +02:00
|
|
|
, public boost::enable_shared_from_this<torrent>
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2009-02-03 08:46:24 +01:00
|
|
|
torrent(aux::session_impl& ses, tcp::endpoint const& net_interface
|
2010-12-30 02:47:30 +01:00
|
|
|
, int block_size, int seq, add_torrent_params const& p
|
|
|
|
, sha1_hash const& info_hash);
|
2003-12-14 06:56:12 +01:00
|
|
|
~torrent();
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2008-08-21 01:05:12 +02:00
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
sha1_hash const& obfuscated_hash() const
|
|
|
|
{ return m_obfuscated_hash; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
sha1_hash const& info_hash() const
|
|
|
|
{ return m_torrent_file->info_hash(); }
|
|
|
|
|
2007-04-11 19:44:15 +02:00
|
|
|
// starts the announce timer
|
|
|
|
void start();
|
|
|
|
|
2010-12-30 02:47:30 +01:00
|
|
|
void start_download_url();
|
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
|
|
|
void add_extension(boost::shared_ptr<torrent_plugin>);
|
2007-11-08 02:45:35 +01:00
|
|
|
void add_extension(boost::function<boost::shared_ptr<torrent_plugin>(torrent*, void*)> const& ext
|
|
|
|
, void* userdata);
|
2011-05-02 03:45:56 +02:00
|
|
|
void notify_extension_add_peer(tcp::endpoint const& ip, int src, int flags);
|
2006-11-14 01:08:16 +01:00
|
|
|
#endif
|
|
|
|
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-01-07 02:10:46 +01:00
|
|
|
bool has_peer(peer_connection* p) const
|
|
|
|
{ return m_connections.find(p) != m_connections.end(); }
|
|
|
|
#endif
|
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
// this is called when the torrent has metadata.
|
|
|
|
// it will initialize the storage and the piece-picker
|
|
|
|
void init();
|
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
// find the peer that introduced us to the given endpoint. This is
|
|
|
|
// used when trying to holepunch. We need the introducer so that we
|
|
|
|
// can send a rendezvous connect message
|
|
|
|
bt_peer_connection* find_introducer(tcp::endpoint const& ep) const;
|
|
|
|
|
|
|
|
// if we're connected to a peer at ep, return its peer connection
|
|
|
|
// only count BitTorrent peers
|
|
|
|
bt_peer_connection* find_peer(tcp::endpoint const& ep) const;
|
|
|
|
|
2008-03-08 07:06:31 +01:00
|
|
|
void on_resume_data_checked(int ret, disk_io_job const& j);
|
2008-06-07 18:24:56 +02:00
|
|
|
void on_force_recheck(int ret, disk_io_job const& j);
|
2008-03-08 07:06:31 +01:00
|
|
|
void on_piece_checked(int ret, disk_io_job const& j);
|
2010-07-14 06:16:38 +02:00
|
|
|
void files_checked();
|
2008-03-08 07:06:31 +01:00
|
|
|
void start_checking();
|
|
|
|
|
2008-07-12 10:25:19 +02:00
|
|
|
void start_announcing();
|
|
|
|
void stop_announcing();
|
|
|
|
|
2010-09-05 18:01:36 +02:00
|
|
|
void send_share_mode();
|
2009-11-24 19:49:59 +01:00
|
|
|
void send_upload_only();
|
|
|
|
|
2010-09-05 18:01:36 +02:00
|
|
|
void set_share_mode(bool s);
|
|
|
|
bool share_mode() const { return m_share_mode; }
|
|
|
|
|
2010-10-30 10:36:18 +02:00
|
|
|
bool graceful_pause() const { return m_graceful_pause_mode; }
|
|
|
|
|
2009-06-19 00:32:55 +02:00
|
|
|
void set_upload_mode(bool b);
|
2010-10-30 10:36:18 +02:00
|
|
|
bool upload_mode() const { return m_upload_mode || m_graceful_pause_mode; }
|
2011-04-10 01:57:56 +02:00
|
|
|
bool is_upload_only() const { return is_finished() || upload_mode(); }
|
2009-06-19 00:32:55 +02:00
|
|
|
|
2008-05-06 20:03:41 +02:00
|
|
|
int seed_rank(session_settings const& s) const;
|
2008-04-24 05:28:48 +02:00
|
|
|
|
2008-12-07 22:04:19 +01:00
|
|
|
enum flags_t { overwrite_existing = 1 };
|
|
|
|
void add_piece(int piece, char const* data, int flags = 0);
|
|
|
|
void on_disk_write_complete(int ret, disk_io_job const& j
|
|
|
|
, peer_request p);
|
2010-01-15 17:45:42 +01:00
|
|
|
void on_disk_cache_complete(int ret, disk_io_job const& j);
|
2008-12-07 22:04:19 +01:00
|
|
|
|
2010-12-30 02:47:30 +01:00
|
|
|
void set_progress_ppm(int p) { m_progress_ppm = p; }
|
2008-12-14 20:47:02 +01:00
|
|
|
struct read_piece_struct
|
|
|
|
{
|
|
|
|
boost::shared_array<char> piece_data;
|
|
|
|
int blocks_left;
|
|
|
|
bool fail;
|
|
|
|
};
|
|
|
|
void read_piece(int piece);
|
|
|
|
void on_disk_read_complete(int ret, disk_io_job const& j, peer_request r, read_piece_struct* rp);
|
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
storage_mode_t storage_mode() const { return (storage_mode_t)m_storage_mode; }
|
2008-09-04 18:20:19 +02:00
|
|
|
storage_interface* get_storage()
|
|
|
|
{
|
|
|
|
if (!m_owning_storage) return 0;
|
|
|
|
return m_owning_storage->get_storage_impl();
|
|
|
|
}
|
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
// this will flag the torrent as aborted. The main
|
|
|
|
// loop in session_impl will check for this state
|
|
|
|
// on all torrents once every second, and take
|
|
|
|
// the necessary actions then.
|
2005-03-05 15:17:17 +01:00
|
|
|
void abort();
|
2003-10-23 01:00:57 +02:00
|
|
|
bool is_aborted() const { return m_abort; }
|
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
torrent_status::state_t state() const { return (torrent_status::state_t)m_state; }
|
2008-07-03 12:05:51 +02:00
|
|
|
void set_state(torrent_status::state_t s);
|
2008-06-17 00:27:14 +02:00
|
|
|
|
2006-05-15 00:30:05 +02:00
|
|
|
session_settings const& settings() const;
|
|
|
|
|
2006-11-30 12:56:19 +01:00
|
|
|
aux::session_impl& session() { return m_ses; }
|
|
|
|
|
2008-01-31 18:52:29 +01:00
|
|
|
void set_sequential_download(bool sd);
|
2008-06-17 10:30:04 +02:00
|
|
|
bool is_sequential_download() const
|
|
|
|
{ return m_sequential_download; }
|
2007-03-28 01:49:05 +02:00
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
void queue_up();
|
|
|
|
void queue_down();
|
2008-05-29 05:37:19 +02:00
|
|
|
void set_queue_position(int p);
|
|
|
|
int queue_position() const { return m_sequence_number; }
|
|
|
|
|
2009-07-19 06:59:27 +02:00
|
|
|
void second_tick(stat& accumulator, int tick_interval_ms);
|
2003-12-01 06:01:40 +01:00
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
std::string name() const;
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
stat statistics() const { return m_stat; }
|
2009-12-29 18:49:24 +01:00
|
|
|
void add_stats(stat const& s);
|
2003-12-07 06:53:04 +01:00
|
|
|
size_type bytes_left() const;
|
2009-01-14 08:41:25 +01:00
|
|
|
int block_bytes_wanted(piece_block const& p) const;
|
2010-03-04 20:15:23 +01:00
|
|
|
void bytes_done(torrent_status& st, bool accurate) const;
|
2006-09-24 02:48:31 +02:00
|
|
|
size_type quantized_bytes_done() const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2007-10-31 10:48:20 +01:00
|
|
|
void ip_filter_updated() { m_policy.ip_filter_updated(); }
|
2007-07-26 09:04:35 +02:00
|
|
|
|
2009-06-01 00:41:53 +02:00
|
|
|
void handle_disk_error(disk_io_job const& j, peer_connection* c = 0);
|
2009-01-27 10:18:51 +01:00
|
|
|
void clear_error();
|
2009-02-23 02:21:19 +01:00
|
|
|
void set_error(error_code const& ec, std::string const& file);
|
2011-02-21 06:24:41 +01:00
|
|
|
bool has_error() const { return !!m_error; }
|
2011-01-29 11:37:21 +01:00
|
|
|
error_code error() const { return m_error; }
|
2010-01-09 22:17:52 +01:00
|
|
|
|
|
|
|
void flush_cache();
|
2010-10-30 10:36:18 +02:00
|
|
|
void pause(bool graceful = false);
|
2004-03-21 03:03:37 +01:00
|
|
|
void resume();
|
2010-10-30 10:36:18 +02:00
|
|
|
void set_allow_peers(bool b, bool graceful_pause = false);
|
2010-03-29 02:34:04 +02:00
|
|
|
void set_announce_to_dht(bool b) { m_announce_to_dht = b; }
|
|
|
|
void set_announce_to_trackers(bool b) { m_announce_to_trackers = b; }
|
|
|
|
void set_announce_to_lsd(bool b) { m_announce_to_lsd = b; }
|
2008-06-29 21:08:30 +02:00
|
|
|
|
2008-10-01 07:25:18 +02:00
|
|
|
ptime started() const { return m_started; }
|
2008-06-29 21:08:30 +02:00
|
|
|
void do_pause();
|
|
|
|
void do_resume();
|
|
|
|
|
|
|
|
bool is_paused() const;
|
2010-03-29 02:34:04 +02:00
|
|
|
bool allows_peers() const { return m_allow_peers; }
|
2010-10-30 10:36:18 +02:00
|
|
|
bool is_torrent_paused() const { return !m_allow_peers || m_graceful_pause_mode; }
|
2008-06-07 18:24:56 +02:00
|
|
|
void force_recheck();
|
2010-10-29 04:42:41 +02:00
|
|
|
void save_resume_data(int flags);
|
2010-10-29 04:21:43 +02:00
|
|
|
|
2010-10-29 04:42:41 +02:00
|
|
|
bool need_save_resume_data() const
|
2010-08-25 08:38:04 +02:00
|
|
|
{
|
|
|
|
// save resume data every 15 minutes regardless, just to
|
|
|
|
// keep stats up to date
|
|
|
|
return m_need_save_resume_data || time(0) - m_last_saved_resume > 15 * 60;
|
|
|
|
}
|
2004-03-21 03:03:37 +01:00
|
|
|
|
2008-04-24 05:28:48 +02:00
|
|
|
bool is_auto_managed() const { return m_auto_managed; }
|
|
|
|
void auto_managed(bool a);
|
|
|
|
|
2008-09-20 19:42:25 +02:00
|
|
|
bool should_check_files() const;
|
|
|
|
|
2007-10-13 05:33:33 +02:00
|
|
|
void delete_files();
|
|
|
|
|
2007-03-20 02:59:00 +01:00
|
|
|
// ============ start deprecation =============
|
2005-06-23 01:04:37 +02:00
|
|
|
void filter_piece(int index, bool filter);
|
|
|
|
void filter_pieces(std::vector<bool> const& bitmask);
|
2005-05-25 12:01:01 +02:00
|
|
|
bool is_piece_filtered(int index) const;
|
|
|
|
void filtered_pieces(std::vector<bool>& bitmask) const;
|
2005-07-04 01:33:47 +02:00
|
|
|
void filter_files(std::vector<bool> const& files);
|
2009-07-19 06:59:27 +02:00
|
|
|
#if !TORRENT_NO_FPU
|
2008-07-12 15:38:22 +02:00
|
|
|
void file_progress(std::vector<float>& fp) const;
|
2009-07-19 06:59:27 +02:00
|
|
|
#endif
|
2007-03-20 02:59:00 +01:00
|
|
|
// ============ end deprecation =============
|
|
|
|
|
2007-05-30 08:52:59 +02:00
|
|
|
void piece_availability(std::vector<int>& avail) const;
|
|
|
|
|
2007-03-20 02:59:00 +01:00
|
|
|
void set_piece_priority(int index, int priority);
|
|
|
|
int piece_priority(int index) const;
|
|
|
|
|
|
|
|
void prioritize_pieces(std::vector<int> const& pieces);
|
2011-05-01 19:43:15 +02:00
|
|
|
void piece_priorities(std::vector<int>*) const;
|
2007-03-20 02:59:00 +01:00
|
|
|
|
2008-07-20 18:00:08 +02:00
|
|
|
void set_file_priority(int index, int priority);
|
|
|
|
int file_priority(int index) const;
|
|
|
|
|
2007-03-20 02:59:00 +01:00
|
|
|
void prioritize_files(std::vector<int> const& files);
|
2011-05-01 19:43:15 +02:00
|
|
|
void file_priorities(std::vector<int>*) const;
|
2008-07-20 18:00:08 +02:00
|
|
|
|
2009-12-05 08:24:22 +01:00
|
|
|
void set_piece_deadline(int piece, int t, int flags);
|
2011-08-05 08:31:46 +02:00
|
|
|
void reset_piece_deadline(int piece);
|
2008-07-20 18:00:08 +02:00
|
|
|
void update_piece_priorities();
|
2007-03-20 02:59:00 +01:00
|
|
|
|
2011-02-01 10:48:28 +01:00
|
|
|
void status(torrent_status* st, boost::uint32_t flags);
|
2008-07-12 15:38:22 +02:00
|
|
|
|
2011-11-15 03:34:00 +01:00
|
|
|
// this torrent changed state, if the user is subscribing to
|
|
|
|
// it, add it to the m_state_updates list in session_impl
|
|
|
|
void state_updated();
|
|
|
|
|
2009-07-04 06:58:24 +02:00
|
|
|
void file_progress(std::vector<size_type>& fp, int flags = 0) const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2010-07-14 06:16:38 +02:00
|
|
|
void use_interface(std::string net_interface);
|
2010-07-17 09:13:14 +02:00
|
|
|
tcp::endpoint get_interface() const;
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2010-02-12 07:10:20 +01:00
|
|
|
void connect_to_url_seed(std::list<web_seed_entry>::iterator url);
|
2010-11-29 02:33:05 +01:00
|
|
|
bool connect_to_peer(policy::peer* peerinfo, bool ignore_limit = false);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2010-03-06 08:16:39 +01:00
|
|
|
void set_ratio(float r)
|
|
|
|
{ TORRENT_ASSERT(r >= 0.0f); m_ratio = r; }
|
2004-01-12 04:05:10 +01:00
|
|
|
|
|
|
|
float ratio() const
|
2004-01-25 13:37:15 +01:00
|
|
|
{ return m_ratio; }
|
2004-01-12 04:05:10 +01:00
|
|
|
|
2009-09-13 04:24:25 +02:00
|
|
|
int priority() const { return m_priority; }
|
|
|
|
void set_priority(int prio)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(prio <= 255 && prio >= 0);
|
|
|
|
if (prio > 255) prio = 255;
|
|
|
|
else if (prio < 0) prio = 0;
|
|
|
|
m_priority = prio;
|
2011-11-15 03:34:00 +01:00
|
|
|
state_updated();
|
2009-09-13 04:24:25 +02:00
|
|
|
}
|
|
|
|
|
2007-05-02 21:47:38 +02:00
|
|
|
#ifndef TORRENT_DISABLE_RESOLVE_COUNTRIES
|
2007-01-29 08:39:33 +01:00
|
|
|
void resolve_countries(bool r)
|
|
|
|
{ m_resolve_countries = r; }
|
|
|
|
|
2010-08-02 08:16:32 +02:00
|
|
|
bool resolving_countries() const
|
|
|
|
{
|
|
|
|
return m_resolve_countries && !m_ses.settings().anonymous_mode;
|
|
|
|
}
|
2007-05-02 21:47:38 +02:00
|
|
|
#endif
|
2007-01-29 08:39:33 +01:00
|
|
|
|
2007-01-10 16:02:25 +01:00
|
|
|
// --------------------------------------------
|
|
|
|
// BANDWIDTH MANAGEMENT
|
|
|
|
|
2009-04-26 02:21:59 +02:00
|
|
|
bandwidth_channel m_bandwidth_channel[2];
|
2007-01-10 16:02:25 +01:00
|
|
|
|
2007-02-20 00:06:20 +01:00
|
|
|
int bandwidth_throttle(int channel) const;
|
2007-01-10 16:02:25 +01:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// --------------------------------------------
|
|
|
|
// PEER MANAGEMENT
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2010-08-18 19:14:40 +02:00
|
|
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_ERROR_LOGGING || defined TORRENT_LOGGING
|
|
|
|
void log_to_all_peers(char const* message);
|
|
|
|
#endif
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
// add or remove a url that will be attempted for
|
|
|
|
// finding the file(s) in this torrent.
|
2008-12-30 04:54:07 +01:00
|
|
|
void add_web_seed(std::string const& url, web_seed_entry::type_t type)
|
2010-10-10 20:43:58 +02:00
|
|
|
{
|
|
|
|
m_web_seeds.push_back(web_seed_entry(url, type));
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_web_seed(std::string const& url, web_seed_entry::type_t type
|
|
|
|
, std::string const& auth, web_seed_entry::headers_t const& extra_headers)
|
|
|
|
{
|
|
|
|
m_web_seeds.push_back(web_seed_entry(url, type, auth, extra_headers));
|
|
|
|
}
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2010-10-10 20:43:58 +02:00
|
|
|
void remove_web_seed(std::string const& url, web_seed_entry::type_t type)
|
|
|
|
{
|
|
|
|
std::list<web_seed_entry>::iterator i = std::find_if(m_web_seeds.begin(), m_web_seeds.end()
|
|
|
|
, (boost::bind(&web_seed_entry::url, _1)
|
|
|
|
== url && boost::bind(&web_seed_entry::type, _1) == type));
|
2011-04-29 10:09:03 +02:00
|
|
|
if (i != m_web_seeds.end()) remove_web_seed(i);
|
2010-10-10 20:43:58 +02:00
|
|
|
}
|
|
|
|
|
2010-04-14 08:22:00 +02:00
|
|
|
void disconnect_web_seed(peer_connection* p)
|
2010-02-12 07:10:20 +01:00
|
|
|
{
|
|
|
|
std::list<web_seed_entry>::iterator i = std::find_if(m_web_seeds.begin(), m_web_seeds.end()
|
2010-04-14 08:22:00 +02:00
|
|
|
, (boost::bind(&web_seed_entry::connection, _1) == p));
|
2010-05-17 00:15:55 +02:00
|
|
|
// this happens if the web server responded with a redirect
|
|
|
|
// or with something incorrect, so that we removed the web seed
|
|
|
|
// immediately, before we disconnected
|
2010-02-12 07:10:20 +01:00
|
|
|
if (i == m_web_seeds.end()) return;
|
2010-10-30 09:11:04 +02:00
|
|
|
|
|
|
|
TORRENT_ASSERT(i->resolving == false);
|
|
|
|
|
2010-10-17 18:15:32 +02:00
|
|
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_ERROR_LOGGING
|
|
|
|
(*m_ses.m_logger) << time_now_string() << " disconnect_web_seed: " << i->url << "\n";
|
|
|
|
#endif
|
2010-02-12 07:10:20 +01:00
|
|
|
TORRENT_ASSERT(i->connection);
|
|
|
|
i->connection = 0;
|
|
|
|
}
|
|
|
|
|
2010-04-14 08:22:00 +02:00
|
|
|
void retry_web_seed(peer_connection* p, int retry = 0);
|
|
|
|
|
|
|
|
void remove_web_seed(peer_connection* p)
|
|
|
|
{
|
|
|
|
std::list<web_seed_entry>::iterator i = std::find_if(m_web_seeds.begin(), m_web_seeds.end()
|
|
|
|
, (boost::bind(&web_seed_entry::connection, _1) == p));
|
|
|
|
TORRENT_ASSERT(i != m_web_seeds.end());
|
|
|
|
if (i == m_web_seeds.end()) return;
|
|
|
|
m_web_seeds.erase(i);
|
|
|
|
}
|
2007-11-27 04:37:47 +01:00
|
|
|
|
2010-02-12 07:10:20 +01:00
|
|
|
std::list<web_seed_entry> web_seeds() const
|
2007-08-17 18:40:55 +02:00
|
|
|
{ return m_web_seeds; }
|
2007-08-17 09:37:08 +02:00
|
|
|
|
2008-12-30 04:54:07 +01:00
|
|
|
std::set<std::string> web_seeds(web_seed_entry::type_t type) const;
|
|
|
|
|
2007-08-17 09:37:08 +02:00
|
|
|
bool free_upload_slots() const
|
|
|
|
{ return m_num_uploads < m_max_uploads; }
|
|
|
|
|
2009-07-23 06:38:52 +02:00
|
|
|
bool choke_peer(peer_connection& c);
|
2010-10-04 06:06:14 +02:00
|
|
|
bool unchoke_peer(peer_connection& c, bool optimistic = false);
|
2007-08-17 09:37:08 +02:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// used by peer_connection to attach itself to a torrent
|
|
|
|
// since incoming connections don't know what torrent
|
|
|
|
// they're a part of until they have received an info_hash.
|
2008-04-07 04:51:21 +02:00
|
|
|
// false means attach failed
|
|
|
|
bool attach_peer(peer_connection* p);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
// this will remove the peer and make sure all
|
|
|
|
// the pieces it had have their reference counter
|
|
|
|
// decreased in the piece_picker
|
|
|
|
void remove_peer(peer_connection* p);
|
|
|
|
|
2007-07-06 19:15:35 +02:00
|
|
|
void cancel_block(piece_block block);
|
|
|
|
|
2007-05-02 19:38:37 +02:00
|
|
|
bool want_more_peers() const;
|
2007-05-25 23:00:35 +02:00
|
|
|
bool try_connect_peer();
|
2008-03-29 20:39:24 +01:00
|
|
|
void give_connect_points(int points);
|
2010-07-14 06:16:38 +02:00
|
|
|
void add_peer(tcp::endpoint const& adr, int source);
|
2007-05-02 19:38:37 +02:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// the number of peers that belong to this torrent
|
2004-01-25 19:18:36 +01:00
|
|
|
int num_peers() const { return (int)m_connections.size(); }
|
2004-08-05 15:56:26 +02:00
|
|
|
int num_seeds() const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2007-10-31 10:48:20 +01:00
|
|
|
typedef std::set<peer_connection*>::iterator peer_iterator;
|
|
|
|
typedef std::set<peer_connection*>::const_iterator const_peer_iterator;
|
2003-11-05 00:27:06 +01:00
|
|
|
|
2004-01-13 04:08:59 +01:00
|
|
|
const_peer_iterator begin() const { return m_connections.begin(); }
|
|
|
|
const_peer_iterator end() const { return m_connections.end(); }
|
2003-11-05 00:27:06 +01:00
|
|
|
|
|
|
|
peer_iterator begin() { return m_connections.begin(); }
|
|
|
|
peer_iterator end() { return m_connections.end(); }
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2007-01-29 08:39:33 +01:00
|
|
|
void resolve_peer_country(boost::intrusive_ptr<peer_connection> const& p) const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2008-04-13 08:32:48 +02:00
|
|
|
void get_full_peer_list(std::vector<peer_list_entry>& v) const;
|
2007-11-25 19:48:43 +01:00
|
|
|
void get_peer_info(std::vector<peer_info>& v);
|
2011-11-20 21:49:18 +01:00
|
|
|
void get_download_queue(std::vector<partial_piece_info>* queue);
|
2007-11-25 19:48:43 +01:00
|
|
|
|
2010-01-15 17:45:42 +01:00
|
|
|
void refresh_explicit_cache(int cache_size);
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// --------------------------------------------
|
|
|
|
// TRACKER MANAGEMENT
|
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
// these are callbacks called by the tracker_connection instance
|
|
|
|
// (either http_tracker_connection or udp_tracker_connection)
|
2003-10-23 01:00:57 +02:00
|
|
|
// when this torrent got a response from its tracker request
|
2004-03-28 19:45:37 +02:00
|
|
|
// or when a failure occured
|
2005-03-24 13:13:47 +01:00
|
|
|
virtual void tracker_response(
|
|
|
|
tracker_request const& r
|
2008-12-01 09:48:54 +01:00
|
|
|
, address const& tracker_ip
|
2009-05-15 23:23:41 +02:00
|
|
|
, std::list<address> const& ip_list
|
2009-12-02 05:05:24 +01:00
|
|
|
, std::vector<peer_entry>& e, int interval, int min_interval
|
2010-11-18 06:51:52 +01:00
|
|
|
, int complete, int incomplete, address const& external_ip
|
|
|
|
, std::string const& trackerid);
|
2005-03-24 13:13:47 +01:00
|
|
|
virtual void tracker_request_error(tracker_request const& r
|
2010-02-23 22:53:45 +01:00
|
|
|
, int response_code, error_code const& ec, const std::string& msg
|
|
|
|
, int retry_interval);
|
2008-04-23 03:54:21 +02:00
|
|
|
virtual void tracker_warning(tracker_request const& req
|
|
|
|
, std::string const& msg);
|
2007-11-20 23:46:27 +01:00
|
|
|
virtual void tracker_scrape_response(tracker_request const& req
|
2010-09-06 06:02:15 +02:00
|
|
|
, int complete, int incomplete, int downloaded, int downloaders);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
// if no password and username is set
|
|
|
|
// this will return an empty string, otherwise
|
|
|
|
// it will concatenate the login and password
|
|
|
|
// ready to be sent over http (but without
|
|
|
|
// base64 encoding).
|
|
|
|
std::string tracker_login() const;
|
|
|
|
|
|
|
|
// returns the absolute time when the next tracker
|
|
|
|
// announce will take place.
|
2007-04-05 00:27:36 +02:00
|
|
|
ptime next_announce() const;
|
2004-03-28 19:45:37 +02:00
|
|
|
|
|
|
|
// forcefully sets next_announce to the current time
|
|
|
|
void force_tracker_request();
|
2007-04-05 00:27:36 +02:00
|
|
|
void force_tracker_request(ptime);
|
2007-11-20 23:46:27 +01:00
|
|
|
void scrape_tracker();
|
2008-07-12 10:25:19 +02:00
|
|
|
void announce_with_tracker(tracker_request::event_t e
|
2009-05-15 23:23:41 +02:00
|
|
|
= tracker_request::none
|
|
|
|
, address const& bind_interface = address_v4::any());
|
2010-02-14 02:39:55 +01:00
|
|
|
int seconds_since_last_scrape() const { return m_last_scrape; }
|
2005-08-01 16:24:19 +02:00
|
|
|
|
2009-10-25 03:37:45 +01:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
2010-02-14 02:39:55 +01:00
|
|
|
void dht_announce();
|
2009-10-25 03:37:45 +01:00
|
|
|
#endif
|
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
// sets the username and password that will be sent to
|
|
|
|
// the tracker
|
|
|
|
void set_tracker_login(std::string const& name, std::string const& pw);
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
// the tcp::endpoint of the tracker that we managed to
|
2004-03-28 19:45:37 +02:00
|
|
|
// announce ourself at the last time we tried to announce
|
2010-02-14 02:39:55 +01:00
|
|
|
tcp::endpoint current_tracker() const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2008-11-29 09:38:40 +01:00
|
|
|
announce_entry* find_tracker(tracker_request const& r);
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// --------------------------------------------
|
|
|
|
// PIECE MANAGEMENT
|
|
|
|
|
2010-09-05 18:01:36 +02:00
|
|
|
void recalc_share_mode();
|
|
|
|
|
2009-01-05 02:08:09 +01:00
|
|
|
void update_sparse_piece_prio(int piece, int cursor, int reverse_cursor);
|
|
|
|
|
2010-01-15 17:45:42 +01:00
|
|
|
void get_suggested_pieces(std::vector<int>& s) const;
|
|
|
|
|
2008-12-08 07:36:22 +01:00
|
|
|
bool super_seeding() const
|
|
|
|
{ return m_super_seeding; }
|
|
|
|
|
|
|
|
void super_seeding(bool on);
|
|
|
|
int get_piece_to_super_seed(bitfield const&);
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// returns true if we have downloaded the given piece
|
2004-01-25 05:18:08 +01:00
|
|
|
bool have_piece(int index) const
|
2004-01-25 13:37:15 +01:00
|
|
|
{
|
2008-06-07 04:58:28 +02:00
|
|
|
return has_picker()?m_picker->have_piece(index):true;
|
2004-01-25 13:37:15 +01:00
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2009-07-04 06:58:24 +02:00
|
|
|
// called when we learn that we have a piece
|
|
|
|
// only once per piece
|
|
|
|
void we_have(int index);
|
|
|
|
|
2008-06-07 16:03:21 +02:00
|
|
|
int num_have() const
|
2008-06-07 04:58:28 +02:00
|
|
|
{
|
|
|
|
return has_picker()
|
2010-09-05 18:01:36 +02:00
|
|
|
? m_picker->num_have()
|
|
|
|
: m_torrent_file->num_pieces();
|
2008-06-07 04:58:28 +02:00
|
|
|
}
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2008-01-31 18:52:29 +01:00
|
|
|
// when we get a have message, this is called for that piece
|
2003-12-18 04:30:41 +01:00
|
|
|
void peer_has(int index)
|
2004-01-25 13:37:15 +01:00
|
|
|
{
|
2006-12-04 13:20:34 +01:00
|
|
|
if (m_picker.get())
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(!is_seed());
|
2006-12-04 13:20:34 +01:00
|
|
|
m_picker->inc_refcount(index);
|
|
|
|
}
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2006-12-04 13:20:34 +01:00
|
|
|
else
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(is_seed());
|
2006-12-04 13:20:34 +01:00
|
|
|
}
|
|
|
|
#endif
|
2004-01-25 13:37:15 +01:00
|
|
|
}
|
2007-04-15 04:14:02 +02:00
|
|
|
|
2008-01-31 18:52:29 +01:00
|
|
|
// when we get a bitfield message, this is called for that piece
|
2008-05-28 04:35:02 +02:00
|
|
|
void peer_has(bitfield const& bits)
|
2008-01-31 18:52:29 +01:00
|
|
|
{
|
|
|
|
if (m_picker.get())
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(!is_seed());
|
2008-05-28 04:35:02 +02:00
|
|
|
m_picker->inc_refcount(bits);
|
2008-01-31 18:52:29 +01:00
|
|
|
}
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2008-01-31 18:52:29 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(is_seed());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-04-15 04:14:02 +02:00
|
|
|
void peer_has_all()
|
|
|
|
{
|
|
|
|
if (m_picker.get())
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(!is_seed());
|
2007-04-15 04:14:02 +02:00
|
|
|
m_picker->inc_refcount_all();
|
|
|
|
}
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-04-15 04:14:02 +02:00
|
|
|
else
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(is_seed());
|
2007-04-15 04:14:02 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
void peer_lost(int index)
|
2004-01-25 13:37:15 +01:00
|
|
|
{
|
2006-12-04 13:20:34 +01:00
|
|
|
if (m_picker.get())
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(!is_seed());
|
2006-12-04 13:20:34 +01:00
|
|
|
m_picker->dec_refcount(index);
|
|
|
|
}
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2006-12-04 13:20:34 +01:00
|
|
|
else
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(is_seed());
|
2006-12-04 13:20:34 +01:00
|
|
|
}
|
|
|
|
#endif
|
2004-01-25 13:37:15 +01:00
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
int block_size() const { TORRENT_ASSERT(m_block_size_shift > 0); return 1 << m_block_size_shift; }
|
2010-02-23 17:26:24 +01:00
|
|
|
peer_request to_req(piece_block const& p) const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2009-06-12 18:40:38 +02:00
|
|
|
void disconnect_all(error_code const& ec);
|
2010-10-03 12:07:38 +02:00
|
|
|
int disconnect_peers(int num, error_code const& ec);
|
2004-01-21 14:16:11 +01:00
|
|
|
|
|
|
|
// this is called wheh the torrent has completed
|
|
|
|
// the download. It will post an event, disconnect
|
|
|
|
// all seeds and let the tracker know we're finished.
|
|
|
|
void completed();
|
2007-03-07 19:50:38 +01:00
|
|
|
|
2009-08-20 05:19:12 +02:00
|
|
|
#if TORRENT_USE_I2P
|
|
|
|
void on_i2p_resolve(error_code const& ec, char const* dest);
|
|
|
|
#endif
|
|
|
|
|
2007-03-07 19:50:38 +01:00
|
|
|
// this is the asio callback that is called when a name
|
|
|
|
// lookup for a PEER is completed.
|
2008-05-03 18:05:42 +02:00
|
|
|
void on_peer_name_lookup(error_code const& e, tcp::resolver::iterator i
|
2007-03-07 19:50:38 +01:00
|
|
|
, peer_id pid);
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
// this is the asio callback that is called when a name
|
2007-03-07 19:50:38 +01:00
|
|
|
// lookup for a WEB SEED is completed.
|
2008-05-03 18:05:42 +02:00
|
|
|
void on_name_lookup(error_code const& e, tcp::resolver::iterator i
|
2010-02-12 07:10:20 +01:00
|
|
|
, std::list<web_seed_entry>::iterator url, tcp::endpoint proxy);
|
2007-02-12 06:46:29 +01:00
|
|
|
|
2010-12-25 10:13:50 +01:00
|
|
|
void connect_web_seed(std::list<web_seed_entry>::iterator web, tcp::endpoint a);
|
2010-08-02 08:16:32 +02:00
|
|
|
|
2007-02-12 06:46:29 +01:00
|
|
|
// this is the asio callback that is called when a name
|
|
|
|
// lookup for a proxy for a web seed is completed.
|
2008-05-03 18:05:42 +02:00
|
|
|
void on_proxy_name_lookup(error_code const& e, tcp::resolver::iterator i
|
2010-02-12 07:10:20 +01:00
|
|
|
, std::list<web_seed_entry>::iterator url);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2011-04-29 10:09:03 +02:00
|
|
|
// remove a web seed, or schedule it for removal in case there
|
|
|
|
// are outstanding operations on it
|
|
|
|
void remove_web_seed(std::list<web_seed_entry>::iterator web);
|
|
|
|
|
2005-06-11 01:12:50 +02:00
|
|
|
// this is called when the torrent has finished. i.e.
|
|
|
|
// all the pieces we have not filtered have been downloaded.
|
|
|
|
// If no pieces are filtered, this is called first and then
|
|
|
|
// completed() is called immediately after it.
|
|
|
|
void finished();
|
|
|
|
|
2008-05-20 05:21:45 +02:00
|
|
|
// This is the opposite of finished. It is called if we used
|
|
|
|
// to be finished but enabled some files for download so that
|
|
|
|
// we wasn't finished anymore.
|
|
|
|
void resume_download();
|
|
|
|
|
2008-04-13 00:08:07 +02:00
|
|
|
void async_verify_piece(int piece_index, boost::function<void(int)> const&);
|
2003-12-07 06:53:04 +01:00
|
|
|
|
2003-12-01 22:27:27 +01:00
|
|
|
// this is called from the peer_connection
|
|
|
|
// each time a piece has failed the hash
|
|
|
|
// test
|
2008-04-13 00:08:07 +02:00
|
|
|
void piece_finished(int index, int passed_hash_check);
|
2008-06-23 20:54:58 +02:00
|
|
|
|
|
|
|
// piece_passed is called when a piece passes the hash check
|
|
|
|
// this will tell all peers that we just got his piece
|
|
|
|
// and also let the piece picker know that we have this piece
|
|
|
|
// so it wont pick it for download
|
|
|
|
void piece_passed(int index);
|
|
|
|
|
|
|
|
// piece_failed is called when a piece fails the hash check
|
2003-12-01 22:27:27 +01:00
|
|
|
void piece_failed(int index);
|
2008-06-23 16:45:01 +02:00
|
|
|
|
|
|
|
// this will restore the piece picker state for a piece
|
|
|
|
// by re marking all the requests to blocks in this piece
|
|
|
|
// that are still outstanding in peers' download queues.
|
|
|
|
// this is done when a piece fails
|
|
|
|
void restore_piece_state(int index);
|
|
|
|
|
2011-11-16 03:29:59 +01:00
|
|
|
enum wasted_reason_t
|
|
|
|
{
|
|
|
|
piece_timed_out, piece_cancelled, piece_unknown, piece_seed, piece_end_game, piece_closing
|
|
|
|
, waste_reason_max
|
|
|
|
};
|
|
|
|
void add_redundant_bytes(int b, wasted_reason_t reason);
|
2008-07-11 09:30:04 +02:00
|
|
|
void add_failed_bytes(int b);
|
2003-12-01 22:27:27 +01:00
|
|
|
|
2007-04-12 00:27:58 +02:00
|
|
|
// this is true if we have all the pieces
|
2003-12-09 19:09:34 +01:00
|
|
|
bool is_seed() const
|
2004-06-14 01:30:42 +02:00
|
|
|
{
|
|
|
|
return valid_metadata()
|
2008-06-07 04:58:28 +02:00
|
|
|
&& (!m_picker
|
|
|
|
|| m_state == torrent_status::seeding
|
|
|
|
|| m_picker->num_have() == m_picker->num_pieces());
|
2004-06-14 01:30:42 +02:00
|
|
|
}
|
2003-12-09 19:09:34 +01:00
|
|
|
|
2007-04-12 00:27:58 +02:00
|
|
|
// this is true if we have all the pieces that we want
|
|
|
|
bool is_finished() const
|
|
|
|
{
|
|
|
|
if (is_seed()) return true;
|
2007-09-01 05:00:31 +02:00
|
|
|
return valid_metadata() && m_torrent_file->num_pieces()
|
2008-06-07 04:58:28 +02:00
|
|
|
- m_picker->num_have() - m_picker->num_filtered() == 0;
|
2007-04-12 00:27:58 +02:00
|
|
|
}
|
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
std::string save_path() const;
|
2004-01-07 01:48:02 +01:00
|
|
|
alert_manager& alerts() const;
|
2004-06-14 01:30:42 +02:00
|
|
|
piece_picker& picker()
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(m_picker.get());
|
2004-06-14 01:30:42 +02:00
|
|
|
return *m_picker;
|
|
|
|
}
|
2007-03-17 00:28:26 +01:00
|
|
|
bool has_picker() const
|
|
|
|
{
|
2007-04-17 23:50:48 +02:00
|
|
|
return m_picker.get() != 0;
|
2007-03-17 00:28:26 +01:00
|
|
|
}
|
2007-10-31 10:48:20 +01:00
|
|
|
policy& get_policy() { return m_policy; }
|
2004-06-14 01:30:42 +02:00
|
|
|
piece_manager& filesystem();
|
2006-05-28 21:03:54 +02:00
|
|
|
torrent_info const& torrent_file() const
|
2007-09-01 05:00:31 +02:00
|
|
|
{ return *m_torrent_file; }
|
2004-02-22 23:40:45 +01:00
|
|
|
|
2011-01-18 04:41:54 +01:00
|
|
|
std::string const& uuid() const { return m_uuid; }
|
2011-03-23 03:46:22 +01:00
|
|
|
void set_uuid(std::string const& s) { m_uuid = s; }
|
2010-12-30 07:46:28 +01:00
|
|
|
std::string const& url() const { return m_url; }
|
2011-03-23 03:46:22 +01:00
|
|
|
void set_url(std::string const& s) { m_url = s; }
|
|
|
|
std::string const& source_feed_url() const { return m_source_feed_url; }
|
|
|
|
void set_source_feed_url(std::string const& s) { m_source_feed_url = s; }
|
2010-12-30 07:46:28 +01:00
|
|
|
|
2004-09-12 12:12:16 +02:00
|
|
|
std::vector<announce_entry> const& trackers() const
|
|
|
|
{ return m_trackers; }
|
|
|
|
|
|
|
|
void replace_trackers(std::vector<announce_entry> const& urls);
|
2008-11-29 09:38:40 +01:00
|
|
|
void add_tracker(announce_entry const& url);
|
2004-09-12 12:12:16 +02:00
|
|
|
|
2008-04-09 22:09:36 +02:00
|
|
|
torrent_handle get_handle();
|
2004-03-01 01:50:00 +01:00
|
|
|
|
2008-04-13 20:54:36 +02:00
|
|
|
void write_resume_data(entry& rd) const;
|
2008-07-01 01:14:31 +02:00
|
|
|
void read_resume_data(lazy_entry const& rd);
|
2008-04-13 20:54:36 +02:00
|
|
|
|
2010-03-19 19:39:51 +01:00
|
|
|
void seen_complete() { m_last_seen_complete = time(0); }
|
2010-10-16 17:24:45 +02:00
|
|
|
int time_since_complete() const { return int(time(0) - m_last_seen_complete); }
|
2010-03-19 19:39:51 +01:00
|
|
|
time_t last_seen_complete() const { return m_last_seen_complete; }
|
|
|
|
|
2005-03-19 13:22:40 +01:00
|
|
|
// LOGGING
|
2008-02-17 23:51:03 +01:00
|
|
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
2003-11-20 20:58:29 +01:00
|
|
|
virtual void debug_log(const std::string& line);
|
2005-03-19 13:22:40 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// DEBUG
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2004-06-14 01:30:42 +02:00
|
|
|
void check_invariant() const;
|
2003-11-20 20:58:29 +01:00
|
|
|
#endif
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
// --------------------------------------------
|
|
|
|
// RESOURCE MANAGEMENT
|
|
|
|
|
2011-02-21 06:24:41 +01:00
|
|
|
void add_free_upload(size_type diff)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(diff >= 0);
|
|
|
|
if (UINT_MAX - m_available_free_upload > diff)
|
|
|
|
m_available_free_upload += boost::uint32_t(diff);
|
|
|
|
else
|
|
|
|
m_available_free_upload = UINT_MAX;
|
|
|
|
}
|
2009-07-23 06:38:52 +02:00
|
|
|
|
2010-10-01 18:09:22 +02:00
|
|
|
int get_peer_upload_limit(tcp::endpoint ip) const;
|
|
|
|
int get_peer_download_limit(tcp::endpoint ip) const;
|
2006-04-25 23:04:48 +02:00
|
|
|
void set_peer_upload_limit(tcp::endpoint ip, int limit);
|
|
|
|
void set_peer_download_limit(tcp::endpoint ip, int limit);
|
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
void set_upload_limit(int limit);
|
2007-04-10 11:25:17 +02:00
|
|
|
int upload_limit() const;
|
2004-03-28 19:45:37 +02:00
|
|
|
void set_download_limit(int limit);
|
2007-04-10 11:25:17 +02:00
|
|
|
int download_limit() const;
|
|
|
|
|
2004-10-29 15:21:09 +02:00
|
|
|
void set_max_uploads(int limit);
|
2007-08-16 14:41:46 +02:00
|
|
|
int max_uploads() const { return m_max_uploads; }
|
2004-10-29 15:21:09 +02:00
|
|
|
void set_max_connections(int limit);
|
2007-08-16 14:41:46 +02:00
|
|
|
int max_connections() const { return m_max_connections; }
|
2008-05-28 10:44:40 +02:00
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
void move_storage(std::string const& save_path);
|
2004-03-23 23:58:18 +01:00
|
|
|
|
2008-05-28 10:44:40 +02:00
|
|
|
// renames the file with the given index to the new name
|
|
|
|
// the name may include a directory path
|
|
|
|
// returns false on failure
|
|
|
|
bool rename_file(int index, std::string const& name);
|
|
|
|
|
2005-10-16 22:15:54 +02:00
|
|
|
// unless this returns true, new connections must wait
|
|
|
|
// with their initialization.
|
|
|
|
bool ready_for_connections() const
|
|
|
|
{ return m_connections_initialized; }
|
2005-10-16 11:15:46 +02:00
|
|
|
bool valid_metadata() const
|
2007-09-01 05:00:31 +02:00
|
|
|
{ return m_torrent_file->is_valid(); }
|
2008-07-18 12:03:42 +02:00
|
|
|
bool are_files_checked() const
|
|
|
|
{ return m_files_checked; }
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
// parses the info section from the given
|
|
|
|
// bencoded tree and moves the torrent
|
|
|
|
// to the checker thread for initial checking
|
|
|
|
// of the storage.
|
2007-12-28 21:11:10 +01:00
|
|
|
// a return value of false indicates an error
|
2008-09-24 04:32:33 +02:00
|
|
|
bool set_metadata(char const* metadata_buf, int metadata_size);
|
2007-10-31 10:48:20 +01:00
|
|
|
|
2010-12-30 02:47:30 +01:00
|
|
|
void on_torrent_download(error_code const& ec, http_parser const& parser
|
|
|
|
, char const* data, int size);
|
|
|
|
|
2008-04-24 05:28:48 +02:00
|
|
|
int sequence_number() const { return m_sequence_number; }
|
|
|
|
|
2009-02-03 08:46:24 +01:00
|
|
|
bool seed_mode() const { return m_seed_mode; }
|
|
|
|
void leave_seed_mode(bool seed)
|
|
|
|
{
|
|
|
|
if (!m_seed_mode) return;
|
|
|
|
m_seed_mode = false;
|
|
|
|
// seed is false if we turned out not
|
|
|
|
// to be a seed after all
|
|
|
|
if (!seed) force_recheck();
|
|
|
|
m_num_verified = 0;
|
|
|
|
m_verified.free();
|
|
|
|
}
|
|
|
|
bool all_verified() const
|
|
|
|
{ return m_num_verified == m_torrent_file->num_pieces(); }
|
|
|
|
bool verified_piece(int piece) const
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(piece < int(m_verified.size()));
|
|
|
|
TORRENT_ASSERT(piece >= 0);
|
|
|
|
return m_verified.get_bit(piece);
|
|
|
|
}
|
|
|
|
void verified(int piece)
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(piece < int(m_verified.size()));
|
|
|
|
TORRENT_ASSERT(piece >= 0);
|
|
|
|
TORRENT_ASSERT(m_verified.get_bit(piece) == false);
|
|
|
|
++m_num_verified;
|
|
|
|
m_verified.set_bit(piece);
|
|
|
|
}
|
|
|
|
|
2009-03-13 07:09:39 +01:00
|
|
|
bool add_merkle_nodes(std::map<int, sha1_hash> const& n, int piece);
|
|
|
|
|
2010-02-05 09:23:17 +01:00
|
|
|
// this is called once periodically for torrents
|
|
|
|
// that are not private
|
|
|
|
void lsd_announce();
|
|
|
|
|
2010-02-08 05:51:34 +01:00
|
|
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
|
|
|
static void print_size(logger& l);
|
|
|
|
#endif
|
|
|
|
|
2010-07-08 21:29:38 +02:00
|
|
|
void update_last_upload() { m_last_upload = 0; }
|
|
|
|
|
2011-02-27 18:26:57 +01:00
|
|
|
void set_apply_ip_filter(bool b);
|
|
|
|
bool apply_ip_filter() const { return m_apply_ip_filter; }
|
|
|
|
|
2011-06-05 05:06:34 +02:00
|
|
|
void queue_torrent_check();
|
|
|
|
void dequeue_torrent_check();
|
|
|
|
|
2011-11-15 03:34:00 +01:00
|
|
|
void clear_in_state_update()
|
|
|
|
{ m_in_state_updates = false; }
|
|
|
|
|
2011-09-10 07:52:07 +02:00
|
|
|
#ifdef TORRENT_USE_OPENSSL
|
2011-09-12 05:51:49 +02:00
|
|
|
void set_ssl_cert(std::string const& certificate
|
|
|
|
, std::string const& private_key
|
|
|
|
, std::string const& dh_params
|
|
|
|
, std::string const& passphrase);
|
2011-09-10 07:52:07 +02:00
|
|
|
bool is_ssl_torrent() const { return m_ssl_ctx; }
|
|
|
|
boost::asio::ssl::context* ssl_ctx() const { return m_ssl_ctx.get(); }
|
|
|
|
#endif
|
|
|
|
|
2003-11-26 15:11:25 +01:00
|
|
|
private:
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2007-10-13 05:33:33 +02:00
|
|
|
void on_files_deleted(int ret, disk_io_job const& j);
|
2007-06-11 23:24:14 +02:00
|
|
|
void on_files_released(int ret, disk_io_job const& j);
|
2007-10-02 20:34:34 +02:00
|
|
|
void on_torrent_paused(int ret, disk_io_job const& j);
|
2007-06-11 23:24:14 +02:00
|
|
|
void on_storage_moved(int ret, disk_io_job const& j);
|
2008-04-13 20:54:36 +02:00
|
|
|
void on_save_resume_data(int ret, disk_io_job const& j);
|
2008-05-28 10:44:40 +02:00
|
|
|
void on_file_renamed(int ret, disk_io_job const& j);
|
2010-01-09 22:17:52 +01:00
|
|
|
void on_cache_flushed(int ret, disk_io_job const& j);
|
2007-06-11 23:24:14 +02:00
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
void on_piece_verified(int ret, disk_io_job const& j
|
2008-04-13 00:08:07 +02:00
|
|
|
, boost::function<void(int)> f);
|
2007-02-12 10:20:49 +01:00
|
|
|
|
2004-09-12 12:12:16 +02:00
|
|
|
int prioritize_tracker(int tracker_index);
|
2008-11-29 09:38:40 +01:00
|
|
|
int deprioritize_tracker(int tracker_index);
|
|
|
|
|
2008-05-03 18:05:42 +02:00
|
|
|
void on_country_lookup(error_code const& error, tcp::resolver::iterator i
|
2007-01-29 08:39:33 +01:00
|
|
|
, boost::intrusive_ptr<peer_connection> p) const;
|
2007-02-19 01:01:39 +01:00
|
|
|
bool request_bandwidth_from_session(int channel) const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2008-04-13 09:39:37 +02:00
|
|
|
void update_peer_interest(bool was_finished);
|
2008-12-08 10:13:21 +01:00
|
|
|
void prioritize_udp_trackers();
|
2007-03-21 03:09:50 +01:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
void parse_response(const entry& e, std::vector<peer_entry>& peer_list);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2010-05-03 10:24:30 +02:00
|
|
|
void update_tracker_timer(ptime now);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
static void on_tracker_announce_disp(boost::weak_ptr<torrent> p
|
|
|
|
, error_code const& e);
|
2009-09-30 19:21:59 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
void on_tracker_announce();
|
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
static void on_dht_announce_response_disp(boost::weak_ptr<torrent> t
|
|
|
|
, std::vector<tcp::endpoint> const& peers);
|
|
|
|
void on_dht_announce_response(std::vector<tcp::endpoint> const& peers);
|
|
|
|
bool should_announce_dht() const;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void remove_time_critical_piece(int piece, bool finished = false);
|
|
|
|
void remove_time_critical_pieces(std::vector<int> const& priority);
|
|
|
|
void request_time_critical_pieces();
|
|
|
|
|
|
|
|
policy m_policy;
|
2004-03-21 03:03:37 +01:00
|
|
|
|
2008-05-19 04:52:32 +02:00
|
|
|
// all time totals of uploaded and downloaded payload
|
|
|
|
// stored in resume data
|
|
|
|
size_type m_total_uploaded;
|
|
|
|
size_type m_total_downloaded;
|
|
|
|
|
|
|
|
// if this torrent is running, this was the time
|
|
|
|
// when it was started. This is used to have a
|
|
|
|
// bias towards keeping seeding torrents that
|
|
|
|
// recently was started, to avoid oscillation
|
|
|
|
ptime m_started;
|
|
|
|
|
|
|
|
boost::intrusive_ptr<torrent_info> m_torrent_file;
|
2008-04-24 05:28:48 +02:00
|
|
|
|
2005-03-05 15:17:17 +01:00
|
|
|
// if this pointer is 0, the torrent is in
|
2004-06-14 01:30:42 +02:00
|
|
|
// a state where the metadata hasn't been
|
|
|
|
// received yet.
|
2007-06-10 22:46:09 +02:00
|
|
|
// the piece_manager keeps the torrent object
|
|
|
|
// alive by holding a shared_ptr to it and
|
|
|
|
// the torrent keeps the piece manager alive
|
|
|
|
// with this intrusive_ptr. This cycle is
|
|
|
|
// broken when torrent::abort() is called
|
|
|
|
// Then the torrent releases the piece_manager
|
|
|
|
// and when the piece_manager is complete with all
|
|
|
|
// outstanding disk io jobs (that keeps
|
|
|
|
// the piece_manager alive) it will destruct
|
|
|
|
// and release the torrent file. The reason for
|
|
|
|
// this is that the torrent_info is used by
|
|
|
|
// the piece_manager, and stored in the
|
|
|
|
// torrent, so the torrent cannot destruct
|
|
|
|
// before the piece_manager.
|
|
|
|
boost::intrusive_ptr<piece_manager> m_owning_storage;
|
|
|
|
|
|
|
|
// this is a weak (non owninig) pointer to
|
|
|
|
// the piece_manager. This is used after the torrent
|
|
|
|
// has been aborted, and it can no longer own
|
|
|
|
// the object.
|
|
|
|
piece_manager* m_storage;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2011-08-28 23:06:15 +02:00
|
|
|
#ifdef TORRENT_USE_OPENSSL
|
2011-09-12 05:51:49 +02:00
|
|
|
// TODO: in order to save space, stick the ssl context
|
|
|
|
// and the listen_socket_t in a single struct and have
|
|
|
|
// a shared_pointer to that (or intrusive_ptr even)
|
|
|
|
|
2011-08-28 23:06:15 +02:00
|
|
|
boost::shared_ptr<asio::ssl::context> m_ssl_ctx;
|
2011-09-12 05:51:49 +02:00
|
|
|
|
|
|
|
// listen socket used to accept incoming ssl connections
|
|
|
|
boost::shared_ptr<listen_socket_t> m_ssl_acceptor;
|
|
|
|
|
|
|
|
// SSL torrents have their own listen socket, so that
|
|
|
|
// we know which certificate to use for incoming connections
|
|
|
|
// these function are used for handling the torrent specific
|
|
|
|
// listen socket
|
|
|
|
void async_accept(boost::shared_ptr<socket_acceptor> const& listener);
|
|
|
|
|
|
|
|
void on_accept_ssl_connection(boost::shared_ptr<socket_type> const& s
|
|
|
|
, boost::weak_ptr<socket_acceptor> listen_socket, error_code const& e);
|
|
|
|
|
|
|
|
void ssl_handshake(error_code const& ec, boost::shared_ptr<socket_type> s);
|
|
|
|
|
|
|
|
void init_ssl(std::string const& cert);
|
2011-08-28 23:06:15 +02:00
|
|
|
#endif
|
|
|
|
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2005-10-01 17:12:10 +02:00
|
|
|
public:
|
|
|
|
#endif
|
2007-10-31 10:48:20 +01:00
|
|
|
std::set<peer_connection*> m_connections;
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2005-10-01 17:12:10 +02:00
|
|
|
private:
|
|
|
|
#endif
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
// The list of web seeds in this torrent. Seeds
|
|
|
|
// with fatal errors are removed from the set
|
2010-02-12 07:10:20 +01:00
|
|
|
std::list<web_seed_entry> m_web_seeds;
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2008-05-19 04:52:32 +02:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
|
|
|
typedef std::list<boost::shared_ptr<torrent_plugin> > extension_list_t;
|
|
|
|
extension_list_t m_extensions;
|
|
|
|
#endif
|
|
|
|
|
2008-07-12 10:25:19 +02:00
|
|
|
// used for tracker announces
|
|
|
|
deadline_timer m_tracker_timer;
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
// this is the upload and download statistics for the whole torrent.
|
|
|
|
// it's updated from all its peers once every second.
|
|
|
|
libtorrent::stat m_stat;
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// -----------------------------
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
// a back reference to the session
|
|
|
|
// this torrent belongs to.
|
2006-10-11 16:02:21 +02:00
|
|
|
aux::session_impl& m_ses;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2008-07-20 18:00:08 +02:00
|
|
|
std::vector<boost::uint8_t> m_file_priority;
|
|
|
|
|
2009-07-04 06:58:24 +02:00
|
|
|
// this vector contains the number of bytes completely
|
|
|
|
// downloaded (as in passed-hash-check) in each file.
|
|
|
|
// this lets us trigger on individual files completing
|
|
|
|
std::vector<size_type> m_file_progress;
|
|
|
|
|
2005-11-01 19:30:39 +01:00
|
|
|
boost::scoped_ptr<piece_picker> m_picker;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-09-12 12:12:16 +02:00
|
|
|
std::vector<announce_entry> m_trackers;
|
2007-07-03 01:48:06 +02:00
|
|
|
// this is an index into m_trackers
|
|
|
|
|
2009-03-17 10:34:44 +01:00
|
|
|
struct time_critical_piece
|
|
|
|
{
|
|
|
|
// when this piece was first requested
|
|
|
|
ptime first_requested;
|
|
|
|
// when this piece was last requested
|
|
|
|
ptime last_requested;
|
|
|
|
// by what time we want this piece
|
|
|
|
ptime deadline;
|
|
|
|
// 1 = send alert with piece data when available
|
|
|
|
int flags;
|
|
|
|
// how many peers it's been requested from
|
|
|
|
int peers;
|
|
|
|
// the piece index
|
|
|
|
int piece;
|
|
|
|
bool operator<(time_critical_piece const& rhs) const
|
|
|
|
{ return deadline < rhs.deadline; }
|
|
|
|
};
|
|
|
|
|
|
|
|
// this list is sorted by time_critical_piece::deadline
|
|
|
|
std::list<time_critical_piece> m_time_critical_pieces;
|
|
|
|
|
2010-11-18 06:51:52 +01:00
|
|
|
std::string m_trackerid;
|
2004-02-22 23:40:45 +01:00
|
|
|
std::string m_username;
|
|
|
|
std::string m_password;
|
2004-03-23 23:58:18 +01:00
|
|
|
|
2010-07-17 09:13:14 +02:00
|
|
|
// the network interfaces outgoing connections
|
|
|
|
// are opened through. If there is more then one,
|
|
|
|
// they are used in a round-robin fasion
|
|
|
|
std::vector<union_endpoint> m_net_interfaces;
|
2004-03-23 23:58:18 +01:00
|
|
|
|
2009-10-26 02:29:39 +01:00
|
|
|
std::string m_save_path;
|
2005-05-13 02:39:39 +02:00
|
|
|
|
2010-12-30 02:47:30 +01:00
|
|
|
// if we don't have the metadata, this is a url to
|
|
|
|
// the torrent file
|
|
|
|
std::string m_url;
|
|
|
|
|
2011-01-18 04:41:54 +01:00
|
|
|
// if this was added from an RSS feed, this is the unique
|
|
|
|
// identifier in the feed.
|
|
|
|
std::string m_uuid;
|
|
|
|
|
|
|
|
// if this torrent was added by an RSS feed, this is the
|
|
|
|
// URL to that feed
|
|
|
|
std::string m_source_feed_url;
|
|
|
|
|
2010-12-30 02:47:30 +01:00
|
|
|
// this is used as temporary storage while downloading
|
|
|
|
// the .torrent file from m_url
|
|
|
|
std::vector<char> m_torrent_file_buf;
|
|
|
|
|
2009-02-03 08:46:24 +01:00
|
|
|
// each bit represents a piece. a set bit means
|
|
|
|
// the piece has had its hash verified. This
|
|
|
|
// is only used in seed mode (when m_seed_mode
|
|
|
|
// is true)
|
|
|
|
bitfield m_verified;
|
2008-03-08 07:06:31 +01:00
|
|
|
|
2009-02-23 02:21:19 +01:00
|
|
|
// set if there's an error on this torrent
|
|
|
|
error_code m_error;
|
|
|
|
// if the error ocurred on a file, this is the file
|
|
|
|
std::string m_error_file;
|
2008-05-20 09:57:44 +02:00
|
|
|
|
2008-07-01 01:14:31 +02:00
|
|
|
// used if there is any resume data
|
|
|
|
std::vector<char> m_resume_data;
|
|
|
|
lazy_entry m_resume_entry;
|
2008-03-08 07:06:31 +01:00
|
|
|
|
2006-11-14 01:08:16 +01:00
|
|
|
// if the torrent is started without metadata, it may
|
|
|
|
// still be given a name until the metadata is received
|
|
|
|
// once the metadata is received this field will no
|
|
|
|
// longer be used and will be reset
|
|
|
|
boost::scoped_ptr<std::string> m_name;
|
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
storage_constructor_type m_storage_constructor;
|
|
|
|
|
2011-09-22 12:37:47 +02:00
|
|
|
// the posix time this torrent was added and when
|
|
|
|
// it was completed. If the torrent isn't yet
|
|
|
|
// completed, m_completed_time is 0
|
|
|
|
time_t m_added_time;
|
|
|
|
time_t m_completed_time;
|
|
|
|
time_t m_last_seen_complete;
|
|
|
|
time_t m_last_saved_resume;
|
|
|
|
|
2008-08-21 01:05:12 +02:00
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
// this is SHA1("req2" + info-hash), used for
|
|
|
|
// encrypted hand shakes
|
|
|
|
sha1_hash m_obfuscated_hash;
|
|
|
|
#endif
|
2008-05-19 04:52:32 +02:00
|
|
|
|
|
|
|
// the upload/download ratio that each peer
|
|
|
|
// tries to maintain.
|
|
|
|
// 0 is infinite
|
|
|
|
float m_ratio;
|
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// free download we have got that hasn't
|
|
|
|
// been distributed yet.
|
|
|
|
boost::uint32_t m_available_free_upload;
|
2008-05-19 04:52:32 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// the average time it takes to download one time critical piece
|
|
|
|
boost::uint32_t m_average_piece_time;
|
|
|
|
// the average piece download time deviation
|
|
|
|
boost::uint32_t m_piece_time_deviation;
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// the number of bytes that has been
|
|
|
|
// downloaded that failed the hash-test
|
|
|
|
boost::uint32_t m_total_failed_bytes;
|
|
|
|
boost::uint32_t m_total_redundant_bytes;
|
2007-10-31 10:48:20 +01:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// ==============================
|
|
|
|
// The following members are specifically
|
|
|
|
// ordered to make the 24 bit members
|
|
|
|
// properly 32 bit aligned by inserting
|
|
|
|
// 8 bits after each one
|
|
|
|
// ==============================
|
2008-04-16 08:31:05 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// the number of seconds we've been in upload mode
|
|
|
|
unsigned int m_upload_mode_time:24;
|
2008-04-16 08:31:05 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// the state of this torrent (queued, checking, downloading, etc.)
|
|
|
|
unsigned int m_state:3;
|
2008-05-06 20:03:41 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// determines the storage state for this torrent.
|
|
|
|
unsigned int m_storage_mode:2;
|
2008-05-19 04:52:32 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// this is true while tracker announcing is enabled
|
|
|
|
// is is disabled while paused and checking files
|
|
|
|
bool m_announcing:1;
|
2009-09-13 04:24:25 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// this is true while the tracker deadline timer
|
|
|
|
// is in use. i.e. one or more trackers are waiting
|
|
|
|
// for a reannounce
|
|
|
|
bool m_waiting_tracker:1;
|
2008-05-19 04:52:32 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// this means we haven't verified the file content
|
|
|
|
// of the files we're seeding. the m_verified bitfield
|
|
|
|
// indicates which pieces have been verified and which
|
|
|
|
// haven't
|
|
|
|
bool m_seed_mode:1;
|
2008-05-19 04:52:32 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// total time we've been available on this torrent
|
|
|
|
// does not count when the torrent is stopped or paused
|
|
|
|
// in seconds
|
|
|
|
unsigned int m_active_time:24;
|
2009-06-19 00:32:55 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// the index to the last tracker that worked
|
|
|
|
boost::int8_t m_last_working_tracker;
|
2008-05-19 04:52:32 +02:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// total time we've been finished with this torrent
|
|
|
|
// does not count when the torrent is stopped or paused
|
|
|
|
unsigned int m_finished_time:24;
|
2008-05-19 04:52:32 +02:00
|
|
|
|
|
|
|
// in case the piece picker hasn't been constructed
|
|
|
|
// when this settings is set, this variable will keep
|
|
|
|
// its value until the piece picker is created
|
|
|
|
bool m_sequential_download:1;
|
|
|
|
|
|
|
|
// is false by default and set to
|
|
|
|
// true when the first tracker reponse
|
|
|
|
// is received
|
|
|
|
bool m_got_tracker_response:1;
|
|
|
|
|
|
|
|
// this is set to false as long as the connections
|
|
|
|
// of this torrent hasn't been initialized. If we
|
|
|
|
// have metadata from the start, connections are
|
|
|
|
// initialized immediately, if we didn't have metadata,
|
|
|
|
// they are initialized right after files_checked().
|
|
|
|
// valid_resume_data() will return false as long as
|
|
|
|
// the connections aren't initialized, to avoid
|
|
|
|
// them from altering the piece-picker before it
|
|
|
|
// has been initialized with files_checked().
|
|
|
|
bool m_connections_initialized:1;
|
|
|
|
|
2008-12-08 07:36:22 +01:00
|
|
|
// if this is true, we're currently super seeding this
|
|
|
|
// torrent.
|
|
|
|
bool m_super_seeding:1;
|
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// this is set when we don't want to load seed_mode,
|
|
|
|
// paused or auto_managed from the resume data
|
|
|
|
bool m_override_resume_data:1;
|
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_RESOLVE_COUNTRIES
|
|
|
|
// this is true while there is a country
|
|
|
|
// resolution in progress. To avoid flodding
|
|
|
|
// the DNS request queue, only one ip is resolved
|
|
|
|
// at a time.
|
|
|
|
mutable bool m_resolving_country:1;
|
|
|
|
|
|
|
|
// this is true if the user has enabled
|
|
|
|
// country resolution in this torrent
|
|
|
|
bool m_resolve_countries:1;
|
|
|
|
#else
|
|
|
|
unsigned int m_dummy_padding_bits_to_align:2;
|
|
|
|
#endif
|
2010-04-12 02:36:31 +02:00
|
|
|
|
|
|
|
// set to false when saving resume data. Set to true
|
|
|
|
// whenever something is downloaded
|
|
|
|
bool m_need_save_resume_data:1;
|
2010-02-14 02:39:55 +01:00
|
|
|
|
|
|
|
// total time we've been available as a seed on this torrent
|
|
|
|
// does not count when the torrent is stopped or paused
|
|
|
|
unsigned int m_seeding_time:24;
|
|
|
|
|
|
|
|
// this is a counter that is decreased every
|
|
|
|
// second, and when it reaches 0, the policy::pulse()
|
|
|
|
// is called and the time scaler is reset to 10.
|
|
|
|
boost::int8_t m_time_scaler;
|
|
|
|
|
|
|
|
// the maximum number of uploads for this torrent
|
|
|
|
unsigned int m_max_uploads:24;
|
|
|
|
|
|
|
|
// this is the deficit counter in the Deficit Round Robin
|
|
|
|
// used to determine which torrent gets the next
|
|
|
|
// connection attempt. See:
|
|
|
|
// http://www.ecs.umass.edu/ece/wolf/courses/ECE697J/papers/DRR.pdf
|
|
|
|
// The quanta assigned to each torrent depends on the torrents
|
|
|
|
// priority, whether it's a seed and the number of connected
|
|
|
|
// peers it has. This has the effect that some torrents
|
|
|
|
// will have more connection attempts than other. Each
|
|
|
|
// connection attempt costs 100 points from the deficit
|
|
|
|
// counter. points are deducted in try_connect_peer and
|
|
|
|
// increased in give_connect_points. Outside of the
|
|
|
|
// torrent object, these points are called connect_points.
|
|
|
|
boost::uint8_t m_deficit_counter;
|
|
|
|
|
|
|
|
// the number of unchoked peers in this torrent
|
|
|
|
unsigned int m_num_uploads:24;
|
|
|
|
|
|
|
|
// the size of a request block
|
|
|
|
// each piece is divided into these
|
|
|
|
// blocks when requested. The block size is
|
|
|
|
// 1 << m_block_size_shift
|
|
|
|
unsigned int m_block_size_shift:5;
|
|
|
|
|
2008-06-05 20:19:03 +02:00
|
|
|
// is set to true every time there is an incoming
|
|
|
|
// connection to this torrent
|
|
|
|
bool m_has_incoming:1;
|
|
|
|
|
2008-06-07 18:24:56 +02:00
|
|
|
// this is set to true when the files are checked
|
|
|
|
// before the files are checked, we don't try to
|
|
|
|
// connect to peers
|
2008-05-19 04:52:32 +02:00
|
|
|
bool m_files_checked:1;
|
2008-07-12 10:25:19 +02:00
|
|
|
|
2009-02-08 02:29:09 +01:00
|
|
|
// this is true if the torrent has been added to
|
|
|
|
// checking queue in the session
|
|
|
|
bool m_queued_for_checking:1;
|
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// the maximum number of connections for this torrent
|
|
|
|
unsigned int m_max_connections:24;
|
2008-12-27 08:22:57 +01:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// the number of bytes of padding files
|
|
|
|
unsigned int m_padding:24;
|
2009-02-03 08:46:24 +01:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// the sequence number for this torrent, this is a
|
|
|
|
// monotonically increasing number for each added torrent
|
|
|
|
boost::int16_t m_sequence_number;
|
2009-03-21 05:33:53 +01:00
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// the scrape data from the tracker response, this
|
|
|
|
// is optional and may be 0xffffff
|
|
|
|
unsigned int m_complete:24;
|
|
|
|
|
|
|
|
// this is the priority of the torrent. The higher
|
|
|
|
// the value is, the more bandwidth is assigned to
|
|
|
|
// the torrent's peers
|
|
|
|
boost::uint8_t m_priority;
|
|
|
|
|
|
|
|
// the scrape data from the tracker response, this
|
|
|
|
// is optional and may be 0xffffff
|
|
|
|
unsigned int m_incomplete:24;
|
|
|
|
|
|
|
|
// progress parts per million (the number of
|
|
|
|
// millionths of completeness)
|
|
|
|
unsigned int m_progress_ppm:20;
|
|
|
|
|
|
|
|
// is set to true when the torrent has
|
|
|
|
// been aborted.
|
|
|
|
bool m_abort:1;
|
|
|
|
|
2010-03-29 02:34:04 +02:00
|
|
|
// true when the torrent should announce to
|
|
|
|
// the DHT
|
|
|
|
bool m_announce_to_dht:1;
|
|
|
|
|
|
|
|
// true when this torrent should anncounce to
|
|
|
|
// trackers
|
|
|
|
bool m_announce_to_trackers:1;
|
|
|
|
|
|
|
|
// true when this torrent should anncounce to
|
|
|
|
// the local network
|
|
|
|
bool m_announce_to_lsd:1;
|
|
|
|
|
|
|
|
// is true if this torrent has allows having peers
|
|
|
|
bool m_allow_peers:1;
|
2010-02-14 02:39:55 +01:00
|
|
|
|
|
|
|
// set to true when this torrent may not download anything
|
|
|
|
bool m_upload_mode:1;
|
|
|
|
|
|
|
|
// if this is true, libtorrent may pause and resume
|
|
|
|
// this torrent depending on queuing rules. Torrents
|
|
|
|
// started with auto_managed flag set may be added in
|
|
|
|
// a paused state in case there are no available
|
|
|
|
// slots.
|
|
|
|
bool m_auto_managed:1;
|
|
|
|
|
2010-09-05 18:01:36 +02:00
|
|
|
// this is set when the torrent is in share-mode
|
|
|
|
bool m_share_mode:1;
|
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// m_num_verified = m_verified.count()
|
|
|
|
boost::uint16_t m_num_verified;
|
|
|
|
|
|
|
|
// the number of seconds since the last scrape request to
|
|
|
|
// one of the trackers in this torrent
|
|
|
|
boost::uint16_t m_last_scrape;
|
2010-07-08 21:29:38 +02:00
|
|
|
|
|
|
|
// the number of seconds since the last piece passed for
|
|
|
|
// this torrent
|
|
|
|
boost::uint16_t m_last_download;
|
|
|
|
|
|
|
|
// the number of seconds since the last byte was uploaded
|
|
|
|
// from this torrent
|
|
|
|
boost::uint16_t m_last_upload;
|
2010-07-17 09:13:14 +02:00
|
|
|
|
2010-09-06 06:02:15 +02:00
|
|
|
// the scrape data from the tracker response, this
|
|
|
|
// is optional and may be 0xffffff
|
|
|
|
unsigned int m_downloaders:24;
|
|
|
|
|
2010-07-17 09:13:14 +02:00
|
|
|
// round-robin index into m_interfaces
|
|
|
|
mutable boost::uint8_t m_interface_index;
|
2010-10-30 10:36:18 +02:00
|
|
|
|
2011-02-26 08:48:05 +01:00
|
|
|
// these are the flags sent in on a call to save_resume_data
|
|
|
|
// we need to save them to check them in write_resume_data
|
2011-11-15 03:34:00 +01:00
|
|
|
boost::uint8_t m_save_resume_flags;
|
2011-02-26 08:48:05 +01:00
|
|
|
|
2010-10-30 10:36:18 +02:00
|
|
|
// set to true when this torrent has been paused but
|
|
|
|
// is waiting to finish all current download requests
|
|
|
|
// before actually closing all connections
|
|
|
|
bool m_graceful_pause_mode:1;
|
2010-12-17 04:10:56 +01:00
|
|
|
|
|
|
|
// this is set to true when the torrent starts up
|
|
|
|
// The first tracker response, when this is true,
|
|
|
|
// will attempt to connect to a bunch of peers immediately
|
|
|
|
// and set this to false. We only do this once to get
|
|
|
|
// the torrent kick-started
|
|
|
|
bool m_need_connect_boost:1;
|
2011-02-16 11:16:52 +01:00
|
|
|
|
|
|
|
// rotating sequence number for LSD announces sent out.
|
|
|
|
// used to only use IP broadcast for every 8th lsd announce
|
|
|
|
boost::uint8_t m_lsd_seq:3;
|
2011-02-26 08:48:05 +01:00
|
|
|
|
|
|
|
// this is set to true if the torrent was started without
|
|
|
|
// metadata. It is used to save metadata in the resume file
|
|
|
|
// by default for such torrents. It does not necessarily
|
|
|
|
// have to be a magnet link.
|
|
|
|
bool m_magnet_link:1;
|
2011-02-27 18:26:57 +01:00
|
|
|
|
|
|
|
// set to true if the session IP filter applies to this
|
|
|
|
// torrent or not. Defaults to true.
|
|
|
|
bool m_apply_ip_filter:1;
|
2011-04-10 23:33:29 +02:00
|
|
|
|
|
|
|
// if set to true, add tracker URLs loaded from resume
|
|
|
|
// data into this torrent instead of replacing them
|
|
|
|
bool m_merge_resume_trackers:1;
|
2011-06-05 22:48:00 +02:00
|
|
|
|
2011-09-05 07:50:41 +02:00
|
|
|
// set to true if this torrent has been added to the session
|
|
|
|
// global list for encrypted torrents. When the torrent is
|
|
|
|
// paused it's removed and when it's started again, it's
|
|
|
|
// re-added
|
|
|
|
bool m_in_encrypted_list:1;
|
2011-11-15 03:34:00 +01:00
|
|
|
|
|
|
|
// state subscription. If set, a pointer to this torrent
|
|
|
|
// will be added to the m_state_updates set in session_impl
|
|
|
|
// whenever this torrent's state changes (any state).
|
|
|
|
bool m_state_subscription:1;
|
|
|
|
|
|
|
|
// in state_updates list. When adding a torrent to the
|
|
|
|
// session_impl's m_state_update list, this bit is set
|
|
|
|
// to never add the same torrent twice
|
|
|
|
bool m_in_state_updates:1;
|
2011-09-05 07:50:41 +02:00
|
|
|
|
2011-07-05 06:05:12 +02:00
|
|
|
#if defined TORRENT_DEBUG || TORRENT_RELEASE_ASSERTS
|
2011-06-05 22:48:00 +02:00
|
|
|
public:
|
|
|
|
// set to false until we've loaded resume data
|
|
|
|
bool m_resume_data_loaded;
|
|
|
|
#endif
|
2003-10-23 01:00:57 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_TORRENT_HPP_INCLUDED
|
2005-03-19 13:22:40 +01:00
|
|
|
|