icinga2/icinga/jsonrpcendpoint.h

39 lines
962 B
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:
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
bool IsConnected(void) const;
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);
public:
2012-04-18 15:22:25 +02:00
typedef shared_ptr<JsonRpcEndpoint> Ptr;
typedef weak_ptr<JsonRpcEndpoint> WeakPtr;
void Connect(string host, unsigned short port);
2012-04-16 16:27:41 +02:00
JsonRpcClient::Ptr GetClient(void);
void SetClient(JsonRpcClient::Ptr client);
2012-04-18 15:22:25 +02:00
virtual bool IsLocal(void) const;
virtual void ProcessRequest(Endpoint::Ptr sender, const JsonRpcRequest& message);
virtual void ProcessResponse(Endpoint::Ptr sender, const JsonRpcResponse& message);
};
}
2012-04-16 16:27:41 +02:00
#endif /* JSONRPCENDPOINT_H */