#ifndef DEVICE_BLUETOOTH_FLOSS_BLUETOOTH_GATT_SERVICE_FLOSS_H_
#define DEVICE_BLUETOOTH_FLOSS_BLUETOOTH_GATT_SERVICE_FLOSS_H_
#include <map>
#include "device/bluetooth/bluetooth_gatt_service.h"
#include "device/bluetooth/floss/floss_gatt_manager_client.h"
namespace floss {
const base::TimeDelta kResponseTimeout = base::Seconds(1);
struct GattRequest {
std::string address;
int32_t request_id;
int32_t offset;
};
class BluetoothAdapterFloss;
class DEVICE_BLUETOOTH_EXPORT BluetoothGattServiceFloss
: public device::BluetoothGattService,
public FlossGattClientObserver,
public FlossGattServerObserver {
public:
BluetoothGattServiceFloss(const BluetoothGattServiceFloss&) = delete;
BluetoothGattServiceFloss& operator=(const BluetoothGattServiceFloss&) =
delete;
BluetoothAdapterFloss* GetAdapter() const;
static device::BluetoothGattService::GattErrorCode GattStatusToServiceError(
const GattStatus status);
static GattStatus GattServiceErrorToStatus(
device::BluetoothGattService::GattErrorCode error_code);
void AddObserverForHandle(int32_t handle, FlossGattClientObserver* observer);
void AddServerObserverForHandle(int32_t handle,
FlossGattServerObserver* observer);
void RemoveObserverForHandle(int32_t handle);
void RemoveServerObserverForHandle(int32_t handle);
void GattCharacteristicRead(std::string address,
GattStatus status,
int32_t handle,
const std::vector<uint8_t>& data) override;
void GattCharacteristicWrite(std::string address,
GattStatus status,
int32_t handle) override;
void GattDescriptorRead(std::string address,
GattStatus status,
int32_t handle,
const std::vector<uint8_t>& data) override;
void GattDescriptorWrite(std::string address,
GattStatus status,
int32_t handle) override;
void GattNotify(std::string address,
int32_t handle,
const std::vector<uint8_t>& data) override;
void GattServerCharacteristicReadRequest(std::string address,
int32_t request_id,
int32_t offset,
bool is_long,
int32_t handle) override;
void GattServerDescriptorReadRequest(std::string address,
int32_t request_id,
int32_t offset,
bool is_long,
int32_t handle) override;
void GattServerCharacteristicWriteRequest(
std::string address,
int32_t request_id,
int32_t offset,
int32_t length,
bool is_prepared_write,
bool needs_response,
int32_t handle,
std::vector<uint8_t> value) override;
void GattServerDescriptorWriteRequest(std::string address,
int32_t request_id,
int32_t offset,
int32_t length,
bool is_prepared_write,
bool needs_response,
int32_t handle,
std::vector<uint8_t> value) override;
void GattServerExecuteWrite(std::string address,
int32_t request_id,
bool execute_write) override;
protected:
explicit BluetoothGattServiceFloss(BluetoothAdapterFloss* adapter);
~BluetoothGattServiceFloss() override;
std::map<int32_t, raw_ptr<FlossGattClientObserver>> observer_by_handle_;
std::map<int32_t, raw_ptr<FlossGattServerObserver>>
server_observer_by_handle_;
private:
raw_ptr<BluetoothAdapterFloss> adapter_;
};
}
#endif