// // Copyright (C) 2015 Google, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at: // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // #include "service/ipc/binder/bluetooth_gatt_client_binder_server.h" #include #include "service/adapter.h" namespace ipc { namespace binder { namespace { const int kInvalidInstanceId = -1; } // namespace BluetoothGattClientBinderServer::BluetoothGattClientBinderServer( bluetooth::Adapter* adapter) : adapter_(adapter) { CHECK(adapter_); } bool BluetoothGattClientBinderServer::RegisterClient( const android::sp& callback) { VLOG(2) << __func__; bluetooth::GattClientFactory* gatt_client_factory = adapter_->GetGattClientFactory(); return RegisterInstanceBase(callback, gatt_client_factory); } void BluetoothGattClientBinderServer::UnregisterClient(int client_id) { VLOG(2) << __func__; UnregisterInstanceBase(client_id); } void BluetoothGattClientBinderServer::UnregisterAll() { VLOG(2) << __func__; UnregisterAllBase(); } android::sp BluetoothGattClientBinderServer::GetGattClientCallback(int client_id) { auto cb = GetCallback(client_id); return android::sp( static_cast(cb.get())); } std::shared_ptr BluetoothGattClientBinderServer::GetGattClient(int client_id) { return std::static_pointer_cast( GetInstance(client_id)); } void BluetoothGattClientBinderServer::OnRegisterInstanceImpl( bluetooth::BLEStatus status, android::sp callback, bluetooth::BluetoothInstance* instance) { VLOG(1) << __func__ << " client ID: " << instance->GetInstanceId() << " status: " << status; android::sp cb( static_cast(callback.get())); cb->OnClientRegistered( status, (status == bluetooth::BLE_STATUS_SUCCESS) ? instance->GetInstanceId() : kInvalidInstanceId); } } // namespace binder } // namespace ipc