mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
Bug: 312865139 Test: m android.hardware.bluetooth.ranging-service.default Change-Id: I4324693ba6b7d0b6eef171e72acc5e7c30a2f35b
56 lines
2.0 KiB
C++
56 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2023 The Android Open Source Project
|
|
*
|
|
* 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 "BluetoothChannelSoundingSession.h"
|
|
|
|
namespace aidl::android::hardware::bluetooth::ranging::impl {
|
|
|
|
BluetoothChannelSoundingSession::BluetoothChannelSoundingSession(
|
|
std::shared_ptr<IBluetoothChannelSoundingSessionCallback> callback,
|
|
Reason reason) {
|
|
callback_ = callback;
|
|
callback_->onOpened(reason);
|
|
}
|
|
|
|
ndk::ScopedAStatus BluetoothChannelSoundingSession::getVendorSpecificReplies(
|
|
std::optional<
|
|
std::vector<std::optional<VendorSpecificData>>>* /*_aidl_return*/) {
|
|
return ::ndk::ScopedAStatus::ok();
|
|
}
|
|
ndk::ScopedAStatus BluetoothChannelSoundingSession::getSupportedResultTypes(
|
|
std::vector<ResultType>* _aidl_return) {
|
|
std::vector<ResultType> supported_result_types = {ResultType::RESULT_METERS};
|
|
*_aidl_return = supported_result_types;
|
|
return ::ndk::ScopedAStatus::ok();
|
|
}
|
|
ndk::ScopedAStatus BluetoothChannelSoundingSession::isAbortedProcedureRequired(
|
|
bool* _aidl_return) {
|
|
*_aidl_return = false;
|
|
return ::ndk::ScopedAStatus::ok();
|
|
}
|
|
ndk::ScopedAStatus BluetoothChannelSoundingSession::writeRawData(
|
|
const ChannelSoudingRawData& /*in_rawData*/) {
|
|
RangingResult ranging_result;
|
|
ranging_result.resultMeters = 0.0;
|
|
callback_->onResult(ranging_result);
|
|
return ::ndk::ScopedAStatus::ok();
|
|
}
|
|
ndk::ScopedAStatus BluetoothChannelSoundingSession::close(Reason in_reason) {
|
|
callback_->onClose(in_reason);
|
|
return ::ndk::ScopedAStatus::ok();
|
|
}
|
|
} // namespace aidl::android::hardware::bluetooth::ranging::impl
|