/* * Copyright (c) 2023 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 "ipc/check_encryption_param.h" #include "parcel_macro.h" #include "string_ex.h" namespace OHOS { namespace AppExecFwk { bool CheckEncryptionParam::ReadFromParcel(Parcel &parcel) { modulePath = Str16ToStr8(parcel.ReadString16()); cpuAbi = Str16ToStr8(parcel.ReadString16()); targetSoPath = Str16ToStr8(parcel.ReadString16()); bundleId = parcel.ReadInt32(); installBundleType = static_cast(parcel.ReadInt32()); isCompressNativeLibrary = parcel.ReadBool(); return true; } bool CheckEncryptionParam::Marshalling(Parcel &parcel) const { WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(modulePath)); WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(cpuAbi)); WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(targetSoPath)); WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, bundleId); WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, static_cast(installBundleType)); WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isCompressNativeLibrary); return true; } CheckEncryptionParam *CheckEncryptionParam::Unmarshalling(Parcel &parcel) { CheckEncryptionParam *info = new (std::nothrow) CheckEncryptionParam(); if (info && !info->ReadFromParcel(parcel)) { APP_LOGW("read from parcel failed"); delete info; info = nullptr; } return info; } } // namespace AppExecFwk } // namespace OHOS