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>
|
|
|
|
#include <iostream>
|
|
|
|
|
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>
|
|
|
|
#include <boost/filesystem/path.hpp>
|
2003-11-20 20:58:29 +01:00
|
|
|
#include <boost/date_time/posix_time/posix_time.hpp>
|
2005-05-30 19:43:03 +02:00
|
|
|
#include <boost/tuple/tuple.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"
|
|
|
|
#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"
|
2004-03-23 23:58:18 +01:00
|
|
|
#include "libtorrent/resource_request.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
2005-03-19 13:22:40 +01:00
|
|
|
#ifdef TORRENT_VERBOSE_LOGGING
|
2003-10-23 01:00:57 +02:00
|
|
|
struct logger;
|
|
|
|
#endif
|
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
class piece_manager;
|
|
|
|
|
2004-01-14 13:53:17 +01:00
|
|
|
std::string escape_string(const char* str, int len);
|
2004-01-14 20:24:11 +01:00
|
|
|
std::string unescape_string(std::string const& s);
|
2004-01-14 13:53:17 +01:00
|
|
|
|
2003-12-22 08:14:35 +01:00
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
namespace detail
|
|
|
|
{
|
|
|
|
struct session_impl;
|
2004-06-14 01:30:42 +02:00
|
|
|
struct piece_checker_data;
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
2004-09-12 15:53:00 +02:00
|
|
|
int div_round_up(int numerator, int denominator);
|
|
|
|
std::pair<int, int> req_to_offset(std::pair<int, int> req, int total_size);
|
|
|
|
std::pair<int, int> offset_to_req(std::pair<int, int> offset, int total_size);
|
|
|
|
|
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
|
|
|
|
class torrent: public request_callback
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
torrent(
|
|
|
|
detail::session_impl& ses
|
2004-06-14 01:30:42 +02:00
|
|
|
, entry const& metadata
|
|
|
|
, boost::filesystem::path const& save_path
|
2005-05-13 02:39:39 +02:00
|
|
|
, address const& net_interface
|
|
|
|
, bool compact_mode);
|
2004-06-14 01:30:42 +02:00
|
|
|
|
|
|
|
// used with metadata-less torrents
|
|
|
|
// (the metadata is downloaded from the peers)
|
|
|
|
torrent(
|
|
|
|
detail::session_impl& ses
|
|
|
|
, char const* tracker_url
|
|
|
|
, sha1_hash const& info_hash
|
|
|
|
, boost::filesystem::path const& save_path
|
2005-05-13 02:39:39 +02:00
|
|
|
, address const& net_interface
|
|
|
|
, bool compact_mode);
|
2003-12-14 06:56:12 +01:00
|
|
|
|
|
|
|
~torrent();
|
2003-10-23 01:00:57 +02:00
|
|
|
|
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();
|
|
|
|
|
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; }
|
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
// is called every second by session. This will
|
|
|
|
// caclulate the upload/download and number
|
|
|
|
// of connections this torrent needs. And prepare
|
|
|
|
// it for being used by allocate_resources.
|
2004-04-18 15:41:08 +02:00
|
|
|
void second_tick(stat& accumulator);
|
2003-12-01 06:01:40 +01:00
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
// debug purpose only
|
2003-10-23 01:00:57 +02:00
|
|
|
void print(std::ostream& os) const;
|
|
|
|
|
2005-06-15 14:54:35 +02:00
|
|
|
// this is called from the peer_connection for
|
|
|
|
// each piece of metadata it receives
|
|
|
|
void metadata_progress(int total_size, int received);
|
|
|
|
|
2004-01-08 18:03:04 +01:00
|
|
|
void check_files(
|
|
|
|
detail::piece_checker_data& data
|
2005-05-29 19:25:13 +02:00
|
|
|
, boost::mutex& mutex, bool lock_session = true);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
stat statistics() const { return m_stat; }
|
|
|
|
size_type bytes_left() const;
|
2005-05-30 19:43:03 +02:00
|
|
|
boost::tuple<size_type, size_type> bytes_done() const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-03-21 03:03:37 +01:00
|
|
|
void pause();
|
|
|
|
void resume();
|
|
|
|
bool is_paused() const { return m_paused; }
|
|
|
|
|
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-02 10:48:37 +02:00
|
|
|
|
|
|
|
//idea from Arvid and MooPolice
|
|
|
|
//todo refactoring and improving the function body
|
2005-07-04 01:33:47 +02:00
|
|
|
// marks the file with the given index as filtered
|
|
|
|
// it will not be downloaded
|
2005-07-02 10:48:37 +02:00
|
|
|
void filter_file(int index, bool filter);
|
2005-07-04 01:33:47 +02:00
|
|
|
void filter_files(std::vector<bool> const& files);
|
|
|
|
|
2005-07-02 10:48:37 +02:00
|
|
|
|
2003-10-31 05:02:51 +01:00
|
|
|
torrent_status status() const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-02-26 01:27:06 +01:00
|
|
|
void use_interface(const char* net_interface);
|
2004-01-15 17:45:34 +01:00
|
|
|
peer_connection& connect_to_peer(const address& a);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-12 04:05:10 +01:00
|
|
|
void set_ratio(float ratio)
|
2004-01-25 13:37:15 +01:00
|
|
|
{ assert(ratio >= 0.0f); m_ratio = ratio; }
|
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
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// --------------------------------------------
|
|
|
|
// PEER MANAGEMENT
|
|
|
|
|
|
|
|
// 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.
|
2003-12-01 06:01:40 +01:00
|
|
|
void 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
|
2004-01-15 17:45:34 +01:00
|
|
|
// called from the peer_connection destructor
|
2003-10-23 01:00:57 +02:00
|
|
|
void remove_peer(peer_connection* p);
|
|
|
|
|
2004-01-13 04:08:59 +01:00
|
|
|
peer_connection* connection_for(const address& a)
|
|
|
|
{
|
|
|
|
peer_iterator i = m_connections.find(a);
|
|
|
|
if (i == m_connections.end()) return 0;
|
|
|
|
return i->second;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2004-01-13 04:08:59 +01:00
|
|
|
typedef std::map<address, peer_connection*>::iterator peer_iterator;
|
|
|
|
typedef std::map<address, 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
|
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------
|
|
|
|
// 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
|
|
|
|
, std::vector<peer_entry>& e, int interval
|
2005-02-23 09:57:54 +01:00
|
|
|
, int complete, int incomplete);
|
2005-03-24 13:13:47 +01:00
|
|
|
virtual void tracker_request_timed_out(
|
|
|
|
tracker_request const& r);
|
|
|
|
virtual void tracker_request_error(tracker_request const& r
|
|
|
|
, int response_code, const std::string& str);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
// generates a request string for sending
|
|
|
|
// to the tracker
|
2004-03-21 03:03:37 +01:00
|
|
|
tracker_request generate_tracker_request();
|
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.
|
|
|
|
boost::posix_time::ptime next_announce() const;
|
|
|
|
|
|
|
|
// returns true if it is time for this torrent to make another
|
|
|
|
// tracker request
|
2004-07-24 13:54:17 +02:00
|
|
|
bool should_request();
|
2004-03-28 19:45:37 +02:00
|
|
|
|
|
|
|
// forcefully sets next_announce to the current time
|
|
|
|
void force_tracker_request();
|
2005-05-03 15:13:57 +02:00
|
|
|
void force_tracker_request(boost::posix_time::ptime);
|
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);
|
|
|
|
|
|
|
|
// the address of the tracker that we managed to
|
|
|
|
// announce ourself at the last time we tried to announce
|
|
|
|
const address& current_tracker() const;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
// --------------------------------------------
|
|
|
|
// PIECE MANAGEMENT
|
|
|
|
|
|
|
|
// 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
|
|
|
{
|
|
|
|
assert(index >= 0 && index < (signed)m_have_pieces.size());
|
|
|
|
return m_have_pieces[index];
|
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2003-12-17 04:40:13 +01:00
|
|
|
const std::vector<bool>& pieces() const
|
|
|
|
{ return m_have_pieces; }
|
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
int num_pieces() const { return m_num_pieces; }
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// when we get a have- or bitfield- messages, this is called for every
|
|
|
|
// piece a peer has gained.
|
2003-12-18 04:30:41 +01:00
|
|
|
void peer_has(int index)
|
2004-01-25 13:37:15 +01:00
|
|
|
{
|
2004-06-14 01:30:42 +02:00
|
|
|
assert(m_picker.get());
|
2004-01-25 13:37:15 +01:00
|
|
|
assert(index >= 0 && index < (signed)m_have_pieces.size());
|
2004-06-14 01:30:42 +02:00
|
|
|
m_picker->inc_refcount(index);
|
2004-01-25 13:37:15 +01:00
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
// when peer disconnects, this is called for every piece it had
|
|
|
|
void peer_lost(int index)
|
2004-01-25 13:37:15 +01:00
|
|
|
{
|
2004-06-14 01:30:42 +02:00
|
|
|
assert(m_picker.get());
|
2004-01-25 13:37:15 +01:00
|
|
|
assert(index >= 0 && index < (signed)m_have_pieces.size());
|
2004-06-14 01:30:42 +02:00
|
|
|
m_picker->dec_refcount(index);
|
2004-01-25 13:37:15 +01:00
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 13:37:15 +01:00
|
|
|
int block_size() const { return m_block_size; }
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
// 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 announce_piece(int index);
|
|
|
|
|
2004-01-20 23:59:21 +01:00
|
|
|
void disconnect_all();
|
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();
|
2003-10-23 01:00:57 +02:00
|
|
|
|
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();
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
bool verify_piece(int piece_index);
|
|
|
|
|
2003-12-01 22:27:27 +01:00
|
|
|
// this is called from the peer_connection
|
|
|
|
// each time a piece has failed the hash
|
|
|
|
// test
|
|
|
|
void piece_failed(int index);
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
float priority() const
|
|
|
|
{ return m_priority; }
|
|
|
|
|
|
|
|
void set_priority(float p)
|
|
|
|
{
|
2004-01-25 05:18:08 +01:00
|
|
|
assert(p >= 0.f && p <= 1.f);
|
2003-12-07 06:53:04 +01:00
|
|
|
m_priority = p;
|
|
|
|
}
|
|
|
|
|
2003-12-09 19:09:34 +01:00
|
|
|
bool is_seed() const
|
2004-06-14 01:30:42 +02:00
|
|
|
{
|
|
|
|
return valid_metadata()
|
|
|
|
&& m_num_pieces == m_torrent_file.num_pieces();
|
|
|
|
}
|
2003-12-09 19:09:34 +01:00
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
boost::filesystem::path 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()
|
|
|
|
{
|
|
|
|
assert(m_picker.get());
|
|
|
|
return *m_picker;
|
|
|
|
}
|
2004-03-28 19:45:37 +02:00
|
|
|
policy& get_policy() { return *m_policy; }
|
2004-06-14 01:30:42 +02:00
|
|
|
piece_manager& filesystem();
|
2004-03-28 19:45:37 +02:00
|
|
|
torrent_info const& torrent_file() const { return m_torrent_file; }
|
2004-02-22 23:40:45 +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);
|
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
torrent_handle get_handle() const;
|
2004-03-01 01:50:00 +01:00
|
|
|
|
2005-03-19 13:22:40 +01:00
|
|
|
// LOGGING
|
|
|
|
#ifdef TORRENT_VERBOSE_LOGGING
|
2003-10-23 01:00:57 +02:00
|
|
|
logger* spawn_logger(const char* title);
|
|
|
|
|
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
|
|
|
|
#ifndef NDEBUG
|
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
|
|
|
|
|
2004-03-23 23:58:18 +01:00
|
|
|
// this will distribute the given upload/download
|
2004-03-28 19:45:37 +02:00
|
|
|
// quotas and number of connections, among the peers
|
2004-03-23 23:58:18 +01:00
|
|
|
void distribute_resources();
|
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
resource_request m_ul_bandwidth_quota;
|
|
|
|
resource_request m_dl_bandwidth_quota;
|
2004-10-29 15:21:09 +02:00
|
|
|
resource_request m_uploads_quota;
|
2004-03-28 19:45:37 +02:00
|
|
|
resource_request m_connections_quota;
|
2004-03-23 23:58:18 +01:00
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
void set_upload_limit(int limit);
|
|
|
|
void set_download_limit(int limit);
|
2004-10-29 15:21:09 +02:00
|
|
|
void set_max_uploads(int limit);
|
|
|
|
void set_max_connections(int limit);
|
2004-07-18 02:39:58 +02:00
|
|
|
bool move_storage(boost::filesystem::path const& save_path);
|
2004-03-23 23:58:18 +01:00
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
bool valid_metadata() const { return m_storage.get() != 0; }
|
|
|
|
std::vector<char> const& metadata() const { return m_metadata; }
|
|
|
|
|
2004-08-08 23:26:40 +02:00
|
|
|
bool received_metadata(
|
|
|
|
char const* buf
|
|
|
|
, int size
|
|
|
|
, int offset
|
|
|
|
, int total_size);
|
|
|
|
|
|
|
|
// returns a range of the metadata that
|
|
|
|
// we should request.
|
|
|
|
std::pair<int, int> metadata_request();
|
2004-09-12 15:53:00 +02:00
|
|
|
void cancel_metadata_request(std::pair<int, int> req);
|
2004-06-14 01:30:42 +02:00
|
|
|
|
2003-11-26 15:11:25 +01:00
|
|
|
private:
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
void try_next_tracker();
|
2004-09-12 12:12:16 +02:00
|
|
|
int prioritize_tracker(int tracker_index);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
torrent_info m_torrent_file;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2003-10-23 18:55:52 +02:00
|
|
|
// is set to true when the torrent has
|
|
|
|
// been aborted.
|
2003-10-23 01:00:57 +02:00
|
|
|
bool m_abort;
|
|
|
|
|
2004-03-21 03:03:37 +01:00
|
|
|
// is true if this torrent has been paused
|
|
|
|
bool m_paused;
|
2004-07-24 13:54:17 +02:00
|
|
|
// this is true from the time when the torrent was
|
|
|
|
// paused to the time should_request() is called
|
|
|
|
bool m_just_paused;
|
2004-03-21 03:03:37 +01:00
|
|
|
|
2004-01-21 14:16:11 +01:00
|
|
|
tracker_request::event_t m_event;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-15 17:45:34 +01:00
|
|
|
void parse_response(const entry& e, std::vector<peer_entry>& peer_list);
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
// the size of a request block
|
|
|
|
// each piece is divided into these
|
|
|
|
// blocks when requested
|
|
|
|
int m_block_size;
|
|
|
|
|
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.
|
|
|
|
std::auto_ptr<piece_manager> m_storage;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
// the time of next tracker request
|
|
|
|
boost::posix_time::ptime m_next_request;
|
|
|
|
|
|
|
|
// -----------------------------
|
|
|
|
// DATA FROM TRACKER RESPONSE
|
|
|
|
|
|
|
|
// the number number of seconds between requests
|
|
|
|
// from the tracker
|
|
|
|
int m_duration;
|
|
|
|
|
2005-02-21 14:59:24 +01:00
|
|
|
// the scrape data from the tracker response, this
|
|
|
|
// is optional and may be -1.
|
|
|
|
int m_complete;
|
|
|
|
int m_incomplete;
|
|
|
|
|
2004-01-13 04:08:59 +01:00
|
|
|
std::map<address, peer_connection*> m_connections;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
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
|
|
|
// -----------------------------
|
|
|
|
|
|
|
|
boost::shared_ptr<policy> m_policy;
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
// a back reference to the session
|
|
|
|
// this torrent belongs to.
|
|
|
|
detail::session_impl& m_ses;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-06-14 01:30:42 +02:00
|
|
|
std::auto_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;
|
2003-10-23 01:00:57 +02:00
|
|
|
// this is an index into m_torrent_file.trackers()
|
|
|
|
int m_last_working_tracker;
|
|
|
|
int m_currently_trying_tracker;
|
2004-04-02 00:29:51 +02:00
|
|
|
// the number of connection attempts that has
|
2004-09-12 12:12:16 +02:00
|
|
|
// failed in a row, this is currently used to
|
|
|
|
// determine the timeout until next try.
|
2004-04-02 00:29:51 +02:00
|
|
|
int m_failed_trackers;
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2003-12-01 06:01:40 +01:00
|
|
|
// this is a counter that is increased every
|
|
|
|
// second, and when it reaches 10, the policy::pulse()
|
|
|
|
// is called and the time scaler is reset to 0.
|
|
|
|
int m_time_scaler;
|
2003-12-07 06:53:04 +01:00
|
|
|
|
|
|
|
// this is the priority of this torrent. It is used
|
|
|
|
// to weight the assigned upload bandwidth between peers
|
|
|
|
// it should be within the range [0, 1]
|
|
|
|
float m_priority;
|
|
|
|
|
|
|
|
// the bitmask that says which pieces we have
|
|
|
|
std::vector<bool> m_have_pieces;
|
|
|
|
|
|
|
|
// the number of pieces we have. The same as
|
|
|
|
// std::accumulate(m_have_pieces.begin(),
|
|
|
|
// m_have_pieces.end(), 0)
|
|
|
|
int m_num_pieces;
|
2003-12-22 08:14:35 +01:00
|
|
|
|
|
|
|
// is false by default and set to
|
|
|
|
// true when the first tracker reponse
|
|
|
|
// is received
|
|
|
|
bool m_got_tracker_response;
|
2004-01-12 04:05:10 +01:00
|
|
|
|
|
|
|
// the upload/download ratio that each peer
|
|
|
|
// tries to maintain.
|
|
|
|
// 0 is infinite
|
|
|
|
float m_ratio;
|
2004-02-22 23:40:45 +01:00
|
|
|
|
2004-04-18 14:28:02 +02:00
|
|
|
// the number of bytes that has been
|
|
|
|
// downloaded that failed the hash-test
|
|
|
|
size_type m_total_failed_bytes;
|
|
|
|
|
2004-02-22 23:40:45 +01:00
|
|
|
std::string m_username;
|
|
|
|
std::string m_password;
|
2004-03-23 23:58:18 +01:00
|
|
|
|
|
|
|
// the network interface all outgoing connections
|
|
|
|
// are opened through
|
2004-02-26 01:27:06 +01:00
|
|
|
address m_net_interface;
|
2004-03-23 23:58:18 +01:00
|
|
|
|
|
|
|
// the max number of bytes this torrent
|
|
|
|
// can upload per second
|
|
|
|
int m_upload_bandwidth_limit;
|
2004-03-28 19:45:37 +02:00
|
|
|
int m_download_bandwidth_limit;
|
2004-06-14 01:30:42 +02:00
|
|
|
|
|
|
|
// this buffer is filled with the info-section of
|
|
|
|
// the metadata file while downloading it from
|
|
|
|
// peers, and while sending it.
|
|
|
|
std::vector<char> m_metadata;
|
|
|
|
|
|
|
|
// this is a bitfield of size 256, each bit represents
|
|
|
|
// a piece of the metadata. It is set to one if we
|
|
|
|
// have that piece. This vector may be empty
|
|
|
|
// (size 0) if we haven't received any metadata
|
|
|
|
// or if we already have all metadata
|
|
|
|
std::vector<bool> m_have_metadata;
|
2004-07-24 13:54:17 +02:00
|
|
|
// this vector keeps track of how many times each meatdata
|
|
|
|
// block has been requested
|
|
|
|
std::vector<int> m_requested_metadata;
|
2004-06-14 01:30:42 +02:00
|
|
|
|
|
|
|
boost::filesystem::path m_save_path;
|
2005-05-13 02:39:39 +02:00
|
|
|
|
|
|
|
// determines the storage state for this torrent.
|
|
|
|
const bool m_compact_mode;
|
2005-06-15 14:54:35 +02:00
|
|
|
|
|
|
|
int m_metadata_progress;
|
|
|
|
int m_metadata_size;
|
2003-10-23 01:00:57 +02:00
|
|
|
};
|
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
inline boost::posix_time::ptime torrent::next_announce() const
|
|
|
|
{
|
2004-07-24 13:54:17 +02:00
|
|
|
return m_next_request;
|
2004-03-28 19:45:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void torrent::force_tracker_request()
|
2005-05-03 15:13:57 +02:00
|
|
|
{
|
|
|
|
using boost::posix_time::second_clock;
|
|
|
|
m_next_request = second_clock::universal_time();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void torrent::force_tracker_request(boost::posix_time::ptime t)
|
2004-03-28 19:45:37 +02:00
|
|
|
{
|
|
|
|
namespace time = boost::posix_time;
|
2005-05-03 15:13:57 +02:00
|
|
|
m_next_request = t;
|
2004-03-28 19:45:37 +02:00
|
|
|
}
|
|
|
|
|
2005-05-03 15:13:57 +02:00
|
|
|
|
2004-03-28 19:45:37 +02:00
|
|
|
inline void torrent::set_tracker_login(
|
|
|
|
std::string const& name
|
|
|
|
, std::string const& pw)
|
|
|
|
{
|
|
|
|
m_username = name;
|
|
|
|
m_password = pw;
|
|
|
|
}
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_TORRENT_HPP_INCLUDED
|
2005-03-19 13:22:40 +01:00
|
|
|
|