2006-08-01 17:27:08 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2006, 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 RPC_MANAGER_HPP
|
|
|
|
#define RPC_MANAGER_HPP
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <boost/function.hpp>
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
#include <boost/cstdint.hpp>
|
|
|
|
#include <boost/array.hpp>
|
2007-05-23 10:45:12 +02:00
|
|
|
#include <boost/pool/pool.hpp>
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
#include <libtorrent/socket.hpp>
|
|
|
|
#include <libtorrent/entry.hpp>
|
|
|
|
#include <libtorrent/kademlia/node_id.hpp>
|
|
|
|
#include <libtorrent/kademlia/logging.hpp>
|
|
|
|
#include <libtorrent/kademlia/node_entry.hpp>
|
2007-05-23 10:45:12 +02:00
|
|
|
#include <libtorrent/kademlia/observer.hpp>
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2007-04-05 00:27:36 +02:00
|
|
|
#include "libtorrent/time.hpp"
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
namespace libtorrent { namespace dht
|
|
|
|
{
|
|
|
|
|
2007-05-23 10:45:12 +02:00
|
|
|
struct observer;
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
#ifdef TORRENT_DHT_VERBOSE_LOGGING
|
|
|
|
TORRENT_DECLARE_LOG(rpc);
|
|
|
|
#endif
|
|
|
|
|
2007-05-23 10:45:12 +02:00
|
|
|
struct null_observer : public observer
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
2007-05-23 10:45:12 +02:00
|
|
|
null_observer(boost::pool<>& allocator): observer(allocator) {}
|
|
|
|
virtual void reply(msg const&) {}
|
|
|
|
virtual void timeout() {}
|
|
|
|
virtual void send(msg&) {}
|
|
|
|
void abort() {}
|
2006-08-01 17:27:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class routing_table;
|
|
|
|
|
|
|
|
class rpc_manager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef boost::function1<void, msg const&> fun;
|
|
|
|
typedef boost::function1<void, msg const&> send_fun;
|
|
|
|
|
|
|
|
rpc_manager(fun const& incoming_fun, node_id const& our_id
|
|
|
|
, routing_table& table, send_fun const& sf);
|
|
|
|
~rpc_manager();
|
|
|
|
|
2008-05-08 02:22:17 +02:00
|
|
|
void unreachable(udp::endpoint const& ep);
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
// returns true if the node needs a refresh
|
|
|
|
bool incoming(msg const&);
|
2007-04-05 00:27:36 +02:00
|
|
|
time_duration tick();
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
void invoke(int message_id, udp::endpoint target
|
2007-05-23 10:45:12 +02:00
|
|
|
, observer_ptr o);
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2007-05-12 03:52:25 +02:00
|
|
|
void reply(msg& m);
|
|
|
|
void reply_with_ping(msg& m);
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
2008-01-13 05:24:10 +01:00
|
|
|
size_t allocation_size() const;
|
2006-08-01 17:27:08 +02:00
|
|
|
void check_invariant() const;
|
|
|
|
#endif
|
|
|
|
|
2007-05-23 10:45:12 +02:00
|
|
|
boost::pool<>& allocator() const
|
|
|
|
{ return m_pool_allocator; }
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
private:
|
|
|
|
|
2006-08-02 00:23:05 +02:00
|
|
|
enum { max_transactions = 2048 };
|
2007-01-29 08:39:33 +01:00
|
|
|
|
2007-05-23 10:45:12 +02:00
|
|
|
unsigned int new_transaction_id(observer_ptr o);
|
2006-08-01 17:27:08 +02:00
|
|
|
void update_oldest_transaction_id();
|
|
|
|
|
|
|
|
boost::uint32_t calc_connection_id(udp::endpoint addr);
|
|
|
|
|
2007-05-23 10:45:12 +02:00
|
|
|
mutable boost::pool<> m_pool_allocator;
|
|
|
|
|
|
|
|
typedef boost::array<observer_ptr, max_transactions>
|
2006-08-01 17:27:08 +02:00
|
|
|
transactions_t;
|
|
|
|
transactions_t m_transactions;
|
2008-01-14 18:25:08 +01:00
|
|
|
std::vector<observer_ptr> m_aborted_transactions;
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
// this is the next transaction id to be used
|
|
|
|
int m_next_transaction_id;
|
|
|
|
// this is the oldest transaction id still
|
|
|
|
// (possibly) in use. This is the transaction
|
|
|
|
// that will time out first, the one we are
|
|
|
|
// waiting for to time out
|
|
|
|
int m_oldest_transaction_id;
|
|
|
|
|
|
|
|
fun m_incoming;
|
|
|
|
send_fun m_send;
|
|
|
|
node_id m_our_id;
|
|
|
|
routing_table& m_table;
|
2007-04-05 00:27:36 +02:00
|
|
|
ptime m_timer;
|
2006-08-01 17:27:08 +02:00
|
|
|
node_id m_random_number;
|
2007-01-29 08:39:33 +01:00
|
|
|
bool m_destructing;
|
2006-08-01 17:27:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} } // namespace libtorrent::dht
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|