icinga2/icinga/jsonrpcendpoint.h

50 lines
1.3 KiB
C
Raw Normal View History

#ifndef JSONRPCENDPOINT_H
#define JSONRPCENDPOINT_H
namespace icinga
{
class I2_ICINGA_API JsonRpcEndpoint : public Endpoint
{
2012-04-16 16:27:41 +02:00
private:
2012-04-24 14:02:15 +02:00
shared_ptr<SSL_CTX> m_SSLContext;
2012-04-23 13:45:41 +02:00
string m_Address;
2012-04-16 16:27:41 +02:00
JsonRpcClient::Ptr m_Client;
2012-04-18 15:22:25 +02:00
map<string, Endpoint::Ptr> m_PendingCalls;
Timer::Ptr m_ReconnectTimer;
2012-04-16 16:27:41 +02:00
2012-04-26 21:33:23 +02:00
string m_PeerHostname;
unsigned short m_PeerPort;
2012-04-18 15:22:25 +02:00
int NewMessageHandler(const NewMessageEventArgs& nmea);
int ClientClosedHandler(const EventArgs& ea);
int ClientErrorHandler(const SocketErrorEventArgs& ea);
int ClientReconnectHandler(const TimerEventArgs& ea);
int VerifyCertificateHandler(const VerifyCertificateEventArgs& ea);
2012-04-18 15:22:25 +02:00
public:
2012-04-18 15:22:25 +02:00
typedef shared_ptr<JsonRpcEndpoint> Ptr;
typedef weak_ptr<JsonRpcEndpoint> WeakPtr;
2012-04-24 14:02:15 +02:00
void Connect(string host, unsigned short port,
shared_ptr<SSL_CTX> sslContext);
2012-04-16 16:27:41 +02:00
JsonRpcClient::Ptr GetClient(void);
void SetClient(JsonRpcClient::Ptr client);
2012-04-23 13:45:41 +02:00
void SetAddress(string address);
virtual string GetAddress(void) const;
2012-04-18 15:22:25 +02:00
virtual bool IsLocal(void) const;
virtual bool IsConnected(void) const;
2012-04-18 15:22:25 +02:00
virtual void ProcessRequest(Endpoint::Ptr sender, const JsonRpcRequest& message);
virtual void ProcessResponse(Endpoint::Ptr sender, const JsonRpcResponse& message);
virtual void Stop(void);
};
}
2012-04-16 16:27:41 +02:00
#endif /* JSONRPCENDPOINT_H */