i2pd/ClientContext.h

88 lines
3.1 KiB
C
Raw Normal View History

2014-10-16 04:52:17 +04:00
#ifndef CLIENT_CONTEXT_H__
#define CLIENT_CONTEXT_H__
#include <map>
2014-10-16 04:52:17 +04:00
#include <mutex>
2015-02-13 00:11:56 +03:00
#include <memory>
2014-10-16 04:52:17 +04:00
#include "Destination.h"
#include "HTTPProxy.h"
#include "SOCKS.h"
#include "I2PTunnel.h"
#include "SAM.h"
2014-12-02 18:34:02 +03:00
#include "BOB.h"
2014-10-24 23:22:36 +04:00
#include "AddressBook.h"
2014-10-16 04:52:17 +04:00
namespace i2p
{
namespace client
{
2015-03-14 02:51:31 +03:00
const char I2P_TUNNELS_SECTION_TYPE[] = "type";
const char I2P_TUNNELS_SECTION_TYPE_CLIENT[] = "client";
const char I2P_TUNNELS_SECTION_TYPE_SERVER[] = "server";
2015-05-20 23:00:09 +03:00
const char I2P_TUNNELS_SECTION_TYPE_HTTP[] = "http";
2015-03-14 02:51:31 +03:00
const char I2P_CLIENT_TUNNEL_PORT[] = "port";
2015-11-30 17:44:32 +03:00
const char I2P_CLIENT_TUNNEL_ADDRESS[] = "address";
2015-03-14 02:51:31 +03:00
const char I2P_CLIENT_TUNNEL_DESTINATION[] = "destination";
const char I2P_CLIENT_TUNNEL_KEYS[] = "keys";
2016-01-04 05:43:43 +03:00
const char I2P_CLIENT_TUNNEL_SIGNATURE_TYPE[] = "signaturetype";
2015-03-14 02:51:31 +03:00
const char I2P_CLIENT_TUNNEL_DESTINATION_PORT[] = "destinationport";
const char I2P_SERVER_TUNNEL_HOST[] = "host";
const char I2P_SERVER_TUNNEL_PORT[] = "port";
const char I2P_SERVER_TUNNEL_KEYS[] = "keys";
2016-01-04 05:43:43 +03:00
const char I2P_SERVER_TUNNEL_SIGNATURE_TYPE[] = "signaturetype";
const char I2P_SERVER_TUNNEL_INPORT[] = "inport";
2015-03-16 21:52:42 +03:00
const char I2P_SERVER_TUNNEL_ACCESS_LIST[] = "accesslist";
2015-02-13 00:11:56 +03:00
2014-10-16 04:52:17 +04:00
class ClientContext
{
public:
ClientContext ();
~ClientContext ();
2014-10-16 04:52:17 +04:00
void Start ();
void Stop ();
2015-02-24 23:40:50 +03:00
std::shared_ptr<ClientDestination> GetSharedLocalDestination () const { return m_SharedLocalDestination; };
std::shared_ptr<ClientDestination> CreateNewLocalDestination (bool isPublic = false, i2p::data::SigningKeyType sigType = i2p::data::SIGNING_KEY_TYPE_DSA_SHA1,
const std::map<std::string, std::string> * params = nullptr); // transient
2015-02-24 23:40:50 +03:00
std::shared_ptr<ClientDestination> CreateNewLocalDestination (const i2p::data::PrivateKeys& keys, bool isPublic = true,
const std::map<std::string, std::string> * params = nullptr);
2015-02-24 23:40:50 +03:00
void DeleteLocalDestination (std::shared_ptr<ClientDestination> destination);
std::shared_ptr<ClientDestination> FindLocalDestination (const i2p::data::IdentHash& destination) const;
2016-01-04 05:43:43 +03:00
std::shared_ptr<ClientDestination> LoadLocalDestination (const std::string& filename, bool isPublic,
i2p::data::SigningKeyType sigType = i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA256_P256);
2014-10-16 04:52:17 +04:00
2014-10-24 23:22:36 +04:00
AddressBook& GetAddressBook () { return m_AddressBook; };
const SAMBridge * GetSAMBridge () const { return m_SamBridge; };
2015-02-13 00:11:56 +03:00
private:
void ReadTunnels ();
2014-10-16 04:52:17 +04:00
private:
std::mutex m_DestinationsMutex;
2015-02-24 23:40:50 +03:00
std::map<i2p::data::IdentHash, std::shared_ptr<ClientDestination> > m_Destinations;
std::shared_ptr<ClientDestination> m_SharedLocalDestination;
2014-10-16 04:52:17 +04:00
2014-10-24 23:22:36 +04:00
AddressBook m_AddressBook;
i2p::proxy::HTTPProxy * m_HttpProxy;
i2p::proxy::SOCKSProxy * m_SocksProxy;
std::map<int, std::unique_ptr<I2PClientTunnel> > m_ClientTunnels; // port->tunnel
2015-02-13 23:56:57 +03:00
std::map<i2p::data::IdentHash, std::unique_ptr<I2PServerTunnel> > m_ServerTunnels; // destination->tunnel
SAMBridge * m_SamBridge;
2014-12-02 18:34:02 +03:00
BOBCommandChannel * m_BOBCommandChannel;
2014-10-16 04:52:17 +04:00
public:
// for HTTP
const decltype(m_Destinations)& GetDestinations () const { return m_Destinations; };
};
extern ClientContext context;
}
}
#endif