2007-05-05 02:29:33 +02:00
|
|
|
/*
|
|
|
|
|
2014-02-23 20:12:25 +01:00
|
|
|
Copyright (c) 2007-2014, Arvid Norberg
|
2007-05-05 02:29:33 +02: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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#ifndef TORRENT_CONNECTION_QUEUE_HPP
|
|
|
|
#define TORRENT_CONNECTION_QUEUE_HPP
|
2007-05-05 02:29:33 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
2007-05-05 02:29:33 +02:00
|
|
|
#include <boost/noncopyable.hpp>
|
2009-11-23 09:38:50 +01:00
|
|
|
#include "libtorrent/io_service.hpp"
|
2009-09-16 05:46:36 +02:00
|
|
|
#include "libtorrent/error_code.hpp"
|
|
|
|
#include "libtorrent/deadline_timer.hpp"
|
2007-05-05 02:29:33 +02:00
|
|
|
|
2008-03-16 11:49:47 +01:00
|
|
|
#ifdef TORRENT_CONNECTION_LOGGING
|
|
|
|
#include <fstream>
|
|
|
|
#endif
|
|
|
|
|
2009-10-20 04:49:56 +02:00
|
|
|
#include "libtorrent/thread.hpp"
|
2014-07-06 21:18:00 +02:00
|
|
|
#include "libtorrent/debug.hpp"
|
2009-10-20 04:49:56 +02:00
|
|
|
|
2007-05-05 02:29:33 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
struct connection_interface;
|
|
|
|
|
|
|
|
class TORRENT_EXTRA_EXPORT connection_queue
|
|
|
|
: public boost::noncopyable
|
|
|
|
, single_threaded
|
2007-05-05 02:29:33 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
connection_queue(io_service& ios);
|
|
|
|
|
2008-03-16 11:49:47 +01:00
|
|
|
// if there are no free slots, returns the negative
|
|
|
|
// number of queued up connections
|
|
|
|
int free_slots() const;
|
2007-05-05 02:29:33 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void enqueue(connection_interface* conn
|
2008-03-12 08:44:27 +01:00
|
|
|
, time_duration timeout, int priority = 0);
|
2014-07-06 21:18:00 +02:00
|
|
|
bool cancel(connection_interface* conn);
|
2013-08-19 05:54:45 +02:00
|
|
|
bool done(int ticket);
|
2007-05-05 02:29:33 +02:00
|
|
|
void limit(int limit);
|
|
|
|
int limit() const;
|
2007-10-26 09:14:19 +02:00
|
|
|
void close();
|
2008-10-30 18:13:10 +01:00
|
|
|
int size() const { return m_queue.size(); }
|
2014-07-06 21:18:00 +02:00
|
|
|
int num_connecting() const { return int(m_connecting.size()); }
|
2012-07-16 01:22:23 +02:00
|
|
|
#if defined TORRENT_ASIO_DEBUGGING
|
|
|
|
float next_timeout() const { return total_milliseconds(m_timer.expires_at() - time_now_hires()) / 1000.f; }
|
|
|
|
float max_timeout() const
|
|
|
|
{
|
|
|
|
ptime max_timeout = min_time();
|
2014-07-06 21:18:00 +02:00
|
|
|
for (std::map<int, connect_entry>::const_iterator i = m_connecting.begin()
|
|
|
|
, end(m_connecting.end()); i != end; ++i)
|
2012-07-16 01:22:23 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
if (i->second.expires > max_timeout) max_timeout = i->second.expires;
|
2012-07-16 01:22:23 +02:00
|
|
|
}
|
|
|
|
if (max_timeout == min_time()) return 0.f;
|
|
|
|
return total_milliseconds(max_timeout - time_now_hires()) / 1000.f;
|
|
|
|
}
|
|
|
|
#endif
|
2007-05-05 02:29:33 +02:00
|
|
|
|
2014-01-21 20:26:09 +01:00
|
|
|
#if TORRENT_USE_INVARIANT_CHECKS
|
2007-05-05 02:29:33 +02:00
|
|
|
void check_invariant() const;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void try_connect();
|
2008-05-03 18:05:42 +02:00
|
|
|
void on_timeout(error_code const& e);
|
2009-05-23 23:36:09 +02:00
|
|
|
void on_try_connect();
|
2007-05-05 02:29:33 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
struct queue_entry
|
2007-05-05 02:29:33 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
queue_entry(): conn(0), priority(0) {}
|
|
|
|
connection_interface* conn;
|
2007-05-05 02:29:33 +02:00
|
|
|
time_duration timeout;
|
2014-07-05 01:40:31 +02:00
|
|
|
boost::int32_t ticket;
|
2013-11-26 03:00:02 +01:00
|
|
|
bool connecting;
|
|
|
|
boost::uint8_t priority;
|
2007-05-05 02:29:33 +02:00
|
|
|
};
|
2014-07-06 21:18:00 +02:00
|
|
|
struct connect_entry
|
|
|
|
{
|
|
|
|
connect_entry(): conn(0), expires(max_time()), priority(0) {}
|
|
|
|
connection_interface* conn;
|
|
|
|
ptime expires;
|
|
|
|
int priority;
|
|
|
|
};
|
2007-05-05 02:29:33 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
std::vector<queue_entry> m_queue;
|
|
|
|
std::map<int, connect_entry> m_connecting;
|
2007-05-05 02:29:33 +02:00
|
|
|
|
|
|
|
// the next ticket id a connection will be given
|
|
|
|
int m_next_ticket;
|
|
|
|
int m_half_open_limit;
|
|
|
|
|
2012-07-16 01:22:23 +02:00
|
|
|
// the number of outstanding timers
|
|
|
|
int m_num_timers;
|
|
|
|
|
2007-05-05 02:29:33 +02:00
|
|
|
deadline_timer m_timer;
|
2007-09-08 18:27:43 +02:00
|
|
|
|
2008-11-29 22:33:21 +01:00
|
|
|
#ifdef TORRENT_DEBUG
|
2007-07-15 21:00:41 +02:00
|
|
|
bool m_in_timeout_function;
|
|
|
|
#endif
|
2008-03-16 11:49:47 +01:00
|
|
|
#ifdef TORRENT_CONNECTION_LOGGING
|
|
|
|
std::ofstream m_log;
|
|
|
|
#endif
|
2007-05-05 02:29:33 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|