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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373
|
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) Crossbar.io Technologies GmbH and contributors
//
// Boost Software License - Version 1.0 - August 17th, 2003
//
// Permission is hereby granted, free of charge, to any person or organization
// obtaining a copy of the software and accompanying documentation covered by
// this license (the "Software") to use, reproduce, display, distribute,
// execute, and transmit the Software, and to prepare derivative works of the
// Software, and to permit third-parties to whom the Software is furnished to
// do so, all subject to the following:
//
// The copyright notices in the Software and this entire statement, including
// the above license grant, this restriction and the following disclaimer,
// must be included in all copies of the Software, in whole or in part, and
// all derivative works of the Software, unless such copies or derivative
// works are solely in the form of machine-executable object code generated by
// a source language processor.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//
///////////////////////////////////////////////////////////////////////////////
#include "exceptions.hpp"
#include "wamp_message.hpp"
#include "wamp_transport_handler.hpp"
#include <boost/asio/buffer.hpp>
#include <boost/asio/placeholders.hpp>
#include <boost/asio/read.hpp>
#include <boost/asio/write.hpp>
#include <system_error>
namespace autobahn {
template <class Socket>
wamp_rawsocket_transport<Socket>::wamp_rawsocket_transport(
boost::asio::io_service& io_service,
const endpoint_type& remote_endpoint,
bool debug_enabled)
: wamp_transport()
, m_socket(io_service)
, m_remote_endpoint(remote_endpoint)
, m_connect()
, m_disconnect()
, m_handshake_buffer()
, m_message_length(0)
, m_message_unpacker()
, m_debug_enabled(debug_enabled)
{
memset(m_handshake_buffer, 0, sizeof(m_handshake_buffer));
}
template <class Socket>
boost::future<void> wamp_rawsocket_transport<Socket>::connect()
{
m_connect = boost::promise<void>(); // reset the promise
if (m_socket.is_open()) {
m_connect.set_exception(boost::copy_exception(network_error("network transport already connected")));
return m_connect.get_future();
}
std::weak_ptr<wamp_rawsocket_transport<Socket>> weak_self = this->shared_from_this();
auto connect_handler = [=](const boost::system::error_code& error_code) {
auto shared_self = weak_self.lock();
if (!shared_self) {
return;
}
if (error_code) {
m_socket.close(); // async_connect will leave it open
m_connect.set_exception(boost::copy_exception(
std::system_error(error_code.value(), std::system_category(), "connect")));
return;
}
// FIXME: There should be a wamp_rawsocket_properties object or something
// similar that can be passed in to help deal with overiding these
// handshake parameters.
//
// Send the initial handshake packet informing the server which
// serialization format we wish to use, and our maximum message size.
m_handshake_buffer[0] = 0x7F; // magic byte
m_handshake_buffer[1] = 0xF2; // we are ready to receive messages up to 2**24 octets and encoded using MsgPack
m_handshake_buffer[2] = 0x00; // reserved
m_handshake_buffer[3] = 0x00; // reserved
boost::asio::write(
m_socket,
boost::asio::buffer(m_handshake_buffer, sizeof(m_handshake_buffer)));
auto handshake_reply = [=](
const boost::system::error_code& error,
std::size_t bytes_transferred) {
auto shared_self = weak_self.lock();
if (shared_self) {
handshake_reply_handler(error, bytes_transferred);
}
};
try {
// Read the 4-byte handshake reply from the server
boost::asio::async_read(
m_socket,
boost::asio::buffer(m_handshake_buffer, sizeof(m_handshake_buffer)),
handshake_reply);
} catch (const std::exception& e) {
m_connect.set_exception(boost::copy_exception(e));
}
};
m_socket.async_connect(m_remote_endpoint, connect_handler);
return m_connect.get_future();
}
template <class Socket>
boost::future<void> wamp_rawsocket_transport<Socket>::disconnect()
{
if (!m_socket.is_open()) {
throw network_error("network transport already disconnected");
}
m_socket.close();
m_disconnect.set_value();
return m_disconnect.get_future();
}
template <class Socket>
bool wamp_rawsocket_transport<Socket>::is_connected() const
{
return m_socket.is_open();
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::send_message(wamp_message&& message)
{
auto buffer = std::make_shared<msgpack::sbuffer>();
msgpack::packer<msgpack::sbuffer> packer(*buffer);
packer.pack(message.fields());
// Write the length prefix as the message header.
uint32_t length = htonl(buffer->size());
boost::asio::write(m_socket, boost::asio::buffer(&length, sizeof(length)));
// Write actual serialized message.
boost::asio::write(m_socket, boost::asio::buffer(buffer->data(), buffer->size()));
if (m_debug_enabled) {
std::cerr << "TX message (" << buffer->size() << " octets) ..." << std::endl;
std::cerr << "TX message: " << message << std::endl;
}
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::set_pause_handler(pause_handler&& handler)
{
m_pause_handler = std::move(handler);
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::set_resume_handler(resume_handler&& handler)
{
m_resume_handler = std::move(handler);
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::pause()
{
if (m_pause_handler) {
m_pause_handler();
}
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::resume()
{
if (m_resume_handler) {
m_resume_handler();
}
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::attach(
const std::shared_ptr<wamp_transport_handler>& handler)
{
if (m_handler) {
throw std::logic_error("handler already attached");
}
m_handler = handler;
m_handler->on_attach(this->shared_from_this());
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::detach()
{
if (!m_handler) {
throw std::logic_error("no handler attached");
}
m_handler->on_detach(true, "wamp.error.goodbye");
m_handler.reset();
}
template <class Socket>
bool wamp_rawsocket_transport<Socket>::has_handler() const
{
return m_handler != nullptr;
}
template <class Socket>
Socket& wamp_rawsocket_transport<Socket>::socket()
{
return m_socket;
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::handshake_reply_handler(
const boost::system::error_code& error_code,
std::size_t /* bytes_transferred */)
{
if (error_code) {
if (m_debug_enabled) {
std::cerr << "rawsocket handshake error: " << error_code << std::endl;
}
m_connect.set_exception(boost::copy_exception(
std::system_error(error_code.value(), std::system_category(), "async_read")));
return;
}
if (m_debug_enabled) {
std::cerr << "RawSocket handshake reply received" << std::endl;
}
if (m_handshake_buffer[0] != 0x7F) {
m_connect.set_exception(boost::copy_exception(protocol_error("invalid handshake frame")));
return;
}
// Indicates that the handshake reply is an error.
if ((m_handshake_buffer[1] & 0x0F) == 0x00) {
uint32_t error = m_handshake_buffer[1] & 0xF0;
if (m_debug_enabled) {
std::cerr << "rawsocket handshake error: " << std::hex << error << std::endl;
}
std::stringstream error_string;
if (error == 0x00) {
error_string << "illegal error code (" << error << ")";
} else if (error == 0x10) {
error_string << "serializer unsupported";
} else if (error == 0x20) {
error_string << "maximum message length unacceptable";
} else if (error == 0x30) {
error_string << "use of reserved bits (unsupported feature)";
} else if (error == 0x40) {
error_string << "maximum connection count reached";
} else {
error_string << "unknown/reserved error code (" << error << ")";
}
m_connect.set_exception(boost::copy_exception(protocol_error(error_string.str())));
return;
}
uint32_t serializer_type = (m_handshake_buffer[1] & 0x0F);
if (serializer_type == 0x01) {
m_connect.set_exception(boost::copy_exception(protocol_error("json currently not supported")));
} else if (serializer_type == 0x02) {
if (m_debug_enabled) {
std::cerr << "connect successful: valid handshake" << std::endl;
}
m_connect.set_value();
receive_message();
} else {
std::stringstream error_string;
error_string << "rawsocket handshake error: invalid serializer type (" << serializer_type << ")";
m_connect.set_exception(boost::copy_exception(protocol_error(error_string.str())));
}
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::receive_message()
{
if (m_debug_enabled) {
std::cerr << "RX preparing to receive message .." << std::endl;
}
boost::asio::async_read(
m_socket,
boost::asio::buffer(&m_message_length, sizeof(m_message_length)),
bind(&wamp_rawsocket_transport<Socket>::receive_message_header,
this->shared_from_this(),
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::receive_message_header(
const boost::system::error_code& error_code,
std::size_t /* bytes transferred */)
{
if (!error_code) {
m_message_length = ntohl(m_message_length);
if (m_debug_enabled) {
std::cerr << "RX message (" << m_message_length << " octets) ..." << std::endl;
}
m_message_unpacker.reserve_buffer(m_message_length);
boost::asio::async_read(
m_socket,
boost::asio::buffer(m_message_unpacker.buffer(), m_message_length),
bind(&wamp_rawsocket_transport<Socket>::receive_message_body,
this->shared_from_this(),
boost::asio::placeholders::error,
boost::asio::placeholders::bytes_transferred));
return;
}
}
template <class Socket>
void wamp_rawsocket_transport<Socket>::receive_message_body(
const boost::system::error_code& error_code,
std::size_t /* bytes transferred */)
{
if (error_code) {
if (m_debug_enabled && error_code != boost::asio::error::operation_aborted) {
std::cerr << "Receive error: " << error_code << std::endl;
}
return;
}
if (m_debug_enabled) {
std::cerr << "RX message received." << std::endl;
}
if (m_handler) {
m_message_unpacker.buffer_consumed(m_message_length);
msgpack::unpacked result;
while (m_message_unpacker.next(&result)) {
wamp_message::message_fields fields;
result.get().convert(fields);
wamp_message message(std::move(fields), std::move(*(result.zone())));
if (m_debug_enabled) {
std::cerr << "RX message: " << message << std::endl;
}
m_handler->on_message(std::move(message));
}
} else {
std::cerr << "RX message ignored: no handler attached" << std::endl;
}
receive_message();
}
} // namespace autobahn
|