2012-04-06 08:56:52 +02:00
|
|
|
#ifndef VIRTUALENDPOINT_H
|
|
|
|
#define VIRTUALENDPOINT_H
|
|
|
|
|
|
|
|
namespace icinga
|
|
|
|
{
|
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
struct I2_ICINGA_API NewRequestEventArgs : public EventArgs
|
2012-04-16 16:27:41 +02:00
|
|
|
{
|
|
|
|
typedef shared_ptr<NewRequestEventArgs> Ptr;
|
|
|
|
typedef weak_ptr<NewRequestEventArgs> WeakPtr;
|
|
|
|
|
|
|
|
Endpoint::Ptr Sender;
|
2012-04-18 15:22:25 +02:00
|
|
|
JsonRpcRequest Request;
|
2012-04-16 16:27:41 +02:00
|
|
|
};
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
class I2_ICINGA_API VirtualEndpoint : public Endpoint
|
|
|
|
{
|
|
|
|
private:
|
2012-04-18 15:22:25 +02:00
|
|
|
map< string, Event<NewRequestEventArgs> > m_MethodHandlers;
|
2012-04-06 08:56:52 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
typedef shared_ptr<VirtualEndpoint> Ptr;
|
|
|
|
typedef weak_ptr<VirtualEndpoint> WeakPtr;
|
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
void RegisterMethodHandler(string method, function<int (const NewRequestEventArgs&)> callback);
|
|
|
|
void UnregisterMethodHandler(string method, function<int (const NewRequestEventArgs&)> callback);
|
2012-04-06 08:56:52 +02:00
|
|
|
|
2012-04-23 13:45:41 +02:00
|
|
|
virtual string GetAddress(void) const;
|
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
virtual bool IsLocal(void) const;
|
2012-04-27 13:44:53 +02:00
|
|
|
virtual bool IsConnected(void) const;
|
2012-04-06 08:56:52 +02:00
|
|
|
|
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);
|
2012-04-27 11:44:34 +02:00
|
|
|
|
|
|
|
virtual void Stop(void);
|
2012-04-06 08:56:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* VIRTUALENDPOINT_H */
|