mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
72 lines
1.8 KiB
C++
72 lines
1.8 KiB
C++
#ifndef NETDB_H__
|
|
#define NETDB_H__
|
|
|
|
#include <inttypes.h>
|
|
#include <map>
|
|
#include <string>
|
|
#include <thread>
|
|
#include "Queue.h"
|
|
#include "I2NPProtocol.h"
|
|
#include "RouterInfo.h"
|
|
#include "LeaseSet.h"
|
|
#include "Tunnel.h"
|
|
|
|
namespace i2p
|
|
{
|
|
namespace data
|
|
{
|
|
class NetDb
|
|
{
|
|
public:
|
|
|
|
NetDb ();
|
|
~NetDb ();
|
|
|
|
void Start ();
|
|
void Stop ();
|
|
|
|
void AddRouterInfo (uint8_t * buf, int len);
|
|
void AddLeaseSet (uint8_t * buf, int len);
|
|
RouterInfo * FindRouter (const IdentHash& ident) const;
|
|
LeaseSet * FindLeaseSet (const IdentHash& destination) const;
|
|
|
|
void RequestDestination (const char * b32); // in base32
|
|
void RequestDestination (const IdentHash& destination, bool isLeaseSet = false);
|
|
void RequestDestination (const IdentHash& destination, const RouterInfo * floodfill, bool isLeaseSet = false);
|
|
|
|
void HandleDatabaseStoreMsg (uint8_t * buf, size_t len);
|
|
void HandleDatabaseSearchReplyMsg (I2NPMessage * msg);
|
|
|
|
const RouterInfo * GetRandomNTCPRouter (bool floodfillOnly = false) const;
|
|
const RouterInfo * GetRandomRouter () const;
|
|
|
|
void PostI2NPMsg (I2NPMessage * msg);
|
|
|
|
private:
|
|
|
|
void Load (const char * directory);
|
|
void SaveUpdated (const char * directory);
|
|
void Run (); // exploratory thread
|
|
void Explore ();
|
|
const RouterInfo * GetClosestFloodfill (const IdentHash& destination) const;
|
|
|
|
private:
|
|
|
|
std::map<IdentHash, LeaseSet *> m_LeaseSets;
|
|
std::map<IdentHash, RouterInfo *> m_RouterInfos;
|
|
|
|
bool m_IsRunning;
|
|
std::thread * m_Thread;
|
|
uint8_t m_Exploratory[32];
|
|
const RouterInfo * m_LastFloodfill;
|
|
i2p::tunnel::OutboundTunnel * m_LastOutboundTunnel;
|
|
i2p::tunnel::InboundTunnel * m_LastInboundTunnel;
|
|
i2p::util::Queue<I2NPMessage> m_Queue; // of I2NPDatabaseStoreMsg
|
|
};
|
|
|
|
extern NetDb netdb;
|
|
}
|
|
}
|
|
|
|
#endif
|