2007-01-10 18:16:55 +01:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2007-2016, Arvid Norberg
|
2007-01-10 18:16:55 +01:00
|
|
|
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
|
|
|
|
|
2016-09-01 03:42:18 +02:00
|
|
|
#include <memory>
|
2016-09-06 04:25:20 +02:00
|
|
|
#include <vector>
|
2015-04-18 04:33:39 +02:00
|
|
|
|
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-09-16 06:41:35 +02:00
|
|
|
#include "libtorrent/bandwidth_socket.hpp"
|
2014-07-06 21:18:00 +02:00
|
|
|
#include "libtorrent/time.hpp"
|
2007-08-27 12:20:23 +02:00
|
|
|
|
2007-07-03 01:48:06 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2012-03-19 00:31:04 +01:00
|
|
|
struct TORRENT_EXTRA_EXPORT bandwidth_manager
|
2007-01-10 18:16:55 +01:00
|
|
|
{
|
2016-10-08 20:07:11 +02:00
|
|
|
explicit bandwidth_manager(int channel);
|
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
|
|
|
|
2014-01-19 20:45:50 +01:00
|
|
|
#if TORRENT_USE_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;
|
2016-06-18 20:01:38 +02:00
|
|
|
std::int64_t queued_bytes() const;
|
2016-10-08 20:07:11 +02: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
|
2016-09-01 03:42:18 +02:00
|
|
|
int request_bandwidth(std::shared_ptr<bandwidth_socket> const& peer
|
2014-07-06 21:18:00 +02:00
|
|
|
, int blk, int priority, bandwidth_channel** chan, int num_channels);
|
2007-07-03 01:48:06 +02:00
|
|
|
|
2014-01-21 20:26:09 +01:00
|
|
|
#if TORRENT_USE_INVARIANT_CHECKS
|
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
|
|
|
|
2013-11-02 04:26:53 +01:00
|
|
|
private:
|
|
|
|
|
2007-01-10 18:16:55 +01:00
|
|
|
// these are the consumers that want bandwidth
|
2016-09-06 04:25:20 +02:00
|
|
|
std::vector<bw_request> m_queue;
|
2009-04-26 02:21:59 +02:00
|
|
|
// the number of bytes all the requests in queue are for
|
2016-06-18 20:01:38 +02:00
|
|
|
std::int64_t 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;
|
2007-01-10 18:16:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|