• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #include "string_ex.h"
21 
22 namespace OHOS {
23 namespace AppExecFwk {
ReadFromParcel(Parcel & parcel)24 bool ChildProcessOptions::ReadFromParcel(Parcel &parcel)
25 {
26     READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isolationMode);
27     customProcessName = Str16ToStr8(parcel.ReadString16());
28     return true;
29 }
30 
Unmarshalling(Parcel & parcel)31 ChildProcessOptions *ChildProcessOptions::Unmarshalling(Parcel &parcel)
32 {
33     ChildProcessOptions *obj = new (std::nothrow) ChildProcessOptions();
34     if (obj && !obj->ReadFromParcel(parcel)) {
35         TAG_LOGW(AAFwkTag::APPMGR, "read from parcel failed");
36         delete obj;
37         obj = nullptr;
38     }
39     return obj;
40 }
41 
Marshalling(Parcel & parcel) const42 bool ChildProcessOptions::Marshalling(Parcel &parcel) const
43 {
44     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Bool, parcel, isolationMode);
45     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(customProcessName));
46     return true;
47 }
48 }  // namespace AppExecFwk
49 }  // namespace OHOS
50