mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
90 lines
3.0 KiB
C++
90 lines
3.0 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 PLATFORM_IMPL_LINUX_API_BLE_V2_MEDIUM_H_
|
|
#define PLATFORM_IMPL_LINUX_API_BLE_V2_MEDIUM_H_
|
|
|
|
#include "internal/platform/implementation/ble_v2.h"
|
|
|
|
namespace nearby {
|
|
namespace linux {
|
|
class BleV2Medium : public api::ble_v2::BleMedium {
|
|
bool StartAdvertising(
|
|
const api::ble_v2::BleAdvertisementData &advertising_data,
|
|
api::ble_v2::AdvertiseParameters advertise_set_parameters) override {
|
|
return false;
|
|
}
|
|
std::unique_ptr<AdvertisingSession>
|
|
StartAdvertising(const api::ble_v2::BleAdvertisementData &advertising_data,
|
|
api::ble_v2::AdvertiseParameters advertise_set_parameters,
|
|
AdvertisingCallback callback) override {
|
|
return nullptr;
|
|
}
|
|
bool StopAdvertising() override {return false;}
|
|
|
|
bool StartScanning(const Uuid &service_uuid,
|
|
api::ble_v2::TxPowerLevel tx_power_level,
|
|
ScanCallback callback) override {
|
|
return false;
|
|
}
|
|
bool StopScanning() override { return false; }
|
|
|
|
std::unique_ptr<ScanningSession>
|
|
StartScanning(const Uuid &service_uuid,
|
|
api::ble_v2::TxPowerLevel tx_power_level,
|
|
ScanningCallback callback) override {
|
|
return nullptr;
|
|
};
|
|
|
|
std::unique_ptr<api::ble_v2::GattServer>
|
|
StartGattServer(api::ble_v2::ServerGattConnectionCallback callback) override {
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<api::ble_v2::GattClient> ConnectToGattServer(
|
|
api::ble_v2::BlePeripheral &peripheral,
|
|
api::ble_v2::TxPowerLevel tx_power_level,
|
|
api::ble_v2::ClientGattConnectionCallback callback) override {
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<api::ble_v2::BleServerSocket>
|
|
OpenServerSocket(const std::string &service_id) override {
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<api::ble_v2::BleSocket>
|
|
Connect(const std::string &service_id,
|
|
api::ble_v2::TxPowerLevel tx_power_level,
|
|
api::ble_v2::BlePeripheral &peripheral,
|
|
CancellationFlag *cancellation_flag) override {
|
|
return nullptr;
|
|
}
|
|
bool IsExtendedAdvertisementsAvailable() override {
|
|
return false;
|
|
}
|
|
bool GetRemotePeripheral(const std::string &mac_address,
|
|
GetRemotePeripheralCallback callback) override {
|
|
return false;
|
|
}
|
|
bool GetRemotePeripheral(api::ble_v2::BlePeripheral::UniqueId id,
|
|
GetRemotePeripheralCallback callback) override {
|
|
return false;
|
|
}
|
|
};
|
|
} // namespace linux
|
|
} // namespace nearby
|
|
|
|
#endif
|