1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
/*
* JsonRpc-Cpp - JSON-RPC implementation.
* Copyright (C) 2008-2011 Sebastien Vincent <sebastien.vincent@cppextrem.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* \file jsonrpc_udpserver.cpp
* \brief JSON-RPC UDP server.
* \author Sebastien Vincent
*/
#include <iostream>
#include <stdexcept>
#include "jsonrpc_udpserver.h"
#include "netstring.h"
namespace Json
{
namespace Rpc
{
UdpServer::UdpServer(const std::string& address, uint16_t port) : Server(address, port)
{
m_protocol = networking::UDP;
}
UdpServer::~UdpServer()
{
}
ssize_t UdpServer::Send(const std::string& data, const struct sockaddr* addr,
socklen_t addrlen)
{
std::string rep = data;
/* encoding if any */
if(GetEncapsulatedFormat() == Json::Rpc::NETSTRING)
{
rep = netstring::encode(rep);
}
return ::sendto(m_sock, rep.c_str(), rep.length(), 0, (struct sockaddr*)addr, addrlen);
}
bool UdpServer::Recv(int fd)
{
Json::Value response;
ssize_t nb = -1;
char buf[1500];
struct sockaddr_storage addr;
socklen_t addrlen = sizeof(struct sockaddr_storage);
nb = ::recvfrom(fd, buf, sizeof(buf), 0, (struct sockaddr*)&addr, &addrlen);
if(nb > 0)
{
std::string msg = std::string(buf, nb);
if(GetEncapsulatedFormat() == Json::Rpc::NETSTRING)
{
try
{
msg = netstring::decode(msg);
}
catch(const netstring::NetstringException& e)
{
/* error parsing NetString */
std::cerr << e.what() << std::endl;
return false;
}
}
/* give the message to JsonHandler */
m_jsonHandler.Process(msg, response);
/* in case of notification message received, the response could be Json::Value::null */
if(response != Json::Value::null)
{
Send(m_jsonHandler.GetString(response),(struct sockaddr*)&addr, addrlen);
}
return true;
}
return false;
}
void UdpServer::WaitMessage(uint32_t ms)
{
fd_set fdsr;
struct timeval tv;
int max_sock = m_sock;
max_sock++;
FD_ZERO(&fdsr);
#ifdef _WIN32
/* on Windows, a socket is not an int but a SOCKET (unsigned int) */
FD_SET((SOCKET)m_sock, &fdsr);
#else
FD_SET(m_sock, &fdsr);
#endif
tv.tv_sec = ms / 1000;
tv.tv_usec = (ms % 1000) * 1000;
if(select(max_sock, &fdsr, NULL, NULL, ms ? &tv : NULL) > 0)
{
if(FD_ISSET(m_sock, &fdsr))
{
Recv(m_sock);
}
}
else
{
/* problem */
}
}
} /* namespace Rpc */
} /* namespace Json */
|