]> granicus.if.org Git - icinga2/blob - icinga/virtualendpoint.h
Replaced custom event code with Boost.Signals.
[icinga2] / icinga / virtualendpoint.h
1 /******************************************************************************
2  * Icinga 2                                                                   *
3  * Copyright (C) 2012 Icinga Development Team (http://www.icinga.org/)        *
4  *                                                                            *
5  * This program is free software; you can redistribute it and/or              *
6  * modify it under the terms of the GNU General Public License                *
7  * as published by the Free Software Foundation; either version 2             *
8  * of the License, or (at your option) any later version.                     *
9  *                                                                            *
10  * This program is distributed in the hope that it will be useful,            *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
13  * GNU General Public License for more details.                               *
14  *                                                                            *
15  * You should have received a copy of the GNU General Public License          *
16  * along with this program; if not, write to the Free Software Foundation     *
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.             *
18  ******************************************************************************/
19
20 #ifndef VIRTUALENDPOINT_H
21 #define VIRTUALENDPOINT_H
22
23 namespace icinga
24 {
25
26 /**
27  * Event arguments for the "new request" event.
28  *
29  * @ingroup icinga
30  */
31 struct I2_ICINGA_API NewRequestEventArgs : public EventArgs
32 {
33         Endpoint::Ptr Sender;
34         RequestMessage Request;
35 };
36
37 /**
38  * A local endpoint.
39  *
40  * @ingroup icinga
41  */
42 class I2_ICINGA_API VirtualEndpoint : public Endpoint
43 {
44 public:
45         typedef shared_ptr<VirtualEndpoint> Ptr;
46         typedef weak_ptr<VirtualEndpoint> WeakPtr;
47
48         void RegisterTopicHandler(string topic, function<int (const NewRequestEventArgs&)> callback);
49         void UnregisterTopicHandler(string topic, function<int (const NewRequestEventArgs&)> callback);
50
51         virtual string GetAddress(void) const;
52
53         virtual bool IsLocal(void) const;
54         virtual bool IsConnected(void) const;
55
56         virtual void ProcessRequest(Endpoint::Ptr sender, const RequestMessage& message);
57         virtual void ProcessResponse(Endpoint::Ptr sender, const ResponseMessage& message);
58
59         virtual void Stop(void);
60
61 private:
62         map< string, shared_ptr<boost::signal<void (const NewRequestEventArgs&)> > > m_TopicHandlers;
63 };
64
65 }
66
67 #endif /* VIRTUALENDPOINT_H */