blob: 0ce61196d7e3a8a4e882c0fd1d0f7998e4f11514 [file] [log] [blame]
Arman Uguray2117e522015-08-14 17:23:47 -07001//
2// Copyright (C) 2015 Google, Inc.
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at:
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17#include "service/hal/fake_bluetooth_interface.h"
18
19namespace bluetooth {
20namespace hal {
21
22namespace {
23
24FakeBluetoothInterface::Manager g_hal_manager;
25
Ajay Panicker7b266be2016-03-17 17:09:24 -070026int FakeHALEnable(bool start_restricted) {
Arman Uguray2117e522015-08-14 17:23:47 -070027 return g_hal_manager.enable_succeed ? BT_STATUS_SUCCESS : BT_STATUS_FAIL;
28}
29
30int FakeHALDisable() {
31 return g_hal_manager.disable_succeed ? BT_STATUS_SUCCESS : BT_STATUS_FAIL;
32}
33
Myles Watson911d1ae2016-11-28 16:44:40 -080034int FakeHALGetAdapterProperties() { return BT_STATUS_SUCCESS; }
Arman Uguray2117e522015-08-14 17:23:47 -070035
36int FakeHALSetAdapterProperty(const bt_property_t* /* property */) {
37 LOG(INFO) << __func__;
Myles Watson911d1ae2016-11-28 16:44:40 -080038 return (g_hal_manager.set_property_succeed ? BT_STATUS_SUCCESS
39 : BT_STATUS_FAIL);
Arman Uguray2117e522015-08-14 17:23:47 -070040}
41
42bt_interface_t fake_bt_iface = {
Myles Watson911d1ae2016-11-28 16:44:40 -080043 sizeof(bt_interface_t),
44 nullptr, /* init */
45 FakeHALEnable,
46 FakeHALDisable,
47 nullptr, /* cleanup */
48 FakeHALGetAdapterProperties,
49 nullptr, /* get_adapter_property */
50 FakeHALSetAdapterProperty,
51 nullptr, /* get_remote_device_properties */
52 nullptr, /* get_remote_device_property */
53 nullptr, /* set_remote_device_property */
54 nullptr, /* get_remote_service_record */
55 nullptr, /* get_remote_services */
56 nullptr, /* start_discovery */
57 nullptr, /* cancel_discovery */
58 nullptr, /* create_bond */
59 nullptr, /* create_bond_out_of_band */
60 nullptr, /* remove_bond */
61 nullptr, /* cancel_bond */
62 nullptr, /* get_connection_state */
63 nullptr, /* pin_reply */
64 nullptr, /* ssp_reply */
65 nullptr, /* get_profile_interface */
66 nullptr, /* dut_mode_configure */
67 nullptr, /* dut_more_send */
68 nullptr, /* le_test_mode */
Myles Watson911d1ae2016-11-28 16:44:40 -080069 nullptr, /* set_os_callouts */
70 nullptr, /* read_energy_info */
71 nullptr, /* dump */
72 nullptr, /* config clear */
73 nullptr, /* interop_database_clear */
74 nullptr /* interop_database_add */
Arman Uguray2117e522015-08-14 17:23:47 -070075};
76
77} // namespace
78
79// static
80FakeBluetoothInterface::Manager* FakeBluetoothInterface::GetManager() {
81 return &g_hal_manager;
82}
83
84FakeBluetoothInterface::Manager::Manager()
85 : enable_succeed(false),
86 disable_succeed(false),
Myles Watson911d1ae2016-11-28 16:44:40 -080087 set_property_succeed(false) {}
Arman Uguray2117e522015-08-14 17:23:47 -070088
89void FakeBluetoothInterface::NotifyAdapterStateChanged(bt_state_t state) {
90 FOR_EACH_OBSERVER(Observer, observers_, AdapterStateChangedCallback(state));
91}
92
Arman Uguray03b1f0f2015-08-17 17:23:42 -070093void FakeBluetoothInterface::NotifyAdapterPropertiesChanged(
Myles Watson911d1ae2016-11-28 16:44:40 -080094 int num_properties, bt_property_t* properties) {
Arman Uguray03b1f0f2015-08-17 17:23:42 -070095 FOR_EACH_OBSERVER(
96 Observer, observers_,
97 AdapterPropertiesCallback(BT_STATUS_SUCCESS, num_properties, properties));
98}
99
100void FakeBluetoothInterface::NotifyAdapterNamePropertyChanged(
101 const std::string& name) {
102 bt_bdname_t hal_name;
Myles Watson911d1ae2016-11-28 16:44:40 -0800103 strncpy(reinterpret_cast<char*>(hal_name.name), name.c_str(),
104 std::min(sizeof(hal_name) - 1, name.length()));
Arman Uguray03b1f0f2015-08-17 17:23:42 -0700105 reinterpret_cast<char*>(hal_name.name)[name.length()] = '\0';
106
107 bt_property_t property;
108 property.len = sizeof(hal_name);
109 property.val = &hal_name;
110 property.type = BT_PROPERTY_BDNAME;
111
112 NotifyAdapterPropertiesChanged(1, &property);
113}
114
115void FakeBluetoothInterface::NotifyAdapterAddressPropertyChanged(
Jakub Pawlowskia484a882017-06-24 17:30:18 -0700116 const RawAddress* address) {
Arman Uguray03b1f0f2015-08-17 17:23:42 -0700117 bt_property_t property;
Jakub Pawlowskia484a882017-06-24 17:30:18 -0700118 property.len = sizeof(RawAddress);
Arman Uguray03b1f0f2015-08-17 17:23:42 -0700119 property.val = (void*)address;
120 property.type = BT_PROPERTY_BDADDR;
121
122 NotifyAdapterPropertiesChanged(1, &property);
123}
124
Arman Uguray10b54c42015-08-21 14:59:57 -0700125void FakeBluetoothInterface::NotifyAdapterLocalLeFeaturesPropertyChanged(
Myles Watson911d1ae2016-11-28 16:44:40 -0800126 const bt_local_le_features_t* features) {
Arman Uguray10b54c42015-08-21 14:59:57 -0700127 bt_property_t property;
128 property.len = sizeof(*features);
129 property.val = (void*)features;
130 property.type = BT_PROPERTY_LOCAL_LE_FEATURES;
131
132 NotifyAdapterPropertiesChanged(1, &property);
133}
134
Arman Uguray0f29c002015-11-13 15:05:48 -0800135void FakeBluetoothInterface::NotifyAclStateChangedCallback(
Jakub Pawlowskia484a882017-06-24 17:30:18 -0700136 bt_status_t status, const RawAddress& remote_bdaddr, bt_acl_state_t state) {
Myles Watson911d1ae2016-11-28 16:44:40 -0800137 FOR_EACH_OBSERVER(Observer, observers_,
138 AclStateChangedCallback(status, remote_bdaddr, state));
Arman Uguray0f29c002015-11-13 15:05:48 -0800139}
140
Arman Uguray2117e522015-08-14 17:23:47 -0700141void FakeBluetoothInterface::AddObserver(Observer* observer) {
142 observers_.AddObserver(observer);
143}
144
145void FakeBluetoothInterface::RemoveObserver(Observer* observer) {
146 observers_.RemoveObserver(observer);
147}
148
149const bt_interface_t* FakeBluetoothInterface::GetHALInterface() const {
150 return &fake_bt_iface;
151}
152
Pavlin Radoslavova3292052017-04-13 14:33:30 -0700153bt_callbacks_t* FakeBluetoothInterface::GetHALCallbacks() const {
154 return nullptr;
155}
156
Arman Uguray2117e522015-08-14 17:23:47 -0700157const bluetooth_device_t* FakeBluetoothInterface::GetHALAdapter() const {
158 // TODO(armansito): Do something meaningful here to simulate test behavior.
159 return nullptr;
160}
161
162} // namespace hal
163} // namespace bluetooth