blob: a1f43b4bdc81191b8946902cebf64c48cbe37d9b [file] [log] [blame]
Joe Onorato9bb8fd72009-07-28 18:24:51 -07001/*
2 * Copyright (C) 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
17package com.android.server;
18
Christopher Tate45281862010-03-05 15:46:30 -080019import android.app.backup.BackupDataInput;
Christopher Tate45281862010-03-05 15:46:30 -080020import android.app.backup.BackupDataOutput;
Christopher Tatecc84c692010-03-29 14:54:02 -070021import android.app.backup.BackupAgentHelper;
Christopher Tate3f64f8d2010-12-10 17:12:19 -080022import android.app.backup.WallpaperBackupHelper;
Joe Onorato9bb8fd72009-07-28 18:24:51 -070023import android.content.Context;
24import android.os.ParcelFileDescriptor;
25import android.os.ServiceManager;
Joe Onorato8a9b2202010-02-26 18:56:32 -080026import android.util.Slog;
Joe Onorato9bb8fd72009-07-28 18:24:51 -070027
Christopher Tate3f64f8d2010-12-10 17:12:19 -080028
Joe Onorato9bb8fd72009-07-28 18:24:51 -070029import java.io.File;
30import java.io.IOException;
31
32/**
Christopher Tate7c2bb662009-09-20 19:47:46 -070033 * Backup agent for various system-managed data, currently just the system wallpaper
Joe Onorato9bb8fd72009-07-28 18:24:51 -070034 */
Christopher Tatecc84c692010-03-29 14:54:02 -070035public class SystemBackupAgent extends BackupAgentHelper {
Joe Onorato9bb8fd72009-07-28 18:24:51 -070036 private static final String TAG = "SystemBackupAgent";
37
Christopher Tate7c2bb662009-09-20 19:47:46 -070038 // These paths must match what the WallpaperManagerService uses
Joe Onorato9bb8fd72009-07-28 18:24:51 -070039 private static final String WALLPAPER_IMAGE = "/data/data/com.android.settings/files/wallpaper";
40 private static final String WALLPAPER_INFO = "/data/system/wallpaper_info.xml";
41
42 @Override
Christopher Tate7c2bb662009-09-20 19:47:46 -070043 public void onBackup(ParcelFileDescriptor oldState, BackupDataOutput data,
44 ParcelFileDescriptor newState) throws IOException {
45 // We only back up the data under the current "wallpaper" schema with metadata
Dan Egnor541fa512009-11-11 17:00:06 -080046 WallpaperManagerService wallpaper = (WallpaperManagerService)ServiceManager.getService(
47 Context.WALLPAPER_SERVICE);
48 String[] files = new String[] { WALLPAPER_IMAGE, WALLPAPER_INFO };
49 if (wallpaper != null && wallpaper.mName != null && wallpaper.mName.length() > 0) {
50 // When the wallpaper has a name, back up the info by itself.
51 // TODO: Don't rely on the innards of the service object like this!
52 // TODO: Send a delete for any stored wallpaper image in this case?
53 files = new String[] { WALLPAPER_INFO };
54 }
Christopher Tate3f64f8d2010-12-10 17:12:19 -080055 addHelper("wallpaper", new WallpaperBackupHelper(SystemBackupAgent.this, files));
Christopher Tate7c2bb662009-09-20 19:47:46 -070056 super.onBackup(oldState, data, newState);
Joe Onorato9bb8fd72009-07-28 18:24:51 -070057 }
58
59 @Override
60 public void onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState)
61 throws IOException {
Christopher Tate7c2bb662009-09-20 19:47:46 -070062 // On restore, we also support a previous data schema "system_files"
Christopher Tate3f64f8d2010-12-10 17:12:19 -080063 addHelper("wallpaper", new WallpaperBackupHelper(SystemBackupAgent.this,
Christopher Tate7c2bb662009-09-20 19:47:46 -070064 new String[] { WALLPAPER_IMAGE, WALLPAPER_INFO }));
Christopher Tate3f64f8d2010-12-10 17:12:19 -080065 addHelper("system_files", new WallpaperBackupHelper(SystemBackupAgent.this,
Christopher Tate7c2bb662009-09-20 19:47:46 -070066 new String[] { WALLPAPER_IMAGE }));
67
Joe Onorato9bb8fd72009-07-28 18:24:51 -070068 try {
69 super.onRestore(data, appVersionCode, newState);
70
Dianne Hackborn8cc6a502009-08-05 21:29:42 -070071 WallpaperManagerService wallpaper = (WallpaperManagerService)ServiceManager.getService(
Joe Onorato9bb8fd72009-07-28 18:24:51 -070072 Context.WALLPAPER_SERVICE);
73 wallpaper.settingsRestored();
74 } catch (IOException ex) {
Christopher Tate3f64f8d2010-12-10 17:12:19 -080075 // If there was a failure, delete everything for the wallpaper, this is too aggressive,
Joe Onorato9bb8fd72009-07-28 18:24:51 -070076 // but this is hopefully a rare failure.
Joe Onorato8a9b2202010-02-26 18:56:32 -080077 Slog.d(TAG, "restore failed", ex);
Joe Onorato9bb8fd72009-07-28 18:24:51 -070078 (new File(WALLPAPER_IMAGE)).delete();
79 (new File(WALLPAPER_INFO)).delete();
80 }
81 }
82}