2023-05-22 08:01:17 +00:00
|
|
|
/*
|
2024-05-11 08:21:09 +00:00
|
|
|
* Copyright (c) 2024 Huawei Device Co., Ltd.
|
2023-05-22 08:01:17 +00:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-12-11 09:08:03 +00:00
|
|
|
/**
|
|
|
|
* @file
|
2024-01-08 07:25:39 +00:00
|
|
|
* @kit CoreFileKit
|
2023-12-11 09:08:03 +00:00
|
|
|
*/
|
|
|
|
|
2024-05-11 08:21:09 +00:00
|
|
|
import type BackupExtensionContext from './@ohos.file.BackupExtensionContext';
|
2023-08-22 01:47:27 +00:00
|
|
|
|
2023-05-22 08:01:17 +00:00
|
|
|
/**
|
|
|
|
* Describe bundle version
|
|
|
|
*
|
|
|
|
* @interface BundleVersion
|
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
export interface BundleVersion {
|
|
|
|
/**
|
2023-11-06 03:19:56 +00:00
|
|
|
* Indicates bundle's version code.
|
2023-05-22 08:01:17 +00:00
|
|
|
*
|
2023-07-21 01:53:53 +00:00
|
|
|
* @type { number }
|
2023-05-22 08:01:17 +00:00
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
code: number;
|
|
|
|
|
|
|
|
/**
|
2023-11-06 03:19:56 +00:00
|
|
|
* Indicates bundle's version name.
|
2023-05-22 08:01:17 +00:00
|
|
|
*
|
2023-07-21 01:53:53 +00:00
|
|
|
* @type { string }
|
2023-05-22 08:01:17 +00:00
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
name: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class to be override for backup extension ability.
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
export default class BackupExtensionAbility {
|
2023-08-22 01:47:27 +00:00
|
|
|
/**
|
|
|
|
* Indicates backup extension ability context.
|
2024-05-17 09:26:32 +00:00
|
|
|
*
|
2023-08-22 01:47:27 +00:00
|
|
|
* @type { ExtensionContext }
|
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 11
|
|
|
|
*/
|
2024-05-11 08:21:09 +00:00
|
|
|
/**
|
|
|
|
* Indicates backup extension ability context.
|
2024-05-17 09:26:32 +00:00
|
|
|
*
|
2024-05-11 08:21:09 +00:00
|
|
|
* @type { BackupExtensionContext }
|
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
context: BackupExtensionContext;
|
2023-08-22 01:47:27 +00:00
|
|
|
|
2023-05-22 08:01:17 +00:00
|
|
|
/**
|
|
|
|
* Callback to be called when the backup procedure is started.
|
|
|
|
* Developer could override this method to build files to be backup.
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
onBackup(): void;
|
|
|
|
|
2024-05-20 08:32:52 +00:00
|
|
|
/**
|
|
|
|
* Callback to be called when the backup procedure is started.
|
|
|
|
* Developer could override this method to restore.
|
|
|
|
*
|
2024-07-03 04:42:53 +00:00
|
|
|
* @param { string } backupInfo BackupInfo to be backup, the param is a JSON string,
|
|
|
|
* it is an array, each array element includes detail and type now.
|
|
|
|
* @returns { string | Promise<string> } Return backup result, support promise, the result is a JSON string,
|
|
|
|
* it includes type, errorCode and errorInfo now.
|
2024-05-20 08:32:52 +00:00
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
onBackupEx(backupInfo: string): string | Promise<string>;
|
|
|
|
|
2023-05-22 08:01:17 +00:00
|
|
|
/**
|
|
|
|
* Callback to be called when the restore procedure is started.
|
|
|
|
* Developer could override this method to restore from copies for various bundle versions.
|
|
|
|
*
|
|
|
|
* @param { BundleVersion } bundleVersion Bundle version to be restore.
|
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
onRestore(bundleVersion: BundleVersion): void;
|
2024-03-25 08:36:42 +00:00
|
|
|
|
2024-03-26 10:52:19 +00:00
|
|
|
/**
|
2024-07-03 04:42:53 +00:00
|
|
|
* Callback to be called when the restore procedure is started.
|
|
|
|
* Developer could override this method to restore.
|
|
|
|
*
|
|
|
|
* @param { BundleVersion } bundleVersion Bundle version to be restore.
|
|
|
|
* @param { string } restoreInfo RestoreInfo to be restore, the param is a JSON string,
|
|
|
|
* it is an array, each array element includes detail and type now.
|
|
|
|
* @returns { string | Promise<string> } Return restore result, support promise. the result is a JSON string,
|
|
|
|
* it includes type, errorCode and errorInfo now.
|
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
2024-05-18 06:46:41 +00:00
|
|
|
onRestoreEx(bundleVersion: BundleVersion, restoreInfo: string): string | Promise<string>;
|
2024-03-26 10:52:19 +00:00
|
|
|
|
2024-03-25 08:36:42 +00:00
|
|
|
/**
|
|
|
|
* Callback to be called when getting application backupInfo.
|
|
|
|
* Developer could override this method to provide the backupInfo.
|
|
|
|
*
|
|
|
|
* @returns { string } Return the backup application's info.
|
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @systemapi
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
getBackupInfo(): string;
|
2024-08-07 11:40:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback to be called when getting backup/restore process info.
|
|
|
|
* Developer could override this method to provide the backup/restore process info.
|
|
|
|
*
|
|
|
|
* @returns { string } Return the backup/restore process info.
|
|
|
|
* @syscap SystemCapability.FileManagement.StorageService.Backup
|
|
|
|
* @StageModelOnly
|
|
|
|
* @since 12
|
|
|
|
*/
|
|
|
|
onProcess(): string;
|
2023-05-22 08:01:17 +00:00
|
|
|
}
|