* Copyright (c) 2021-2024 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 "app_spawn_socket.h"
#include "hilog_tag_wrapper.h"
namespace OHOS {
namespace AppExecFwk {
AppSpawnSocket::AppSpawnSocket(bool isNWebSpawn)
{
clientSocket_ = isNWebSpawn ?
std::make_unique<AppSpawn::ClientSocket>("/dev/unix/socket/NWebSpawn") :
std::make_unique<AppSpawn::ClientSocket>("AppSpawn");
}
AppSpawnSocket::~AppSpawnSocket()
{}
ErrCode AppSpawnSocket::OpenAppSpawnConnection()
{
TAG_LOGD(AAFwkTag::APPMGR, "ready to open connection");
if (clientSocket_) {
if (clientSocket_->CreateClient() != ERR_OK) {
TAG_LOGE(AAFwkTag::APPMGR, "create socketClient fail");
return ERR_APPEXECFWK_BAD_APPSPAWN_CLIENT;
}
if (clientSocket_->ConnectSocket() != ERR_OK) {
TAG_LOGE(AAFwkTag::APPMGR, "connect socket fail");
clientSocket_->CloseClient();
return ERR_APPEXECFWK_CONNECT_APPSPAWN_FAILED;
}
TAG_LOGD(AAFwkTag::APPMGR, "connection has been opened");
return ERR_OK;
}
TAG_LOGE(AAFwkTag::APPMGR, "open connection fail");
return ERR_APPEXECFWK_BAD_APPSPAWN_SOCKET;
}
void AppSpawnSocket::CloseAppSpawnConnection()
{
if (clientSocket_) {
clientSocket_->CloseClient();
}
}
ErrCode AppSpawnSocket::WriteMessage(const void *buf, const int32_t len)
{
TAG_LOGD(AAFwkTag::APPMGR, "ready to write message");
if (len <= 0) {
TAG_LOGE(AAFwkTag::APPMGR, "write message fail");
return ERR_INVALID_VALUE;
}
if (buf == nullptr) {
TAG_LOGE(AAFwkTag::APPMGR, "write message fail");
return ERR_INVALID_VALUE;
}
if (clientSocket_) {
if (clientSocket_->WriteSocketMessage(buf, len) != len) {
TAG_LOGE(AAFwkTag::APPMGR, "write message fail");
return ERR_APPEXECFWK_SOCKET_WRITE_FAILED;
}
TAG_LOGD(AAFwkTag::APPMGR, "write message success");
return ERR_OK;
}
TAG_LOGE(AAFwkTag::APPMGR, "write message fail");
return ERR_APPEXECFWK_BAD_APPSPAWN_SOCKET;
}
ErrCode AppSpawnSocket::ReadMessage(void *buf, const int32_t len)
{
TAG_LOGD(AAFwkTag::APPMGR, "ready to read message");
if (len <= 0) {
TAG_LOGE(AAFwkTag::APPMGR, "read message fail");
return ERR_INVALID_VALUE;
}
if (buf == nullptr) {
TAG_LOGE(AAFwkTag::APPMGR, "read message fail");
return ERR_INVALID_VALUE;
}
if (clientSocket_) {
if (clientSocket_->ReadSocketMessage(buf, len) != len) {
TAG_LOGE(AAFwkTag::APPMGR, "read message fail");
return ERR_APPEXECFWK_SOCKET_READ_FAILED;
}
TAG_LOGD(AAFwkTag::APPMGR, "read message success");
return ERR_OK;
}
TAG_LOGE(AAFwkTag::APPMGR, "read message fail");
return ERR_APPEXECFWK_BAD_APPSPAWN_CLIENT;
}
void AppSpawnSocket::SetClientSocket(const std::shared_ptr<OHOS::AppSpawn::ClientSocket> clientSocket)
{
clientSocket_ = clientSocket;
}
}
}