• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2025 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 "killed_process_info.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 KilledProcessInfo::ReadFromParcel(Parcel &parcel)
24 {
25     pid = parcel.ReadInt32();
26     uid = parcel.ReadInt32();
27     accessTokenId = parcel.ReadUint32();
28     processName = parcel.ReadString();
29     bundleName = parcel.ReadString();
30     return true;
31 }
32 
Unmarshalling(Parcel & parcel)33 KilledProcessInfo *KilledProcessInfo::Unmarshalling(Parcel &parcel)
34 {
35     KilledProcessInfo *info = new (std::nothrow) KilledProcessInfo();
36     if (info && !info->ReadFromParcel(parcel)) {
37         TAG_LOGW(AAFwkTag::APPMGR, "read from parcel failed");
38         delete info;
39         info = nullptr;
40     }
41     return info;
42 }
43 
Marshalling(Parcel & parcel) const44 bool KilledProcessInfo::Marshalling(Parcel &parcel) const
45 {
46     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, pid);
47     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, uid);
48     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Uint32, parcel, accessTokenId);
49     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String, parcel, processName);
50     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String, parcel, bundleName);
51     return true;
52 }
53 }  // namespace AppExecFwk
54 }  // namespace OHOS