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_LOG_UTILS_H
17 #define BACKUP_LOG_UTILS_H
18 
19 #include <string>
20 
21 #include "backup_const.h"
22 #include "media_backup_report_data_type.h"
23 
24 namespace OHOS::Media {
25 class BackupLogUtils {
26 public:
27     static std::string FileInfoToString(int32_t sceneCode, const FileInfo &info,
28         const std::vector<std::string> &extendList = {});
29     static std::string ErrorInfoToString(const ErrorInfo &info);
30     static std::string RestoreErrorToString(int32_t error);
31     static std::string Format(const std::string &infoString);
32     static std::string FileDbCheckInfoToString(const FileDbCheckInfo &info);
33 };
34 } // namespace OHOS::Media
35 
36 #endif // BACKUP_LOG_UTILS_H