mirror of https://github.com/Icinga/icinga2.git
32 lines
637 B
C++
32 lines
637 B
C++
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
|
|
|
#ifndef JSONRPC_H
|
|
#define JSONRPC_H
|
|
|
|
#include "base/stream.hpp"
|
|
#include "base/dictionary.hpp"
|
|
#include "remote/i2-remote.hpp"
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
/**
|
|
* A JSON-RPC connection.
|
|
*
|
|
* @ingroup remote
|
|
*/
|
|
class JsonRpc
|
|
{
|
|
public:
|
|
static size_t SendMessage(const Stream::Ptr& stream, const Dictionary::Ptr& message);
|
|
static StreamReadStatus ReadMessage(const Stream::Ptr& stream, String *message, StreamReadContext& src, bool may_wait = false, ssize_t maxMessageLength = -1);
|
|
static Dictionary::Ptr DecodeMessage(const String& message);
|
|
|
|
private:
|
|
JsonRpc();
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* JSONRPC_H */
|