OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "device/bluetooth/bluetooth_device_android.h" | 5 #include "device/bluetooth/bluetooth_device_android.h" |
6 | 6 |
7 #include "base/android/context_utils.h" | 7 #include "base/android/context_utils.h" |
8 #include "base/android/jni_android.h" | 8 #include "base/android/jni_android.h" |
9 #include "base/android/jni_array.h" | 9 #include "base/android/jni_array.h" |
10 #include "base/android/jni_string.h" | 10 #include "base/android/jni_string.h" |
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 | 203 |
204 void BluetoothDeviceAndroid::OnConnectionStateChange( | 204 void BluetoothDeviceAndroid::OnConnectionStateChange( |
205 JNIEnv* env, | 205 JNIEnv* env, |
206 const JavaParamRef<jobject>& jcaller, | 206 const JavaParamRef<jobject>& jcaller, |
207 int32_t status, | 207 int32_t status, |
208 bool connected) { | 208 bool connected) { |
209 gatt_connected_ = connected; | 209 gatt_connected_ = connected; |
210 if (gatt_connected_) { | 210 if (gatt_connected_) { |
211 DidConnectGatt(); | 211 DidConnectGatt(); |
212 } else { | 212 } else { |
213 gatt_services_.clear(); | |
214 SetGattServicesDiscoveryComplete(false); | |
215 | |
216 switch (status) { // Constants are from android.bluetooth.BluetoothGatt. | 213 switch (status) { // Constants are from android.bluetooth.BluetoothGatt. |
217 case 0x0000008f: // GATT_CONNECTION_CONGESTED | 214 case 0x0000008f: // GATT_CONNECTION_CONGESTED |
218 return DidFailToConnectGatt(ERROR_CONNECTION_CONGESTED); | 215 return DidFailToConnectGatt(ERROR_CONNECTION_CONGESTED); |
219 case 0x00000101: // GATT_FAILURE | 216 case 0x00000101: // GATT_FAILURE |
220 return DidFailToConnectGatt(ERROR_FAILED); | 217 return DidFailToConnectGatt(ERROR_FAILED); |
221 case 0x00000005: // GATT_INSUFFICIENT_AUTHENTICATION | 218 case 0x00000005: // GATT_INSUFFICIENT_AUTHENTICATION |
222 return DidFailToConnectGatt(ERROR_AUTH_FAILED); | 219 return DidFailToConnectGatt(ERROR_AUTH_FAILED); |
223 case 0x0000000f: // GATT_INSUFFICIENT_ENCRYPTION | 220 case 0x0000000f: // GATT_INSUFFICIENT_ENCRYPTION |
224 return DidFailToConnectGatt(ERROR_INSUFFICIENT_ENCRYPTION); | 221 return DidFailToConnectGatt(ERROR_INSUFFICIENT_ENCRYPTION); |
225 case 0x0000000d: // GATT_INVALID_ATTRIBUTE_LENGTH | 222 case 0x0000000d: // GATT_INVALID_ATTRIBUTE_LENGTH |
(...skipping 11 matching lines...) Expand all Loading... |
237 default: | 234 default: |
238 VLOG(1) << "Unhandled status: " << status; | 235 VLOG(1) << "Unhandled status: " << status; |
239 return DidFailToConnectGatt(ERROR_UNKNOWN); | 236 return DidFailToConnectGatt(ERROR_UNKNOWN); |
240 } | 237 } |
241 } | 238 } |
242 } | 239 } |
243 | 240 |
244 void BluetoothDeviceAndroid::OnGattServicesDiscovered( | 241 void BluetoothDeviceAndroid::OnGattServicesDiscovered( |
245 JNIEnv* env, | 242 JNIEnv* env, |
246 const JavaParamRef<jobject>& jcaller) { | 243 const JavaParamRef<jobject>& jcaller) { |
247 SetGattServicesDiscoveryComplete(true); | |
248 FOR_EACH_OBSERVER(BluetoothAdapter::Observer, GetAdapter()->GetObservers(), | 244 FOR_EACH_OBSERVER(BluetoothAdapter::Observer, GetAdapter()->GetObservers(), |
249 GattServicesDiscovered(GetAdapter(), this)); | 245 GattServicesDiscovered(GetAdapter(), this)); |
250 } | 246 } |
251 | 247 |
252 void BluetoothDeviceAndroid::CreateGattRemoteService( | 248 void BluetoothDeviceAndroid::CreateGattRemoteService( |
253 JNIEnv* env, | 249 JNIEnv* env, |
254 const JavaParamRef<jobject>& caller, | 250 const JavaParamRef<jobject>& caller, |
255 const JavaParamRef<jstring>& instance_id, | 251 const JavaParamRef<jstring>& instance_id, |
256 const JavaParamRef<jobject>& | 252 const JavaParamRef<jobject>& |
257 bluetooth_gatt_service_wrapper) { // BluetoothGattServiceWrapper | 253 bluetooth_gatt_service_wrapper) { // BluetoothGattServiceWrapper |
(...skipping 26 matching lines...) Expand all Loading... |
284 AttachCurrentThread(), j_device_.obj(), | 280 AttachCurrentThread(), j_device_.obj(), |
285 base::android::GetApplicationContext()); | 281 base::android::GetApplicationContext()); |
286 } | 282 } |
287 | 283 |
288 void BluetoothDeviceAndroid::DisconnectGatt() { | 284 void BluetoothDeviceAndroid::DisconnectGatt() { |
289 Java_ChromeBluetoothDevice_disconnectGatt(AttachCurrentThread(), | 285 Java_ChromeBluetoothDevice_disconnectGatt(AttachCurrentThread(), |
290 j_device_.obj()); | 286 j_device_.obj()); |
291 } | 287 } |
292 | 288 |
293 } // namespace device | 289 } // namespace device |
OLD | NEW |