/* * Copyright (C) 2022-2023 Huawei Device Co., Ltd. * 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. */ #ifndef TELEPHONY_IMS_CALL_CALLBACK_STUB_H #define TELEPHONY_IMS_CALL_CALLBACK_STUB_H #include #include "cellular_call_data_struct.h" #include "ims_call_callback_interface.h" #include "ims_call_callback_ipc_interface_code.h" #include "iremote_stub.h" namespace OHOS { namespace Telephony { class ImsCallCallbackStub : public IRemoteStub { public: ImsCallCallbackStub(); virtual ~ImsCallCallbackStub(); int OnRemoteRequest(uint32_t code, MessageParcel &data, MessageParcel &reply, MessageOption &option) override; /****************** call basic ******************/ int32_t DialResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t HangUpResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t RejectWithReasonResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t AnswerResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t HoldCallResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t UnHoldCallResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t SwitchCallResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t CallStateChangeReport(int32_t slotId) override; int32_t GetImsCallsDataResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t GetImsCallsDataResponse(int32_t slotId, const ImsCurrentCallList &callList) override; int32_t LastCallFailReasonResponse(int32_t slotId, const DisconnectedDetails &details) override; int32_t CallRingBackReport(int32_t slotId, const RingbackVoice &info) override; int32_t CallNvCfgFinishedIndication(int32_t slotId) override; /****************** dtmf rtt ******************/ int32_t StartDtmfResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t SendDtmfResponse(int32_t slotId, const RadioResponseInfo &info, int32_t callIndex) override; int32_t StopDtmfResponse(int32_t slotId, const RadioResponseInfo &info) override; /****************** ims config ******************/ int32_t SetImsSwitchResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t GetImsSwitchResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t GetImsSwitchResponse(int32_t slotId, int32_t active) override; int32_t SetMuteResponse(int32_t slotId, const MuteControlResponse &response) override; /****************** supplement ******************/ int32_t SetClipResponse(int32_t slotId, const SsBaseResult &resultInfo) override; int32_t GetClipResponse(int32_t slotId, const GetClipResult &result) override; int32_t GetClirResponse(int32_t slotId, const GetClirResult &result) override; int32_t SetClirResponse(int32_t slotId, const SsBaseResult &resultInfo) override; int32_t GetCallTransferResponse(int32_t slotId, const CallForwardQueryInfoList &cFQueryList) override; int32_t SetCallTransferResponse(int32_t slotId, const SsBaseResult &resultInfo) override; int32_t GetCallRestrictionResponse(int32_t slotId, const CallRestrictionResult &result) override; int32_t SetCallRestrictionResponse(int32_t slotId, const SsBaseResult &resultInfo) override; int32_t GetCallWaitingResponse(int32_t slotId, const CallWaitResult &result) override; int32_t SetCallWaitingResponse(int32_t slotId, const SsBaseResult &resultInfo) override; int32_t SetColrResponse(int32_t slotId, const SsBaseResult &resultInfo) override; int32_t GetColrResponse(int32_t slotId, const GetColrResult &result) override; int32_t SetColpResponse(int32_t slotId, const SsBaseResult &resultInfo) override; int32_t GetColpResponse(int32_t slotId, const GetColpResult &result) override; /****************** conference ******************/ int32_t CombineConferenceResponse(int32_t slotId, const RadioResponseInfo &info) override; int32_t InviteToConferenceResponse(int32_t slotId, const RadioResponseInfo &info) override; /****************** call modify ******************/ int32_t ReceiveUpdateCallMediaModeResponse( int32_t slotId, const ImsCallModeReceiveInfo &callModeResponse) override; int32_t ReceiveUpdateCallMediaModeRequest(int32_t slotId, const ImsCallModeReceiveInfo &callModeRequest) override; int32_t CallSessionEventChanged(int32_t slotId, const ImsCallSessionEventInfo &callSessionEventInfo) override; int32_t PeerDimensionsChanged(int32_t slotId, const ImsCallPeerDimensionsInfo &callPeerDimensionsInfo) override; int32_t CallDataUsageChanged(int32_t slotId, const ImsCallDataUsageInfo &callDataUsageInfo) override; int32_t CameraCapabilitiesChanged(int32_t slotId, const CameraCapabilitiesInfo &cameraCapabilitiesInfo) override; private: void InitFuncMap(); void InitCallBasicFuncMap(); void InitConfigFuncMap(); void InitSupplementFuncMap(); /****************** call basic ******************/ int32_t OnDialResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnHangUpResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnRejectResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnAnswerResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnHoldCallResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnUnHoldCallResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnSwitchCallResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnCallStateChangeReportInner(MessageParcel &data, MessageParcel &reply); int32_t OnGetImsCallsDataResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnCallRingBackReportInner(MessageParcel &data, MessageParcel &reply); int32_t OnLastCallFailReasonResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnNvCfgFinishedInner(MessageParcel &data, MessageParcel &reply); /****************** dtmf rtt ******************/ int32_t OnStartDtmfResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnSendDtmfResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnStopDtmfResponseInner(MessageParcel &data, MessageParcel &reply); /****************** ims config ******************/ int32_t OnSetImsSwitchResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnGetImsSwitchResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnSetMuteResponseInner(MessageParcel &data, MessageParcel &reply); /****************** supplement ******************/ int32_t OnSetClipResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnGetClipResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnGetClirResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnSetClirResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnGetCallTransferResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnSetCallTransferResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnGetCallRestrictionResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnSetCallRestrictionResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnGetCallWaitingResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnSetCallWaitingResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnSetColrResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnGetColrResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnSetColpResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnGetColpResponseInner(MessageParcel &data, MessageParcel &reply); int32_t GetSsRequestCommand(int32_t slotId, int32_t index, SsRequestCommand &ss); void BuildCallForwardInfo(const CallForwardQueryInfoList &cFQueryList, CallForwardQueryInfoList &cFQueryResultList); /****************** conference ******************/ int32_t OnCombineConferenceResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnInviteToConferenceResponseInner(MessageParcel &data, MessageParcel &reply); /****************** call modify ******************/ int32_t OnReceiveUpdateCallMediaModeRequestInner(MessageParcel &data, MessageParcel &reply); int32_t OnReceiveUpdateCallMediaModeResponseInner(MessageParcel &data, MessageParcel &reply); int32_t OnCallSessionEventChangedInner(MessageParcel &data, MessageParcel &reply); int32_t OnPeerDimensionsChangedInner(MessageParcel &data, MessageParcel &reply); int32_t OnCallDataUsageChangedInner(MessageParcel &data, MessageParcel &reply); int32_t OnCameraCapabilitiesChangedInner(MessageParcel &data, MessageParcel &reply); int32_t SendEvent(int32_t slotId, int32_t eventId, const RadioResponseInfo &info); int32_t SendEvent(int32_t slotId, int32_t eventId, const SsBaseResult &resultInfo); int32_t SendEvent(int32_t slotId, int32_t eventId, const ImsCallModeReceiveInfo &callModeInfo); private: using RequestFuncType = std::function; std::map requestFuncMap_; }; } // namespace Telephony } // namespace OHOS #endif // TELEPHONY_IMS_CALL_CALLBACK_STUB_H