icinga2/icinga/jsonrpcendpoint.h

64 lines
2.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 *
* Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
******************************************************************************/
#ifndef JSONRPCENDPOINT_H
#define JSONRPCENDPOINT_H
namespace icinga
{
class I2_ICINGA_API JsonRpcEndpoint : public Endpoint
{
2012-04-16 16:27:41 +02:00
private:
2012-04-24 14:02:15 +02:00
shared_ptr<SSL_CTX> m_SSLContext;
2012-04-23 13:45:41 +02:00
string m_Address;
2012-04-16 16:27:41 +02:00
JsonRpcClient::Ptr m_Client;
2012-04-18 15:22:25 +02:00
map<string, Endpoint::Ptr> m_PendingCalls;
2012-04-26 21:33:23 +02:00
2012-04-18 15:22:25 +02:00
int NewMessageHandler(const NewMessageEventArgs& nmea);
int ClientClosedHandler(const EventArgs& ea);
int ClientErrorHandler(const SocketErrorEventArgs& ea);
int VerifyCertificateHandler(const VerifyCertificateEventArgs& ea);
2012-04-18 15:22:25 +02:00
public:
2012-04-18 15:22:25 +02:00
typedef shared_ptr<JsonRpcEndpoint> Ptr;
typedef weak_ptr<JsonRpcEndpoint> WeakPtr;
2012-05-07 13:48:17 +02:00
void Connect(string node, string service,
2012-04-24 14:02:15 +02:00
shared_ptr<SSL_CTX> sslContext);
2012-04-16 16:27:41 +02:00
JsonRpcClient::Ptr GetClient(void);
void SetClient(JsonRpcClient::Ptr client);
2012-04-23 13:45:41 +02:00
void SetAddress(string address);
virtual string GetAddress(void) const;
2012-04-18 15:22:25 +02:00
virtual bool IsLocal(void) const;
virtual bool IsConnected(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);
virtual void Stop(void);
};
}
2012-04-16 16:27:41 +02:00
#endif /* JSONRPCENDPOINT_H */