1 /* 2 * Copyright (c) 2023-2024 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #include "page_state_data.h" 17 18 #include "hilog_tag_wrapper.h" 19 #include "parcel_macro_base.h" 20 21 namespace OHOS { 22 namespace AppExecFwk { ReadFromParcel(Parcel & parcel)23bool PageStateData::ReadFromParcel(Parcel &parcel) 24 { 25 bundleName = parcel.ReadString(); 26 moduleName = parcel.ReadString(); 27 abilityName = parcel.ReadString(); 28 pageName = parcel.ReadString(); 29 targetBundleName = parcel.ReadString(); 30 targetModuleName = parcel.ReadString(); 31 32 return true; 33 } 34 Marshalling(Parcel & parcel) const35bool PageStateData::Marshalling(Parcel &parcel) const 36 { 37 return (parcel.WriteString(bundleName) && 38 parcel.WriteString(moduleName) && 39 parcel.WriteString(abilityName) && 40 parcel.WriteString(pageName) && 41 parcel.WriteString(targetBundleName) && 42 parcel.WriteString(targetModuleName)); 43 } 44 Unmarshalling(Parcel & parcel)45PageStateData *PageStateData::Unmarshalling(Parcel &parcel) 46 { 47 PageStateData *pageStateData = new (std::nothrow) PageStateData(); 48 if (pageStateData && !pageStateData->ReadFromParcel(parcel)) { 49 TAG_LOGW(AAFwkTag::APPMGR, "failed, because ReadFromParcel failed"); 50 delete pageStateData; 51 pageStateData = nullptr; 52 } 53 return pageStateData; 54 } 55 } 56 }