premiere-libtorrent/include/libtorrent/policy.hpp

248 lines
6.5 KiB
C++
Raw Normal View History

/*
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_POLICY_HPP_INCLUDED
#define TORRENT_POLICY_HPP_INCLUDED
#include <algorithm>
#include <vector>
#include <boost/date_time/posix_time/posix_time.hpp>
#include "libtorrent/peer.hpp"
#include "libtorrent/piece_picker.hpp"
2004-01-12 04:05:10 +01:00
#include "libtorrent/socket.hpp"
namespace libtorrent
{
class torrent;
class address;
class peer_connection;
class policy
{
public:
policy(torrent* t);
// this is called every 10 seconds to allow
// for peer choking management
void pulse();
// this is called once for every peer we get from
// the tracker
void peer_from_tracker(const address& remote, const peer_id& id);
2004-01-14 17:18:53 +01:00
// called when an incoming connection is accepted
// return false if the connection closed
void new_connection(peer_connection& c);
// the given connection was just closed
void connection_closed(const peer_connection& c);
2003-12-01 22:27:27 +01:00
// is called when a peer is believed to have
// sent invalid data
void ban_peer(const peer_connection& c);
// the peer has got at least one interesting piece
void peer_is_interesting(peer_connection& c);
2003-12-14 06:56:12 +01:00
void piece_finished(int index, bool successfully_verified);
void block_finished(peer_connection& c, piece_block b);
// the peer choked us
void choked(peer_connection& c);
// the peer unchoked us
void unchoked(peer_connection& c);
// the peer is interested in our pieces
void interested(peer_connection& c);
// the peer is not interested in our pieces
void not_interested(peer_connection& c);
2003-12-14 06:56:12 +01:00
void set_max_uploads(int num_unchoked);
#ifndef NDEBUG
bool has_connection(const peer_connection* p);
2003-12-14 06:56:12 +01:00
void check_invariant();
#endif
private:
2004-01-12 21:31:27 +01:00
// TODO: for the moment the peer_id is never updated
// when we get it from the peer. It's kindof useless
// in here right now.
2004-01-15 02:29:43 +01:00
struct peer_identification
{
peer_identification()
: ip(0,0)
{
id.set_to_all_zero();
}
peer_identification(address a, const peer_id &p)
: ip(a)
, id(p)
{
}
// If this info comes from a remote connection,
// port should be set to 0 to denote that the port is unknown.
address ip;
peer_id id;
};
struct peer
{
2004-01-15 02:29:43 +01:00
peer(const peer_identification &pid);
2003-12-14 06:56:12 +01:00
int total_download() const;
int total_upload() const;
// the id of the peer. This is needed to store information
// about peers that aren't connected right now. This
// is to avoid peers reconnecting. unconnected entries
// will be saved a limited amount of time
2004-01-12 04:05:10 +01:00
// the ip/port pair this peer is or was connected on
2004-01-15 02:29:43 +01:00
peer_identification id;
2004-01-12 04:05:10 +01:00
// the time when this peer was optimistically unchoked
// the last time.
boost::posix_time::ptime last_optimistically_unchoked;
// the time when the peer connected to us
// or disconnected if it isn't connected right now
boost::posix_time::ptime connected;
// this is the accumulated amount of
// uploaded and downloaded data to this
// peer. It only accounts for what was
// shared during the last connection to
// this peer. i.e. These are only updated
// when the connection is closed. For the
// total amount of upload and download
// we'll have to add thes figures with the
// statistics from the peer_connection.
int prev_amount_upload;
int prev_amount_download;
2003-12-01 22:27:27 +01:00
// is set to true if this peer has been banned
bool banned;
// if the peer is connected now, this
// will refer to a valid peer_connection
2003-12-14 06:56:12 +01:00
peer_connection* connection;
};
2004-01-15 02:29:43 +01:00
// predicate used to check if two peers with likelyness are the same one
struct peer_information_matches
{
peer_information_matches(const peer_identification &id)
: this_id(id)
{
}
bool operator()(const peer&other_peer) const
{
return operator()(other_peer.id);
}
bool operator()(const peer_identification &other_id) const
{
return
this_id.ip.ip() == other_id.ip.ip()
// && (
// this_id.ip.port() == other_id.ip.port()
// || ((this_id.ip.port() == 0) ^ (other_id.ip.port() == 0)) // one of them unknown
// )
&& (
this_id.id == other_id.id
|| (this_id.id.is_all_zeros() ^ other_id.id.is_all_zeros()) // one of them unknown
);
}
peer_identification this_id;
};
2003-12-14 06:56:12 +01:00
bool unchoke_one_peer();
peer* find_choke_candidate();
peer* find_unchoke_candidate();
2003-12-14 23:55:32 +01:00
2004-01-14 17:18:53 +01:00
bool connect_one_peer();
peer* find_connect_candidate();
2003-12-14 23:55:32 +01:00
// a functor that identifies peers that have disconnected and that
// are too old for still being saved.
struct old_disconnected_peer
{
bool operator()(const peer& p)
{
using namespace boost::posix_time;
2003-12-14 06:56:12 +01:00
return p.connection == 0
2004-01-14 20:24:11 +01:00
&& second_clock::local_time() - p.connected > minutes(30);
}
};
std::vector<peer> m_peers;
int m_num_peers;
torrent* m_torrent;
2003-12-14 06:56:12 +01:00
// the total number of unchoked peers at
// any given time. If set to -1, it's unlimited.
// must be 2 or higher otherwise.
int m_max_uploads;
// the number of unchoked peers
// at any given time
int m_num_unchoked;
2003-12-14 23:55:32 +01:00
// free download we have got that hasn't
// been distributed yet.
int m_available_free_upload;
};
}
#endif // TORRENT_POLICY_HPP_INCLUDED