mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
Keep all discovered and explicitly created BLE peripherals in the same collection. The peripherals are removed when they haven't been used for a while. PiperOrigin-RevId: 538349622
55 lines
1.9 KiB
C++
55 lines
1.9 KiB
C++
// Copyright 2023 Google LLC
|
|
//
|
|
// 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
|
|
//
|
|
// https://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.
|
|
|
|
#ifndef THIRD_PARTY_NEARBY_INTERNAL_PLATFORM_IMPLEMENTATION_WINDOWS_BLE_V2_PERIPHERAL_H_
|
|
#define THIRD_PARTY_NEARBY_INTERNAL_PLATFORM_IMPLEMENTATION_WINDOWS_BLE_V2_PERIPHERAL_H_
|
|
|
|
#include <string>
|
|
|
|
#include "absl/strings/string_view.h"
|
|
#include "internal/platform/implementation/ble_v2.h"
|
|
|
|
namespace nearby {
|
|
namespace windows {
|
|
|
|
// BLE peripheral implementation for BLE version 2. Must contain enough data
|
|
// about a particular BLE device to connect to its GATT server.
|
|
class BleV2Peripheral : public api::ble_v2::BlePeripheral {
|
|
public:
|
|
using UniqueId = api::ble_v2::BlePeripheral::UniqueId;
|
|
explicit BleV2Peripheral(absl::string_view address);
|
|
~BleV2Peripheral() override = default;
|
|
|
|
// Returns the MAC address of the peripheral. The format is in
|
|
// "00:B0:D0:63:C2:26".
|
|
std::string GetAddress() const override { return address_; }
|
|
|
|
UniqueId GetUniqueId() const override { return unique_id_; }
|
|
// Sets the MAC address of the peripheral. The address format must be in
|
|
// pattern of "00:B0:D0:63:C2:26".
|
|
bool SetAddress(absl::string_view address);
|
|
|
|
bool Ok() const { return unique_id_ != 0; }
|
|
explicit operator bool() const { return Ok(); }
|
|
|
|
private:
|
|
std::string address_;
|
|
UniqueId unique_id_ = 0;
|
|
};
|
|
|
|
} // namespace windows
|
|
} // namespace nearby
|
|
|
|
#endif // THIRD_PARTY_NEARBY_INTERNAL_PLATFORM_IMPLEMENTATION_WINDOWS_BLE_V2_PERIPHERAL_H_
|