* 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 "base_connection.h"
#include "securec.h"
#include "standardize_utils.h"
namespace OHOS {
namespace Telephony {
BaseConnection::BaseConnection()
{
if (memset_s(&callReportInfo_, sizeof(CallReportInfo), 0, sizeof(callReportInfo_)) != EOK) {
TELEPHONY_LOGE("return, memset_s error.");
}
}
void BaseConnection::SetOrUpdateCallReportInfo(CallReportInfo &callReportInfo)
{
callReportInfo_ = callReportInfo;
}
CallReportInfo BaseConnection::GetCallReportInfo()
{
return callReportInfo_;
}
void BaseConnection::SetStatus(TelCallState state)
{
callReportInfo_.state = state;
}
TelCallState BaseConnection::GetStatus() const
{
return callReportInfo_.state;
}
bool BaseConnection::IsRingingState() const
{
return this->GetStatus() == TelCallState::CALL_STATUS_INCOMING ||
this->GetStatus() == TelCallState::CALL_STATUS_WAITING ||
this->GetStatus() == TelCallState::CALL_STATUS_ALERTING;
}
void BaseConnection::SetFlag(bool flag)
{
flag_ = flag;
}
bool BaseConnection::GetFlag() const
{
return flag_;
}
void BaseConnection::SetIndex(int32_t index)
{
index_ = index;
}
int32_t BaseConnection::GetIndex() const
{
return index_;
}
void BaseConnection::SetNumber(const std::string &number)
{
number_ = number;
}
std::string BaseConnection::GetNumber() const
{
return number_;
}
PostDialCallState BaseConnection::ProcessNextChar(int32_t slotId, char &c)
{
if (postDialCalltate_ == PostDialCallState::POST_DIAL_CALL_CANCELED) {
return PostDialCallState::POST_DIAL_CALL_CANCELED;
}
if (postDialCallString_.empty() || postDialCallString_.length() <= static_cast<size_t>(nextPostDialCallCode_)) {
SetPostDialCallState(PostDialCallState::POST_DIAL_CALL_COMPLETE);
return PostDialCallState::POST_DIAL_CALL_COMPLETE;
} else {
SetPostDialCallState(PostDialCallState::POST_DIAL_CALL_STARTED);
c = postDialCallString_.at(nextPostDialCallCode_++);
ProcessPostDialCallChar(slotId, c);
}
return postDialCalltate_;
}
void BaseConnection::SetPostDialCallState(PostDialCallState s)
{
postDialCalltate_ = s;
}
void BaseConnection::UpdateCallNumber(std::string phoneNum)
{
StandardizeUtils standardizeUtils;
standardizeUtils.ExtractAddressAndPostDial(phoneNum, phoneNumber_, postDialCallString_);
}
std::string BaseConnection::GetLeftPostDialCallString()
{
if (postDialCallString_.empty() || postDialCallString_.length() <= static_cast<size_t>(nextPostDialCallCode_)) {
return "";
}
return postDialCallString_.substr(nextPostDialCallCode_);
}
int32_t BaseConnection::ProcessPostDialCallChar(int32_t slotId, char c)
{
return TELEPHONY_SUCCESS;
}
void BaseConnection::UpdatePendingHoldFlag(bool isPendingHold)
{
callReportInfo_.isPendingHold = isPendingHold;
}
}
}