2012-05-10 12:06:41 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* 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-05-10 12:06:41 +02:00
|
|
|
******************************************************************************/
|
|
|
|
|
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-05-19 10:27:41 +02:00
|
|
|
/**
|
2012-11-22 12:04:32 +01:00
|
|
|
* Constructor for the JsonRpcConnection class.
|
2012-05-19 10:27:41 +02:00
|
|
|
*
|
2012-11-22 12:04:32 +01:00
|
|
|
* @param stream The stream.
|
2012-05-19 10:27:41 +02:00
|
|
|
*/
|
2012-11-22 12:04:32 +01:00
|
|
|
JsonRpcConnection::JsonRpcConnection(const Stream::Ptr& stream)
|
|
|
|
: Connection(stream)
|
|
|
|
{ }
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-05-19 10:27:41 +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);
|
|
|
|
|
2012-08-02 09:38:08 +02:00
|
|
|
Value value = message.GetDictionary();
|
2012-09-03 10:28:14 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2012-05-19 10:27:41 +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);
|
|
|
|
|
2012-08-02 09:38:08 +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)) {
|
2012-09-03 10:28:14 +02:00
|
|
|
//std::cerr << "<< " << jsonString << std::endl;
|
|
|
|
|
2012-06-29 12:18:50 +02:00
|
|
|
try {
|
2012-08-02 09:38:08 +02:00
|
|
|
Value value = Value::Deserialize(jsonString);
|
2012-07-24 10:50:53 +02:00
|
|
|
|
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."));
|
|
|
|
}
|
2012-07-24 10:50:53 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|