icinga2/icinga/virtualendpoint.h

37 lines
943 B
C
Raw Normal View History

#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
};
class I2_ICINGA_API VirtualEndpoint : public Endpoint
{
private:
2012-04-18 15:22:25 +02:00
map< string, Event<NewRequestEventArgs> > m_MethodHandlers;
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-18 15:22:25 +02:00
virtual bool IsLocal(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);
};
}
#endif /* VIRTUALENDPOINT_H */