i2pd/RouterInfo.h

113 lines
3.3 KiB
C
Raw Normal View History

2013-10-27 15:28:23 +00:00
#ifndef ROUTER_INFO_H__
#define ROUTER_INFO_H__
#include <inttypes.h>
#include <string>
#include <map>
#include <vector>
#include <iostream>
#include <boost/asio.hpp>
2014-01-10 03:26:30 +00:00
#include "Identity.h"
2013-10-27 15:28:23 +00:00
namespace i2p
{
namespace data
{
2013-11-24 23:10:27 +00:00
class RouterInfo: public RoutingDestination
2013-10-27 15:28:23 +00:00
{
public:
enum SupportedTranports
{
eNTCPV4 = 0x01,
eNTCPV6 = 0x20,
eSSUV4 = 0x40,
eSSUV6 = 0x80
};
2013-10-27 15:28:23 +00:00
enum TransportStyle
{
eTransportUnknown = 0,
eTransportNTCP,
eTransportSSU
};
struct Address
{
TransportStyle transportStyle;
2014-01-21 21:07:16 +00:00
boost::asio::ip::address host;
2013-10-27 15:28:23 +00:00
int port;
uint64_t date;
uint8_t cost;
2014-01-28 00:48:46 +00:00
uint8_t key[32]; // into key for SSU
2013-10-27 15:28:23 +00:00
};
RouterInfo (const char * filename);
RouterInfo () = default;
RouterInfo (const RouterInfo& ) = default;
2013-12-29 15:48:57 +00:00
RouterInfo& operator=(const RouterInfo& ) = default;
2013-10-27 15:28:23 +00:00
RouterInfo (const uint8_t * buf, int len);
const Identity& GetRouterIdentity () const { return m_RouterIdentity; };
void SetRouterIdentity (const Identity& identity);
2013-11-20 12:46:09 +00:00
const char * GetIdentHashBase64 () const { return m_IdentHashBase64; };
const char * GetIdentHashAbbreviation () const { return m_IdentHashAbbreviation; };
2013-11-29 12:52:09 +00:00
uint64_t GetTimestamp () const { return m_Timestamp; };
2013-10-27 15:28:23 +00:00
const std::vector<Address>& GetAddresses () const { return m_Addresses; };
2014-01-22 00:14:30 +00:00
Address * GetNTCPAddress (bool v4only = true);
2014-01-28 00:48:46 +00:00
Address * GetSSUAddress (bool v4only = true);
2014-01-04 02:24:20 +00:00
const RoutingKey& GetRoutingKey () const { return m_RoutingKey; };
2013-10-27 15:28:23 +00:00
void AddNTCPAddress (const char * host, int port);
void SetProperty (const char * key, const char * value);
const char * GetProperty (const char * key) const;
bool IsFloodfill () const;
2014-01-22 00:14:30 +00:00
bool IsNTCP (bool v4only = true) const;
bool IsCompatible (const RouterInfo& other) const { return m_SupportedTransports & other.m_SupportedTransports; };
2013-12-10 13:10:49 +00:00
void SetUnreachable (bool unreachable) { m_IsUnreachable = unreachable; };
bool IsUnreachable () const { return m_IsUnreachable; };
2013-10-27 15:28:23 +00:00
void CreateBuffer ();
2014-01-04 02:24:20 +00:00
void UpdateRoutingKey ();
2013-10-27 15:28:23 +00:00
const char * GetBuffer () const { return m_Buffer; };
int GetBufferLen () const { return m_BufferLen; };
2013-11-20 12:46:09 +00:00
bool IsUpdated () const { return m_IsUpdated; };
void SetUpdated (bool updated) { m_IsUpdated = updated; };
2013-11-24 23:10:27 +00:00
// implements RoutingDestination
2013-11-29 12:52:09 +00:00
const IdentHash& GetIdentHash () const { return m_IdentHash; };
2013-11-24 23:10:27 +00:00
const uint8_t * GetEncryptionPublicKey () const { return m_RouterIdentity.publicKey; };
bool IsDestination () const { return false; };
2013-10-27 15:28:23 +00:00
private:
void ReadFromFile (const char * filename);
void ReadFromStream (std::istream& s);
void ReadFromBuffer ();
void WriteToStream (std::ostream& s);
size_t ReadString (char * str, std::istream& s);
void WriteString (const std::string& str, std::ostream& s);
2013-12-29 15:48:57 +00:00
void UpdateIdentHashBase64 ();
2014-01-28 00:48:46 +00:00
Address * GetAddress (TransportStyle s, bool v4only);
2013-10-27 15:28:23 +00:00
private:
Identity m_RouterIdentity;
2013-11-29 12:52:09 +00:00
IdentHash m_IdentHash;
2014-01-04 02:24:20 +00:00
RoutingKey m_RoutingKey;
char m_IdentHashBase64[48], m_IdentHashAbbreviation[5];
2013-10-27 15:28:23 +00:00
char m_Buffer[2048];
int m_BufferLen;
uint64_t m_Timestamp;
std::vector<Address> m_Addresses;
std::map<std::string, std::string> m_Properties;
2013-12-10 13:10:49 +00:00
bool m_IsUpdated, m_IsUnreachable;
uint8_t m_SupportedTransports;
2013-10-27 15:28:23 +00:00
};
}
}
#endif