* Copyright (c) 2021-2025 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 "lifecycle_state_info.h"
namespace OHOS {
namespace AAFwk {
bool LifeCycleStateInfo::ReadFromParcel(Parcel &parcel)
{
isNewWant = parcel.ReadBool();
int32_t stateData = parcel.ReadInt32();
state = static_cast<AbilityLifeCycleState>(stateData);
missionId = parcel.ReadInt32();
std::unique_ptr<CallerInfo> callerInfo(parcel.ReadParcelable<CallerInfo>());
if (callerInfo == nullptr) {
return false;
}
caller = *callerInfo;
setting = std::shared_ptr<AbilityStartSetting>(parcel.ReadParcelable<AbilityStartSetting>());
std::unique_ptr<LaunchParam> launchInfo(parcel.ReadParcelable<LaunchParam>());
if (launchInfo == nullptr) {
return false;
}
launchParam = *launchInfo;
sceneFlag = parcel.ReadUint32();
return true;
}
LifeCycleStateInfo *LifeCycleStateInfo::Unmarshalling(Parcel &parcel)
{
LifeCycleStateInfo *info = new (std::nothrow) LifeCycleStateInfo();
if (info == nullptr) {
return nullptr;
}
if (!info->ReadFromParcel(parcel)) {
delete info;
info = nullptr;
}
return info;
}
bool LifeCycleStateInfo::Marshalling(Parcel &parcel) const
{
if (!parcel.WriteBool(isNewWant)) {
return false;
}
if (!parcel.WriteInt32(static_cast<int32_t>(state))) {
return false;
}
if (!parcel.WriteInt32(missionId)) {
return false;
}
if (!parcel.WriteParcelable(&caller)) {
return false;
}
if (!parcel.WriteParcelable(setting.get())) {
return false;
}
if (!parcel.WriteParcelable(&launchParam)) {
return false;
}
if (!parcel.WriteUint32(sceneFlag)) {
return false;
}
return true;
}
}
}