mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.5 KiB
59 lines
1.5 KiB
#ifndef ADDRESS_BOOK_H__ |
|
#define ADDRESS_BOOK_H__ |
|
|
|
#include <string.h> |
|
#include <string> |
|
#include <map> |
|
#include "base64.h" |
|
#include "util.h" |
|
#include "Identity.h" |
|
#include "Log.h" |
|
|
|
namespace i2p |
|
{ |
|
namespace client |
|
{ |
|
class AddressBookStorage // interface for storage |
|
{ |
|
public: |
|
|
|
virtual ~AddressBookStorage () {}; |
|
virtual bool GetAddress (const i2p::data::IdentHash& ident, i2p::data::IdentityEx& address) const = 0; |
|
virtual void AddAddress (const i2p::data::IdentityEx& address) = 0; |
|
virtual void RemoveAddress (const i2p::data::IdentHash& ident) = 0; |
|
|
|
virtual int Load (std::map<std::string, i2p::data::IdentHash>& addresses) = 0; |
|
virtual int Save (const std::map<std::string, i2p::data::IdentHash>& addresses) = 0; |
|
}; |
|
|
|
class AddressBook |
|
{ |
|
public: |
|
|
|
AddressBook (); |
|
~AddressBook (); |
|
bool GetIdentHash (const std::string& address, i2p::data::IdentHash& ident); |
|
bool GetAddress (const std::string& address, i2p::data::IdentityEx& identity); |
|
const i2p::data::IdentHash * FindAddress (const std::string& address); |
|
void InsertAddress (const std::string& address, const std::string& base64); // for jump service |
|
void InsertAddress (const i2p::data::IdentityEx& address); |
|
|
|
private: |
|
|
|
AddressBookStorage * CreateStorage (); |
|
|
|
private: |
|
|
|
void LoadHosts (); |
|
void LoadHostsFromI2P (); |
|
|
|
std::map<std::string, i2p::data::IdentHash> m_Addresses; |
|
AddressBookStorage * m_Storage; |
|
bool m_IsLoaded, m_IsDowloading; |
|
}; |
|
} |
|
} |
|
|
|
#endif |
|
|
|
|
|
|