blob: 52fc623b3649de9870531e31d79b6a1b5faf4145 [file] [log] [blame]
Christopher Tate487529a2009-04-29 14:03:25 -07001/*
2 * Copyright 2009, The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Christopher Tate181fafa2009-05-14 11:12:14 -070017package android.app;
Christopher Tate487529a2009-04-29 14:03:25 -070018
Christopher Tate45281862010-03-05 15:46:30 -080019import android.app.backup.IBackupManager;
Christopher Tate22b87872009-05-04 16:41:53 -070020import android.os.ParcelFileDescriptor;
21
Christopher Tate487529a2009-04-29 14:03:25 -070022/**
23 * Interface presented by applications being asked to participate in the
Christopher Tate45281862010-03-05 15:46:30 -080024 * backup & restore mechanism. End user code will not typically implement
25 * this interface directly; they subclass BackupAgent instead.
Christopher Tate487529a2009-04-29 14:03:25 -070026 *
27 * {@hide}
Christopher Tate22b87872009-05-04 16:41:53 -070028 */
Christopher Tate44a27902010-01-27 17:15:49 -080029oneway interface IBackupAgent {
Christopher Tate487529a2009-04-29 14:03:25 -070030 /**
31 * Request that the app perform an incremental backup.
32 *
Christopher Tate22b87872009-05-04 16:41:53 -070033 * @param oldState Read-only file containing the description blob of the
Christopher Tate487529a2009-04-29 14:03:25 -070034 * app's data state as of the last backup operation's completion.
Christopher Tate22b87872009-05-04 16:41:53 -070035 * This file is empty or invalid when a full backup is being
36 * requested.
Christopher Tate487529a2009-04-29 14:03:25 -070037 *
Christopher Tate22b87872009-05-04 16:41:53 -070038 * @param data Read-write file, empty when onBackup() is called, that
Christopher Tate487529a2009-04-29 14:03:25 -070039 * is the data destination for this backup pass's incrementals.
40 *
Christopher Tate22b87872009-05-04 16:41:53 -070041 * @param newState Read-write file, empty when onBackup() is called,
Christopher Tate487529a2009-04-29 14:03:25 -070042 * where the new state blob is to be recorded.
Christopher Tate44a27902010-01-27 17:15:49 -080043 *
44 * @param token Opaque token identifying this transaction. This must
45 * be echoed back to the backup service binder once the new
46 * data has been written to the data and newState files.
47 *
48 * @param callbackBinder Binder on which to indicate operation completion,
49 * passed here as a convenience to the agent.
Christopher Tate487529a2009-04-29 14:03:25 -070050 */
Christopher Tate22b87872009-05-04 16:41:53 -070051 void doBackup(in ParcelFileDescriptor oldState,
52 in ParcelFileDescriptor data,
Christopher Tate44a27902010-01-27 17:15:49 -080053 in ParcelFileDescriptor newState,
Christopher Tate4a627c72011-04-01 14:43:32 -070054 boolean storeApk,
Christopher Tate44a27902010-01-27 17:15:49 -080055 int token, IBackupManager callbackBinder);
Christopher Tate487529a2009-04-29 14:03:25 -070056
57 /**
58 * Restore an entire data snapshot to the application.
59 *
Christopher Tate22b87872009-05-04 16:41:53 -070060 * @param data Read-only file containing the full data snapshot of the
Christopher Tate487529a2009-04-29 14:03:25 -070061 * app's backup. This is to be a <i>replacement</i> of the app's
62 * current data, not to be merged into it.
63 *
Christopher Tate5cbbf562009-06-22 16:44:51 -070064 * @param appVersionCode The android:versionCode attribute of the application
65 * that created this data set. This can help the agent distinguish among
66 * various historical backup content possibilities.
67 *
Christopher Tate22b87872009-05-04 16:41:53 -070068 * @param newState Read-write file, empty when onRestore() is called,
Christopher Tate487529a2009-04-29 14:03:25 -070069 * that is to be written with the state description that holds after
70 * the restore has been completed.
Christopher Tate44a27902010-01-27 17:15:49 -080071 *
72 * @param token Opaque token identifying this transaction. This must
73 * be echoed back to the backup service binder once the agent is
74 * finished restoring the application based on the restore data
75 * contents.
76 *
77 * @param callbackBinder Binder on which to indicate operation completion,
78 * passed here as a convenience to the agent.
Christopher Tate487529a2009-04-29 14:03:25 -070079 */
Christopher Tate5cbbf562009-06-22 16:44:51 -070080 void doRestore(in ParcelFileDescriptor data, int appVersionCode,
Christopher Tate44a27902010-01-27 17:15:49 -080081 in ParcelFileDescriptor newState, int token, IBackupManager callbackBinder);
Christopher Tate487529a2009-04-29 14:03:25 -070082}