/* * Copyright (C) 2022 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 CELLULAR_CALL_SUPPLEMENT_REQUEST_IMS_H #define CELLULAR_CALL_SUPPLEMENT_REQUEST_IMS_H #include "base_request.h" #include "cellular_call_handler.h" namespace OHOS { namespace Telephony { class SupplementRequestIms : BaseRequest { public: /** * @brief SetClipRequest Set Clip Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param action Indicates the action for SetClip, * 1, means turn on clip; 0, means turn off clip. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t SetClipRequest(int32_t slotId, int32_t action, int32_t index); /** * @brief GetClipRequest Get Clip Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t GetClipRequest(int32_t slotId, int32_t index); /** * @brief SetClirRequest Set Clir Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param action Indicates the action for SetClir, * 1, means turn on clir; 0, means turn off clir. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t SetClirRequest(int32_t slotId, int32_t action, int32_t index); /** * @brief GetClirRequest Get Clir Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t GetClirRequest(int32_t slotId, int32_t index); /** * @brief GetCallTransferRequest Get Call Transfer Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param reason Indicates the reason of the get call transfer. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t GetCallTransferRequest(int32_t slotId, int32_t reason, int32_t index); /** * @brief SetCallTransferRequest Set Call Transfer Request with timer * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param cfInfo Indicates the reason/mode/transferNum/timer of the set call transfer. * @param classType Indicates a sum of service class for setting call transfer. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t SetCallTransferRequest(int32_t slotId, const CallTransferInfo &cfInfo, int32_t classType, int32_t index); /** * @brief confirm whether IMS can set call transfer time. * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param result, The result of can set or not * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t CanSetCallTransferTime(int32_t slotId, bool &result); /** * @brief GetCallRestrictionRequest Get Call Restriction Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param fac Indicates the facility of the get call restriction. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t GetCallRestrictionRequest(int32_t slotId, const std::string &fac, int32_t index); /** * @brief SetCallRestrictionRequest Set Call Restriction Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param fac Indicates the facility of the set call restriction. * @param mode Indicates the mode of the set call restriction. * @param pw Indicates password or "" if not required. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t SetCallRestrictionRequest(int32_t slotId, std::string &fac, int32_t mode, std::string &pw, int32_t index); /** * @brief SetCallWaitingRequest Set CallWaiting Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param activate Indicates the action for SetCallWaiting, * true, means turn on CallWaiting; false, means turn off CallWaiting. * @param classType Call waiting and conditions +CCWA, * the value was {@code ServiceClassType}, See 3GPP TS 22.083. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t SetCallWaitingRequest(int32_t slotId, bool activate, int32_t classType, int32_t index); /** * @brief GetCallWaitingRequest Get Call Waiting Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t GetCallWaitingRequest(int32_t slotId, int32_t index); /** * @brief SetColrRequest Set Colr Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param presentation Indicates the action for SetClir, * 1, means turn on colr; 0, means turn off colr. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t SetColrRequest(int32_t slotId, int32_t presentation, int32_t index); /** * @brief GetColrRequest Get Colr Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t GetColrRequest(int32_t slotId, int32_t index); /** * @brief SetColpRequest Set Colp Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param action Indicates the action for SetClir, * 1, means turn on colp; 0, means turn off colp. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t SetColpRequest(int32_t slotId, int32_t action, int32_t index); /** * @brief GetColpRequest Get Colp Request * * @param slotId Indicates the card slot index number, * ranging from {@code 0} to the maximum card slot index number supported by the device. * @param index Indicates the index of command. * @return Returns {@code TELEPHONY_SUCCESS} on success, others on failure. */ int32_t GetColpRequest(int32_t slotId, int32_t index); private: /** * GetMMIHandler * * @return std::shared_ptr */ std::shared_ptr GetMMIHandler(int32_t slotId) const; private: ModuleServiceUtils moduleUtils_; }; } // namespace Telephony } // namespace OHOS #endif // CELLULAR_CALL_SUPPLEMENT_REQUEST_IMS_H