blob: 86057d8ad87d0a472fd0a3aa4102a02bf9b08f82 (
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
79
80
81
82
83
84
85
86
87
|
// 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.
#ifndef CONTENT_CHILD_BLUETOOTH_BLUETOOTH_DISPATCHER_H_
#define CONTENT_CHILD_BLUETOOTH_BLUETOOTH_DISPATCHER_H_
#include "base/id_map.h"
#include "base/memory/ref_counted.h"
#include "content/child/worker_task_runner.h"
#include "content/common/bluetooth/bluetooth_device.h"
#include "content/common/bluetooth/bluetooth_error.h"
#include "third_party/WebKit/public/platform/modules/bluetooth/WebBluetooth.h"
namespace base {
class MessageLoop;
class TaskRunner;
}
namespace IPC {
class Message;
}
namespace content {
class ThreadSafeSender;
// Dispatcher for child process threads which communicates to the browser's
// BluetoothDispatcherHost.
//
// Instances are created for each thread as necessary by WebBluetoothImpl.
//
// Incoming IPC messages are received by the BluetoothMessageFilter and
// directed to the thread specific instance of this class.
// Outgoing messages come from WebBluetoothImpl.
class BluetoothDispatcher : public WorkerTaskRunner::Observer {
public:
explicit BluetoothDispatcher(ThreadSafeSender* sender);
~BluetoothDispatcher() override;
// Gets or Creates a BluetoothDispatcher for the current thread.
// |thread_safe_sender| is required when constructing a BluetoothDispatcher.
static BluetoothDispatcher* GetOrCreateThreadSpecificInstance(
ThreadSafeSender* thread_safe_sender);
// IPC Send and Receiving interface, see IPC::Sender and IPC::Listener.
bool Send(IPC::Message* msg);
void OnMessageReceived(const IPC::Message& msg);
// Corresponding to WebBluetoothImpl methods.
void requestDevice(blink::WebBluetoothRequestDeviceCallbacks* callbacks);
void connectGATT(const blink::WebString& device_instance_id,
blink::WebBluetoothConnectGATTCallbacks* callbacks);
void SetBluetoothMockDataSetForTesting(const std::string& name);
// WorkerTaskRunner::Observer implementation.
void OnWorkerRunLoopStopped() override;
private:
// IPC Handlers, see definitions in bluetooth_messages.h.
void OnRequestDeviceSuccess(int thread_id,
int request_id,
const BluetoothDevice& device);
void OnRequestDeviceError(int thread_id,
int request_id,
BluetoothError error_type);
void OnConnectGATTSuccess(int thread_id,
int request_id,
const std::string& message);
scoped_refptr<ThreadSafeSender> thread_safe_sender_;
// Tracks device requests sent to browser to match replies with callbacks.
// Owns callback objects.
IDMap<blink::WebBluetoothRequestDeviceCallbacks, IDMapOwnPointer>
pending_requests_;
// Tracks requests to connect to a device.
// Owns callback objects.
IDMap<blink::WebBluetoothConnectGATTCallbacks, IDMapOwnPointer>
pending_connect_requests_;
DISALLOW_COPY_AND_ASSIGN(BluetoothDispatcher);
};
} // namespace content
#endif // CONTENT_CHILD_BLUETOOTH_BLUETOOTH_DISPATCHER_H_
|