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 #ifndef BACKUP_HI_AUDIT_HELPER_H 17 #define BACKUP_HI_AUDIT_HELPER_H 18 19 #include <string> 20 21 #include "backup_hi_audit.h" 22 #include "media_backup_report_data_type.h" 23 24 namespace OHOS::Media { 25 class BackupHiAuditHelper { 26 public: SetSceneCode(int32_t sceneCode)27 BackupHiAuditHelper &SetSceneCode(int32_t sceneCode) 28 { 29 sceneCode_ = sceneCode; 30 return *this; 31 } SetTaskId(const std::string & taskId)32 BackupHiAuditHelper &SetTaskId(const std::string &taskId) 33 { 34 taskId_ = taskId; 35 return *this; 36 } 37 void WriteErrorAuditLog(const ErrorInfo &info); 38 void WriteProgressAuditLog(const std::string &status, const std::string &extend = ""); 39 void WriteReportAuditLog(const std::string &extend = ""); 40 41 private: 42 void SetBasicAuditLog(BackupAuditLog &auditLog, const std::string &extend); 43 void SetErrorAuditLog(BackupAuditLog &auditLog, const ErrorInfo &info); 44 void SetProgressAuditLog(BackupAuditLog &auditLog, const std::string &status, const std::string &extend); 45 void SetReportAuditLog(BackupAuditLog &auditLog, const std::string &extend); 46 47 private: 48 int32_t sceneCode_{-1}; 49 std::string taskId_; 50 }; 51 } // namespace OHOS::Media 52 53 #endif // BACKUP_HI_AUDIT_HELPER_H