icinga2/lib/remoting/jsonrpcconnection.cpp

81 lines
2.8 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. *
******************************************************************************/
2013-03-17 20:19:29 +01:00
#include "remoting/jsonrpcconnection.h"
2013-03-16 21:18:53 +01:00
#include "base/netstring.h"
#include "base/objectlock.h"
#include "base/logger_fwd.h"
#include <boost/exception/diagnostic_information.hpp>
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
{
2013-03-02 09:07:47 +01:00
ObjectLock olock(this);
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
{
2013-03-02 09:07:47 +01:00
ObjectLock olock(this);
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>()) {
2013-03-16 21:18:53 +01:00
BOOST_THROW_EXCEPTION(std::invalid_argument("JSON-RPC"
2012-09-21 09:43:06 +02:00
" message must be a dictionary."));
}
2013-03-15 09:07:50 +01:00
MessagePart mp(value);
OnNewMessage(GetSelf(), mp);
2013-03-16 21:18:53 +01:00
} catch (const std::exception& ex) {
Log(LogCritical, "remoting", "Exception"
2012-09-21 09:43:06 +02:00
" while processing message from JSON-RPC client: " +
2013-03-16 21:18:53 +01:00
boost::diagnostic_information(ex));
2012-03-28 13:24:49 +02:00
}
}
}