2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
|
|
|
* Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/) *
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
#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;
|
|
|
|
};
|
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
class I2_ICINGA_API Endpoint : public Object
|
|
|
|
{
|
|
|
|
private:
|
2012-04-20 10:38:11 +02:00
|
|
|
string m_Identity;
|
2012-04-16 16:27:41 +02:00
|
|
|
set<string> m_MethodSinks;
|
|
|
|
set<string> m_MethodSources;
|
2012-05-08 10:13:15 +02:00
|
|
|
bool m_ReceivedWelcome;
|
|
|
|
bool m_SentWelcome;
|
2012-04-06 08:56:52 +02:00
|
|
|
|
2012-04-19 12:16:52 +02:00
|
|
|
weak_ptr<EndpointManager> m_EndpointManager;
|
2012-04-18 15:22:25 +02:00
|
|
|
|
2012-04-06 08:56:52 +02:00
|
|
|
public:
|
|
|
|
typedef shared_ptr<Endpoint> Ptr;
|
|
|
|
typedef weak_ptr<Endpoint> WeakPtr;
|
|
|
|
|
2012-05-07 14:52:49 +02:00
|
|
|
Endpoint(void);
|
|
|
|
|
2012-04-23 13:45:41 +02:00
|
|
|
virtual string GetAddress(void) const = 0;
|
|
|
|
|
2012-04-20 10:38:11 +02:00
|
|
|
string GetIdentity(void) const;
|
|
|
|
void SetIdentity(string identity);
|
|
|
|
bool HasIdentity(void) const;
|
|
|
|
|
2012-05-08 10:13:15 +02:00
|
|
|
void SetReceivedWelcome(bool value);
|
|
|
|
bool GetReceivedWelcome(void) const;
|
|
|
|
|
|
|
|
void SetSentWelcome(bool value);
|
|
|
|
bool GetSentWelcome(void) const;
|
2012-05-07 14:52:49 +02:00
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
shared_ptr<EndpointManager> GetEndpointManager(void) const;
|
2012-04-19 12:16:52 +02:00
|
|
|
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-06 08:56:52 +02:00
|
|
|
|
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;
|
2012-04-27 13:44:53 +02:00
|
|
|
virtual bool IsConnected(void) const = 0;
|
2012-04-18 15:22:25 +02:00
|
|
|
|
|
|
|
virtual void ProcessRequest(Endpoint::Ptr sender, const JsonRpcRequest& message) = 0;
|
|
|
|
virtual void ProcessResponse(Endpoint::Ptr sender, const JsonRpcResponse& message) = 0;
|
|
|
|
|
2012-04-27 11:44:34 +02:00
|
|
|
virtual void Stop(void) = 0;
|
|
|
|
|
2012-04-18 15:22:25 +02:00
|
|
|
Event<NewMethodEventArgs> OnNewMethodSink;
|
|
|
|
Event<NewMethodEventArgs> OnNewMethodSource;
|
2012-04-06 08:56:52 +02:00
|
|
|
|
2012-05-08 09:20:42 +02:00
|
|
|
void ForEachMethodSink(function<int (const NewMethodEventArgs&)> callback);
|
|
|
|
void ForEachMethodSource(function<int (const NewMethodEventArgs&)> callback);
|
2012-04-19 12:16:52 +02:00
|
|
|
|
|
|
|
void ClearMethodSinks(void);
|
|
|
|
void ClearMethodSources(void);
|
|
|
|
|
|
|
|
int CountMethodSinks(void) const;
|
|
|
|
int CountMethodSources(void) const;
|
2012-04-23 16:49:02 +02:00
|
|
|
|
2012-04-30 15:30:45 +02:00
|
|
|
set<string>::const_iterator BeginSinks(void) const;
|
|
|
|
set<string>::const_iterator EndSinks(void) const;
|
|
|
|
|
|
|
|
set<string>::const_iterator BeginSources(void) const;
|
|
|
|
set<string>::const_iterator EndSources(void) const;
|
|
|
|
|
2012-04-23 16:49:02 +02:00
|
|
|
Event<EventArgs> OnIdentityChanged;
|
2012-04-30 15:30:45 +02:00
|
|
|
Event<EventArgs> OnSessionEstablished;
|
2012-04-06 08:56:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ENDPOINT_H */
|