1 /*
2 * Copyright (c) 2023 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 "visited_dlp_file_info.h"
17 #include "dlp_permission_log.h"
18 #include "i_json_operator.h"
19
20 namespace OHOS {
21 namespace Security {
22 namespace DlpPermission {
23 namespace {
24 static constexpr OHOS::HiviewDFX::HiLogLabel LABEL = { LOG_CORE, SECURITY_DOMAIN_DLP_PERMISSION, "VisitedDLPFileInfo" };
25 }
26
VisitedDLPFileInfo()27 VisitedDLPFileInfo::VisitedDLPFileInfo()
28 {
29 visitTimestamp = -1;
30 docUri = "";
31 }
32
Marshalling(Parcel & out) const33 bool VisitedDLPFileInfo::Marshalling(Parcel& out) const
34 {
35 if (!(out.WriteInt64(this->visitTimestamp))) {
36 DLP_LOG_ERROR(LABEL, "Write visitTimestamp fail");
37 return false;
38 }
39 if (!(out.WriteString(this->docUri))) {
40 DLP_LOG_ERROR(LABEL, "Write docUri fail");
41 return false;
42 }
43 return true;
44 }
45
Unmarshalling(Parcel & in)46 VisitedDLPFileInfo* VisitedDLPFileInfo::Unmarshalling(Parcel& in)
47 {
48 auto* parcel = new (std::nothrow) VisitedDLPFileInfo();
49 if (parcel == nullptr) {
50 DLP_LOG_ERROR(LABEL, "Alloc buff for parcel fail");
51 return nullptr;
52 }
53 if (!(in.ReadInt64(parcel->visitTimestamp))) {
54 DLP_LOG_ERROR(LABEL, "Read visitTimestamp fail");
55 delete parcel;
56 parcel = nullptr;
57 return nullptr;
58 }
59 if (!(in.ReadString(parcel->docUri))) {
60 DLP_LOG_ERROR(LABEL, "Read docUri fail");
61 delete parcel;
62 parcel = nullptr;
63 return nullptr;
64 }
65 return parcel;
66 }
67 } // namespace DlpPermission
68 } // namespace Security
69 } // namespace OHOS
70