/* Copyright (c) 2003, Magnus Jonsson, 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 "libtorrent/allocate_resources.hpp" #include "libtorrent/size_type.hpp" #include "libtorrent/peer_connection.hpp" #include "libtorrent/torrent.hpp" #include #include #include #include #if defined(_MSC_VER) && _MSC_VER < 1300 #define for if (false) {} else for #endif namespace libtorrent { int saturated_add(int a, int b) { assert(a >= 0); assert(b >= 0); assert(std::numeric_limits::max() + std::numeric_limits::max() < 0); int sum = a + b; if(sum < 0) sum = std::numeric_limits::max(); assert(sum >= a && sum >= b); return sum; } namespace { // give num_resources to r, // return how how many were actually accepted. int give(resource_request& r, int num_resources) { assert(num_resources >= 0); assert(r.given <= r.max); int accepted = std::min(num_resources, r.max - r.given); assert(accepted >= 0); r.given += accepted; assert(r.given <= r.max); return accepted; } #ifndef NDEBUG template class allocate_resources_contract_check { int m_resources; It m_start; It m_end; resource_request T::* m_res; public: allocate_resources_contract_check( int resources , It start , It end , resource_request T::* res) : m_resources(resources) , m_start(start) , m_end(end) , m_res(res) { assert(m_resources >= 0); for (It i = m_start, end(m_end); i != end; ++i) { assert(((*i).*m_res).used >= 0); assert(((*i).*m_res).max >= 0); assert(((*i).*m_res).given >= 0); } } ~allocate_resources_contract_check() { int sum_given = 0; int sum_max = 0; for (It i = m_start, end(m_end); i != end; ++i) { assert(((*i).*m_res).max >= 0); assert(((*i).*m_res).given >= 0); assert(((*i).*m_res).given <= ((*i).*m_res).max); sum_given = saturated_add(sum_given, ((*i).*m_res).given); sum_max = saturated_add(sum_max, ((*i).*m_res).max); } assert(sum_given == std::min(m_resources, sum_max)); } }; #endif template void allocate_resources_impl( int resources , It start , It end , resource_request T::* res) { #ifndef NDEBUG allocate_resources_contract_check contract_check( resources , start , end , res); #endif if(resources == std::numeric_limits::max()) { // No competition for resources. // Just give everyone what they want. for (It i = start; i != end; ++i) { ((*i).*res).given = ((*i).*res).max; } return; } // Resources are scarce int sum_max = 0; int sum_min = 0; for (It i = start; i != end; ++i) { sum_max = saturated_add(sum_max, ((*i).*res).max); assert(((*i).*res).min < std::numeric_limits::max()); assert(((*i).*res).min >= 0); assert(((*i).*res).min <= ((*i).*res).max); sum_min += ((*i).*res).min; ((*i).*res).given = ((*i).*res).min; } if (resources == 0 || sum_max == 0) return; int resources_to_distribute = std::min(resources, sum_max) - sum_min; assert(resources_to_distribute >= 0); while (resources_to_distribute > 0) { size_type total_used = 0; size_type max_used = 0; for (It i = start; i != end; ++i) { resource_request& r = (*i).*res; if(r.given == r.max) continue; assert(r.given < r.max); max_used = std::max(max_used, (size_type)r.used + 1); total_used += (size_type)r.used + 1; } size_type kNumer = resources_to_distribute; size_type kDenom = total_used; if (kNumer * max_used <= kDenom) { kNumer = 1; kDenom = max_used; } for (It i = start; i != end && resources_to_distribute > 0; ++i) { resource_request& r = (*i).*res; if(r.given == r.max) continue; assert(r.given < r.max); size_type used = (size_type)r.used + 1; size_type toGive = used * kNumer / kDenom; if(toGive > std::numeric_limits::max()) toGive = std::numeric_limits::max(); resources_to_distribute -= give(r, (int)toGive); } assert(resources_to_distribute >= 0); } } peer_connection& pick_peer( std::pair, boost::shared_ptr > const& p) { return *p.second; } peer_connection& pick_peer2( std::pair const& p) { return *p.second; } torrent& deref(std::pair > const& p) { return *p.second; } } // namespace anonymous /* void allocate_resources( int resources , std::map, boost::shared_ptr >& c , resource_request peer_connection::* res) { typedef std::map, boost::shared_ptr >::iterator orig_iter; typedef std::pair, boost::shared_ptr > in_param; typedef boost::transform_iterator new_iter; allocate_resources_impl( resources , new_iter(c.begin(), &pick_peer) , new_iter(c.end(), &pick_peer) , res); } */ void allocate_resources( int resources , std::map >& c , resource_request torrent::* res) { typedef std::map >::iterator orig_iter; typedef std::pair > in_param; typedef boost::transform_iterator new_iter; allocate_resources_impl( resources , new_iter(c.begin(), &deref) , new_iter(c.end(), &deref) , res); } void allocate_resources( int resources , std::map& c , resource_request peer_connection::* res) { typedef std::map::iterator orig_iter; typedef std::pair in_param; typedef boost::transform_iterator new_iter; allocate_resources_impl( resources , new_iter(c.begin(), &pick_peer2) , new_iter(c.end(), &pick_peer2) , res); } } // namespace libtorrent