1 /*
2  * Copyright (c) 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 "child_process_options.h"
17 
18 #include "hilog_tag_wrapper.h"
19 #include "parcel_macro_base.h"
20 
21 namespace OHOS {
22 namespace AppExecFwk {
ReadFromParcel(Parcel & parcel)23 bool ChildProcessOptions::ReadFromParcel(Parcel &parcel)
24 {
25     READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isolationMode);
26     return true;
27 }
28 
Unmarshalling(Parcel & parcel)29 ChildProcessOptions *ChildProcessOptions::Unmarshalling(Parcel &parcel)
30 {
31     ChildProcessOptions *obj = new (std::nothrow) ChildProcessOptions();
32     if (obj && !obj->ReadFromParcel(parcel)) {
33         TAG_LOGW(AAFwkTag::APPMGR, "read from parcel failed");
34         delete obj;
35         obj = nullptr;
36     }
37     return obj;
38 }
39 
Marshalling(Parcel & parcel) const40 bool ChildProcessOptions::Marshalling(Parcel &parcel) const
41 {
42     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isolationMode);
43     return true;
44 }
45 }  // namespace AppExecFwk
46 }  // namespace OHOS
47