/* Copyright (c) 2003, Arvid Norberg All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include "libtorrent/policy.hpp" #include "libtorrent/torrent.hpp" #include "libtorrent/socket.hpp" #include "libtorrent/peer_connection.hpp" #if defined(_MSC_VER) && _MSC_VER < 1300 # define for if (false) {} else for #endif namespace { enum { // we try to maintain 4 requested blocks in the download // queue request_queue = 16 }; using namespace libtorrent; // TODO: replace these two functions with std::find_first_of template bool has_intersection(It1 start1, It1 end1, It2 start2, It2 end2) { for (;start1 != end1; ++start1) for (;start2 != end2; ++start2) if (*start1 == *start2) return true; return false; } piece_block find_first_common(const std::vector& queue, const std::vector& busy) { for (std::vector::const_reverse_iterator i = queue.rbegin(); i != queue.rend(); ++i) { for (std::vector::const_iterator j = busy.begin(); j != busy.end(); ++j) { if ((*j) == (*i)) return *i; } } assert(false); } void request_a_block(torrent& t, peer_connection& c) { int num_requests = request_queue - c.download_queue().size(); // if our request queue is already full, we // don't have to make any new requests yet if (num_requests <= 0) return; piece_picker& p = t.picker(); std::vector interesting_pieces; interesting_pieces.reserve(100); // picks the interesting pieces from this peer // the integer is the number of pieces that // should be guaranteed to be available for download // (if this number is too big, too many pieces are // picked and cpu-time is wasted) p.pick_pieces(c.get_bitfield(), interesting_pieces, num_requests); // this vector is filled with the interestin pieces // that some other peer is currently downloading // we should then compare this peer's download speed // with the other's, to see if we should abort another // peer_connection in favour of this one std::vector busy_pieces; busy_pieces.reserve(10); for (std::vector::iterator i = interesting_pieces.begin(); i != interesting_pieces.end(); ++i) { if (p.is_downloading(*i)) { busy_pieces.push_back(*i); continue; } // ok, we found a piece that's not being downloaded // by somebody else. request it from this peer c.request_block(*i); num_requests--; if (num_requests <= 0) return; } if (busy_pieces.empty()) return; // first look for blocks that are just queued // and not actually sent to us yet // (then we can cancel those and request them // from this peer instead) peer_connection* peer = 0; float down_speed = -1.f; // find the peer with the lowest download // speed that also has a piece thatt this // peer could send us for (torrent::peer_iterator i = t.begin(); i != t.end(); ++i) { const std::vector& queue = (*i)->download_queue(); if ((*i)->statistics().down_peak() > down_speed && has_intersection(busy_pieces.begin(), busy_pieces.end(), queue.begin(), queue.end())) { peer = *i; down_speed = (*i)->statistics().down_peak(); } } assert(peer != 0); // this peer doesn't have a faster connection than the // slowest peer. Don't take over any blocks if (c.statistics().down_peak() <= down_speed) return; // find a suitable block to take over from this peer piece_block block = find_first_common(peer->download_queue(), busy_pieces); peer->cancel_block(block); c.request_block(block); // the one we interrupted may need to request a new piece request_a_block(t, *peer); num_requests--; } } namespace libtorrent { /* TODO: make two proxy classes that filter out all unneccesary members from torrent and peer_connection to make it easier to use them in the policy useful member functions: void torrent::connect_to_peer(address, peer_id); piece_picker& torrent::picker(); std::vector::const_iterator torrent::begin() const std::vector::const_iterator torrent::end() const void peer_connection::interested(); void peer_connection::not_interested(); void peer_connection::choke(); void peer_connection::unchoke(); void peer_connection::request_piece(int index); const std::vector& peer_connection::download_queue(); TODO: to implement choking/unchoking we need a list with all connected peers. Something like this: struct peer { peer_id id; boost::posix_time::ptime last_optimistically_unchoked; float average_down_rate; boost::weak_ptr connection; }; */ policy::policy(torrent* t) : m_num_peers(0) , m_torrent(t) {} // this is called when a connection is made, before any // handshake (it's possible to ban certain ip:s). bool policy::accept_connection(const address& remote) { m_num_peers++; return true; } void policy::peer_from_tracker(const address& remote, const peer_id& id) { try { m_torrent->connect_to_peer(remote, id); m_num_peers++; } catch(network_error&) {} } // this is called when we are choked by a peer // i.e. a peer lets us know that we will not receive // anything for a while void policy::choked(peer_connection& c) { c.choke(); } void policy::piece_finished(peer_connection& c, int index, bool successfully_verified) { // TODO: if verification failed, mark the peers that were involved // in some way } void policy::block_finished(peer_connection& c, piece_block b) { if (c.has_peer_choked()) return; request_a_block(*m_torrent, c); } // this is called when we are unchoked by a peer // i.e. a peer lets us know that we will receive // data from now on void policy::unchoked(peer_connection& c) { c.unchoke(); if (c.is_interesting()) request_a_block(*m_torrent, c); } void policy::interested(peer_connection& c) { c.unchoke(); } void policy::not_interested(peer_connection& c) { } void policy::connection_closed(const peer_connection& c) { } void policy::peer_is_interesting(peer_connection& c) { c.interested(); if (c.has_peer_choked()) return; request_a_block(*m_torrent, c); } }