blob: 44e8de0d1372f28be91d3bb399cc8191783fd41b [file] [log] [blame]
//
// 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.
//
#pragma once
#include <atomic>
#include <functional>
#include <map>
#include <mutex>
#include <base/macros.h>
#include "service/bluetooth_instance.h"
#include "service/common/bluetooth/advertise_data.h"
#include "service/common/bluetooth/advertise_settings.h"
#include "service/common/bluetooth/low_energy_constants.h"
#include "service/common/bluetooth/uuid.h"
#include "service/hal/bluetooth_gatt_interface.h"
namespace bluetooth {
class Adapter;
// A LowEnergyClient represents an application's handle to perform various
// Bluetooth Low Energy GAP operations. Instances cannot be created directly and
// should be obtained through the factory.
class LowEnergyClient : private hal::BluetoothGattInterface::ClientObserver,
public BluetoothInstance {
public:
// The destructor automatically unregisters this client instance from the
// stack.
~LowEnergyClient() override;
// Callback type used to return the result of asynchronous operations below.
using StatusCallback = std::function<void(BLEStatus)>;
// Starts advertising based on the given advertising and scan response
// data and the provided |settings|. Reports the result of the operation in
// |callback|.
bool StartAdvertising(const AdvertiseSettings& settings,
const AdvertiseData& advertise_data,
const AdvertiseData& scan_response,
const StatusCallback& callback);
// Stops advertising if it was already started. Reports the result of the
// operation in |callback|.
bool StopAdvertising(const StatusCallback& callback);
// Returns true if advertising has been started.
bool IsAdvertisingStarted() const;
// Returns the state of pending advertising operations.
bool IsStartingAdvertising() const;
bool IsStoppingAdvertising() const;
// Returns the current advertising settings.
const AdvertiseSettings& advertise_settings() const {
return advertise_settings_;
}
// BluetoothClientInstace overrides:
const UUID& GetAppIdentifier() const override;
int GetInstanceId() const override;
private:
friend class LowEnergyClientFactory;
// Constructor shouldn't be called directly as instances are meant to be
// obtained from the factory.
LowEnergyClient(Adapter& adapter, const UUID& uuid, int client_id);
// BluetoothGattInterface::ClientObserver overrides:
void MultiAdvEnableCallback(
hal::BluetoothGattInterface* gatt_iface,
int client_id, int status) override;
void MultiAdvDataCallback(
hal::BluetoothGattInterface* gatt_iface,
int client_id, int status) override;
void MultiAdvDisableCallback(
hal::BluetoothGattInterface* gatt_iface,
int client_id, int status) override;
// Helper method called from SetAdvertiseData/SetScanResponse.
bt_status_t SetAdvertiseData(
hal::BluetoothGattInterface* gatt_iface,
const AdvertiseData& data,
bool set_scan_rsp);
// Handles deferred advertise/scan-response data updates. We set the data if
// there's data to be set, otherwise we either defer it if advertisements
// aren't enabled or do nothing.
void HandleDeferredAdvertiseData(hal::BluetoothGattInterface* gatt_iface);
// Calls and clears the pending callbacks.
void InvokeAndClearStartCallback(BLEStatus status);
void InvokeAndClearStopCallback(BLEStatus status);
// Raw pointer to the Bluetooth Adapter.
Adapter& adapter_;
// See getters above for documentation.
UUID app_identifier_;
int client_id_;
// Protects advertising-related members below.
std::mutex adv_fields_lock_;
// The advertising and scan response data fields that will be sent to the
// controller.
AdvertiseData adv_data_;
AdvertiseData scan_response_;
std::atomic_bool adv_data_needs_update_;
std::atomic_bool scan_rsp_needs_update_;
// Latest advertising settings.
AdvertiseSettings advertise_settings_;
// Whether or not there is a pending call to update advertising or scan
// response data.
std::atomic_bool is_setting_adv_data_;
std::atomic_bool adv_started_;
std::unique_ptr<StatusCallback> adv_start_callback_;
std::unique_ptr<StatusCallback> adv_stop_callback_;
DISALLOW_COPY_AND_ASSIGN(LowEnergyClient);
};
// LowEnergyClientFactory is used to register and obtain a per-application
// LowEnergyClient instance. Users should call RegisterInstance to obtain their
// own unique LowEnergyClient instance that has been registered with the
// Bluetooth stack.
class LowEnergyClientFactory
: private hal::BluetoothGattInterface::ClientObserver,
public BluetoothInstanceFactory {
public:
// Don't construct/destruct directly except in tests. Instead, obtain a handle
// from an Adapter instance.
LowEnergyClientFactory(Adapter& adapter);
~LowEnergyClientFactory() override;
// BluetoothInstanceFactory override:
bool RegisterInstance(const UUID& uuid,
const RegisterCallback& callback) override;
private:
friend class LowEnergyClient;
// BluetoothGattInterface::ClientObserver overrides:
void RegisterClientCallback(
hal::BluetoothGattInterface* gatt_iface,
int status, int client_id,
const bt_uuid_t& app_uuid) override;
// Map of pending calls to register.
std::mutex pending_calls_lock_;
std::map<UUID, RegisterCallback> pending_calls_;
// Raw pointer to the Adapter that owns this factory.
Adapter& adapter_;
DISALLOW_COPY_AND_ASSIGN(LowEnergyClientFactory);
};
} // namespace bluetooth