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
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "device/bluetooth/bluetooth_rfcomm_channel_mac.h"
#include <memory>
#include "base/check_op.h"
#include "device/bluetooth/bluetooth_classic_device_mac.h"
#include "device/bluetooth/bluetooth_socket_mac.h"
// A simple delegate class for an open RFCOMM channel that forwards methods to
// its wrapped |channel_|.
@interface BluetoothRfcommChannelDelegate
: NSObject <IOBluetoothRFCOMMChannelDelegate> {
@private
device::BluetoothRfcommChannelMac* _channel; // weak
}
- (id)initWithChannel:(device::BluetoothRfcommChannelMac*)channel;
@end
@implementation BluetoothRfcommChannelDelegate
- (id)initWithChannel:(device::BluetoothRfcommChannelMac*)channel {
if ((self = [super init]))
_channel = channel;
return self;
}
- (void)rfcommChannelOpenComplete:(IOBluetoothRFCOMMChannel*)rfcommChannel
status:(IOReturn)error {
_channel->OnChannelOpenComplete(rfcommChannel, error);
}
- (void)rfcommChannelWriteComplete:(IOBluetoothRFCOMMChannel*)rfcommChannel
refcon:(void*)refcon
status:(IOReturn)error {
_channel->OnChannelWriteComplete(rfcommChannel, refcon, error);
}
- (void)rfcommChannelData:(IOBluetoothRFCOMMChannel*)rfcommChannel
data:(void*)dataPointer
length:(size_t)dataLength {
_channel->OnChannelDataReceived(rfcommChannel, dataPointer, dataLength);
}
- (void)rfcommChannelClosed:(IOBluetoothRFCOMMChannel*)rfcommChannel {
_channel->OnChannelClosed(rfcommChannel);
}
@end
namespace device {
BluetoothRfcommChannelMac::BluetoothRfcommChannelMac(
BluetoothSocketMac* socket,
IOBluetoothRFCOMMChannel* channel)
: channel_(channel),
delegate_(nil) {
SetSocket(socket);
}
BluetoothRfcommChannelMac::~BluetoothRfcommChannelMac() {
[channel_ setDelegate:nil];
[channel_ closeChannel];
}
// static
std::unique_ptr<BluetoothRfcommChannelMac> BluetoothRfcommChannelMac::OpenAsync(
BluetoothSocketMac* socket,
IOBluetoothDevice* device,
BluetoothRFCOMMChannelID channel_id,
IOReturn* status) {
DCHECK(socket);
std::unique_ptr<BluetoothRfcommChannelMac> channel(
new BluetoothRfcommChannelMac(socket, nil));
// Retain the delegate, because IOBluetoothDevice's
// |-openRFCOMMChannelAsync:withChannelID:delegate:| assumes that it can take
// ownership of the delegate without calling |-retain| on it...
DCHECK(channel->delegate_);
[channel->delegate_ retain];
IOBluetoothRFCOMMChannel* rfcomm_channel;
*status = [device openRFCOMMChannelAsync:&rfcomm_channel
withChannelID:channel_id
delegate:channel->delegate_];
if (*status == kIOReturnSuccess) {
// Note: No need to retain the |rfcomm_channel| -- the returned channel is
// already retained.
channel->channel_.reset(rfcomm_channel);
} else {
channel.reset();
}
return channel;
}
void BluetoothRfcommChannelMac::SetSocket(BluetoothSocketMac* socket) {
BluetoothChannelMac::SetSocket(socket);
if (!this->socket())
return;
// Now that the socket is set, it's safe to associate a delegate, which can
// call back to the socket.
DCHECK(!delegate_);
delegate_.reset(
[[BluetoothRfcommChannelDelegate alloc] initWithChannel:this]);
[channel_ setDelegate:delegate_];
}
IOBluetoothDevice* BluetoothRfcommChannelMac::GetDevice() {
return [channel_ getDevice];
}
uint16_t BluetoothRfcommChannelMac::GetOutgoingMTU() {
return [channel_ getMTU];
}
IOReturn BluetoothRfcommChannelMac::WriteAsync(void* data,
uint16_t length,
void* refcon) {
DCHECK_LE(length, GetOutgoingMTU());
return [channel_ writeAsync:data length:length refcon:refcon];
}
void BluetoothRfcommChannelMac::OnChannelOpenComplete(
IOBluetoothRFCOMMChannel* channel,
IOReturn status) {
if (channel_) {
DCHECK_EQ(channel_, channel);
} else {
// The (potentially) asynchronous connection occurred synchronously.
// Should only be reachable from OpenAsync().
DCHECK_EQ(status, kIOReturnSuccess);
}
socket()->OnChannelOpenComplete(
BluetoothClassicDeviceMac::GetDeviceAddress([channel getDevice]), status);
}
void BluetoothRfcommChannelMac::OnChannelClosed(
IOBluetoothRFCOMMChannel* channel) {
DCHECK_EQ(channel_, channel);
socket()->OnChannelClosed();
}
void BluetoothRfcommChannelMac::OnChannelDataReceived(
IOBluetoothRFCOMMChannel* channel,
void* data,
size_t length) {
DCHECK_EQ(channel_, channel);
socket()->OnChannelDataReceived(data, length);
}
void BluetoothRfcommChannelMac::OnChannelWriteComplete(
IOBluetoothRFCOMMChannel* channel,
void* refcon,
IOReturn status) {
// Note: We use "CHECK" below to ensure we never run into unforeseen
// occurrences of asynchronous callbacks, which could lead to data
// corruption.
CHECK_EQ(channel_, channel);
socket()->OnChannelWriteComplete(refcon, status);
}
} // namespace device
|