aria2/src/BNode.cc
Tatsuhiro Tsujikawa 0f13363229 2008-02-01 Tatsuhiro Tsujikawa <tujikawa at rednoah dot com>
Added DHT functionality, compatible with mainline.
	DHT is disabled by default. To enable it, give --enable-dht to 
aria2c.
	You may need to specify entry point to DHT network using
	--dht-entry-point. DHT uses UDP port to listen incoming message.
	Use --dht-listen-port to specify port number. Make sure that 
your
	firewall configuration can pass through UDP traffic to the port.
	The routing table is saved in $HOME/.aria2/dht.dat.
	* src/DHT*
	* src/BNode.{h, cc}
	* src/PeerInteractionCommand.cc: enable DHT functionality for a
	particular torrent.
	* src/Data.cc: Rewritten ctor.
	* src/OptionHandlerFactory.cc: Added --enable-dht, 
--dht-listen-port,
	--dht-entry-point.
	* src/DefaultBtInteractive.cc: Send port message if dht is 
enabled.
	* src/RequestGroup.cc: Initialize DHT functionality. When 
download
	ends, remove BtContext from DHTPeerAnnounceStorage.
	* src/BtPortMessage.{h, cc}: Rewritten.
	* src/message.h
	* src/OptionHandlerImpl.cc
	* src/option_processing.cc: Added --enable-dht, 
--dht-listen-port,
	--dht-entry-point.
	* src/Dictionary.{h, cc} (remove): New function.
	* src/prefs.h
	* src/DefaultBtMessageFactory.h
	* src/BtHandshakeMessage.cc
	* src/ActivePeerConnectionCommand.cc
	* src/SocketCore.{h, cc}: Added datagram socket support.
	* src/DefaultBtMessageFactory.cc
	* src/BtSetup.cc: Add BtContext to DHTPeerAnnounceStorage here.
	Create DHT commands.
	* src/BtMessageFactory.h
	* src/PeerMessageUtil.{h, cc}
2008-02-01 17:36:33 +00:00

218 lines
5.3 KiB
C++

/* <!-- copyright */
/*
* aria2 - The high speed download utility
*
* Copyright (C) 2006 Tatsuhiro Tsujikawa
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* In addition, as a special exception, the copyright holders give
* permission to link the code of portions of this program with the
* OpenSSL library under certain conditions as described in each
* individual source file, and distribute linked combinations
* including the two.
* You must obey the GNU General Public License in all respects
* for all of the code used other than OpenSSL. If you modify
* file(s) with this exception, you may extend this exception to your
* version of the file(s), but you are not obligated to do so. If you
* do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source
* files in the program, then also delete it here.
*/
/* copyright --> */
#include "BNode.h"
#include "DHTBucket.h"
#include "DHTNode.h"
BNode::BNode(const DHTBucketHandle& bucket):_bucket(bucket),
_up(0),
_left(0), _right(0) {}
BNode::~BNode()
{
delete _left;
delete _right;
}
DHTBucketHandle BNode::getBucket() const
{
return _bucket;
}
BNode* BNode::getLeft() const
{
return _left;
}
BNode* BNode::getRight() const
{
return _right;
}
BNode* BNode::getUp() const
{
return _up;
}
void BNode::setLeft(BNode* left)
{
_left = left;
_left->_up = this;
}
void BNode::setRight(BNode* right)
{
_right = right;
_right->_up = this;
}
void BNode::setUp(BNode* up)
{
_up = up;
}
void BNode::setBucket(const DHTBucketHandle& bucket)
{
_bucket = bucket;
}
bool BNode::isInRange(const unsigned char* key) const
{
if(_bucket.isNull()) {
return _left->isInRange(key) || _right->isInRange(key);
} else {
return _bucket->isInRange(key);
}
}
BNode* BNode::findBNodeFor(BNode* b, const unsigned char* key)
{
if(!b->isInRange(key)) {
return 0;
}
while(1) {
if(!b->getBucket().isNull()) {
return b;
}
// we assume key fits in either left or right bucket range.
if(b->getLeft()->isInRange(key)) {
b = b->getLeft();
} else {
b = b->getRight();
}
}
// for properly configured BNode tree, here is unreachable.
return 0;
}
DHTBucketHandle BNode::findBucketFor(BNode* b, const unsigned char* key)
{
BNode* bnode = findBNodeFor(b, key);
if(bnode) {
return bnode->getBucket();
} else {
return 0;
}
}
DHTNodes BNode::findClosestKNodes(BNode* b, const unsigned char* key)
{
BNode* bnode = findBNodeFor(b, key);
DHTNodes nodes;
if(!bnode) {
return nodes;
}
{
DHTBucketHandle bucket = bnode->getBucket();
DHTNodes goodNodes = bucket->getGoodNodes();
nodes.insert(nodes.end(), goodNodes.begin(), goodNodes.end());
}
if(nodes.size() >= DHTBucket::K) {
return nodes;
}
BNodes visited;
visited.push_back(bnode);
BNode* up = bnode->getUp();
if(!up) {
return nodes;
}
bool leftFirst = false;
if(up->getLeft() == bnode) {
leftFirst = true;
}
bnode = up;
const_mem_fun_t<BNode*, BNode> firstfunc = leftFirst?mem_fun(&BNode::getLeft):mem_fun(&BNode::getRight);
const_mem_fun_t<BNode*, BNode> secondfunc = leftFirst?mem_fun(&BNode::getRight):mem_fun(&BNode::getLeft);
while(nodes.size() < DHTBucket::K) {
if(!bnode->getLeft() && !bnode->getRight()) {
bnode = bnode->getUp();
} else {
if(find(visited.begin(), visited.end(), firstfunc(bnode)) == visited.end()) {
bnode = firstfunc(bnode);
} else if(find(visited.begin(), visited.end(), secondfunc(bnode)) == visited.end()) {
bnode = secondfunc(bnode);
} else {
bnode = bnode->getUp();
}
}
visited.push_back(bnode);
if(!bnode) {
break;
}
{
DHTBucketHandle bucket = bnode->getBucket();
if(!bucket.isNull()) {
DHTNodes goodNodes = bucket->getGoodNodes();
size_t r = DHTBucket::K-nodes.size();
if(goodNodes.size() <= r) {
nodes.insert(nodes.end(), goodNodes.begin(), goodNodes.end());
} else {
nodes.insert(nodes.end(), goodNodes.begin(), goodNodes.begin()+r);
}
}
}
}
return nodes;
}
DHTBuckets BNode::enumerateBucket(const BNode* b)
{
DHTBuckets buckets;
deque<const BNode*> visited;
visited.push_back(b);
while(1) {
if(!b) {
break;
}
if(!b->getBucket().isNull()) {
buckets.push_back(b->getBucket());
b = b->getUp();
} else if(find(visited.begin(), visited.end(), b->getLeft()) == visited.end()) {
b = b->getLeft();
visited.push_back(b);
} else if(find(visited.begin(), visited.end(), b->getRight()) == visited.end()) {
b = b->getRight();
visited.push_back(b);
} else {
b = b->getUp();
}
}
return buckets;
}