icinga2/lib/remoting/endpoint.h

101 lines
3.5 KiB
C
Raw Normal View History

/******************************************************************************
* 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 *
2012-05-11 13:33:57 +02:00
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
******************************************************************************/
#ifndef ENDPOINT_H
#define ENDPOINT_H
2013-03-17 20:19:29 +01:00
#include "remoting/i2-remoting.h"
#include "remoting/requestmessage.h"
#include "remoting/responsemessage.h"
2013-03-16 21:18:53 +01:00
#include "base/dynamicobject.h"
2013-04-04 16:08:02 +02:00
#include "base/stream.h"
2013-03-16 21:18:53 +01:00
#include <boost/signals2.hpp>
namespace icinga
{
class EndpointManager;
/**
* An endpoint that can be used to send and receive messages.
2012-05-18 22:21:28 +02:00
*
2012-09-17 13:35:55 +02:00
* @ingroup remoting
*/
2012-09-10 14:07:32 +02:00
class I2_REMOTING_API Endpoint : public DynamicObject
{
public:
typedef shared_ptr<Endpoint> Ptr;
typedef weak_ptr<Endpoint> WeakPtr;
typedef void (Callback)(const Endpoint::Ptr&, const Endpoint::Ptr&, const RequestMessage&);
2013-03-14 23:52:52 +01:00
explicit Endpoint(const Dictionary::Ptr& serializedUpdate);
2013-03-04 15:52:42 +01:00
~Endpoint(void);
static Endpoint::Ptr GetByName(const String& name);
2012-04-23 13:45:41 +02:00
2013-04-04 16:08:02 +02:00
Stream::Ptr GetClient(void) const;
void SetClient(const Stream::Ptr& client);
void RegisterSubscription(const String& topic);
void UnregisterSubscription(const String& topic);
bool HasSubscription(const String& topic) const;
2012-04-18 15:22:25 +02:00
Dictionary::Ptr GetSubscriptions(void) const;
void SetSubscriptions(const Dictionary::Ptr& subscriptions);
bool IsLocalEndpoint(void) const;
bool IsConnected(void) const;
2012-04-18 15:22:25 +02:00
void ProcessRequest(const Endpoint::Ptr& sender, const RequestMessage& message);
void ProcessResponse(const Endpoint::Ptr& sender, const ResponseMessage& message);
void ClearSubscriptions(void);
2012-04-23 16:49:02 +02:00
2013-03-15 18:21:29 +01:00
void RegisterTopicHandler(const String& topic, const boost::function<Callback>& callback);
String GetNode(void) const;
String GetService(void) const;
static Endpoint::Ptr MakeEndpoint(const String& name, bool replicated, bool local = true);
2013-03-16 21:18:53 +01:00
static boost::signals2::signal<void (const Endpoint::Ptr&)> OnConnected;
private:
2013-02-26 10:13:54 +01:00
Attribute<bool> m_Local;
Attribute<Dictionary::Ptr> m_Subscriptions;
Attribute<String> m_Node;
Attribute<String> m_Service;
2013-04-04 16:08:02 +02:00
Stream::Ptr m_Client;
2013-02-26 10:13:54 +01:00
bool m_ReceivedWelcome; /**< Have we received a welcome message
from this endpoint? */
bool m_SentWelcome; /**< Have we sent a welcome message to this
endpoint? */
2013-03-16 21:18:53 +01:00
std::map<String, shared_ptr<boost::signals2::signal<Callback> > > m_TopicHandlers;
2013-04-04 16:08:02 +02:00
void MessageThreadProc(const Stream::Ptr& stream);
};
}
#endif /* ENDPOINT_H */