icinga2/icinga/endpoint.h

63 lines
1.5 KiB
C
Raw Normal View History

#ifndef ENDPOINT_H
#define ENDPOINT_H
namespace icinga
{
class EndpointManager;
2012-04-18 15:22:25 +02:00
struct I2_ICINGA_API NewMethodEventArgs : public EventArgs
{
string Method;
};
class I2_ICINGA_API Endpoint : public Object
{
private:
string m_Identity;
2012-04-16 16:27:41 +02:00
set<string> m_MethodSinks;
set<string> m_MethodSources;
weak_ptr<EndpointManager> m_EndpointManager;
2012-04-18 15:22:25 +02:00
public:
typedef shared_ptr<Endpoint> Ptr;
typedef weak_ptr<Endpoint> WeakPtr;
string GetIdentity(void) const;
void SetIdentity(string identity);
bool HasIdentity(void) const;
2012-04-18 15:22:25 +02:00
shared_ptr<EndpointManager> GetEndpointManager(void) const;
void SetEndpointManager(weak_ptr<EndpointManager> manager);
2012-04-18 15:22:25 +02:00
2012-04-16 16:27:41 +02:00
void RegisterMethodSink(string method);
void UnregisterMethodSink(string method);
2012-04-18 15:22:25 +02:00
bool IsMethodSink(string method) const;
2012-04-16 16:27:41 +02:00
void RegisterMethodSource(string method);
void UnregisterMethodSource(string method);
2012-04-18 15:22:25 +02:00
bool IsMethodSource(string method) const;
virtual bool IsLocal(void) const = 0;
virtual void ProcessRequest(Endpoint::Ptr sender, const JsonRpcRequest& message) = 0;
virtual void ProcessResponse(Endpoint::Ptr sender, const JsonRpcResponse& message) = 0;
Event<NewMethodEventArgs> OnNewMethodSink;
Event<NewMethodEventArgs> OnNewMethodSource;
2012-04-18 15:22:25 +02:00
void ForeachMethodSink(function<int (const NewMethodEventArgs&)> callback);
void ForeachMethodSource(function<int (const NewMethodEventArgs&)> callback);
void ClearMethodSinks(void);
void ClearMethodSources(void);
int CountMethodSinks(void) const;
int CountMethodSources(void) const;
};
}
#endif /* ENDPOINT_H */