mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-01 10:56:15 -05:00
fff40eceac
There are many significant improvements to the DHT here. See commit logs on v0.5-peernet branch for details. This is not the final merge, but brings over the majority of expected v0.5-peernet/libbitdht changes git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4354 b45a01b8-16f6-495d-af2f-9b41ad6348cc
279 lines
5.1 KiB
C++
279 lines
5.1 KiB
C++
/*
|
|
* bitdht/udpbitdht_nettest.cc
|
|
*
|
|
* BitDHT: An Flexible DHT library.
|
|
*
|
|
* Copyright 2010 by Robert Fernie
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License Version 3 as published by the Free Software Foundation.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA.
|
|
*
|
|
* Please report all bugs and problems to "bitdht@lunamutt.com".
|
|
*
|
|
*/
|
|
|
|
|
|
#include "udp/udpbitdht.h"
|
|
#include "udp/udpstack.h"
|
|
#include "bitdht/bdstddht.h"
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
/*******************************************************************
|
|
* DHT test program.
|
|
*
|
|
*
|
|
* Create a couple of each type.
|
|
*/
|
|
|
|
#define MAX_MESSAGE_LEN 10240
|
|
|
|
int args(char *name)
|
|
{
|
|
std::cerr << "Usage: " << name;
|
|
std::cerr << " -p <port> ";
|
|
std::cerr << " -b </path/to/bootfile> ";
|
|
std::cerr << " -u <uid> ";
|
|
std::cerr << " -q <num_queries>";
|
|
std::cerr << " -r (do dht restarts) ";
|
|
std::cerr << " -j (do join test) ";
|
|
std::cerr << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
#define DEF_PORT 7500
|
|
|
|
#define MIN_DEF_PORT 1001
|
|
#define MAX_DEF_PORT 16000
|
|
|
|
#define DEF_BOOTFILE "bdboot.txt"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
int c;
|
|
int port = DEF_PORT;
|
|
std::string bootfile = DEF_BOOTFILE;
|
|
std::string uid;
|
|
bool setUid = false;
|
|
bool doRandomQueries = false;
|
|
bool doRestart = false;
|
|
bool doThreadJoin = false;
|
|
int noQueries = 0;
|
|
|
|
while((c = getopt(argc, argv,"rjp:b:u:q:")) != -1)
|
|
{
|
|
switch (c)
|
|
{
|
|
case 'r':
|
|
doRestart = true;
|
|
break;
|
|
case 'j':
|
|
doThreadJoin = true;
|
|
break;
|
|
case 'p':
|
|
{
|
|
int tmp_port = atoi(optarg);
|
|
if ((tmp_port > MIN_DEF_PORT) && (tmp_port < MAX_DEF_PORT))
|
|
{
|
|
port = tmp_port;
|
|
std::cerr << "Port: " << port;
|
|
std::cerr << std::endl;
|
|
}
|
|
else
|
|
{
|
|
std::cerr << "Invalid Port";
|
|
std::cerr << std::endl;
|
|
args(argv[0]);
|
|
return 1;
|
|
}
|
|
|
|
}
|
|
break;
|
|
case 'b':
|
|
{
|
|
bootfile = optarg;
|
|
std::cerr << "Bootfile: " << bootfile;
|
|
std::cerr << std::endl;
|
|
}
|
|
break;
|
|
case 'u':
|
|
{
|
|
setUid = true;
|
|
uid = optarg;
|
|
std::cerr << "UID: " << uid;
|
|
std::cerr << std::endl;
|
|
}
|
|
break;
|
|
case 'q':
|
|
{
|
|
doRandomQueries = true;
|
|
noQueries = atoi(optarg);
|
|
std::cerr << "Doing Random Queries";
|
|
std::cerr << std::endl;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
{
|
|
args(argv[0]);
|
|
return 1;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
bdDhtFunctions *fns = new bdStdDht();
|
|
|
|
bdNodeId id;
|
|
|
|
/* start off with a random id! */
|
|
bdStdRandomNodeId(&id);
|
|
|
|
if (setUid)
|
|
{
|
|
int len = uid.size();
|
|
if (len > 20)
|
|
{
|
|
len = 20;
|
|
}
|
|
|
|
for(int i = 0; i < len; i++)
|
|
{
|
|
id.data[i] = uid[i];
|
|
}
|
|
}
|
|
|
|
std::cerr << "Using NodeId: ";
|
|
fns->bdPrintNodeId(std::cerr, &id);
|
|
std::cerr << std::endl;
|
|
|
|
/* setup the udp port */
|
|
struct sockaddr_in local;
|
|
memset(&local, 0, sizeof(local));
|
|
local.sin_family = AF_INET;
|
|
local.sin_addr.s_addr = 0;
|
|
local.sin_port = htons(port);
|
|
UdpStack *udpstack = new UdpStack(local);
|
|
|
|
/* create bitdht component */
|
|
std::string dhtVersion = "dbTEST";
|
|
UdpBitDht *bitdht = new UdpBitDht(udpstack, &id, dhtVersion, bootfile, fns);
|
|
|
|
/* add in the stack */
|
|
udpstack->addReceiver(bitdht);
|
|
|
|
/* register callback display */
|
|
bdDebugCallback *cb = new bdDebugCallback();
|
|
bitdht->addCallback(cb);
|
|
|
|
/* startup threads */
|
|
//udpstack->start();
|
|
bitdht->start();
|
|
|
|
|
|
|
|
|
|
/* do a couple of random continuous searchs. */
|
|
|
|
uint32_t mode = BITDHT_QFLAGS_DO_IDLE;
|
|
|
|
int count = 0;
|
|
int running = 1;
|
|
|
|
std::cerr << "Starting Dht: ";
|
|
std::cerr << std::endl;
|
|
bitdht->startDht();
|
|
|
|
|
|
if (doRandomQueries)
|
|
{
|
|
for(int i = 0; i < noQueries; i++)
|
|
{
|
|
bdNodeId rndId;
|
|
bdStdRandomNodeId(&rndId);
|
|
|
|
std::cerr << "BitDht Launching Random Search: ";
|
|
bdStdPrintNodeId(std::cerr, &rndId);
|
|
std::cerr << std::endl;
|
|
|
|
bitdht->addFindNode(&rndId, mode);
|
|
|
|
}
|
|
}
|
|
|
|
while(1)
|
|
{
|
|
sleep(60);
|
|
|
|
std::cerr << "BitDht State: ";
|
|
std::cerr << bitdht->stateDht();
|
|
std::cerr << std::endl;
|
|
|
|
std::cerr << "Dht Network Size: ";
|
|
std::cerr << bitdht->statsNetworkSize();
|
|
std::cerr << std::endl;
|
|
|
|
std::cerr << "BitDht Network Size: ";
|
|
std::cerr << bitdht->statsBDVersionSize();
|
|
std::cerr << std::endl;
|
|
|
|
if (++count == 2)
|
|
{
|
|
/* switch to one-shot searchs */
|
|
mode = 0;
|
|
}
|
|
|
|
if (doThreadJoin)
|
|
{
|
|
/* change address */
|
|
if (count % 2 == 0)
|
|
{
|
|
|
|
std::cerr << "Resetting UdpStack: ";
|
|
std::cerr << std::endl;
|
|
|
|
udpstack->resetAddress(local);
|
|
}
|
|
}
|
|
if (doRestart)
|
|
{
|
|
if (count % 2 == 1)
|
|
{
|
|
if (running)
|
|
{
|
|
|
|
std::cerr << "Stopping Dht: ";
|
|
std::cerr << std::endl;
|
|
|
|
bitdht->stopDht();
|
|
running = 0;
|
|
}
|
|
else
|
|
{
|
|
std::cerr << "Starting Dht: ";
|
|
std::cerr << std::endl;
|
|
|
|
bitdht->startDht();
|
|
running = 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
|