blob: 8535344235ad87b62c52aeda697af72bf760895c [file] [log] [blame]
/*
* Copyright (C) 2016 The Android Open Source Project
*
* 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
*/
package android.backup.app;
import android.app.backup.BackupAgent;
import android.app.backup.BackupDataInput;
import android.app.backup.BackupDataOutput;
import android.app.backup.FullBackupDataOutput;
import android.os.ParcelFileDescriptor;
import android.util.Log;
import java.io.File;
import java.io.IOException;
/*
* Full Backup agent for Backup CTS App.
*
* Logs callbacks into logcat.
*/
public class FullBackupBackupAgent extends BackupAgent {
@Override
public void onCreate() {
Log.d(MainActivity.TAG, "onCreate");
}
@Override
public void onBackup(ParcelFileDescriptor oldState, BackupDataOutput data,
ParcelFileDescriptor newState) throws IOException {
throw new IllegalStateException("unexpected onBackup");
}
@Override
public void onRestore(BackupDataInput data, int appVersionCode,
ParcelFileDescriptor newState) throws IOException {
throw new IllegalStateException("unexpected onRestore");
}
@Override
public void onRestoreFile(ParcelFileDescriptor data, long size,
File destination, int type, long mode, long mtime) throws IOException {
Log.d(MainActivity.TAG, "onRestoreFile " + destination);
super.onRestoreFile(data, size, destination, type, mode, mtime);
}
@Override
public void onFullBackup(FullBackupDataOutput data) throws IOException {
Log.d(MainActivity.TAG, "Full backup requested, quota is " + data.getQuota());
super.onFullBackup(data);
}
@Override
public void onQuotaExceeded(long backupDataBytes, long quotaBytes) {
Log.d(MainActivity.TAG, "Quota exceeded!");
}
@Override
public void onRestoreFinished() {
Log.d(MainActivity.TAG, "onRestoreFinished");
}
@Override
public void onDestroy() {
Log.d(MainActivity.TAG, "onDestroy");
}
}