2012-04-06 08:56:52 +02:00
|
|
|
#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-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-23 13:45:41 +02:00
|
|
|
set<string> m_AllowedMethodSinkPrefixes;
|
|
|
|
set<string> m_AllowedMethodSourcePrefixes;
|
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);
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
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-23 13:45:41 +02:00
|
|
|
void SetAddress(string address);
|
|
|
|
virtual string GetAddress(void) const;
|
|
|
|
|
|
|
|
virtual void AddAllowedMethodSinkPrefix(string method);
|
|
|
|
virtual void RemoveAllowedMethodSinkPrefix(string method);
|
|
|
|
virtual bool IsAllowedMethodSink(string method) const;
|
|
|
|
virtual void AddAllowedMethodSourcePrefix(string method);
|
|
|
|
virtual void RemoveAllowedMethodSourcePrefix(string method);
|
|
|
|
virtual bool IsAllowedMethodSource(string method) const;
|
|
|
|
|
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-06 08:56:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-16 16:27:41 +02:00
|
|
|
#endif /* JSONRPCENDPOINT_H */
|