* 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 "caller_info.h"
#include "hilog_tag_wrapper.h"
namespace OHOS {
namespace AAFwk {
bool CallerInfo::ReadFromParcel(Parcel &parcel)
{
requestCode = parcel.ReadInt32();
deviceId = Str16ToStr8(parcel.ReadString16());
bundleName = Str16ToStr8(parcel.ReadString16());
abilityName = Str16ToStr8(parcel.ReadString16());
moduleName = Str16ToStr8(parcel.ReadString16());
return true;
}
CallerInfo *CallerInfo::Unmarshalling(Parcel &parcel)
{
CallerInfo *info = new (std::nothrow) CallerInfo();
if (info && !info->ReadFromParcel(parcel)) {
delete info;
info = nullptr;
}
return info;
}
bool CallerInfo::Marshalling(Parcel &parcel) const
{
if (!parcel.WriteInt32(requestCode)) {
return false;
}
if (!parcel.WriteString16(Str8ToStr16(deviceId))) {
TAG_LOGD(AAFwkTag::ABILITYMGR, "Failed to write str deviceId");
return false;
}
if (!parcel.WriteString16(Str8ToStr16(bundleName))) {
TAG_LOGD(AAFwkTag::ABILITYMGR, "Failed to write str bundleName");
return false;
}
if (!parcel.WriteString16(Str8ToStr16(abilityName))) {
TAG_LOGD(AAFwkTag::ABILITYMGR, "Failed to write str abilityName");
return false;
}
if (!parcel.WriteString16(Str8ToStr16(moduleName))) {
TAG_LOGD(AAFwkTag::ABILITYMGR, "Failed to write str moduleName");
return false;
}
return true;
}
bool IndirectCallerInfo::ReadFromParcel(Parcel &parcel)
{
if (!parcel.ReadUint32(tokenId)) {
return false;
}
if (!parcel.ReadInt32(callerUid)) {
return false;
}
if (!parcel.ReadInt32(callerPid)) {
return false;
}
return true;
}
IndirectCallerInfo *IndirectCallerInfo::Unmarshalling(Parcel &parcel)
{
IndirectCallerInfo *info = new (std::nothrow) IndirectCallerInfo();
if (info && !info->ReadFromParcel(parcel)) {
delete info;
info = nullptr;
}
return info;
}
bool IndirectCallerInfo::Marshalling(Parcel &parcel) const
{
if (!parcel.WriteUint32(tokenId)) {
TAG_LOGD(AAFwkTag::ABILITYMGR, "Failed to write tokenId");
return false;
}
if (!parcel.WriteInt32(callerUid)) {
TAG_LOGD(AAFwkTag::ABILITYMGR, "Failed to write callerUid");
return false;
}
if (!parcel.WriteInt32(callerPid)) {
TAG_LOGD(AAFwkTag::ABILITYMGR, "Failed to write callerPid");
return false;
}
return true;
}
}
}