/* * Copyright (C) 2021 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 CALL_MANAGER_PROXY_H #define CALL_MANAGER_PROXY_H #include #include #include "if_system_ability_manager.h" #include "refbase.h" #include "singleton.h" #include "rwlock.h" #include "pac_map.h" #include "i_call_manager_service.h" #include "i_call_ability_callback.h" #include "timer.h" #include "call_manager_callback.h" #include "call_ability_callback.h" namespace OHOS { namespace Telephony { class CallManagerProxy : public Telephony::Timer, public std::enable_shared_from_this { DECLARE_DELAYED_SINGLETON(CallManagerProxy) public: void Init(int32_t systemAbilityId); void UnInit(); int32_t RegisterCallBack(std::unique_ptr callback); int32_t UnRegisterCallBack(); int32_t DialCall(std::u16string number, AppExecFwk::PacMap &extras); int32_t AnswerCall(int32_t callId, int32_t videoState); int32_t RejectCall(int32_t callId, bool isSendSms, std::u16string content); int32_t HangUpCall(int32_t callId); int32_t GetCallState(); int32_t HoldCall(int32_t callId); int32_t UnHoldCall(int32_t callId); int32_t SwitchCall(int32_t callId); int32_t CombineConference(int32_t callId); int32_t SeparateConference(int32_t callId); int32_t GetMainCallId(int32_t &callId); std::vector GetSubCallIdList(int32_t callId); std::vector GetCallIdListForConference(int32_t callId); int32_t GetCallWaiting(int32_t slotId); int32_t SetCallWaiting(int32_t slotId, bool activate); int32_t GetCallRestriction(int32_t slotId, CallRestrictionType type); int32_t SetCallRestriction(int32_t slotId, CallRestrictionInfo &info); int32_t GetCallTransferInfo(int32_t slotId, CallTransferType type); int32_t SetCallTransferInfo(int32_t slotId, CallTransferInfo &info); int32_t SetCallPreferenceMode(int32_t slotId, int32_t mode); int32_t StartDtmf(int32_t callId, char str); int32_t StopDtmf(int32_t callId); bool IsRinging(); bool HasCall(); bool IsNewCallAllowed(); bool IsInEmergencyCall(); bool IsEmergencyPhoneNumber(std::u16string &number, int32_t slotId, int32_t &errorCode); int32_t FormatPhoneNumber(std::u16string &number, std::u16string &countryCode, std::u16string &formatNumber); int32_t FormatPhoneNumberToE164( std::u16string &number, std::u16string &countryCode, std::u16string &formatNumber); int32_t SetMuted(bool isMute); int32_t MuteRinger(); int32_t SetAudioDevice(AudioDevice deviceType); int32_t ControlCamera(std::u16string cameraId); int32_t SetPreviewWindow(VideoWindow &window); int32_t SetDisplayWindow(VideoWindow &window); int32_t SetCameraZoom(float zoomRatio); int32_t SetPausePicture(std::u16string path); int32_t SetDeviceDirection(int32_t rotation); int32_t GetImsConfig(int32_t slotId, ImsConfigItem item); int32_t SetImsConfig(int32_t slotId, ImsConfigItem item, std::u16string &value); int32_t GetImsFeatureValue(int32_t slotId, FeatureType type); int32_t SetImsFeatureValue(int32_t slotId, FeatureType type, int32_t value); int32_t UpdateImsCallMode(int32_t callId, ImsCallMode mode); int32_t EnableImsSwitch(int32_t slotId); int32_t DisableImsSwitch(int32_t slotId); int32_t IsImsSwitchEnabled(int32_t slotId); int32_t EnableLteEnhanceMode(int32_t slotId); int32_t DisableLteEnhanceMode(int32_t slotId); int32_t IsLteEnhanceModeEnabled(int32_t slotId); int32_t StartRtt(int32_t callId, std::u16string &msg); int32_t StopRtt(int32_t callId); int32_t JoinConference(int32_t callId, std::vector &numberList); int32_t ReportOttCallDetailsInfo(std::vector &ottVec); int32_t ReportOttCallEventInfo(OttCallEventInfo &eventInfo); sptr GetProxyObjectPtr(CallManagerProxyType proxyType); private: static void task(); int32_t ConnectService(); void DisconnectService(); int32_t ReConnectService(); int32_t ReRegisterCallBack(); void OnDeath(); void NotifyDeath(); private: int32_t systemAbilityId_; Utils::RWLock rwClientLock_; bool registerStatus_; bool initStatus_; sptr callManagerServicePtr_ = nullptr; sptr callAbilityCallbackPtr_ = nullptr; std::mutex mutex_; }; } // namespace Telephony } // namespace OHOS #endif