• 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 "background_app_info.h"
17 #include "hilog_tag_wrapper.h"
18 #include "nlohmann/json.hpp"
19 #include "parcel_macro_base.h"
20 #include "string_ex.h"
21 
22 namespace OHOS {
23 namespace AppExecFwk {
24 
ReadFromParcel(Parcel & parcel)25 bool BackgroundAppInfo::ReadFromParcel(Parcel &parcel)
26 {
27     bandleName = Str16ToStr8(parcel.ReadString16());
28     READ_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, appIndex);
29 
30     return true;
31 }
32 
Unmarshalling(Parcel & parcel)33 BackgroundAppInfo *BackgroundAppInfo::Unmarshalling(Parcel &parcel)
34 {
35     BackgroundAppInfo *info = new (std::nothrow) BackgroundAppInfo();
36     if (info && !info->ReadFromParcel(parcel)) {
37         TAG_LOGE(AAFwkTag::APPMGR, "read from parcel failed");
38         delete info;
39         info = nullptr;
40     }
41     return info;
42 }
43 
Marshalling(Parcel & parcel) const44 bool BackgroundAppInfo::Marshalling(Parcel &parcel) const
45 {
46     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(String16, parcel, Str8ToStr16(bandleName));
47     WRITE_PARCEL_AND_RETURN_FALSE_IF_FAIL(Int32, parcel, appIndex);
48 
49     return true;
50 }
51 } // namespace AppExecFwk
52 } // namespace OHOS