89 lines
4.9 KiB
C++
89 lines
4.9 KiB
C++
/*
|
|
* Copyright (C) 2021 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.
|
|
*/
|
|
#pragma once
|
|
|
|
#include "RadioCompatBase.h"
|
|
|
|
#include <aidl/android/hardware/radio/voice/BnRadioVoice.h>
|
|
|
|
namespace android::hardware::radio::compat {
|
|
|
|
class RadioVoice : public RadioCompatBase,
|
|
public aidl::android::hardware::radio::voice::BnRadioVoice {
|
|
::ndk::ScopedAStatus acceptCall(int32_t serial) override;
|
|
::ndk::ScopedAStatus cancelPendingUssd(int32_t serial) override;
|
|
::ndk::ScopedAStatus conference(int32_t serial) override;
|
|
::ndk::ScopedAStatus dial(
|
|
int32_t serial, const ::aidl::android::hardware::radio::voice::Dial& dialInfo) override;
|
|
::ndk::ScopedAStatus emergencyDial(
|
|
int32_t serial, const ::aidl::android::hardware::radio::voice::Dial& dialInfo,
|
|
int32_t categories, const std::vector<std::string>& urns,
|
|
::aidl::android::hardware::radio::voice::EmergencyCallRouting routing,
|
|
bool hasKnownUserIntentEmergency, bool isTesting) override;
|
|
::ndk::ScopedAStatus exitEmergencyCallbackMode(int32_t serial) override;
|
|
::ndk::ScopedAStatus explicitCallTransfer(int32_t serial) override;
|
|
::ndk::ScopedAStatus getCallForwardStatus(
|
|
int32_t serial,
|
|
const ::aidl::android::hardware::radio::voice::CallForwardInfo& callInfo) override;
|
|
::ndk::ScopedAStatus getCallWaiting(int32_t serial, int32_t serviceClass) override;
|
|
::ndk::ScopedAStatus getClip(int32_t serial) override;
|
|
::ndk::ScopedAStatus getClir(int32_t serial) override;
|
|
::ndk::ScopedAStatus getCurrentCalls(int32_t serial) override;
|
|
::ndk::ScopedAStatus getLastCallFailCause(int32_t serial) override;
|
|
::ndk::ScopedAStatus getMute(int32_t serial) override;
|
|
::ndk::ScopedAStatus getPreferredVoicePrivacy(int32_t serial) override;
|
|
::ndk::ScopedAStatus getTtyMode(int32_t serial) override;
|
|
::ndk::ScopedAStatus handleStkCallSetupRequestFromSim(int32_t serial, bool accept) override;
|
|
::ndk::ScopedAStatus hangup(int32_t serial, int32_t gsmIndex) override;
|
|
::ndk::ScopedAStatus hangupForegroundResumeBackground(int32_t serial) override;
|
|
::ndk::ScopedAStatus hangupWaitingOrBackground(int32_t serial) override;
|
|
::ndk::ScopedAStatus isVoNrEnabled(int32_t serial) override;
|
|
::ndk::ScopedAStatus rejectCall(int32_t serial) override;
|
|
::ndk::ScopedAStatus responseAcknowledgement() override;
|
|
::ndk::ScopedAStatus sendBurstDtmf(int32_t serial, const std::string& dtmf, int32_t on,
|
|
int32_t off) override;
|
|
::ndk::ScopedAStatus sendCdmaFeatureCode(int32_t serial, const std::string& fcode) override;
|
|
::ndk::ScopedAStatus sendDtmf(int32_t serial, const std::string& s) override;
|
|
::ndk::ScopedAStatus sendUssd(int32_t serial, const std::string& ussd) override;
|
|
::ndk::ScopedAStatus separateConnection(int32_t serial, int32_t gsmIndex) override;
|
|
::ndk::ScopedAStatus setCallForward(
|
|
int32_t serial,
|
|
const ::aidl::android::hardware::radio::voice::CallForwardInfo& callInfo) override;
|
|
::ndk::ScopedAStatus setCallWaiting(int32_t serial, bool enable, int32_t serviceClass) override;
|
|
::ndk::ScopedAStatus setClir(int32_t serial, int32_t status) override;
|
|
::ndk::ScopedAStatus setMute(int32_t serial, bool enable) override;
|
|
::ndk::ScopedAStatus setPreferredVoicePrivacy(int32_t serial, bool enable) override;
|
|
::ndk::ScopedAStatus setResponseFunctions(
|
|
const std::shared_ptr<::aidl::android::hardware::radio::voice::IRadioVoiceResponse>&
|
|
radioVoiceResponse,
|
|
const std::shared_ptr<::aidl::android::hardware::radio::voice::IRadioVoiceIndication>&
|
|
radioVoiceIndication) override;
|
|
::ndk::ScopedAStatus setTtyMode(int32_t serial,
|
|
::aidl::android::hardware::radio::voice::TtyMode mode) override;
|
|
::ndk::ScopedAStatus setVoNrEnabled(int32_t serial, bool enable) override;
|
|
::ndk::ScopedAStatus startDtmf(int32_t serial, const std::string& s) override;
|
|
::ndk::ScopedAStatus stopDtmf(int32_t serial) override;
|
|
::ndk::ScopedAStatus switchWaitingOrHoldingAndActive(int32_t serial) override;
|
|
|
|
protected:
|
|
std::shared_ptr<::aidl::android::hardware::radio::voice::IRadioVoiceResponse> respond();
|
|
|
|
public:
|
|
using RadioCompatBase::RadioCompatBase;
|
|
};
|
|
|
|
} // namespace android::hardware::radio::compat
|