2014-10-16 00:52:17 +00:00
|
|
|
#ifndef CLIENT_CONTEXT_H__
|
|
|
|
#define CLIENT_CONTEXT_H__
|
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
#include "Destination.h"
|
2014-10-16 01:39:39 +00:00
|
|
|
#include "HTTPProxy.h"
|
|
|
|
#include "SOCKS.h"
|
|
|
|
#include "I2PTunnel.h"
|
|
|
|
#include "SAM.h"
|
2014-10-24 19:22:36 +00:00
|
|
|
#include "AddressBook.h"
|
2014-10-16 00:52:17 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace client
|
|
|
|
{
|
|
|
|
class ClientContext
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2014-10-16 01:39:39 +00:00
|
|
|
ClientContext ();
|
|
|
|
~ClientContext ();
|
2014-10-16 00:52:17 +00:00
|
|
|
|
|
|
|
void Start ();
|
|
|
|
void Stop ();
|
|
|
|
|
2014-10-22 15:46:54 +00:00
|
|
|
ClientDestination * GetSharedLocalDestination () const { return m_SharedLocalDestination; };
|
|
|
|
ClientDestination * CreateNewLocalDestination (bool isPublic = true, i2p::data::SigningKeyType sigType = i2p::data::SIGNING_KEY_TYPE_DSA_SHA1); // transient
|
|
|
|
ClientDestination * CreateNewLocalDestination (const i2p::data::PrivateKeys& keys, bool isPublic = true);
|
|
|
|
void DeleteLocalDestination (ClientDestination * destination);
|
|
|
|
ClientDestination * FindLocalDestination (const i2p::data::IdentHash& destination) const;
|
|
|
|
ClientDestination * LoadLocalDestination (const std::string& filename, bool isPublic);
|
2014-10-16 00:52:17 +00:00
|
|
|
|
2014-10-24 19:22:36 +00:00
|
|
|
AddressBook& GetAddressBook () { return m_AddressBook; };
|
|
|
|
|
2014-10-16 00:52:17 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
void LoadLocalDestinations ();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
std::mutex m_DestinationsMutex;
|
2014-10-22 15:46:54 +00:00
|
|
|
std::map<i2p::data::IdentHash, ClientDestination *> m_Destinations;
|
|
|
|
ClientDestination * m_SharedLocalDestination;
|
2014-10-16 00:52:17 +00:00
|
|
|
|
2014-10-24 19:22:36 +00:00
|
|
|
AddressBook m_AddressBook;
|
|
|
|
|
2014-10-16 01:39:39 +00:00
|
|
|
i2p::proxy::HTTPProxy * m_HttpProxy;
|
|
|
|
i2p::proxy::SOCKSProxy * m_SocksProxy;
|
2014-10-16 14:28:44 +00:00
|
|
|
I2PClientTunnel * m_IrcTunnel;
|
|
|
|
I2PServerTunnel * m_ServerTunnel;
|
|
|
|
SAMBridge * m_SamBridge;
|
2014-10-16 01:39:39 +00:00
|
|
|
|
2014-10-16 00:52:17 +00:00
|
|
|
public:
|
|
|
|
// for HTTP
|
|
|
|
const decltype(m_Destinations)& GetDestinations () const { return m_Destinations; };
|
|
|
|
};
|
|
|
|
|
|
|
|
extern ClientContext context;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|