summaryrefslogtreecommitdiff
path: root/src/components/transport_manager/src/bluetooth/bluetooth_socket_connection.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/transport_manager/src/bluetooth/bluetooth_socket_connection.cc')
-rw-r--r--src/components/transport_manager/src/bluetooth/bluetooth_socket_connection.cc136
1 files changed, 0 insertions, 136 deletions
diff --git a/src/components/transport_manager/src/bluetooth/bluetooth_socket_connection.cc b/src/components/transport_manager/src/bluetooth/bluetooth_socket_connection.cc
deleted file mode 100644
index 5f1eed4c5e..0000000000
--- a/src/components/transport_manager/src/bluetooth/bluetooth_socket_connection.cc
+++ /dev/null
@@ -1,136 +0,0 @@
-/*
- *
- * Copyright (c) 2013, Ford Motor Company
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following
- * disclaimer in the documentation and/or other materials provided with the
- * distribution.
- *
- * Neither the name of the Ford Motor Company nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "transport_manager/bluetooth/bluetooth_socket_connection.h"
-
-#include <unistd.h>
-#include <bluetooth/bluetooth.h>
-#include <bluetooth/hci.h>
-#include <bluetooth/hci_lib.h>
-#include <bluetooth/sdp.h>
-#include <bluetooth/sdp_lib.h>
-#include <bluetooth/rfcomm.h>
-
-#include "transport_manager/bluetooth/bluetooth_device.h"
-#include "transport_manager/transport_adapter/transport_adapter_controller.h"
-
-#include "utils/logger.h"
-
-namespace transport_manager {
-namespace transport_adapter {
-CREATE_LOGGERPTR_GLOBAL(logger_, "TransportManager")
-
-BluetoothSocketConnection::BluetoothSocketConnection(
- const DeviceUID& device_uid,
- const ApplicationHandle& app_handle,
- TransportAdapterController* controller)
- : ThreadedSocketConnection(device_uid, app_handle, controller) {}
-
-BluetoothSocketConnection::~BluetoothSocketConnection() {}
-
-bool BluetoothSocketConnection::Establish(ConnectError** error) {
- LOG4CXX_AUTO_TRACE(logger_);
- LOG4CXX_DEBUG(logger_, "error: " << error);
- DeviceSptr device = controller()->FindDevice(device_handle());
-
- BluetoothDevice* bluetooth_device =
- static_cast<BluetoothDevice*>(device.get());
-
- uint8_t rfcomm_channel;
- if (!bluetooth_device->GetRfcommChannel(application_handle(),
- &rfcomm_channel)) {
- LOG4CXX_DEBUG(logger_,
- "Application " << application_handle() << " not found");
- *error = new ConnectError();
- LOG4CXX_TRACE(logger_, "exit with FALSE");
- return false;
- }
-
- struct sockaddr_rc remoteSocketAddress = {0};
- remoteSocketAddress.rc_family = AF_BLUETOOTH;
- memcpy(&remoteSocketAddress.rc_bdaddr,
- &bluetooth_device->address(),
- sizeof(bdaddr_t));
- remoteSocketAddress.rc_channel = rfcomm_channel;
-
- int rfcomm_socket;
-
- int attempts = 4;
- int connect_status = 0;
- LOG4CXX_DEBUG(logger_, "start rfcomm Connect attempts");
- do {
- rfcomm_socket = socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM);
- if (-1 == rfcomm_socket) {
- LOG4CXX_ERROR_WITH_ERRNO(logger_,
- "Failed to create RFCOMM socket for device "
- << device_handle());
- *error = new ConnectError();
- LOG4CXX_TRACE(logger_, "exit with FALSE");
- return false;
- }
- connect_status = ::connect(rfcomm_socket,
- (struct sockaddr*)&remoteSocketAddress,
- sizeof(remoteSocketAddress));
- if (0 == connect_status) {
- LOG4CXX_DEBUG(logger_, "rfcomm Connect ok");
- break;
- }
- if (errno != 111 && errno != 104) {
- LOG4CXX_DEBUG(logger_, "rfcomm Connect errno " << errno);
- break;
- }
- if (errno) {
- LOG4CXX_DEBUG(logger_, "rfcomm Connect errno " << errno);
- close(rfcomm_socket);
- }
- sleep(2);
- } while (--attempts > 0);
- LOG4CXX_INFO(logger_, "rfcomm Connect attempts finished");
- if (0 != connect_status) {
- LOG4CXX_DEBUG(
- logger_,
- "Failed to Connect to remote device "
- << BluetoothDevice::GetUniqueDeviceId(remoteSocketAddress.rc_bdaddr)
- << " for session " << this);
- *error = new ConnectError();
- LOG4CXX_TRACE(logger_, "exit with FALSE");
- return false;
- }
-
- set_socket(rfcomm_socket);
- LOG4CXX_TRACE(logger_, "exit with TRUE");
- return true;
-}
-
-} // namespace transport_adapter
-} // namespace transport_manager