2006-08-01 17:27:08 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2006, Arvid Norberg & Daniel Wallin
|
|
|
|
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 TRAVERSAL_ALGORITHM_050324_HPP
|
|
|
|
#define TRAVERSAL_ALGORITHM_050324_HPP
|
|
|
|
|
|
|
|
#include <vector>
|
2006-08-11 01:36:58 +02:00
|
|
|
#include <set>
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
#include <libtorrent/kademlia/node_id.hpp>
|
|
|
|
#include <libtorrent/kademlia/routing_table.hpp>
|
|
|
|
#include <libtorrent/kademlia/logging.hpp>
|
2010-11-05 20:06:50 +01:00
|
|
|
#include <libtorrent/kademlia/observer.hpp>
|
2009-11-23 09:38:50 +01:00
|
|
|
#include <libtorrent/address.hpp>
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
#include <boost/intrusive_ptr.hpp>
|
|
|
|
#include <boost/bind.hpp>
|
2007-05-23 10:45:12 +02:00
|
|
|
#include <boost/pool/pool.hpp>
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2008-09-20 19:42:25 +02:00
|
|
|
namespace libtorrent { struct dht_lookup; }
|
2006-08-01 17:27:08 +02:00
|
|
|
namespace libtorrent { namespace dht
|
|
|
|
{
|
|
|
|
#ifdef TORRENT_DHT_VERBOSE_LOGGING
|
|
|
|
TORRENT_DECLARE_LOG(traversal);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class rpc_manager;
|
2008-09-20 19:42:25 +02:00
|
|
|
class node_impl;
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
// this class may not be instantiated as a stack object
|
2009-10-29 23:55:00 +01:00
|
|
|
struct traversal_algorithm : boost::noncopyable
|
2006-08-01 17:27:08 +02:00
|
|
|
{
|
|
|
|
void traverse(node_id const& id, udp::endpoint addr);
|
2010-11-05 20:06:50 +01:00
|
|
|
void finished(observer_ptr o);
|
2009-09-29 19:06:08 +02:00
|
|
|
|
|
|
|
enum flags_t { prevent_request = 1, short_timeout = 2 };
|
2010-11-05 20:06:50 +01:00
|
|
|
void failed(observer_ptr o, int flags = 0);
|
2008-09-20 19:42:25 +02:00
|
|
|
virtual ~traversal_algorithm();
|
|
|
|
void status(dht_lookup& l);
|
|
|
|
|
2010-11-06 08:12:57 +01:00
|
|
|
void* allocate_observer();
|
|
|
|
void free_observer(void* ptr);
|
|
|
|
|
2008-09-20 19:42:25 +02:00
|
|
|
virtual char const* name() const { return "traversal_algorithm"; }
|
2009-09-20 02:23:36 +02:00
|
|
|
virtual void start();
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2009-05-14 00:18:41 +02:00
|
|
|
node_id const& target() const { return m_target; }
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
void add_entry(node_id const& id, udp::endpoint addr, unsigned char flags);
|
|
|
|
|
2010-12-12 21:36:42 +01:00
|
|
|
traversal_algorithm(node_impl& node, node_id target);
|
2009-10-07 22:51:02 +02:00
|
|
|
|
|
|
|
protected:
|
2009-09-20 02:23:36 +02:00
|
|
|
|
|
|
|
void add_requests();
|
|
|
|
void add_router_entries();
|
|
|
|
void init();
|
|
|
|
|
2010-11-05 20:06:50 +01:00
|
|
|
virtual void done();
|
|
|
|
// should construct an algorithm dependent
|
|
|
|
// observer in ptr.
|
|
|
|
virtual observer_ptr new_observer(void* ptr
|
|
|
|
, udp::endpoint const& ep, node_id const& id);
|
|
|
|
|
|
|
|
virtual bool invoke(observer_ptr o) { return false; }
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
friend void intrusive_ptr_add_ref(traversal_algorithm* p)
|
|
|
|
{
|
|
|
|
p->m_ref_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
friend void intrusive_ptr_release(traversal_algorithm* p)
|
|
|
|
{
|
|
|
|
if (--p->m_ref_count == 0)
|
|
|
|
delete p;
|
|
|
|
}
|
|
|
|
|
|
|
|
int m_ref_count;
|
|
|
|
|
2008-09-20 19:42:25 +02:00
|
|
|
node_impl& m_node;
|
2006-08-01 17:27:08 +02:00
|
|
|
node_id m_target;
|
2010-11-05 20:06:50 +01:00
|
|
|
std::vector<observer_ptr> m_results;
|
2006-08-01 17:27:08 +02:00
|
|
|
int m_invoke_count;
|
2008-09-20 19:42:25 +02:00
|
|
|
int m_branch_factor;
|
|
|
|
int m_responses;
|
|
|
|
int m_timeouts;
|
2010-12-12 21:36:42 +01:00
|
|
|
int m_num_target_nodes;
|
2006-08-01 17:27:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} } // namespace libtorrent::dht
|
|
|
|
|
|
|
|
#endif // TRAVERSAL_ALGORITHM_050324_HPP
|
|
|
|
|