* Copyright (c) 2021-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.
*/
#include "uds_client.h"
#undef MMI_LOG_TAG
#define MMI_LOG_TAG "UDSClient"
namespace OHOS {
namespace MMI {
UDSClient::UDSClient()
{
CALL_DEBUG_ENTER;
}
UDSClient::~UDSClient()
{
CALL_DEBUG_ENTER;
}
int32_t UDSClient::ConnectTo()
{
CALL_DEBUG_ENTER;
if (Socket() < 0) {
MMI_HILOGE("Socket failed");
return RET_ERR;
}
OnConnected();
return RET_OK;
}
bool UDSClient::SendMsg(const char *buf, size_t size) const
{
CHKPF(buf);
if ((size == 0) || (size > MAX_PACKET_BUF_SIZE)) {
MMI_HILOGE("Stream buffer size out of range");
return false;
}
if (fd_ < 0) {
MMI_HILOGE("The fd_ is less than 0");
return false;
}
int32_t idx = 0;
int32_t retryCount = 0;
const int32_t bufSize = static_cast<int32_t>(size);
int32_t remSize = bufSize;
while (remSize > 0 && retryCount < SEND_RETRY_LIMIT) {
retryCount += 1;
auto count = send(fd_, &buf[idx], remSize, MSG_DONTWAIT | MSG_NOSIGNAL);
if (count < 0) {
if (errno == EAGAIN || errno == EINTR || errno == EWOULDBLOCK) {
MMI_HILOGW("Continue for errno EAGAIN|EINTR|EWOULDBLOCK, errno:%{public}d", errno);
continue;
}
MMI_HILOGE("Send return failed,error:%{public}d fd:%{public}d", errno, fd_);
return false;
}
idx += count;
remSize -= count;
if (remSize > 0) {
MMI_HILOGW("Remsize:%{public}d", remSize);
usleep(SEND_RETRY_SLEEP_TIME);
}
}
if (retryCount >= SEND_RETRY_LIMIT || remSize != 0) {
MMI_HILOGE("Send too many times:%{public}d/%{public}d,size:%{public}d/%{public}d fd:%{public}d",
retryCount, SEND_RETRY_LIMIT, idx, bufSize, fd_);
return false;
}
return true;
}
bool UDSClient::SendMsg(const NetPacket &pkt) const
{
if (pkt.ChkRWError()) {
MMI_HILOGE("Read and write status is error");
return false;
}
StreamBuffer buf;
pkt.MakeData(buf);
return SendMsg(buf.Data(), buf.Size());
}
bool UDSClient::StartClient(MsgClientFunCallback fun)
{
CALL_DEBUG_ENTER;
if (isRunning_ || isConnected_) {
MMI_HILOGE("Client is connected or started");
return false;
}
isExit = false;
recvFun_ = fun;
if (ConnectTo() < 0) {
MMI_HILOGW("Client connection failed, Try again later");
return false;
}
return true;
}
void UDSClient::Stop()
{
CALL_DEBUG_ENTER;
isExit = true;
isRunning_ = false;
Close();
}
}
}