* 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.
*/
#include "call_status_policy.h"
#include <securec.h>
#include "call_manager_errors.h"
#include "call_manager_hisysevent.h"
#include "telephony_log_wrapper.h"
#include "call_control_manager.h"
namespace OHOS {
namespace Telephony {
CallStatusPolicy::CallStatusPolicy() {}
CallStatusPolicy::~CallStatusPolicy() {}
int32_t CallStatusPolicy::DialingHandlePolicy(const CallDetailInfo &info)
{
std::string number(info.phoneNum);
if (IsCallExist(number)) {
TELEPHONY_LOGW("this call has created yet!");
return CALL_ERR_CALL_ALREADY_EXISTS;
}
return TELEPHONY_SUCCESS;
}
int32_t CallStatusPolicy::FilterResultsDispose(sptr<CallBase> call)
{
int32_t ret = TELEPHONY_ERR_FAIL;
if (call == nullptr) {
TELEPHONY_LOGE("Call is NULL");
return CALL_ERR_CALL_OBJECT_IS_NULL;
}
if (HasRingingMaximum() || HasDialingMaximum()) {
TELEPHONY_LOGI("the number of Ringing or Dialing call is bigger than Maximum, start to hung up");
CallManagerHisysevent::ReportCallDropChrEvent(call->GetSlotId(), call->GetCallIndex(),
DROP_CALL_BY_CALL_NUM_LIMITED);
call->SetApCauseReported(true);
ret = call->HangUpCall();
if (ret != TELEPHONY_SUCCESS) {
TELEPHONY_LOGE("HangUpCall failed!");
return ret;
}
return TELEPHONY_SUCCESS;
}
int32_t state;
DelayedSingleton<CallControlManager>::GetInstance()->GetVoIPCallState(state);
if (state == (int32_t)CallStateToApp::CALL_STATE_RINGING) {
CallManagerHisysevent::ReportCallDropChrEvent(call->GetSlotId(), call->GetCallIndex(),
DROP_CALL_BY_MEETIME_CALL_ALERTING);
call->SetApCauseReported(true);
ret = call->RejectCall();
if (ret != TELEPHONY_SUCCESS) {
TELEPHONY_LOGI("Reject call failed!");
return ret;
}
return TELEPHONY_SUCCESS;
}
ret = call->IncomingCallBase();
TELEPHONY_LOGW("IncomingCallBase ret : %{public}d", ret);
DelayedSingleton<CallControlManager>::GetInstance()->NotifyNewCallCreated(call);
return TELEPHONY_SUCCESS;
}
}
}