blob: 806eceb9f3ff99854ca7c83e3e1b081c16bfedf4 (
plain)
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
|
// Copyright 2013 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.
#ifndef DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_MAC_H_
#define DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_MAC_H_
#include <string>
#include "base/memory/ref_counted.h"
#include "device/bluetooth/bluetooth_socket.h"
#ifdef __OBJC__
@class BluetoothRFCOMMChannelDelegate;
@class IOBluetoothRFCOMMChannel;
@class IOBluetoothSDPServiceRecord;
#else
class BluetoothRFCOMMChannelDelegate;
class IOBluetoothRFCOMMChannel;
class IOBluetoothSDPServiceRecord;
#endif
namespace net {
class GrowableIOBuffer;
class IOBuffer;
} // namespace net
namespace device {
class BluetoothServiceRecord;
// This class is an implementation of BluetoothSocket class for OSX platform.
class BluetoothSocketMac : public BluetoothSocket {
public:
// TODO(youngki): This method is deprecated; remove this method when
// BluetoothServiceRecord is removed.
static scoped_refptr<BluetoothSocket> CreateBluetoothSocket(
const BluetoothServiceRecord& service_record);
static scoped_refptr<BluetoothSocket> CreateBluetoothSocket(
IOBluetoothSDPServiceRecord* record);
// Overriden from BluetoothSocket:
virtual void Close() OVERRIDE;
virtual void Disconnect(const base::Closure& callback) OVERRIDE;
virtual void Receive(int count,
const ReceiveCompletionCallback& success_callback,
const ReceiveErrorCompletionCallback& error_callback)
OVERRIDE;
virtual void Send(scoped_refptr<net::IOBuffer> buffer,
int buffer_size,
const SendCompletionCallback& success_callback,
const ErrorCompletionCallback& error_callback) OVERRIDE;
// called by BluetoothRFCOMMChannelDelegate.
void OnDataReceived(IOBluetoothRFCOMMChannel* rfcomm_channel,
void* data,
size_t length);
protected:
virtual ~BluetoothSocketMac();
private:
explicit BluetoothSocketMac(IOBluetoothRFCOMMChannel* rfcomm_channel);
void ResetIncomingDataBuffer();
IOBluetoothRFCOMMChannel* rfcomm_channel_;
BluetoothRFCOMMChannelDelegate* delegate_;
scoped_refptr<net::GrowableIOBuffer> incoming_data_buffer_;
std::string error_message_;
DISALLOW_COPY_AND_ASSIGN(BluetoothSocketMac);
};
} // namespace device
#endif // DEVICE_BLUETOOTH_BLUETOOTH_SOCKET_MAC_H_
|