icinga2/lib/remoting/jsonrpcconnection.cpp

72 lines
2.6 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. *
******************************************************************************/
2012-09-10 14:07:32 +02:00
#include "i2-remoting.h"
2012-03-28 13:24:49 +02:00
using namespace icinga;
/**
2012-11-22 12:04:32 +01:00
* Constructor for the JsonRpcConnection class.
*
2012-11-22 12:04:32 +01:00
* @param stream The stream.
*/
2012-11-22 12:04:32 +01:00
JsonRpcConnection::JsonRpcConnection(const Stream::Ptr& stream)
: Connection(stream)
{ }
2012-03-28 13:24:49 +02:00
/**
* Sends a message to the connected peer.
*
* @param message The message.
*/
2012-11-22 12:04:32 +01:00
void JsonRpcConnection::SendMessage(const MessagePart& message)
2012-03-28 13:24:49 +02:00
{
Value value = message.GetDictionary();
String json = value.Serialize();
//std::cerr << ">> " << json << std::endl;
2012-11-22 12:04:32 +01:00
NetString::WriteStringToStream(GetStream(), json);
2012-03-28 13:24:49 +02:00
}
/**
* Processes inbound data.
*/
2012-11-22 12:04:32 +01:00
void JsonRpcConnection::ProcessData(void)
2012-03-28 13:24:49 +02:00
{
String jsonString;
2012-06-25 15:42:46 +02:00
2012-11-22 12:04:32 +01:00
while (NetString::ReadStringFromStream(GetStream(), &jsonString)) {
//std::cerr << "<< " << jsonString << std::endl;
try {
Value value = Value::Deserialize(jsonString);
2012-09-21 09:43:06 +02:00
if (!value.IsObjectType<Dictionary>()) {
throw_exception(invalid_argument("JSON-RPC"
" message must be a dictionary."));
}
OnNewMessage(GetSelf(), MessagePart(value));
} catch (const exception& ex) {
2012-09-21 09:43:06 +02:00
Logger::Write(LogCritical, "remoting", "Exception"
" while processing message from JSON-RPC client: " +
String(ex.what()));
2012-03-28 13:24:49 +02:00
}
}
}