Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /** |
Alexander Afanasyev | dfa52c4 | 2014-04-24 21:10:11 -0700 | [diff] [blame] | 3 | * Copyright (c) 2013-2014, Regents of the University of California. |
| 4 | * All rights reserved. |
| 5 | * |
| 6 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 7 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 8 | * |
| 9 | * This file licensed under New BSD License. See COPYING for detailed information about |
| 10 | * ndn-cxx library copyright, permissions, and redistribution restrictions. |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #ifndef NDN_TRANSPORT_STREAM_TRANSPORT_HPP |
| 14 | #define NDN_TRANSPORT_STREAM_TRANSPORT_HPP |
| 15 | |
| 16 | #include "../common.hpp" |
| 17 | |
| 18 | namespace ndn { |
| 19 | |
| 20 | const size_t MAX_LENGTH = 9000; |
| 21 | |
| 22 | template<class BaseTransport, class Protocol> |
| 23 | class StreamTransportImpl |
| 24 | { |
| 25 | public: |
| 26 | typedef BaseTransport base_transport; |
| 27 | typedef Protocol protocol; |
| 28 | typedef StreamTransportImpl<BaseTransport,Protocol> impl; |
| 29 | |
| 30 | StreamTransportImpl(base_transport& transport, boost::asio::io_service& ioService) |
| 31 | : m_transport(transport) |
| 32 | , m_socket(ioService) |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 33 | , m_inputBufferSize(0) |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 34 | , m_connectionInProgress(false) |
| 35 | , m_connectTimer(ioService) |
| 36 | { |
| 37 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 38 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 39 | void |
| 40 | connectHandler(const boost::system::error_code& error) |
| 41 | { |
| 42 | m_connectionInProgress = false; |
| 43 | m_connectTimer.cancel(); |
| 44 | |
| 45 | if (!error) |
| 46 | { |
Alexander Afanasyev | 52afb3f | 2014-03-07 09:05:35 +0000 | [diff] [blame] | 47 | resume(); |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 48 | m_transport.m_isConnected = true; |
| 49 | |
| 50 | for (std::list<Block>::iterator i = m_sendQueue.begin(); i != m_sendQueue.end(); ++i) |
| 51 | m_socket.async_send(boost::asio::buffer(i->wire(), i->size()), |
| 52 | bind(&impl::handle_async_send, this, _1, *i)); |
| 53 | |
| 54 | for (std::list< std::pair<Block,Block> >::iterator i = m_sendPairQueue.begin(); |
| 55 | i != m_sendPairQueue.end(); ++i) |
| 56 | { |
| 57 | std::vector<boost::asio::const_buffer> buffer; |
| 58 | buffer.reserve(2); |
| 59 | buffer.push_back(boost::asio::buffer(i->first.wire(), i->first.size())); |
| 60 | buffer.push_back(boost::asio::buffer(i->second.wire(), i->second.size())); |
| 61 | m_socket.async_send(buffer, |
Alexander Afanasyev | b67090a | 2014-04-29 22:31:01 -0700 | [diff] [blame] | 62 | bind(&impl::handle_async_send2, this, _1, i->first, i->second)); |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 63 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 64 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 65 | m_sendQueue.clear(); |
| 66 | m_sendPairQueue.clear(); |
| 67 | } |
| 68 | else |
| 69 | { |
| 70 | // may need to throw exception |
| 71 | m_transport.m_isConnected = false; |
| 72 | m_transport.close(); |
| 73 | throw Transport::Error(error, "error while connecting to the forwarder"); |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | void |
| 78 | connectTimeoutHandler(const boost::system::error_code& error) |
| 79 | { |
| 80 | if (error) // e.g., cancelled timer |
| 81 | return; |
| 82 | |
| 83 | m_connectionInProgress = false; |
| 84 | m_transport.m_isConnected = false; |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 85 | m_transport.m_isExpectingData = false; |
Alexander Afanasyev | 6507fb1 | 2014-04-28 23:18:56 -0700 | [diff] [blame] | 86 | m_socket.cancel(); |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 87 | m_socket.close(); |
| 88 | throw Transport::Error(error, "error while connecting to the forwarder"); |
| 89 | } |
| 90 | |
| 91 | void |
| 92 | connect(const typename protocol::endpoint& endpoint) |
| 93 | { |
| 94 | if (!m_connectionInProgress) { |
| 95 | m_connectionInProgress = true; |
| 96 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 97 | // Wait at most 4 time::seconds to connect |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 98 | /// @todo Decide whether this number should be configurable |
| 99 | m_connectTimer.expires_from_now(boost::posix_time::seconds(4)); |
| 100 | m_connectTimer.async_wait(bind(&impl::connectTimeoutHandler, this, _1)); |
| 101 | |
| 102 | m_socket.open(); |
| 103 | m_socket.async_connect(endpoint, |
| 104 | bind(&impl::connectHandler, this, _1)); |
| 105 | } |
| 106 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 107 | |
| 108 | void |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 109 | close() |
| 110 | { |
Alexander Afanasyev | 6507fb1 | 2014-04-28 23:18:56 -0700 | [diff] [blame] | 111 | boost::system::error_code error; // to silently ignore all errors |
| 112 | m_connectTimer.cancel(error); |
| 113 | m_socket.cancel(error); |
| 114 | m_socket.close(error); |
| 115 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 116 | m_transport.m_isConnected = false; |
Alexander Afanasyev | 6e0c5a5 | 2014-03-18 16:18:58 -0700 | [diff] [blame] | 117 | m_transport.m_isExpectingData = false; |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 118 | m_sendQueue.clear(); |
| 119 | m_sendPairQueue.clear(); |
| 120 | } |
| 121 | |
| 122 | void |
Alexander Afanasyev | 52afb3f | 2014-03-07 09:05:35 +0000 | [diff] [blame] | 123 | pause() |
| 124 | { |
Alexander Afanasyev | 6507fb1 | 2014-04-28 23:18:56 -0700 | [diff] [blame] | 125 | if (m_connectionInProgress) |
| 126 | return; |
| 127 | |
Alexander Afanasyev | 52afb3f | 2014-03-07 09:05:35 +0000 | [diff] [blame] | 128 | if (m_transport.m_isExpectingData) |
| 129 | { |
| 130 | m_transport.m_isExpectingData = false; |
| 131 | m_socket.cancel(); |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | void |
| 136 | resume() |
| 137 | { |
Alexander Afanasyev | 6507fb1 | 2014-04-28 23:18:56 -0700 | [diff] [blame] | 138 | if (m_connectionInProgress) |
| 139 | return; |
| 140 | |
Alexander Afanasyev | 52afb3f | 2014-03-07 09:05:35 +0000 | [diff] [blame] | 141 | if (!m_transport.m_isExpectingData) |
| 142 | { |
| 143 | m_transport.m_isExpectingData = true; |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 144 | m_inputBufferSize = 0; |
Alexander Afanasyev | 52afb3f | 2014-03-07 09:05:35 +0000 | [diff] [blame] | 145 | m_socket.async_receive(boost::asio::buffer(m_inputBuffer, MAX_LENGTH), 0, |
| 146 | bind(&impl::handle_async_receive, this, _1, _2)); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | void |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 151 | send(const Block& wire) |
| 152 | { |
| 153 | if (!m_transport.m_isConnected) |
| 154 | m_sendQueue.push_back(wire); |
| 155 | else |
| 156 | m_socket.async_send(boost::asio::buffer(wire.wire(), wire.size()), |
| 157 | bind(&impl::handle_async_send, this, _1, wire)); |
| 158 | } |
| 159 | |
| 160 | void |
| 161 | send(const Block& header, const Block& payload) |
| 162 | { |
| 163 | if (!m_transport.m_isConnected) |
| 164 | { |
| 165 | m_sendPairQueue.push_back(std::make_pair(header, payload)); |
| 166 | } |
| 167 | else |
| 168 | { |
| 169 | std::vector<boost::asio::const_buffer> buffers; |
| 170 | buffers.reserve(2); |
| 171 | buffers.push_back(boost::asio::buffer(header.wire(), header.size())); |
| 172 | buffers.push_back(boost::asio::buffer(payload.wire(), payload.size())); |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 173 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 174 | m_socket.async_send(buffers, |
Alexander Afanasyev | b67090a | 2014-04-29 22:31:01 -0700 | [diff] [blame] | 175 | bind(&impl::handle_async_send2, this, _1, header, payload)); |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 176 | } |
| 177 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 178 | |
| 179 | inline bool |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 180 | processAll(uint8_t* buffer, size_t& offset, size_t availableSize) |
| 181 | { |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 182 | Block element; |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 183 | while(offset < availableSize) |
| 184 | { |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 185 | bool ok = Block::fromBuffer(buffer + offset, availableSize - offset, element); |
| 186 | if (!ok) |
| 187 | return false; |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 188 | |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 189 | m_transport.receive(element); |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 190 | offset += element.size(); |
| 191 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 192 | return true; |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 193 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 194 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 195 | void |
| 196 | handle_async_receive(const boost::system::error_code& error, std::size_t bytes_recvd) |
| 197 | { |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 198 | if (error) |
| 199 | { |
| 200 | if (error == boost::system::errc::operation_canceled) { |
| 201 | // async receive has been explicitly cancelled (e.g., socket close) |
| 202 | return; |
| 203 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 204 | |
Alexander Afanasyev | 6507fb1 | 2014-04-28 23:18:56 -0700 | [diff] [blame] | 205 | boost::system::error_code error; // to silently ignore all errors |
| 206 | m_socket.cancel(error); |
| 207 | m_socket.close(error); // closing at this point may not be that necessary |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 208 | m_transport.m_isConnected = true; |
Alexander Afanasyev | 6507fb1 | 2014-04-28 23:18:56 -0700 | [diff] [blame] | 209 | m_transport.m_isExpectingData = false; |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 210 | throw Transport::Error(error, "error while receiving data from socket"); |
| 211 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 212 | |
| 213 | m_inputBufferSize += bytes_recvd; |
| 214 | // do magic |
| 215 | |
| 216 | std::size_t offset = 0; |
| 217 | bool ok = processAll(m_inputBuffer, offset, m_inputBufferSize); |
| 218 | if (!ok && m_inputBufferSize == MAX_LENGTH && offset == 0) |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 219 | { |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 220 | // very bad... should close connection |
Alexander Afanasyev | 6507fb1 | 2014-04-28 23:18:56 -0700 | [diff] [blame] | 221 | boost::system::error_code error; // to silently ignore all errors |
| 222 | m_socket.cancel(error); |
| 223 | m_socket.close(error); |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 224 | m_transport.m_isConnected = false; |
| 225 | m_transport.m_isExpectingData = false; |
| 226 | throw Transport::Error(boost::system::error_code(), |
| 227 | "input buffer full, but a valid TLV cannot be decoded"); |
| 228 | } |
| 229 | |
| 230 | if (offset > 0) |
| 231 | { |
| 232 | if (offset != m_inputBufferSize) |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 233 | { |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 234 | std::copy(m_inputBuffer + offset, m_inputBuffer + m_inputBufferSize, |
| 235 | m_inputBuffer); |
| 236 | m_inputBufferSize -= offset; |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 237 | } |
| 238 | else |
| 239 | { |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 240 | m_inputBufferSize = 0; |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 241 | } |
| 242 | } |
| 243 | |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 244 | m_socket.async_receive(boost::asio::buffer(m_inputBuffer + m_inputBufferSize, |
| 245 | MAX_LENGTH - m_inputBufferSize), 0, |
| 246 | bind(&impl::handle_async_receive, this, _1, _2)); |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | void |
| 250 | handle_async_send(const boost::system::error_code& error, const Block& wire) |
| 251 | { |
| 252 | // pass (needed to keep data block alive during the send) |
| 253 | } |
| 254 | |
| 255 | void |
Alexander Afanasyev | b67090a | 2014-04-29 22:31:01 -0700 | [diff] [blame] | 256 | handle_async_send2(const boost::system::error_code& error, |
| 257 | const Block& header, const Block& payload) |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 258 | { |
| 259 | // pass (needed to keep data blocks alive during the send) |
| 260 | } |
| 261 | |
| 262 | protected: |
| 263 | base_transport& m_transport; |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 264 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 265 | typename protocol::socket m_socket; |
| 266 | uint8_t m_inputBuffer[MAX_LENGTH]; |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 267 | size_t m_inputBufferSize; |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 268 | |
| 269 | std::list< Block > m_sendQueue; |
| 270 | std::list< std::pair<Block, Block> > m_sendPairQueue; |
| 271 | bool m_connectionInProgress; |
| 272 | |
| 273 | boost::asio::deadline_timer m_connectTimer; |
| 274 | }; |
| 275 | |
| 276 | |
| 277 | template<class BaseTransport, class Protocol> |
| 278 | class StreamTransportWithResolverImpl : public StreamTransportImpl<BaseTransport, Protocol> |
| 279 | { |
| 280 | public: |
| 281 | typedef BaseTransport base_transport; |
| 282 | typedef Protocol protocol; |
| 283 | typedef StreamTransportWithResolverImpl<BaseTransport,Protocol> impl; |
| 284 | |
| 285 | StreamTransportWithResolverImpl(base_transport& transport, boost::asio::io_service& ioService) |
| 286 | : StreamTransportImpl<base_transport, protocol>(transport, ioService) |
| 287 | { |
| 288 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 289 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 290 | void |
| 291 | resolveHandler(const boost::system::error_code& error, |
| 292 | typename protocol::resolver::iterator endpoint, |
| 293 | const shared_ptr<typename protocol::resolver>&) |
| 294 | { |
| 295 | if (error) |
| 296 | { |
| 297 | if (error == boost::system::errc::operation_canceled) |
| 298 | return; |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 299 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 300 | throw Transport::Error(error, "Error during resolution of host or port"); |
| 301 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 302 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 303 | typename protocol::resolver::iterator end; |
| 304 | if (endpoint == end) |
| 305 | { |
| 306 | this->m_connectionInProgress = false; |
| 307 | this->m_transport.m_isConnected = false; |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 308 | this->m_transport.m_isExpectingData = false; |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 309 | this->m_socket.close(); |
| 310 | throw Transport::Error(error, "Unable to resolve because host or port"); |
| 311 | } |
| 312 | |
| 313 | this->m_socket.async_connect(*endpoint, |
| 314 | bind(&impl::connectHandler, this, _1)); |
| 315 | } |
Alexander Afanasyev | 937aa78 | 2014-03-21 13:17:57 -0700 | [diff] [blame] | 316 | |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 317 | void |
| 318 | connect(const typename protocol::resolver::query& query) |
| 319 | { |
| 320 | if (!this->m_connectionInProgress) { |
| 321 | this->m_connectionInProgress = true; |
| 322 | |
Alexander Afanasyev | aa0e7da | 2014-03-17 14:37:33 -0700 | [diff] [blame] | 323 | // Wait at most 4 time::seconds to connect |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 324 | /// @todo Decide whether this number should be configurable |
| 325 | this->m_connectTimer.expires_from_now(boost::posix_time::seconds(4)); |
| 326 | this->m_connectTimer.async_wait(bind(&impl::connectTimeoutHandler, this, _1)); |
| 327 | |
| 328 | // typename boost::asio::ip::basic_resolver< protocol > resolver; |
| 329 | shared_ptr<typename protocol::resolver> resolver = |
Alexander Afanasyev | b67090a | 2014-04-29 22:31:01 -0700 | [diff] [blame] | 330 | make_shared<typename protocol::resolver>(ref(this->m_socket.get_io_service())); |
Alexander Afanasyev | 5964fb7 | 2014-02-18 12:42:45 -0800 | [diff] [blame] | 331 | |
| 332 | resolver->async_resolve(query, bind(&impl::resolveHandler, this, _1, _2, resolver)); |
| 333 | } |
| 334 | } |
| 335 | }; |
| 336 | |
| 337 | |
| 338 | } // namespace ndn |
| 339 | |
| 340 | #endif // NDN_TRANSPORT_STREAM_TRANSPORT_HPP |