[5284] | 1 | #include "rfcomm.hpp"
|
---|
| 2 |
|
---|
| 3 | #include "../asio/asio_io_service.h"
|
---|
| 4 | #include "../asio/rfcomm.hpp"
|
---|
| 5 | #include "../asio/bluetooth_endpoint.hpp"
|
---|
| 6 |
|
---|
| 7 | #include <boost/asio.hpp>
|
---|
| 8 | #include <boost/thread.hpp>
|
---|
| 9 | #include <boost/array.hpp>
|
---|
| 10 | #include <memory.h>
|
---|
| 11 | #include <deque>
|
---|
[5418] | 12 | #include <cerrno>
|
---|
[5284] | 13 |
|
---|
| 14 | namespace ariba {
|
---|
| 15 | namespace transport {
|
---|
| 16 |
|
---|
[5406] | 17 | use_logging_cpp(rfcomm)
|
---|
| 18 |
|
---|
[5284] | 19 | using namespace boost::asio;
|
---|
| 20 | using namespace detail;
|
---|
| 21 | using namespace std;
|
---|
| 22 |
|
---|
| 23 | using boost::system::error_code;
|
---|
| 24 |
|
---|
| 25 | class link_data {
|
---|
| 26 | public:
|
---|
| 27 | uint8_t size_[4];
|
---|
| 28 | size_t size;
|
---|
| 29 | uint8_t* buffer;
|
---|
| 30 | };
|
---|
| 31 |
|
---|
| 32 | class link_info {
|
---|
| 33 | public:
|
---|
| 34 | link_info(io_service& io ) :
|
---|
[5424] | 35 | io(io), up(false), local(), remote(), socket(new bluetooth::rfcomm::socket(io)), connect_retries(0),
|
---|
[5406] | 36 | size(0), buffer(NULL), sending(false) {
|
---|
[5284] | 37 | }
|
---|
| 38 |
|
---|
[5424] | 39 | ~link_info() {
|
---|
| 40 | delete socket;
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | void reinit() {
|
---|
| 44 | delete socket;
|
---|
| 45 | socket = new bluetooth::rfcomm::socket(io);
|
---|
| 46 | up = false;
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | io_service& io;
|
---|
| 50 |
|
---|
[5284] | 51 | // state
|
---|
| 52 | bool up;
|
---|
| 53 | rfcomm_endpoint local, remote;
|
---|
[5424] | 54 | bluetooth::rfcomm::socket* socket;
|
---|
[5406] | 55 | int connect_retries;
|
---|
[5284] | 56 |
|
---|
| 57 | // read buffer
|
---|
| 58 | uint8_t size_[4];
|
---|
| 59 | size_t size;
|
---|
| 60 | uint8_t* buffer;
|
---|
| 61 |
|
---|
| 62 | // send buffer
|
---|
| 63 | bool sending;
|
---|
| 64 | boost::mutex mutex;
|
---|
| 65 | std::deque<link_data> send_buffer;
|
---|
| 66 | };
|
---|
| 67 |
|
---|
[5406] | 68 | void rfcomm::shutdown(link_info* info) {
|
---|
| 69 | if (info != NULL && info->up) {
|
---|
| 70 | info->up = false;
|
---|
[5424] | 71 | info->socket->shutdown( bluetooth::rfcomm::socket::shutdown_both );
|
---|
[5406] | 72 | }
|
---|
[5289] | 73 | }
|
---|
| 74 |
|
---|
| 75 |
|
---|
[5284] | 76 | inline bluetooth::rfcomm::endpoint convert( const rfcomm_endpoint& endpoint ) {
|
---|
| 77 | return bluetooth::rfcomm::endpoint(
|
---|
| 78 | endpoint.mac().bluetooth(), endpoint.channel().value()
|
---|
| 79 | );
|
---|
| 80 | }
|
---|
| 81 |
|
---|
| 82 | inline rfcomm_endpoint convert( const bluetooth::rfcomm::endpoint& endpoint ) {
|
---|
| 83 | mac_address mac;
|
---|
| 84 | mac.bluetooth( endpoint.address() );
|
---|
| 85 | rfcomm_channel_address channel;
|
---|
| 86 | channel.value( endpoint.channel() );
|
---|
| 87 | return rfcomm_endpoint( mac, channel );
|
---|
| 88 | }
|
---|
| 89 |
|
---|
| 90 |
|
---|
| 91 | rfcomm::rfcomm(uint16_t channel) :
|
---|
| 92 | channel(channel), io(asio_io_service::alloc()) {
|
---|
[5406] | 93 | accept_retries = 0;
|
---|
[5284] | 94 | }
|
---|
| 95 |
|
---|
| 96 | rfcomm::~rfcomm() {
|
---|
| 97 | asio_io_service::free();
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | void rfcomm::start() {
|
---|
| 101 |
|
---|
| 102 | // start io service
|
---|
| 103 | asio_io_service::start();
|
---|
| 104 |
|
---|
| 105 | // create acceptor
|
---|
[5406] | 106 | logging_info( "Binding to channel " << channel );
|
---|
[5284] | 107 | acceptor = new bluetooth::rfcomm::acceptor(io,
|
---|
| 108 | bluetooth::rfcomm::endpoint(bluetooth::rfcomm::get(), channel )
|
---|
| 109 | );
|
---|
| 110 |
|
---|
[5406] | 111 | send_data = new link_data();
|
---|
| 112 |
|
---|
[5284] | 113 | // start accepting
|
---|
| 114 | start_accept();
|
---|
| 115 | }
|
---|
| 116 |
|
---|
| 117 | void rfcomm::stop() {
|
---|
[5406] | 118 | logging_info( "Stopping asio rfcomm" );
|
---|
[5284] | 119 | }
|
---|
| 120 |
|
---|
| 121 | void rfcomm::send(const address_v* remote, const uint8_t* data, size_t size) {
|
---|
[5406] | 122 |
|
---|
[5284] | 123 | // get end-point
|
---|
| 124 | rfcomm_endpoint endpoint = *remote;
|
---|
| 125 | endpoint = convert(convert(endpoint));
|
---|
| 126 |
|
---|
| 127 | // try to find established connector
|
---|
[5406] | 128 | logging_debug("Trying to find a already existing link.");
|
---|
[5284] | 129 | link_info* info = NULL;
|
---|
| 130 | for (size_t i = 0; i < links.size(); i++)
|
---|
| 131 | if (links[i]->remote.mac() == endpoint.mac()) {
|
---|
[5406] | 132 | logging_debug("Using already established link");
|
---|
[5284] | 133 | info = links[i];
|
---|
| 134 | break;
|
---|
| 135 | }
|
---|
| 136 |
|
---|
[5406] | 137 | // not found, or not up? ->try to (re-)connect
|
---|
[5425] | 138 | if (info==NULL || !info->up || !info->socket->is_open() ) {
|
---|
[5406] | 139 | logging_debug( "Connecting to " << endpoint.to_string() );
|
---|
[5424] | 140 | if (info != NULL && (!info->up || !info->socket->is_open())) {
|
---|
[5435] | 141 | logging_error("Old link is down. Trying to re-establish link.");
|
---|
[5424] | 142 | info->reinit();
|
---|
[5406] | 143 | } else {
|
---|
| 144 | info = new link_info(io);
|
---|
| 145 | }
|
---|
[5423] | 146 | info->connect_retries = 0;
|
---|
[5406] | 147 | info->remote = endpoint;
|
---|
[5424] | 148 | info->socket->async_connect( convert(endpoint), boost::bind(
|
---|
[5284] | 149 | &rfcomm::handle_connect, this,
|
---|
| 150 | boost::asio::placeholders::error, info
|
---|
| 151 | ));
|
---|
| 152 | }
|
---|
| 153 |
|
---|
| 154 | // copy message
|
---|
| 155 | link_data ldata;
|
---|
| 156 | ldata.size = size;
|
---|
| 157 | ldata.size_[0] = (size >> 24) & 0xFF;
|
---|
| 158 | ldata.size_[1] = (size >> 16) & 0xFF;
|
---|
| 159 | ldata.size_[2] = (size >> 8) & 0xFF;
|
---|
| 160 | ldata.size_[3] = (size >> 0) & 0xFF;
|
---|
| 161 | ldata.buffer = new uint8_t[size];
|
---|
| 162 | memcpy(ldata.buffer, data, size);
|
---|
| 163 |
|
---|
| 164 | // enqueue message
|
---|
| 165 | info->mutex.lock();
|
---|
| 166 | info->send_buffer.push_back(ldata);
|
---|
| 167 | info->mutex.unlock();
|
---|
| 168 |
|
---|
| 169 | // start writing
|
---|
[5444] | 170 | io.post( boost::bind( &rfcomm::start_write, this, info) );
|
---|
[5284] | 171 | }
|
---|
| 172 |
|
---|
| 173 | void rfcomm::send(const endpoint_set& endpoints, const uint8_t* data, size_t size) {
|
---|
| 174 | // send a message to each combination of mac-address and channel
|
---|
| 175 | BOOST_FOREACH( const mac_address mac, endpoints.bluetooth ) {
|
---|
| 176 | BOOST_FOREACH( const rfcomm_channel_address channel, endpoints.rfcomm ) {
|
---|
| 177 | rfcomm_endpoint endpoint(mac, channel);
|
---|
| 178 | address_vf vf = endpoint;
|
---|
| 179 | send(vf,data,size);
|
---|
| 180 | }
|
---|
| 181 | }
|
---|
| 182 | }
|
---|
| 183 |
|
---|
| 184 | void rfcomm::terminate(const address_v* local, const address_v* remote) {
|
---|
[5406] | 185 | // get end-point
|
---|
| 186 | rfcomm_endpoint endpoint = *remote;
|
---|
| 187 |
|
---|
| 188 | for (size_t i = 0; i < links.size(); i++)
|
---|
| 189 | if (links[i]->remote.mac() == endpoint.mac()) {
|
---|
| 190 | // close socket
|
---|
[5410] | 191 | shutdown(links[i]);
|
---|
[5406] | 192 | break;
|
---|
| 193 | }
|
---|
[5284] | 194 | }
|
---|
| 195 |
|
---|
| 196 | void rfcomm::register_listener(transport_listener* listener) {
|
---|
| 197 | this->listener = listener;
|
---|
| 198 | }
|
---|
| 199 |
|
---|
| 200 | void rfcomm::start_accept() {
|
---|
| 201 |
|
---|
[5406] | 202 | logging_info( "Waiting for connections ..." );
|
---|
[5284] | 203 |
|
---|
| 204 | // start accepting a connection
|
---|
| 205 | link_info* info = new link_info(io);
|
---|
[5424] | 206 | acceptor->async_accept(*info->socket, boost::bind(
|
---|
[5284] | 207 | // bind parameters
|
---|
| 208 | &rfcomm::handle_accept, this,
|
---|
| 209 |
|
---|
| 210 | // handler parameters
|
---|
| 211 | boost::asio::placeholders::error, info
|
---|
| 212 | ));
|
---|
| 213 | asio_io_service::start();
|
---|
| 214 | }
|
---|
| 215 |
|
---|
| 216 | void rfcomm::handle_accept(const error_code& error, link_info* info) {
|
---|
| 217 | if (error) {
|
---|
[5422] | 218 | logging_error( "Error waiting for new connections. Error code: "<< error.message()
|
---|
[5406] | 219 | << ", trying to recover (attempt " << accept_retries << ")");
|
---|
| 220 |
|
---|
| 221 | // restart accepting
|
---|
| 222 | if (accept_retries<3) {
|
---|
| 223 | accept_retries++;
|
---|
| 224 | start_accept();
|
---|
[5410] | 225 | } else
|
---|
| 226 | delete info;
|
---|
| 227 |
|
---|
[5284] | 228 | return;
|
---|
| 229 | }
|
---|
| 230 |
|
---|
[5423] | 231 | links_mutex.lock();
|
---|
| 232 |
|
---|
[5284] | 233 | // convert endpoints
|
---|
| 234 | info->up = true;
|
---|
[5424] | 235 | info->local = convert( info->socket->local_endpoint() );
|
---|
| 236 | info->remote = convert( info->socket->remote_endpoint() );
|
---|
[5284] | 237 |
|
---|
[5423] | 238 | logging_debug("Accepted incoming connection from "
|
---|
[5406] | 239 | << info->remote.to_string() );
|
---|
[5284] | 240 |
|
---|
| 241 | // add to list
|
---|
| 242 | links.push_back(info);
|
---|
| 243 | links_mutex.unlock();
|
---|
| 244 |
|
---|
| 245 | // start i/o
|
---|
| 246 | start_read(info);
|
---|
| 247 | start_write(info);
|
---|
| 248 |
|
---|
| 249 | // restart accept
|
---|
| 250 | start_accept();
|
---|
| 251 | }
|
---|
| 252 |
|
---|
| 253 | void rfcomm::handle_connect( const error_code& error, link_info* info ) {
|
---|
| 254 | if (error) {
|
---|
[5422] | 255 | logging_error( "Can not connect. Error code: "
|
---|
| 256 | << error.message() << " Retrying ... "
|
---|
[5406] | 257 | "(attempt " << info->connect_retries << ")" );
|
---|
| 258 |
|
---|
| 259 | // do we retry this connection? yes->
|
---|
| 260 | if (info->connect_retries<3) {
|
---|
| 261 | // increase counter
|
---|
| 262 | info->connect_retries++;
|
---|
[5424] | 263 | info->reinit();
|
---|
[5406] | 264 |
|
---|
| 265 | // retry connection attempt
|
---|
[5424] | 266 | info->socket->async_connect( convert(info->remote), boost::bind(
|
---|
[5406] | 267 | &rfcomm::handle_connect, this,
|
---|
| 268 | boost::asio::placeholders::error, info
|
---|
| 269 | ));
|
---|
| 270 |
|
---|
| 271 | } else { // no-> delete link and stop
|
---|
| 272 | return;
|
---|
| 273 | }
|
---|
[5284] | 274 | }
|
---|
| 275 |
|
---|
| 276 | // convert endpoints
|
---|
| 277 | info->up = true;
|
---|
[5424] | 278 | info->local = convert( info->socket->local_endpoint() );
|
---|
| 279 | info->remote = convert( info->socket->remote_endpoint() );
|
---|
[5284] | 280 |
|
---|
[5406] | 281 | logging_debug( "Connected to " << info->remote.to_string() );
|
---|
[5284] | 282 |
|
---|
| 283 | // add to list
|
---|
| 284 | links_mutex.lock();
|
---|
| 285 | links.push_back(info);
|
---|
| 286 | links_mutex.unlock();
|
---|
| 287 |
|
---|
| 288 | // start i/o
|
---|
| 289 | start_read(info);
|
---|
| 290 | start_write(info);
|
---|
| 291 | }
|
---|
| 292 |
|
---|
| 293 | void rfcomm::start_read(link_info* info) {
|
---|
[5444] | 294 | logging_debug("Start reading ...");
|
---|
| 295 |
|
---|
[5284] | 296 | // start read
|
---|
[5424] | 297 | boost::asio::async_read(*info->socket,
|
---|
[5406] | 298 |
|
---|
[5284] | 299 | // read size of packet
|
---|
| 300 | boost::asio::buffer(info->size_, 4),
|
---|
[5406] | 301 |
|
---|
[5284] | 302 | // bind handler
|
---|
| 303 | boost::bind(
|
---|
[5406] | 304 |
|
---|
[5284] | 305 | // bind parameters
|
---|
| 306 | &rfcomm::handle_read_header, this,
|
---|
[5406] | 307 |
|
---|
[5284] | 308 | // handler parameters
|
---|
| 309 | placeholders::error, placeholders::bytes_transferred, info
|
---|
| 310 | )
|
---|
| 311 | );
|
---|
| 312 | }
|
---|
| 313 |
|
---|
| 314 | void rfcomm::handle_read_header(const error_code& error, size_t bytes,
|
---|
| 315 | link_info* info) {
|
---|
| 316 |
|
---|
[5406] | 317 | // handle error
|
---|
| 318 | if (error) {
|
---|
[5422] | 319 | logging_error("Failed to receive message payload. Error code: "
|
---|
| 320 | << error.message() );
|
---|
[5406] | 321 | shutdown(info);
|
---|
| 322 | return;
|
---|
| 323 | }
|
---|
| 324 |
|
---|
[5284] | 325 | // ignore errors and wait for all data to be received
|
---|
[5406] | 326 | if (bytes != 4) return;
|
---|
[5284] | 327 |
|
---|
| 328 | // get size
|
---|
| 329 | info->size = (info->size_[0]<<24) + (info->size_[1] << 16) +
|
---|
| 330 | (info->size_[2]<< 8) + (info->size_[3] << 0);
|
---|
| 331 |
|
---|
[5406] | 332 | logging_debug( "Message header received -> receive message of size " << info->size );
|
---|
[5284] | 333 |
|
---|
| 334 | // allocate buffer
|
---|
| 335 | info->buffer = new uint8_t[info->size];
|
---|
| 336 |
|
---|
| 337 | // start read
|
---|
[5424] | 338 | boost::asio::async_read(*info->socket,
|
---|
[5284] | 339 | // read size of packet
|
---|
| 340 | boost::asio::buffer(info->buffer, info->size),
|
---|
| 341 | // bind handler
|
---|
| 342 | boost::bind(
|
---|
| 343 | // bind parameters
|
---|
| 344 | &rfcomm::handle_read_data, this,
|
---|
| 345 | // handler parameters
|
---|
| 346 | placeholders::error, placeholders::bytes_transferred, info
|
---|
| 347 | )
|
---|
| 348 | );
|
---|
| 349 | }
|
---|
| 350 |
|
---|
| 351 | void rfcomm::handle_read_data(const error_code& error, size_t bytes,
|
---|
| 352 | link_info* info) {
|
---|
| 353 |
|
---|
[5406] | 354 | // check error
|
---|
| 355 | if (error) {
|
---|
[5481] | 356 | logging_error("Failed to receive message payload. Error: " << error.message() );
|
---|
[5406] | 357 | shutdown(info);
|
---|
[5289] | 358 | return;
|
---|
| 359 | }
|
---|
[5284] | 360 |
|
---|
[5406] | 361 | // wait for all data to be received
|
---|
[5410] | 362 | if (bytes != info->size)
|
---|
| 363 | return;
|
---|
[5284] | 364 |
|
---|
[5406] | 365 | logging_debug( "Received message of size " << info->size );
|
---|
| 366 |
|
---|
[5284] | 367 | // deliver data
|
---|
| 368 | listener->receive_message(this, info->local, info->remote, info->buffer, info->size );
|
---|
| 369 |
|
---|
[5444] | 370 | logging_debug( "Message delivered to service!");
|
---|
| 371 |
|
---|
[5284] | 372 | // free buffers and reset size buffer
|
---|
| 373 | delete [] info->buffer;
|
---|
| 374 | for (size_t i=0; i<4; i++) info->size_[i] = 0;
|
---|
[5286] | 375 |
|
---|
| 376 | start_read(info);
|
---|
[5284] | 377 | }
|
---|
| 378 |
|
---|
| 379 | void rfcomm::start_write( link_info* info ) {
|
---|
| 380 | // do not start writing if sending is in progress
|
---|
| 381 | if (info->sending || !info->up || info->send_buffer.size()==0) return;
|
---|
| 382 |
|
---|
[5481] | 383 | // set sending flag
|
---|
[5428] | 384 | info->sending = true;
|
---|
[5284] | 385 |
|
---|
| 386 | // safely remove data from deque
|
---|
[5406] | 387 | *send_data = info->send_buffer.front();
|
---|
[5284] | 388 | info->send_buffer.pop_front();
|
---|
| 389 |
|
---|
| 390 | boost::array<boost::asio::mutable_buffer, 2> buffer;
|
---|
[5406] | 391 | buffer[0] = boost::asio::buffer(send_data->size_,4);
|
---|
| 392 | buffer[1] = boost::asio::buffer(send_data->buffer,send_data->size);
|
---|
[5284] | 393 |
|
---|
| 394 | // start writing
|
---|
[5424] | 395 | boost::asio::async_write(*info->socket,
|
---|
[5284] | 396 | // read size of packet
|
---|
| 397 | buffer,
|
---|
| 398 | // bind handler
|
---|
| 399 | boost::bind(
|
---|
| 400 | // bind parameters
|
---|
| 401 | &rfcomm::handle_write_data, this,
|
---|
| 402 | // handler parameters
|
---|
| 403 | placeholders::error, placeholders::bytes_transferred,
|
---|
[5406] | 404 | info, send_data->size, send_data->buffer
|
---|
[5284] | 405 | )
|
---|
| 406 | );
|
---|
| 407 | }
|
---|
| 408 |
|
---|
| 409 | void rfcomm::handle_write_data(const error_code& error, size_t bytes,
|
---|
| 410 | link_info* info, size_t size, uint8_t* buffer ) {
|
---|
| 411 |
|
---|
[5410] | 412 | // handle error
|
---|
| 413 | if (error) {
|
---|
[5481] | 414 | logging_error( "Message sent error. Error: " << error.message() );
|
---|
[5428] | 415 | info->sending = false;
|
---|
[5410] | 416 | shutdown(info);
|
---|
| 417 | return;
|
---|
| 418 | }
|
---|
[5406] | 419 |
|
---|
[5410] | 420 | // wait for all data to be sent
|
---|
| 421 | if (bytes != (size+4) )
|
---|
[5284] | 422 | return;
|
---|
[5410] | 423 |
|
---|
[5406] | 424 | logging_debug( "Message sent" );
|
---|
[5284] | 425 |
|
---|
| 426 | // free buffer
|
---|
| 427 | delete [] buffer;
|
---|
[5428] | 428 | info->sending = false;
|
---|
[5284] | 429 |
|
---|
| 430 | // restart-write
|
---|
| 431 | start_write(info);
|
---|
| 432 | }
|
---|
| 433 |
|
---|
| 434 | }} // namespace ariba::transport
|
---|