i2pd/AddressBook.h

60 lines
1.5 KiB
C
Raw Normal View History

2014-03-13 18:22:32 +00:00
#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
{
2014-10-24 19:22:36 +00:00
namespace client
2014-03-13 18:22:32 +00:00
{
2014-11-26 21:19:36 +00:00
class AddressBookStorage // interface for storage
{
public:
virtual ~AddressBookStorage () {};
2014-11-28 14:40:27 +00:00
virtual bool GetAddress (const i2p::data::IdentHash& ident, i2p::data::IdentityEx& address) const = 0;
2014-11-26 21:19:36 +00:00
virtual void AddAddress (const i2p::data::IdentityEx& address) = 0;
virtual void RemoveAddress (const i2p::data::IdentHash& ident) = 0;
2014-11-27 21:26:55 +00:00
2014-11-28 14:40:27 +00:00
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;
2014-11-26 21:19:36 +00:00
};
2014-03-13 18:22:32 +00:00
class AddressBook
{
public:
2014-04-01 19:18:14 +00:00
AddressBook ();
2014-11-26 21:19:36 +00:00
~AddressBook ();
2014-10-24 19:22:36 +00:00
bool GetIdentHash (const std::string& address, i2p::data::IdentHash& ident);
2014-11-26 21:19:36 +00:00
bool GetAddress (const std::string& address, i2p::data::IdentityEx& identity);
2014-10-24 19:22:36 +00:00
const i2p::data::IdentHash * FindAddress (const std::string& address);
2014-09-23 19:38:56 +00:00
void InsertAddress (const std::string& address, const std::string& base64); // for jump service
2014-11-26 21:51:36 +00:00
void InsertAddress (const i2p::data::IdentityEx& address);
2014-03-13 18:22:32 +00:00
private:
2014-11-26 21:51:36 +00:00
AddressBookStorage * CreateStorage ();
private:
2014-04-01 19:18:14 +00:00
void LoadHosts ();
void LoadHostsFromI2P ();
2014-03-13 18:22:32 +00:00
2014-10-24 19:22:36 +00:00
std::map<std::string, i2p::data::IdentHash> m_Addresses;
2014-11-26 21:19:36 +00:00
AddressBookStorage * m_Storage;
bool m_IsLoaded, m_IsDowloading;
2014-03-13 18:22:32 +00:00
};
}
}
#endif