2007-01-10 18:16:55 +01:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2007, 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_BANDWIDTH_MANAGER_HPP_INCLUDED
|
|
|
|
#define TORRENT_BANDWIDTH_MANAGER_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include <boost/intrusive_ptr.hpp>
|
|
|
|
|
2008-01-12 19:47:26 +01:00
|
|
|
#ifdef TORRENT_VERBOSE_BANDWIDTH_LIMIT
|
|
|
|
#include <fstream>
|
|
|
|
#endif
|
|
|
|
|
2007-09-10 08:12:41 +02:00
|
|
|
#include "libtorrent/socket.hpp"
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/error_code.hpp"
|
2007-09-10 08:12:41 +02:00
|
|
|
#include "libtorrent/invariant_check.hpp"
|
|
|
|
#include "libtorrent/assert.hpp"
|
2007-12-31 10:41:50 +01:00
|
|
|
#include "libtorrent/bandwidth_limit.hpp"
|
|
|
|
#include "libtorrent/bandwidth_queue_entry.hpp"
|
2009-10-20 04:49:56 +02:00
|
|
|
#include "libtorrent/thread.hpp"
|
2009-09-16 06:41:35 +02:00
|
|
|
#include "libtorrent/bandwidth_socket.hpp"
|
2009-11-25 07:55:34 +01:00
|
|
|
#include "libtorrent/ptime.hpp"
|
2007-09-10 08:12:41 +02:00
|
|
|
|
2007-01-10 18:16:55 +01:00
|
|
|
using boost::intrusive_ptr;
|
|
|
|
|
2007-08-27 12:20:23 +02:00
|
|
|
|
2007-07-03 01:48:06 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2009-11-30 08:03:34 +01:00
|
|
|
struct TORRENT_EXPORT bandwidth_manager
|
2007-01-10 18:16:55 +01:00
|
|
|
{
|
2009-04-26 02:21:59 +02:00
|
|
|
bandwidth_manager(int channel
|
2008-01-12 19:47:26 +01:00
|
|
|
#ifdef TORRENT_VERBOSE_BANDWIDTH_LIMIT
|
|
|
|
, bool log = false
|
|
|
|
#endif
|
2009-09-16 06:41:35 +02:00
|
|
|
);
|
2007-01-10 18:16:55 +01:00
|
|
|
|
2009-09-16 06:41:35 +02:00
|
|
|
void close();
|
2007-11-08 08:52:41 +01:00
|
|
|
|
2011-05-08 11:04:59 +02:00
|
|
|
#if defined TORRENT_DEBUG || TORRENT_RELEASE_ASSERTS
|
2009-09-16 06:41:35 +02:00
|
|
|
bool is_queued(bandwidth_socket const* peer) const;
|
2007-12-14 19:02:06 +01:00
|
|
|
#endif
|
|
|
|
|
2009-09-16 06:41:35 +02:00
|
|
|
int queue_size() const;
|
|
|
|
int queued_bytes() const;
|
2007-12-14 19:02:06 +01:00
|
|
|
|
2007-02-01 08:33:04 +01:00
|
|
|
// non prioritized means that, if there's a line for bandwidth,
|
|
|
|
// others will cut in front of the non-prioritized peers.
|
|
|
|
// this is used by web seeds
|
2011-04-21 05:13:53 +02:00
|
|
|
// returns the number of bytes to assign to the peer, or 0
|
|
|
|
// if the peer's 'assign_bandwidth' callback will be called later
|
|
|
|
int request_bandwidth(intrusive_ptr<bandwidth_socket> const& peer
|
2009-04-26 02:21:59 +02:00
|
|
|
, int blk, int priority
|
|
|
|
, bandwidth_channel* chan1 = 0
|
|
|
|
, bandwidth_channel* chan2 = 0
|
|
|
|
, bandwidth_channel* chan3 = 0
|
|
|
|
, bandwidth_channel* chan4 = 0
|
2009-09-16 06:41:35 +02:00
|
|
|
, bandwidth_channel* chan5 = 0);
|
2007-07-03 01:48:06 +02:00
|
|
|
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2009-09-16 06:41:35 +02:00
|
|
|
void check_invariant() const;
|
2007-01-10 18:16:55 +01:00
|
|
|
#endif
|
|
|
|
|
2009-09-16 06:41:35 +02:00
|
|
|
void update_quotas(time_duration const& dt);
|
2007-01-10 18:16:55 +01:00
|
|
|
|
|
|
|
// these are the consumers that want bandwidth
|
2009-09-16 06:41:35 +02:00
|
|
|
typedef std::vector<bw_request> queue_t;
|
2007-07-03 01:48:06 +02:00
|
|
|
queue_t m_queue;
|
2009-04-26 02:21:59 +02:00
|
|
|
// the number of bytes all the requests in queue are for
|
2008-12-13 06:12:12 +01:00
|
|
|
int m_queued_bytes;
|
2007-01-10 18:16:55 +01:00
|
|
|
|
|
|
|
// this is the channel within the consumers
|
|
|
|
// that bandwidth is assigned to (upload or download)
|
|
|
|
int m_channel;
|
2007-09-19 03:08:50 +02:00
|
|
|
|
2007-11-08 08:52:41 +01:00
|
|
|
bool m_abort;
|
2008-01-12 19:47:26 +01:00
|
|
|
|
|
|
|
#ifdef TORRENT_VERBOSE_BANDWIDTH_LIMIT
|
|
|
|
std::ofstream m_log;
|
|
|
|
ptime m_start;
|
|
|
|
#endif
|
2007-01-10 18:16:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
2007-07-03 01:48:06 +02:00
|
|
|
|