* Copyright (C) 2023-2025 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_DISTRIBUTED_CALL_MANAGER_H
#define TELEPHONY_DISTRIBUTED_CALL_MANAGER_H
#include <string>
#include <memory>
#include <map>
#include <atomic>
#include "ffrt.h"
#include "singleton.h"
#include "idcall_device_callback.h"
#include "iservice_registry.h"
#include "system_ability_definition.h"
#include "system_ability_status_change_stub.h"
#include "call_manager_inner_type.h"
#include "distributed_call_proxy.h"
#ifdef ABILITY_BLUETOOTH_SUPPORT
#include "bluetooth_hfp_ag.h"
#endif
namespace OHOS {
namespace Telephony {
#ifdef ABILITY_BLUETOOTH_SUPPORT
class DCallHfpListener : public Bluetooth::HandsFreeAudioGatewayObserver {
public:
DCallHfpListener() = default;
~DCallHfpListener() override = default;
void OnHfpStackChanged(const Bluetooth::BluetoothRemoteDevice &device, int32_t action) override;
private:
BLUETOOTH_DISALLOW_COPY_AND_ASSIGN(DCallHfpListener);
};
#endif
class DistributedCallManager : public std::enable_shared_from_this<DistributedCallManager> {
DECLARE_DELAYED_SINGLETON(DistributedCallManager)
public:
void Init();
int32_t AddDCallDevice(const std::string& devId);
int32_t RemoveDCallDevice(const std::string& devId);
void ClearDCallDevices();
void ClearConnectedDCallDevice();
std::string GetConnectedDCallDeviceAddr();
AudioDeviceType GetConnectedDCallDeviceType();
void SwitchOffDCallDeviceSync();
bool IsDCallDeviceSwitchedOn();
bool SwitchOnDCallDeviceSync(const AudioDevice& device);
void SwitchOnDCallDeviceAsync(const AudioDevice& device);
void SetCallState(bool isActive);
void DealDisconnectCall();
bool IsDistributedCarDeviceOnline();
int32_t OnDCallDeviceOnline(const std::string &devId);
int32_t OnDCallDeviceOffline(const std::string &devId);
void OnDCallSystemAbilityAdded(const std::string &deviceId);
void OnDCallSystemAbilityRemoved(const std::string &deviceId);
void GetConnectedDCallDevice(AudioDevice& device);
bool IsSelectVirtualModem();
void ReportDistributedDeviceInfo(const AudioDevice& device);
void ReportDistributedDeviceInfoForSwitchOff();
std::string GetConnectedDCallDeviceId();
private:
class DistributedCallDeviceListener : public OHOS::DistributedHardware::IDCallDeviceCallback {
public:
DistributedCallDeviceListener() = default;
~DistributedCallDeviceListener() = default;
int32_t OnDCallDeviceOnline(const std::string &devId) override;
int32_t OnDCallDeviceOffline(const std::string &devId) override;
};
bool CreateDAudioDevice(const std::string& devId, AudioDevice& device);
std::string GetDevIdFromAudioDevice(const AudioDevice& device);
void NotifyOnlineDCallDevices(std::vector<std::string> devices);
bool isCeliaCall();
void SetConnectedDCallDevice(const AudioDevice& device);
private:
std::atomic<bool> isCallActived_ = false;
std::atomic<bool> dCallDeviceSwitchedOn_ = false;
ffrt::mutex connectedDevMtx_;
ffrt::mutex onlineDeviceMtx_;
std::string connectedDevId_;
AudioDevice connectedAudioDevice_;
AudioDevice currentAudioDevice_;
std::map<std::string, AudioDevice> onlineDCallDevices_;
sptr<ISystemAbilityStatusChange> statusChangeListener_ = nullptr;
ffrt::mutex dcallProxyMtx_;
std::shared_ptr<DistributedCallProxy> dcallProxy_ = nullptr;
std::shared_ptr<DistributedCallDeviceListener> dcallDeviceListener_ = nullptr;
bool isSwitching_ = false;
#ifdef ABILITY_BLUETOOTH_SUPPORT
ffrt::mutex mutex_;
std::shared_ptr<DCallHfpListener> dcallHfpListener_{nullptr};
#endif
};
class DCallSystemAbilityListener : public SystemAbilityStatusChangeStub {
public:
DCallSystemAbilityListener() = default;
~DCallSystemAbilityListener() = default;
void OnAddSystemAbility(int32_t systemAbilityId, const std::string &deviceId) override;
void OnRemoveSystemAbility(int32_t systemAbilityId, const std::string &deviceId) override;
};
}
}
#endif