Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 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 | */ |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 16 | package com.android.launcher3; |
| 17 | |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 18 | import android.app.backup.BackupDataInputStream; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 19 | import android.app.backup.BackupDataOutput; |
Chris Wren | 4d89e2a | 2013-10-09 17:03:50 -0400 | [diff] [blame] | 20 | import android.app.backup.BackupHelper; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 21 | import android.app.backup.BackupManager; |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 22 | import android.content.ComponentName; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 23 | import android.content.ContentResolver; |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 24 | import android.content.ContentValues; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 25 | import android.content.Context; |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 26 | import android.content.Intent; |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 27 | import android.content.pm.ActivityInfo; |
| 28 | import android.content.pm.PackageManager; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 29 | import android.content.pm.PackageManager.NameNotFoundException; |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 30 | import android.content.pm.ResolveInfo; |
| 31 | import android.content.res.XmlResourceParser; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 32 | import android.database.Cursor; |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 33 | import android.graphics.Bitmap; |
| 34 | import android.graphics.BitmapFactory; |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 35 | import android.graphics.drawable.Drawable; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 36 | import android.os.ParcelFileDescriptor; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 37 | import android.text.TextUtils; |
| 38 | import android.util.Base64; |
| 39 | import android.util.Log; |
| 40 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 41 | import com.android.launcher3.LauncherSettings.Favorites; |
| 42 | import com.android.launcher3.LauncherSettings.WorkspaceScreens; |
| 43 | import com.android.launcher3.backup.BackupProtos; |
| 44 | import com.android.launcher3.backup.BackupProtos.CheckedMessage; |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 45 | import com.android.launcher3.backup.BackupProtos.DeviceProfieData; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 46 | import com.android.launcher3.backup.BackupProtos.Favorite; |
| 47 | import com.android.launcher3.backup.BackupProtos.Journal; |
| 48 | import com.android.launcher3.backup.BackupProtos.Key; |
| 49 | import com.android.launcher3.backup.BackupProtos.Resource; |
| 50 | import com.android.launcher3.backup.BackupProtos.Screen; |
| 51 | import com.android.launcher3.backup.BackupProtos.Widget; |
| 52 | import com.android.launcher3.compat.UserHandleCompat; |
| 53 | import com.android.launcher3.compat.UserManagerCompat; |
Sunny Goyal | 316490e | 2015-06-02 09:38:28 -0700 | [diff] [blame] | 54 | import com.android.launcher3.util.Thunk; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 55 | import com.google.protobuf.nano.InvalidProtocolBufferNanoException; |
| 56 | import com.google.protobuf.nano.MessageNano; |
| 57 | |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 58 | import org.xmlpull.v1.XmlPullParser; |
| 59 | import org.xmlpull.v1.XmlPullParserException; |
| 60 | |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 61 | import java.io.FileInputStream; |
| 62 | import java.io.FileOutputStream; |
| 63 | import java.io.IOException; |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 64 | import java.net.URISyntaxException; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 65 | import java.util.ArrayList; |
Sunny Goyal | c0ee675 | 2015-01-16 14:10:32 -0800 | [diff] [blame] | 66 | import java.util.Arrays; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 67 | import java.util.HashSet; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 68 | import java.util.zip.CRC32; |
| 69 | |
| 70 | /** |
| 71 | * Persist the launcher home state across calamities. |
| 72 | */ |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 73 | public class LauncherBackupHelper implements BackupHelper { |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 74 | private static final String TAG = "LauncherBackupHelper"; |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 75 | private static final boolean VERBOSE = LauncherBackupAgentHelper.VERBOSE; |
| 76 | private static final boolean DEBUG = LauncherBackupAgentHelper.DEBUG; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 77 | |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 78 | private static final int BACKUP_VERSION = 2; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 79 | private static final int MAX_JOURNAL_SIZE = 1000000; |
| 80 | |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 81 | // Journal key is such that it is always smaller than any dynamically generated |
| 82 | // key (any Base64 encoded string). |
| 83 | private static final String JOURNAL_KEY = "#"; |
| 84 | |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 85 | /** icons are large, dribble them out */ |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 86 | private static final int MAX_ICONS_PER_PASS = 10; |
| 87 | |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 88 | /** widgets contain previews, which are very large, dribble them out */ |
| 89 | private static final int MAX_WIDGETS_PER_PASS = 5; |
| 90 | |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 91 | private static final String[] FAVORITE_PROJECTION = { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 92 | Favorites._ID, // 0 |
| 93 | Favorites.MODIFIED, // 1 |
| 94 | Favorites.INTENT, // 2 |
| 95 | Favorites.APPWIDGET_PROVIDER, // 3 |
| 96 | Favorites.APPWIDGET_ID, // 4 |
| 97 | Favorites.CELLX, // 5 |
| 98 | Favorites.CELLY, // 6 |
| 99 | Favorites.CONTAINER, // 7 |
| 100 | Favorites.ICON, // 8 |
| 101 | Favorites.ICON_PACKAGE, // 9 |
| 102 | Favorites.ICON_RESOURCE, // 10 |
| 103 | Favorites.ICON_TYPE, // 11 |
| 104 | Favorites.ITEM_TYPE, // 12 |
| 105 | Favorites.SCREEN, // 13 |
| 106 | Favorites.SPANX, // 14 |
| 107 | Favorites.SPANY, // 15 |
| 108 | Favorites.TITLE, // 16 |
| 109 | Favorites.PROFILE_ID, // 17 |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | private static final int ID_INDEX = 0; |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 113 | private static final int ID_MODIFIED = 1; |
| 114 | private static final int INTENT_INDEX = 2; |
| 115 | private static final int APPWIDGET_PROVIDER_INDEX = 3; |
| 116 | private static final int APPWIDGET_ID_INDEX = 4; |
| 117 | private static final int CELLX_INDEX = 5; |
| 118 | private static final int CELLY_INDEX = 6; |
| 119 | private static final int CONTAINER_INDEX = 7; |
| 120 | private static final int ICON_INDEX = 8; |
| 121 | private static final int ICON_PACKAGE_INDEX = 9; |
| 122 | private static final int ICON_RESOURCE_INDEX = 10; |
| 123 | private static final int ICON_TYPE_INDEX = 11; |
| 124 | private static final int ITEM_TYPE_INDEX = 12; |
| 125 | private static final int SCREEN_INDEX = 13; |
| 126 | private static final int SPANX_INDEX = 14; |
| 127 | private static final int SPANY_INDEX = 15; |
| 128 | private static final int TITLE_INDEX = 16; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 129 | |
| 130 | private static final String[] SCREEN_PROJECTION = { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 131 | WorkspaceScreens._ID, // 0 |
| 132 | WorkspaceScreens.MODIFIED, // 1 |
| 133 | WorkspaceScreens.SCREEN_RANK // 2 |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 134 | }; |
| 135 | |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 136 | private static final int SCREEN_RANK_INDEX = 2; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 137 | |
Sunny Goyal | 316490e | 2015-06-02 09:38:28 -0700 | [diff] [blame] | 138 | @Thunk final Context mContext; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 139 | private final HashSet<String> mExistingKeys; |
Sunny Goyal | 42de82f | 2014-09-26 22:09:29 -0700 | [diff] [blame] | 140 | private final ArrayList<Key> mKeys; |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 141 | private final ItemTypeMatcher[] mItemTypeMatchers; |
Sunny Goyal | 4fbc382 | 2015-02-18 16:46:50 -0800 | [diff] [blame] | 142 | private final long mUserSerial; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 143 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 144 | private BackupManager mBackupManager; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 145 | private byte[] mBuffer = new byte[512]; |
| 146 | private long mLastBackupRestoreTime; |
Sunny Goyal | c0ee675 | 2015-01-16 14:10:32 -0800 | [diff] [blame] | 147 | private boolean mBackupDataWasUpdated; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 148 | |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 149 | private IconCache mIconCache; |
| 150 | private DeviceProfieData mDeviceProfileData; |
| 151 | |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 152 | boolean restoreSuccessful; |
Sunny Goyal | 08f7261 | 2015-01-05 13:41:43 -0800 | [diff] [blame] | 153 | int restoredBackupVersion = 1; |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 154 | |
| 155 | public LauncherBackupHelper(Context context) { |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 156 | mContext = context; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 157 | mExistingKeys = new HashSet<String>(); |
Sunny Goyal | 42de82f | 2014-09-26 22:09:29 -0700 | [diff] [blame] | 158 | mKeys = new ArrayList<Key>(); |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 159 | restoreSuccessful = true; |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 160 | mItemTypeMatchers = new ItemTypeMatcher[CommonAppTypeParser.SUPPORTED_TYPE_COUNT]; |
Sunny Goyal | 4fbc382 | 2015-02-18 16:46:50 -0800 | [diff] [blame] | 161 | |
| 162 | UserManagerCompat userManager = UserManagerCompat.getInstance(mContext); |
| 163 | mUserSerial = userManager.getSerialNumberForUser(UserHandleCompat.myUserHandle()); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 164 | } |
| 165 | |
| 166 | private void dataChanged() { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 167 | if (mBackupManager == null) { |
| 168 | mBackupManager = new BackupManager(mContext); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 169 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 170 | mBackupManager.dataChanged(); |
| 171 | } |
| 172 | |
| 173 | private void applyJournal(Journal journal) { |
| 174 | mLastBackupRestoreTime = journal.t; |
| 175 | mExistingKeys.clear(); |
| 176 | if (journal.key != null) { |
| 177 | for (Key key : journal.key) { |
| 178 | mExistingKeys.add(keyToBackupKey(key)); |
| 179 | } |
| 180 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Back up launcher data so we can restore the user's state on a new device. |
| 185 | * |
| 186 | * <P>The journal is a timestamp and a list of keys that were saved as of that time. |
| 187 | * |
| 188 | * <P>Keys may come back in any order, so each key/value is one complete row of the database. |
| 189 | * |
| 190 | * @param oldState notes from the last backup |
| 191 | * @param data incremental key/value pairs to persist off-device |
| 192 | * @param newState notes for the next backup |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 193 | */ |
| 194 | @Override |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 195 | public void performBackup(ParcelFileDescriptor oldState, BackupDataOutput data, |
| 196 | ParcelFileDescriptor newState) { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 197 | if (VERBOSE) Log.v(TAG, "onBackup"); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 198 | |
| 199 | Journal in = readJournal(oldState); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 200 | if (!launcherIsReady()) { |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 201 | dataChanged(); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 202 | // Perform backup later. |
| 203 | writeJournal(newState, in); |
| 204 | return; |
| 205 | } |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 206 | |
Sunny Goyal | 9637364 | 2015-06-05 11:14:01 -0700 | [diff] [blame] | 207 | if (mDeviceProfileData == null) { |
| 208 | LauncherAppState app = LauncherAppState.getInstance(); |
| 209 | mDeviceProfileData = initDeviceProfileData(app.getInvariantDeviceProfile()); |
| 210 | mIconCache = app.getIconCache(); |
| 211 | } |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 212 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 213 | Log.v(TAG, "lastBackupTime = " + in.t); |
| 214 | mKeys.clear(); |
| 215 | applyJournal(in); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 216 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 217 | // Record the time before performing backup so that entries edited while the backup |
| 218 | // was going on, do not get missed in next backup. |
| 219 | long newBackupTime = System.currentTimeMillis(); |
Sunny Goyal | c0ee675 | 2015-01-16 14:10:32 -0800 | [diff] [blame] | 220 | mBackupDataWasUpdated = false; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 221 | try { |
| 222 | backupFavorites(data); |
| 223 | backupScreens(data); |
| 224 | backupIcons(data); |
| 225 | backupWidgets(data); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 226 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 227 | // Delete any key which still exist in the old backup, but is not valid anymore. |
| 228 | HashSet<String> validKeys = new HashSet<String>(); |
| 229 | for (Key key : mKeys) { |
| 230 | validKeys.add(keyToBackupKey(key)); |
Chris Wren | 7114426 | 2014-02-27 15:49:39 -0500 | [diff] [blame] | 231 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 232 | mExistingKeys.removeAll(validKeys); |
| 233 | |
| 234 | // Delete anything left in the existing keys. |
| 235 | for (String deleted: mExistingKeys) { |
| 236 | if (VERBOSE) Log.v(TAG, "dropping deleted item " + deleted); |
| 237 | data.writeEntityHeader(deleted, -1); |
Sunny Goyal | c0ee675 | 2015-01-16 14:10:32 -0800 | [diff] [blame] | 238 | mBackupDataWasUpdated = true; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 239 | } |
| 240 | |
| 241 | mExistingKeys.clear(); |
Sunny Goyal | c0ee675 | 2015-01-16 14:10:32 -0800 | [diff] [blame] | 242 | if (!mBackupDataWasUpdated) { |
| 243 | // Check if any metadata has changed |
| 244 | mBackupDataWasUpdated = (in.profile == null) |
| 245 | || !Arrays.equals(DeviceProfieData.toByteArray(in.profile), |
Sunny Goyal | 9637364 | 2015-06-05 11:14:01 -0700 | [diff] [blame] | 246 | DeviceProfieData.toByteArray(mDeviceProfileData)) |
Sunny Goyal | c0ee675 | 2015-01-16 14:10:32 -0800 | [diff] [blame] | 247 | || (in.backupVersion != BACKUP_VERSION) |
| 248 | || (in.appVersion != getAppVersion()); |
| 249 | } |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 250 | |
Sunny Goyal | c0ee675 | 2015-01-16 14:10:32 -0800 | [diff] [blame] | 251 | if (mBackupDataWasUpdated) { |
| 252 | mLastBackupRestoreTime = newBackupTime; |
| 253 | |
| 254 | // We store the journal at two places. |
| 255 | // 1) Storing it in newState allows us to do partial backups by comparing old state |
| 256 | // 2) Storing it in backup data allows us to validate keys during restore |
| 257 | Journal state = getCurrentStateJournal(); |
| 258 | writeRowToBackup(JOURNAL_KEY, state, data); |
| 259 | } else { |
| 260 | if (DEBUG) Log.d(TAG, "Nothing was written during backup"); |
| 261 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 262 | } catch (IOException e) { |
| 263 | Log.e(TAG, "launcher backup has failed", e); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 264 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 265 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 266 | writeNewStateDescription(newState); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | /** |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 270 | * @return true if the backup corresponding to oldstate can be successfully applied |
| 271 | * to this device. |
| 272 | */ |
| 273 | private boolean isBackupCompatible(Journal oldState) { |
Sunny Goyal | 9637364 | 2015-06-05 11:14:01 -0700 | [diff] [blame] | 274 | DeviceProfieData currentProfile = mDeviceProfileData; |
Sunny Goyal | 5fd733d | 2014-10-29 10:51:54 -0700 | [diff] [blame] | 275 | DeviceProfieData oldProfile = oldState.profile; |
| 276 | |
| 277 | if (oldProfile == null || oldProfile.desktopCols == 0) { |
| 278 | // Profile info is not valid, ignore the check. |
| 279 | return true; |
| 280 | } |
| 281 | |
| 282 | boolean isHotsetCompatible = false; |
| 283 | if (currentProfile.allappsRank >= oldProfile.hotseatCount) { |
| 284 | isHotsetCompatible = true; |
| 285 | } |
| 286 | if ((currentProfile.hotseatCount >= oldProfile.hotseatCount) && |
| 287 | (currentProfile.allappsRank == oldProfile.allappsRank)) { |
| 288 | isHotsetCompatible = true; |
| 289 | } |
| 290 | |
| 291 | return isHotsetCompatible && (currentProfile.desktopCols >= oldProfile.desktopCols) |
| 292 | && (currentProfile.desktopRows >= oldProfile.desktopRows); |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | /** |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 296 | * Restore launcher configuration from the restored data stream. |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 297 | * It assumes that the keys will arrive in lexical order. So if the journal was present in the |
| 298 | * backup, it should arrive first. |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 299 | * |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 300 | * @param data the key/value pair from the server |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 301 | */ |
| 302 | @Override |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 303 | public void restoreEntity(BackupDataInputStream data) { |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 304 | if (!restoreSuccessful) { |
| 305 | return; |
| 306 | } |
Sunny Goyal | 9637364 | 2015-06-05 11:14:01 -0700 | [diff] [blame] | 307 | |
| 308 | if (mDeviceProfileData == null) { |
| 309 | // This call does not happen on a looper thread. So LauncherAppState |
| 310 | // can't be created . Instead initialize required dependencies directly. |
| 311 | InvariantDeviceProfile profile = new InvariantDeviceProfile(mContext); |
| 312 | mDeviceProfileData = initDeviceProfileData(profile); |
| 313 | mIconCache = new IconCache(mContext, profile); |
| 314 | } |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 315 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 316 | int dataSize = data.size(); |
| 317 | if (mBuffer.length < dataSize) { |
| 318 | mBuffer = new byte[dataSize]; |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 319 | } |
| 320 | try { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 321 | int bytesRead = data.read(mBuffer, 0, dataSize); |
| 322 | if (DEBUG) Log.d(TAG, "read " + bytesRead + " of " + dataSize + " available"); |
| 323 | String backupKey = data.getKey(); |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 324 | |
| 325 | if (JOURNAL_KEY.equals(backupKey)) { |
| 326 | if (VERBOSE) Log.v(TAG, "Journal entry restored"); |
| 327 | if (!mKeys.isEmpty()) { |
| 328 | // We received the journal key after a restore key. |
| 329 | Log.wtf(TAG, keyToBackupKey(mKeys.get(0)) + " received after " + JOURNAL_KEY); |
| 330 | restoreSuccessful = false; |
| 331 | return; |
| 332 | } |
| 333 | |
| 334 | Journal journal = new Journal(); |
| 335 | MessageNano.mergeFrom(journal, readCheckedBytes(mBuffer, dataSize)); |
| 336 | applyJournal(journal); |
| 337 | restoreSuccessful = isBackupCompatible(journal); |
Sunny Goyal | 08f7261 | 2015-01-05 13:41:43 -0800 | [diff] [blame] | 338 | restoredBackupVersion = journal.backupVersion; |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 339 | return; |
| 340 | } |
| 341 | |
| 342 | if (!mExistingKeys.isEmpty() && !mExistingKeys.contains(backupKey)) { |
| 343 | if (DEBUG) Log.e(TAG, "Ignoring key not present in the backup state " + backupKey); |
| 344 | return; |
| 345 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 346 | Key key = backupKeyToKey(backupKey); |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 347 | mKeys.add(key); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 348 | switch (key.type) { |
| 349 | case Key.FAVORITE: |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 350 | restoreFavorite(key, mBuffer, dataSize); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 351 | break; |
| 352 | |
| 353 | case Key.SCREEN: |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 354 | restoreScreen(key, mBuffer, dataSize); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 355 | break; |
| 356 | |
| 357 | case Key.ICON: |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 358 | restoreIcon(key, mBuffer, dataSize); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 359 | break; |
| 360 | |
| 361 | case Key.WIDGET: |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 362 | restoreWidget(key, mBuffer, dataSize); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 363 | break; |
| 364 | |
| 365 | default: |
| 366 | Log.w(TAG, "unknown restore entity type: " + key.type); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 367 | mKeys.remove(key); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 368 | break; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 369 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 370 | } catch (IOException e) { |
| 371 | Log.w(TAG, "ignoring unparsable backup entry", e); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 372 | } |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | /** |
| 376 | * Record the restore state for the next backup. |
| 377 | * |
| 378 | * @param newState notes about the backup state after restore. |
| 379 | */ |
| 380 | @Override |
| 381 | public void writeNewStateDescription(ParcelFileDescriptor newState) { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 382 | writeJournal(newState, getCurrentStateJournal()); |
| 383 | } |
| 384 | |
| 385 | private Journal getCurrentStateJournal() { |
| 386 | Journal journal = new Journal(); |
| 387 | journal.t = mLastBackupRestoreTime; |
| 388 | journal.key = mKeys.toArray(new BackupProtos.Key[mKeys.size()]); |
| 389 | journal.appVersion = getAppVersion(); |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 390 | journal.backupVersion = BACKUP_VERSION; |
Sunny Goyal | 9637364 | 2015-06-05 11:14:01 -0700 | [diff] [blame] | 391 | journal.profile = mDeviceProfileData; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 392 | return journal; |
| 393 | } |
| 394 | |
| 395 | private int getAppVersion() { |
| 396 | try { |
| 397 | return mContext.getPackageManager() |
| 398 | .getPackageInfo(mContext.getPackageName(), 0).versionCode; |
| 399 | } catch (NameNotFoundException e) { |
| 400 | return 0; |
| 401 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 402 | } |
| 403 | |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 404 | private DeviceProfieData initDeviceProfileData(InvariantDeviceProfile profile) { |
| 405 | DeviceProfieData data = new DeviceProfieData(); |
| 406 | data.desktopRows = profile.numRows; |
| 407 | data.desktopCols = profile.numColumns; |
| 408 | data.hotseatCount = profile.numHotseatIcons; |
| 409 | data.allappsRank = profile.hotseatAllAppsRank; |
| 410 | return data; |
Sunny Goyal | 33d4438 | 2014-10-16 09:24:19 -0700 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | /** |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 414 | * Write all modified favorites to the data stream. |
| 415 | * |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 416 | * @param data output stream for key/value pairs |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 417 | * @throws IOException |
| 418 | */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 419 | private void backupFavorites(BackupDataOutput data) throws IOException { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 420 | // persist things that have changed since the last backup |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 421 | ContentResolver cr = mContext.getContentResolver(); |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 422 | // Don't backup apps in other profiles for now. |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 423 | Cursor cursor = cr.query(Favorites.CONTENT_URI, FAVORITE_PROJECTION, |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 424 | getUserSelectionArg(), null, null); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 425 | try { |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 426 | cursor.moveToPosition(-1); |
| 427 | while(cursor.moveToNext()) { |
| 428 | final long id = cursor.getLong(ID_INDEX); |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 429 | final long updateTime = cursor.getLong(ID_MODIFIED); |
| 430 | Key key = getKey(Key.FAVORITE, id); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 431 | mKeys.add(key); |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 432 | final String backupKey = keyToBackupKey(key); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 433 | if (!mExistingKeys.contains(backupKey) || updateTime >= mLastBackupRestoreTime) { |
| 434 | writeRowToBackup(key, packFavorite(cursor), data); |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 435 | } else { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 436 | if (DEBUG) Log.d(TAG, "favorite already backup up: " + id); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 437 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 438 | } |
| 439 | } finally { |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 440 | cursor.close(); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 441 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 442 | } |
| 443 | |
| 444 | /** |
| 445 | * Read a favorite from the stream. |
| 446 | * |
| 447 | * <P>Keys arrive in any order, so screens and containers may not exist yet. |
| 448 | * |
| 449 | * @param key identifier for the row |
| 450 | * @param buffer the serialized proto from the stream, may be larger than dataSize |
| 451 | * @param dataSize the size of the proto from the stream |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 452 | */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 453 | private void restoreFavorite(Key key, byte[] buffer, int dataSize) throws IOException { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 454 | if (VERBOSE) Log.v(TAG, "unpacking favorite " + key.id); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 455 | if (DEBUG) Log.d(TAG, "read (" + buffer.length + "): " + |
| 456 | Base64.encodeToString(buffer, 0, dataSize, Base64.NO_WRAP)); |
| 457 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 458 | ContentResolver cr = mContext.getContentResolver(); |
| 459 | ContentValues values = unpackFavorite(buffer, dataSize); |
Sunny Goyal | 1d4a2df | 2015-03-30 11:11:46 -0700 | [diff] [blame] | 460 | cr.insert(Favorites.CONTENT_URI, values); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | /** |
| 464 | * Write all modified screens to the data stream. |
| 465 | * |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 466 | * @param data output stream for key/value pairs |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 467 | * @throws IOException |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 468 | */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 469 | private void backupScreens(BackupDataOutput data) throws IOException { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 470 | // persist things that have changed since the last backup |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 471 | ContentResolver cr = mContext.getContentResolver(); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 472 | Cursor cursor = cr.query(WorkspaceScreens.CONTENT_URI, SCREEN_PROJECTION, |
| 473 | null, null, null); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 474 | try { |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 475 | cursor.moveToPosition(-1); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 476 | if (DEBUG) Log.d(TAG, "dumping screens after: " + mLastBackupRestoreTime); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 477 | while(cursor.moveToNext()) { |
| 478 | final long id = cursor.getLong(ID_INDEX); |
| 479 | final long updateTime = cursor.getLong(ID_MODIFIED); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 480 | Key key = getKey(Key.SCREEN, id); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 481 | mKeys.add(key); |
Chris Wren | 5743aa9 | 2014-01-10 18:02:06 -0500 | [diff] [blame] | 482 | final String backupKey = keyToBackupKey(key); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 483 | if (!mExistingKeys.contains(backupKey) || updateTime >= mLastBackupRestoreTime) { |
| 484 | writeRowToBackup(key, packScreen(cursor), data); |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 485 | } else { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 486 | if (VERBOSE) Log.v(TAG, "screen already backup up " + id); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 487 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 488 | } |
| 489 | } finally { |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 490 | cursor.close(); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 491 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | /** |
| 495 | * Read a screen from the stream. |
| 496 | * |
| 497 | * <P>Keys arrive in any order, so children of this screen may already exist. |
| 498 | * |
| 499 | * @param key identifier for the row |
| 500 | * @param buffer the serialized proto from the stream, may be larger than dataSize |
| 501 | * @param dataSize the size of the proto from the stream |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 502 | */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 503 | private void restoreScreen(Key key, byte[] buffer, int dataSize) throws IOException { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 504 | if (VERBOSE) Log.v(TAG, "unpacking screen " + key.id); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 505 | if (DEBUG) Log.d(TAG, "read (" + buffer.length + "): " + |
| 506 | Base64.encodeToString(buffer, 0, dataSize, Base64.NO_WRAP)); |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 507 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 508 | ContentResolver cr = mContext.getContentResolver(); |
| 509 | ContentValues values = unpackScreen(buffer, dataSize); |
| 510 | cr.insert(WorkspaceScreens.CONTENT_URI, values); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 511 | } |
| 512 | |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 513 | /** |
| 514 | * Write all the static icon resources we need to render placeholders |
| 515 | * for a package that is not installed. |
| 516 | * |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 517 | * @param data output stream for key/value pairs |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 518 | */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 519 | private void backupIcons(BackupDataOutput data) throws IOException { |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 520 | // persist icons that haven't been persisted yet |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 521 | final ContentResolver cr = mContext.getContentResolver(); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 522 | final int dpi = mContext.getResources().getDisplayMetrics().densityDpi; |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 523 | final UserHandleCompat myUserHandle = UserHandleCompat.myUserHandle(); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 524 | int backupUpIconCount = 0; |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 525 | |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 526 | // Don't backup apps in other profiles for now. |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 527 | String where = "(" + Favorites.ITEM_TYPE + "=" + Favorites.ITEM_TYPE_APPLICATION + " OR " + |
Kenny Guy | 43ea7ac | 2014-05-09 16:44:18 +0100 | [diff] [blame] | 528 | Favorites.ITEM_TYPE + "=" + Favorites.ITEM_TYPE_SHORTCUT + ") AND " + |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 529 | getUserSelectionArg(); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 530 | Cursor cursor = cr.query(Favorites.CONTENT_URI, FAVORITE_PROJECTION, |
| 531 | where, null, null); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 532 | try { |
| 533 | cursor.moveToPosition(-1); |
| 534 | while(cursor.moveToNext()) { |
| 535 | final long id = cursor.getLong(ID_INDEX); |
| 536 | final String intentDescription = cursor.getString(INTENT_INDEX); |
| 537 | try { |
| 538 | Intent intent = Intent.parseUri(intentDescription, 0); |
| 539 | ComponentName cn = intent.getComponent(); |
| 540 | Key key = null; |
| 541 | String backupKey = null; |
| 542 | if (cn != null) { |
| 543 | key = getKey(Key.ICON, cn.flattenToShortString()); |
| 544 | backupKey = keyToBackupKey(key); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 545 | } else { |
| 546 | Log.w(TAG, "empty intent on application favorite: " + id); |
| 547 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 548 | if (mExistingKeys.contains(backupKey)) { |
| 549 | if (DEBUG) Log.d(TAG, "already saved icon " + backupKey); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 550 | |
| 551 | // remember that we already backed this up previously |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 552 | mKeys.add(key); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 553 | } else if (backupKey != null) { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 554 | if (DEBUG) Log.d(TAG, "I can count this high: " + backupUpIconCount); |
| 555 | if (backupUpIconCount < MAX_ICONS_PER_PASS) { |
| 556 | if (DEBUG) Log.d(TAG, "saving icon " + backupKey); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 557 | Bitmap icon = mIconCache.getIcon(intent, myUserHandle); |
Kenny Guy | ed13187 | 2014-04-30 03:02:21 +0100 | [diff] [blame] | 558 | if (icon != null && !mIconCache.isDefaultIcon(icon, myUserHandle)) { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 559 | writeRowToBackup(key, packIcon(dpi, icon), data); |
| 560 | mKeys.add(key); |
| 561 | backupUpIconCount ++; |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 562 | } |
| 563 | } else { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 564 | if (VERBOSE) Log.v(TAG, "deferring icon backup " + backupKey); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 565 | // too many icons for this pass, request another. |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 566 | dataChanged(); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 567 | } |
| 568 | } |
| 569 | } catch (URISyntaxException e) { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 570 | Log.e(TAG, "invalid URI on application favorite: " + id); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 571 | } catch (IOException e) { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 572 | Log.e(TAG, "unable to save application icon for favorite: " + id); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 573 | } |
| 574 | |
| 575 | } |
| 576 | } finally { |
| 577 | cursor.close(); |
| 578 | } |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 579 | } |
| 580 | |
| 581 | /** |
| 582 | * Read an icon from the stream. |
| 583 | * |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 584 | * <P>Keys arrive in any order, so shortcuts that use this icon may already exist. |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 585 | * |
| 586 | * @param key identifier for the row |
| 587 | * @param buffer the serialized proto from the stream, may be larger than dataSize |
| 588 | * @param dataSize the size of the proto from the stream |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 589 | */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 590 | private void restoreIcon(Key key, byte[] buffer, int dataSize) throws IOException { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 591 | if (VERBOSE) Log.v(TAG, "unpacking icon " + key.id); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 592 | if (DEBUG) Log.d(TAG, "read (" + buffer.length + "): " + |
| 593 | Base64.encodeToString(buffer, 0, dataSize, Base64.NO_WRAP)); |
Chris Wren | 6d0dde0 | 2014-02-10 12:16:54 -0500 | [diff] [blame] | 594 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 595 | Resource res = unpackProto(new Resource(), buffer, dataSize); |
| 596 | if (DEBUG) { |
| 597 | Log.d(TAG, "unpacked " + res.dpi + " dpi icon"); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 598 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 599 | Bitmap icon = BitmapFactory.decodeByteArray(res.data, 0, res.data.length); |
| 600 | if (icon == null) { |
| 601 | Log.w(TAG, "failed to unpack icon for " + key.name); |
| 602 | } |
| 603 | if (VERBOSE) Log.v(TAG, "saving restored icon as: " + key.name); |
Sunny Goyal | 4fbc382 | 2015-02-18 16:46:50 -0800 | [diff] [blame] | 604 | mIconCache.preloadIcon(ComponentName.unflattenFromString(key.name), icon, res.dpi, |
| 605 | "" /* label */, mUserSerial); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 606 | } |
| 607 | |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 608 | /** |
| 609 | * Write all the static widget resources we need to render placeholders |
| 610 | * for a package that is not installed. |
| 611 | * |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 612 | * @param data output stream for key/value pairs |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 613 | * @throws IOException |
| 614 | */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 615 | private void backupWidgets(BackupDataOutput data) throws IOException { |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 616 | // persist static widget info that hasn't been persisted yet |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 617 | final ContentResolver cr = mContext.getContentResolver(); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 618 | final int dpi = mContext.getResources().getDisplayMetrics().densityDpi; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 619 | int backupWidgetCount = 0; |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 620 | |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 621 | String where = Favorites.ITEM_TYPE + "=" + Favorites.ITEM_TYPE_APPWIDGET + " AND " |
| 622 | + getUserSelectionArg(); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 623 | Cursor cursor = cr.query(Favorites.CONTENT_URI, FAVORITE_PROJECTION, |
| 624 | where, null, null); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 625 | try { |
| 626 | cursor.moveToPosition(-1); |
| 627 | while(cursor.moveToNext()) { |
| 628 | final long id = cursor.getLong(ID_INDEX); |
| 629 | final String providerName = cursor.getString(APPWIDGET_PROVIDER_INDEX); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 630 | final ComponentName provider = ComponentName.unflattenFromString(providerName); |
| 631 | Key key = null; |
| 632 | String backupKey = null; |
| 633 | if (provider != null) { |
| 634 | key = getKey(Key.WIDGET, providerName); |
| 635 | backupKey = keyToBackupKey(key); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 636 | } else { |
| 637 | Log.w(TAG, "empty intent on appwidget: " + id); |
| 638 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 639 | if (mExistingKeys.contains(backupKey)) { |
| 640 | if (DEBUG) Log.d(TAG, "already saved widget " + backupKey); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 641 | |
| 642 | // remember that we already backed this up previously |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 643 | mKeys.add(key); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 644 | } else if (backupKey != null) { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 645 | if (DEBUG) Log.d(TAG, "I can count this high: " + backupWidgetCount); |
| 646 | if (backupWidgetCount < MAX_WIDGETS_PER_PASS) { |
| 647 | if (DEBUG) Log.d(TAG, "saving widget " + backupKey); |
Robin Lee | 26ace12 | 2015-03-16 19:41:43 +0000 | [diff] [blame] | 648 | UserHandleCompat user = UserHandleCompat.myUserHandle(); |
Sunny Goyal | 9637364 | 2015-06-05 11:14:01 -0700 | [diff] [blame] | 649 | writeRowToBackup(key, packWidget(dpi, provider, user), data); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 650 | mKeys.add(key); |
| 651 | backupWidgetCount ++; |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 652 | } else { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 653 | if (VERBOSE) Log.v(TAG, "deferring widget backup " + backupKey); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 654 | // too many widgets for this pass, request another. |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 655 | dataChanged(); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 656 | } |
| 657 | } |
| 658 | } |
| 659 | } finally { |
| 660 | cursor.close(); |
| 661 | } |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 662 | } |
| 663 | |
| 664 | /** |
| 665 | * Read a widget from the stream. |
| 666 | * |
| 667 | * <P>Keys arrive in any order, so widgets that use this data may already exist. |
| 668 | * |
| 669 | * @param key identifier for the row |
| 670 | * @param buffer the serialized proto from the stream, may be larger than dataSize |
| 671 | * @param dataSize the size of the proto from the stream |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 672 | */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 673 | private void restoreWidget(Key key, byte[] buffer, int dataSize) throws IOException { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 674 | if (VERBOSE) Log.v(TAG, "unpacking widget " + key.id); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 675 | if (DEBUG) Log.d(TAG, "read (" + buffer.length + "): " + |
| 676 | Base64.encodeToString(buffer, 0, dataSize, Base64.NO_WRAP)); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 677 | Widget widget = unpackProto(new Widget(), buffer, dataSize); |
| 678 | if (DEBUG) Log.d(TAG, "unpacked " + widget.provider); |
| 679 | if (widget.icon.data != null) { |
| 680 | Bitmap icon = BitmapFactory |
| 681 | .decodeByteArray(widget.icon.data, 0, widget.icon.data.length); |
| 682 | if (icon == null) { |
| 683 | Log.w(TAG, "failed to unpack widget icon for " + key.name); |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 684 | } else { |
Sunny Goyal | 4fbc382 | 2015-02-18 16:46:50 -0800 | [diff] [blame] | 685 | mIconCache.preloadIcon(ComponentName.unflattenFromString(widget.provider), |
| 686 | icon, widget.icon.dpi, widget.label, mUserSerial); |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 687 | } |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 688 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 689 | |
| 690 | // future site of widget table mutation |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 691 | } |
| 692 | |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 693 | /** create a new key, with an integer ID. |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 694 | * |
| 695 | * <P> Keys contain their own checksum instead of using |
| 696 | * the heavy-weight CheckedMessage wrapper. |
| 697 | */ |
| 698 | private Key getKey(int type, long id) { |
| 699 | Key key = new Key(); |
| 700 | key.type = type; |
| 701 | key.id = id; |
| 702 | key.checksum = checkKey(key); |
| 703 | return key; |
| 704 | } |
| 705 | |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 706 | /** create a new key for a named object. |
| 707 | * |
| 708 | * <P> Keys contain their own checksum instead of using |
| 709 | * the heavy-weight CheckedMessage wrapper. |
| 710 | */ |
| 711 | private Key getKey(int type, String name) { |
| 712 | Key key = new Key(); |
| 713 | key.type = type; |
| 714 | key.name = name; |
| 715 | key.checksum = checkKey(key); |
| 716 | return key; |
| 717 | } |
| 718 | |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 719 | /** keys need to be strings, serialize and encode. */ |
| 720 | private String keyToBackupKey(Key key) { |
Chris Wren | 978194c | 2013-10-03 17:47:22 -0400 | [diff] [blame] | 721 | return Base64.encodeToString(Key.toByteArray(key), Base64.NO_WRAP); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 722 | } |
| 723 | |
| 724 | /** keys need to be strings, decode and parse. */ |
Sunny Goyal | 5fd733d | 2014-10-29 10:51:54 -0700 | [diff] [blame] | 725 | private Key backupKeyToKey(String backupKey) throws InvalidBackupException { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 726 | try { |
| 727 | Key key = Key.parseFrom(Base64.decode(backupKey, Base64.DEFAULT)); |
| 728 | if (key.checksum != checkKey(key)) { |
| 729 | key = null; |
Sunny Goyal | 5fd733d | 2014-10-29 10:51:54 -0700 | [diff] [blame] | 730 | throw new InvalidBackupException("invalid key read from stream" + backupKey); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 731 | } |
| 732 | return key; |
| 733 | } catch (InvalidProtocolBufferNanoException e) { |
Sunny Goyal | 5fd733d | 2014-10-29 10:51:54 -0700 | [diff] [blame] | 734 | throw new InvalidBackupException(e); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 735 | } catch (IllegalArgumentException e) { |
Sunny Goyal | 5fd733d | 2014-10-29 10:51:54 -0700 | [diff] [blame] | 736 | throw new InvalidBackupException(e); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 737 | } |
| 738 | } |
| 739 | |
| 740 | /** Compute the checksum over the important bits of a key. */ |
| 741 | private long checkKey(Key key) { |
| 742 | CRC32 checksum = new CRC32(); |
| 743 | checksum.update(key.type); |
| 744 | checksum.update((int) (key.id & 0xffff)); |
| 745 | checksum.update((int) ((key.id >> 32) & 0xffff)); |
| 746 | if (!TextUtils.isEmpty(key.name)) { |
| 747 | checksum.update(key.name.getBytes()); |
| 748 | } |
| 749 | return checksum.getValue(); |
| 750 | } |
| 751 | |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 752 | /** |
| 753 | * @return true if its an hotseat item, that can be replaced during restore. |
| 754 | * TODO: Extend check for folders in hotseat. |
| 755 | */ |
| 756 | private boolean isReplaceableHotseatItem(Favorite favorite) { |
| 757 | return favorite.container == Favorites.CONTAINER_HOTSEAT |
| 758 | && favorite.intent != null |
| 759 | && (favorite.itemType == Favorites.ITEM_TYPE_APPLICATION |
| 760 | || favorite.itemType == Favorites.ITEM_TYPE_SHORTCUT); |
| 761 | } |
| 762 | |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 763 | /** Serialize a Favorite for persistence, including a checksum wrapper. */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 764 | private Favorite packFavorite(Cursor c) { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 765 | Favorite favorite = new Favorite(); |
| 766 | favorite.id = c.getLong(ID_INDEX); |
| 767 | favorite.screen = c.getInt(SCREEN_INDEX); |
| 768 | favorite.container = c.getInt(CONTAINER_INDEX); |
| 769 | favorite.cellX = c.getInt(CELLX_INDEX); |
| 770 | favorite.cellY = c.getInt(CELLY_INDEX); |
| 771 | favorite.spanX = c.getInt(SPANX_INDEX); |
| 772 | favorite.spanY = c.getInt(SPANY_INDEX); |
| 773 | favorite.iconType = c.getInt(ICON_TYPE_INDEX); |
| 774 | if (favorite.iconType == Favorites.ICON_TYPE_RESOURCE) { |
| 775 | String iconPackage = c.getString(ICON_PACKAGE_INDEX); |
| 776 | if (!TextUtils.isEmpty(iconPackage)) { |
| 777 | favorite.iconPackage = iconPackage; |
| 778 | } |
| 779 | String iconResource = c.getString(ICON_RESOURCE_INDEX); |
| 780 | if (!TextUtils.isEmpty(iconResource)) { |
| 781 | favorite.iconResource = iconResource; |
| 782 | } |
| 783 | } |
| 784 | if (favorite.iconType == Favorites.ICON_TYPE_BITMAP) { |
| 785 | byte[] blob = c.getBlob(ICON_INDEX); |
| 786 | if (blob != null && blob.length > 0) { |
| 787 | favorite.icon = blob; |
| 788 | } |
| 789 | } |
| 790 | String title = c.getString(TITLE_INDEX); |
| 791 | if (!TextUtils.isEmpty(title)) { |
| 792 | favorite.title = title; |
| 793 | } |
Kenny Guy | f8b1dfd | 2014-05-13 12:59:34 +0100 | [diff] [blame] | 794 | String intentDescription = c.getString(INTENT_INDEX); |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 795 | Intent intent = null; |
Kenny Guy | f8b1dfd | 2014-05-13 12:59:34 +0100 | [diff] [blame] | 796 | if (!TextUtils.isEmpty(intentDescription)) { |
| 797 | try { |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 798 | intent = Intent.parseUri(intentDescription, 0); |
Kenny Guy | f8b1dfd | 2014-05-13 12:59:34 +0100 | [diff] [blame] | 799 | intent.removeExtra(ItemInfo.EXTRA_PROFILE); |
| 800 | favorite.intent = intent.toUri(0); |
| 801 | } catch (URISyntaxException e) { |
| 802 | Log.e(TAG, "Invalid intent", e); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 803 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 804 | } |
| 805 | favorite.itemType = c.getInt(ITEM_TYPE_INDEX); |
| 806 | if (favorite.itemType == Favorites.ITEM_TYPE_APPWIDGET) { |
| 807 | favorite.appWidgetId = c.getInt(APPWIDGET_ID_INDEX); |
| 808 | String appWidgetProvider = c.getString(APPWIDGET_PROVIDER_INDEX); |
| 809 | if (!TextUtils.isEmpty(appWidgetProvider)) { |
| 810 | favorite.appWidgetProvider = appWidgetProvider; |
| 811 | } |
| 812 | } |
| 813 | |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 814 | if (isReplaceableHotseatItem(favorite)) { |
| 815 | if (intent != null && intent.getComponent() != null) { |
| 816 | PackageManager pm = mContext.getPackageManager(); |
| 817 | ActivityInfo activity = null;; |
| 818 | try { |
| 819 | activity = pm.getActivityInfo(intent.getComponent(), 0); |
| 820 | } catch (NameNotFoundException e) { |
| 821 | Log.e(TAG, "Target not found", e); |
| 822 | } |
| 823 | if (activity == null) { |
| 824 | return favorite; |
| 825 | } |
| 826 | for (int i = 0; i < mItemTypeMatchers.length; i++) { |
| 827 | if (mItemTypeMatchers[i] == null) { |
| 828 | mItemTypeMatchers[i] = new ItemTypeMatcher( |
| 829 | CommonAppTypeParser.getResourceForItemType(i)); |
| 830 | } |
| 831 | if (mItemTypeMatchers[i].matches(activity, pm)) { |
| 832 | favorite.targetType = i; |
| 833 | break; |
| 834 | } |
| 835 | } |
| 836 | } |
| 837 | } |
| 838 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 839 | return favorite; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 840 | } |
| 841 | |
| 842 | /** Deserialize a Favorite from persistence, after verifying checksum wrapper. */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 843 | private ContentValues unpackFavorite(byte[] buffer, int dataSize) |
Sunny Goyal | 5fd733d | 2014-10-29 10:51:54 -0700 | [diff] [blame] | 844 | throws IOException { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 845 | Favorite favorite = unpackProto(new Favorite(), buffer, dataSize); |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 846 | |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 847 | ContentValues values = new ContentValues(); |
| 848 | values.put(Favorites._ID, favorite.id); |
| 849 | values.put(Favorites.SCREEN, favorite.screen); |
| 850 | values.put(Favorites.CONTAINER, favorite.container); |
| 851 | values.put(Favorites.CELLX, favorite.cellX); |
| 852 | values.put(Favorites.CELLY, favorite.cellY); |
| 853 | values.put(Favorites.SPANX, favorite.spanX); |
| 854 | values.put(Favorites.SPANY, favorite.spanY); |
| 855 | values.put(Favorites.ICON_TYPE, favorite.iconType); |
| 856 | if (favorite.iconType == Favorites.ICON_TYPE_RESOURCE) { |
| 857 | values.put(Favorites.ICON_PACKAGE, favorite.iconPackage); |
| 858 | values.put(Favorites.ICON_RESOURCE, favorite.iconResource); |
| 859 | } |
| 860 | if (favorite.iconType == Favorites.ICON_TYPE_BITMAP) { |
| 861 | values.put(Favorites.ICON, favorite.icon); |
| 862 | } |
| 863 | if (!TextUtils.isEmpty(favorite.title)) { |
| 864 | values.put(Favorites.TITLE, favorite.title); |
| 865 | } else { |
| 866 | values.put(Favorites.TITLE, ""); |
| 867 | } |
| 868 | if (!TextUtils.isEmpty(favorite.intent)) { |
| 869 | values.put(Favorites.INTENT, favorite.intent); |
| 870 | } |
| 871 | values.put(Favorites.ITEM_TYPE, favorite.itemType); |
Chris Wren | f4d0811 | 2014-01-16 18:13:56 -0500 | [diff] [blame] | 872 | |
Kenny Guy | f8b1dfd | 2014-05-13 12:59:34 +0100 | [diff] [blame] | 873 | UserHandleCompat myUserHandle = UserHandleCompat.myUserHandle(); |
| 874 | long userSerialNumber = |
| 875 | UserManagerCompat.getInstance(mContext).getSerialNumberForUser(myUserHandle); |
| 876 | values.put(LauncherSettings.Favorites.PROFILE_ID, userSerialNumber); |
| 877 | |
Sunny Goyal | 9637364 | 2015-06-05 11:14:01 -0700 | [diff] [blame] | 878 | DeviceProfieData currentProfile = mDeviceProfileData; |
Sunny Goyal | 5fd733d | 2014-10-29 10:51:54 -0700 | [diff] [blame] | 879 | |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 880 | if (favorite.itemType == Favorites.ITEM_TYPE_APPWIDGET) { |
| 881 | if (!TextUtils.isEmpty(favorite.appWidgetProvider)) { |
| 882 | values.put(Favorites.APPWIDGET_PROVIDER, favorite.appWidgetProvider); |
| 883 | } |
| 884 | values.put(Favorites.APPWIDGET_ID, favorite.appWidgetId); |
| 885 | values.put(LauncherSettings.Favorites.RESTORED, |
| 886 | LauncherAppWidgetInfo.FLAG_ID_NOT_VALID | |
| 887 | LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY | |
| 888 | LauncherAppWidgetInfo.FLAG_UI_NOT_READY); |
Sunny Goyal | 5fd733d | 2014-10-29 10:51:54 -0700 | [diff] [blame] | 889 | |
| 890 | // Verify placement |
| 891 | if (((favorite.cellX + favorite.spanX) > currentProfile.desktopCols) |
| 892 | || ((favorite.cellY + favorite.spanY) > currentProfile.desktopRows)) { |
| 893 | restoreSuccessful = false; |
| 894 | throw new InvalidBackupException("Widget not in screen bounds, aborting restore"); |
| 895 | } |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 896 | } else { |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 897 | // Check if it is an hotseat item, that can be replaced. |
| 898 | if (isReplaceableHotseatItem(favorite) |
| 899 | && favorite.targetType != Favorite.TARGET_NONE |
| 900 | && favorite.targetType < CommonAppTypeParser.SUPPORTED_TYPE_COUNT) { |
| 901 | Log.e(TAG, "Added item type flag"); |
| 902 | values.put(LauncherSettings.Favorites.RESTORED, |
| 903 | 1 | CommonAppTypeParser.encodeItemTypeToFlag(favorite.targetType)); |
| 904 | } else { |
| 905 | // Let LauncherModel know we've been here. |
| 906 | values.put(LauncherSettings.Favorites.RESTORED, 1); |
| 907 | } |
Sunny Goyal | 5fd733d | 2014-10-29 10:51:54 -0700 | [diff] [blame] | 908 | |
| 909 | // Verify placement |
| 910 | if (favorite.container == Favorites.CONTAINER_HOTSEAT) { |
| 911 | if ((favorite.screen >= currentProfile.hotseatCount) |
| 912 | || (favorite.screen == currentProfile.allappsRank)) { |
| 913 | restoreSuccessful = false; |
| 914 | throw new InvalidBackupException("Item not in hotseat bounds, aborting restore"); |
| 915 | } |
| 916 | } else { |
| 917 | if ((favorite.cellX >= currentProfile.desktopCols) |
| 918 | || (favorite.cellY >= currentProfile.desktopRows)) { |
| 919 | restoreSuccessful = false; |
| 920 | throw new InvalidBackupException("Item not in desktop bounds, aborting restore"); |
| 921 | } |
| 922 | } |
Sunny Goyal | ff57227 | 2014-07-23 13:58:07 -0700 | [diff] [blame] | 923 | } |
Chris Wren | f4d0811 | 2014-01-16 18:13:56 -0500 | [diff] [blame] | 924 | |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 925 | return values; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 926 | } |
| 927 | |
| 928 | /** Serialize a Screen for persistence, including a checksum wrapper. */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 929 | private Screen packScreen(Cursor c) { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 930 | Screen screen = new Screen(); |
| 931 | screen.id = c.getLong(ID_INDEX); |
| 932 | screen.rank = c.getInt(SCREEN_RANK_INDEX); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 933 | return screen; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 934 | } |
| 935 | |
| 936 | /** Deserialize a Screen from persistence, after verifying checksum wrapper. */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 937 | private ContentValues unpackScreen(byte[] buffer, int dataSize) |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 938 | throws InvalidProtocolBufferNanoException { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 939 | Screen screen = unpackProto(new Screen(), buffer, dataSize); |
Chris Wren | 5dee7af | 2013-12-20 17:22:11 -0500 | [diff] [blame] | 940 | ContentValues values = new ContentValues(); |
| 941 | values.put(WorkspaceScreens._ID, screen.id); |
| 942 | values.put(WorkspaceScreens.SCREEN_RANK, screen.rank); |
| 943 | return values; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 944 | } |
| 945 | |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 946 | /** Serialize an icon Resource for persistence, including a checksum wrapper. */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 947 | private Resource packIcon(int dpi, Bitmap icon) { |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 948 | Resource res = new Resource(); |
| 949 | res.dpi = dpi; |
Sunny Goyal | 73a22a5 | 2015-04-28 16:51:09 -0700 | [diff] [blame] | 950 | res.data = Utilities.flattenBitmap(icon); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 951 | return res; |
| 952 | } |
| 953 | |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 954 | /** Serialize a widget for persistence, including a checksum wrapper. */ |
Sunny Goyal | 9637364 | 2015-06-05 11:14:01 -0700 | [diff] [blame] | 955 | private Widget packWidget(int dpi, ComponentName provider, UserHandleCompat user) { |
Adam Cohen | 5940042 | 2014-03-05 18:07:04 -0800 | [diff] [blame] | 956 | final LauncherAppWidgetProviderInfo info = |
Robin Lee | 26ace12 | 2015-03-16 19:41:43 +0000 | [diff] [blame] | 957 | LauncherModel.getProviderInfo(mContext, provider, user); |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 958 | Widget widget = new Widget(); |
| 959 | widget.provider = provider.flattenToShortString(); |
| 960 | widget.label = info.label; |
| 961 | widget.configure = info.configure != null; |
| 962 | if (info.icon != 0) { |
| 963 | widget.icon = new Resource(); |
Sunny Goyal | 9637364 | 2015-06-05 11:14:01 -0700 | [diff] [blame] | 964 | Drawable fullResIcon = mIconCache.getFullResIcon(provider.getPackageName(), info.icon); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 965 | Bitmap icon = Utilities.createIconBitmap(fullResIcon, mContext); |
Sunny Goyal | 73a22a5 | 2015-04-28 16:51:09 -0700 | [diff] [blame] | 966 | widget.icon.data = Utilities.flattenBitmap(icon); |
| 967 | widget.icon.dpi = dpi; |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 968 | } |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 969 | return widget; |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 970 | } |
| 971 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 972 | /** |
| 973 | * Deserialize a proto after verifying checksum wrapper. |
| 974 | */ |
| 975 | private <T extends MessageNano> T unpackProto(T proto, byte[] buffer, int dataSize) |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 976 | throws InvalidProtocolBufferNanoException { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 977 | MessageNano.mergeFrom(proto, readCheckedBytes(buffer, dataSize)); |
| 978 | if (DEBUG) Log.d(TAG, "unpacked proto " + proto); |
| 979 | return proto; |
Chris Wren | fd13c71 | 2013-09-27 15:45:19 -0400 | [diff] [blame] | 980 | } |
| 981 | |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 982 | /** |
| 983 | * Read the old journal from the input file. |
| 984 | * |
| 985 | * In the event of any error, just pretend we didn't have a journal, |
| 986 | * in that case, do a full backup. |
| 987 | * |
| 988 | * @param oldState the read-0only file descriptor pointing to the old journal |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 989 | * @return a Journal protocol buffer |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 990 | */ |
| 991 | private Journal readJournal(ParcelFileDescriptor oldState) { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 992 | Journal journal = new Journal(); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 993 | if (oldState == null) { |
| 994 | return journal; |
| 995 | } |
| 996 | FileInputStream inStream = new FileInputStream(oldState.getFileDescriptor()); |
| 997 | try { |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 998 | int availableBytes = inStream.available(); |
| 999 | if (DEBUG) Log.d(TAG, "available " + availableBytes); |
| 1000 | if (availableBytes < MAX_JOURNAL_SIZE) { |
| 1001 | byte[] buffer = new byte[availableBytes]; |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1002 | int bytesRead = 0; |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1003 | boolean valid = false; |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 1004 | InvalidProtocolBufferNanoException lastProtoException = null; |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1005 | while (availableBytes > 0) { |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 1006 | try { |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1007 | // OMG what are you doing? This is crazy inefficient! |
| 1008 | // If we read a byte that is not ours, we will cause trouble: b/12491813 |
| 1009 | // However, we don't know how many bytes to expect (oops). |
| 1010 | // So we have to step through *slowly*, watching for the end. |
| 1011 | int result = inStream.read(buffer, bytesRead, 1); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 1012 | if (result > 0) { |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1013 | availableBytes -= result; |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 1014 | bytesRead += result; |
| 1015 | } else { |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1016 | Log.w(TAG, "unexpected end of file while reading journal."); |
| 1017 | // stop reading and see what there is to parse |
| 1018 | availableBytes = 0; |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 1019 | } |
| 1020 | } catch (IOException e) { |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 1021 | buffer = null; |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1022 | availableBytes = 0; |
| 1023 | } |
| 1024 | |
| 1025 | // check the buffer to see if we have a valid journal |
| 1026 | try { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 1027 | MessageNano.mergeFrom(journal, readCheckedBytes(buffer, bytesRead)); |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1028 | // if we are here, then we have read a valid, checksum-verified journal |
| 1029 | valid = true; |
| 1030 | availableBytes = 0; |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 1031 | if (VERBOSE) Log.v(TAG, "read " + bytesRead + " bytes of journal"); |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1032 | } catch (InvalidProtocolBufferNanoException e) { |
| 1033 | // if we don't have the whole journal yet, mergeFrom will throw. keep going. |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 1034 | lastProtoException = e; |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1035 | journal.clear(); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 1036 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1037 | } |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 1038 | if (DEBUG) Log.d(TAG, "journal bytes read: " + bytesRead); |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1039 | if (!valid) { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 1040 | Log.w(TAG, "could not find a valid journal", lastProtoException); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1041 | } |
| 1042 | } |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 1043 | } catch (IOException e) { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 1044 | Log.w(TAG, "failed to close the journal", e); |
Chris Wren | 92aa423 | 2013-10-04 11:29:36 -0400 | [diff] [blame] | 1045 | } finally { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1046 | try { |
| 1047 | inStream.close(); |
| 1048 | } catch (IOException e) { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 1049 | Log.w(TAG, "failed to close the journal", e); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1050 | } |
| 1051 | } |
| 1052 | return journal; |
| 1053 | } |
| 1054 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 1055 | private void writeRowToBackup(Key key, MessageNano proto, BackupDataOutput data) |
| 1056 | throws IOException { |
| 1057 | writeRowToBackup(keyToBackupKey(key), proto, data); |
| 1058 | } |
| 1059 | |
| 1060 | private void writeRowToBackup(String backupKey, MessageNano proto, |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 1061 | BackupDataOutput data) throws IOException { |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 1062 | byte[] blob = writeCheckedBytes(proto); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 1063 | data.writeEntityHeader(backupKey, blob.length); |
| 1064 | data.writeEntityData(blob, blob.length); |
Sunny Goyal | c0ee675 | 2015-01-16 14:10:32 -0800 | [diff] [blame] | 1065 | mBackupDataWasUpdated = true; |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 1066 | if (VERBOSE) Log.v(TAG, "Writing New entry " + backupKey); |
Chris Wren | 22e130d | 2013-09-23 18:25:57 -0400 | [diff] [blame] | 1067 | } |
| 1068 | |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1069 | /** |
| 1070 | * Write the new journal to the output file. |
| 1071 | * |
| 1072 | * In the event of any error, just pretend we didn't have a journal, |
| 1073 | * in that case, do a full backup. |
| 1074 | |
| 1075 | * @param newState the write-only file descriptor pointing to the new journal |
| 1076 | * @param journal a Journal protocol buffer |
| 1077 | */ |
| 1078 | private void writeJournal(ParcelFileDescriptor newState, Journal journal) { |
| 1079 | FileOutputStream outStream = null; |
| 1080 | try { |
| 1081 | outStream = new FileOutputStream(newState.getFileDescriptor()); |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1082 | final byte[] journalBytes = writeCheckedBytes(journal); |
Chris Wren | 65b6a60 | 2014-01-10 14:11:25 -0500 | [diff] [blame] | 1083 | outStream.write(journalBytes); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1084 | outStream.close(); |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 1085 | if (VERBOSE) Log.v(TAG, "wrote " + journalBytes.length + " bytes of journal"); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1086 | } catch (IOException e) { |
Chris Wren | 50c8f42 | 2014-01-15 16:10:39 -0500 | [diff] [blame] | 1087 | Log.w(TAG, "failed to write backup journal", e); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1088 | } |
| 1089 | } |
| 1090 | |
| 1091 | /** Wrap a proto in a CheckedMessage and compute the checksum. */ |
| 1092 | private byte[] writeCheckedBytes(MessageNano proto) { |
| 1093 | CheckedMessage wrapper = new CheckedMessage(); |
| 1094 | wrapper.payload = MessageNano.toByteArray(proto); |
| 1095 | CRC32 checksum = new CRC32(); |
| 1096 | checksum.update(wrapper.payload); |
| 1097 | wrapper.checksum = checksum.getValue(); |
| 1098 | return MessageNano.toByteArray(wrapper); |
| 1099 | } |
| 1100 | |
| 1101 | /** Unwrap a proto message from a CheckedMessage, verifying the checksum. */ |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 1102 | private static byte[] readCheckedBytes(byte[] buffer, int dataSize) |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1103 | throws InvalidProtocolBufferNanoException { |
| 1104 | CheckedMessage wrapper = new CheckedMessage(); |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 1105 | MessageNano.mergeFrom(wrapper, buffer, 0, dataSize); |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1106 | CRC32 checksum = new CRC32(); |
| 1107 | checksum.update(wrapper.payload); |
| 1108 | if (wrapper.checksum != checksum.getValue()) { |
| 1109 | throw new InvalidProtocolBufferNanoException("checksum does not match"); |
| 1110 | } |
| 1111 | return wrapper.payload; |
| 1112 | } |
| 1113 | |
Sunny Goyal | ef728d4 | 2014-10-22 11:28:28 -0700 | [diff] [blame] | 1114 | /** |
| 1115 | * @return true if the launcher is in a state to support backup |
| 1116 | */ |
Chris Wren | 7114426 | 2014-02-27 15:49:39 -0500 | [diff] [blame] | 1117 | private boolean launcherIsReady() { |
| 1118 | ContentResolver cr = mContext.getContentResolver(); |
| 1119 | Cursor cursor = cr.query(Favorites.CONTENT_URI, FAVORITE_PROJECTION, null, null, null); |
| 1120 | if (cursor == null) { |
| 1121 | // launcher data has been wiped, do nothing |
| 1122 | return false; |
| 1123 | } |
| 1124 | cursor.close(); |
| 1125 | |
Adam Cohen | 2e6da15 | 2015-05-06 11:42:25 -0700 | [diff] [blame] | 1126 | if (LauncherAppState.getInstanceNoCreate() == null) { |
Chris Wren | 7114426 | 2014-02-27 15:49:39 -0500 | [diff] [blame] | 1127 | // launcher services are unavailable, try again later |
Chris Wren | 7114426 | 2014-02-27 15:49:39 -0500 | [diff] [blame] | 1128 | return false; |
| 1129 | } |
| 1130 | |
| 1131 | return true; |
| 1132 | } |
| 1133 | |
Sunny Goyal | ffe83f1 | 2014-08-14 17:39:34 -0700 | [diff] [blame] | 1134 | private String getUserSelectionArg() { |
| 1135 | return Favorites.PROFILE_ID + '=' + UserManagerCompat.getInstance(mContext) |
| 1136 | .getSerialNumberForUser(UserHandleCompat.myUserHandle()); |
| 1137 | } |
| 1138 | |
Sunny Goyal | 316490e | 2015-06-02 09:38:28 -0700 | [diff] [blame] | 1139 | @Thunk class InvalidBackupException extends IOException { |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 1140 | |
| 1141 | private static final long serialVersionUID = 8931456637211665082L; |
| 1142 | |
Sunny Goyal | 316490e | 2015-06-02 09:38:28 -0700 | [diff] [blame] | 1143 | @Thunk InvalidBackupException(Throwable cause) { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1144 | super(cause); |
| 1145 | } |
| 1146 | |
Sunny Goyal | 316490e | 2015-06-02 09:38:28 -0700 | [diff] [blame] | 1147 | @Thunk InvalidBackupException(String reason) { |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1148 | super(reason); |
| 1149 | } |
| 1150 | } |
Sunny Goyal | bb3b02f | 2015-01-15 12:00:14 -0800 | [diff] [blame] | 1151 | |
| 1152 | /** |
| 1153 | * A class to check if an activity can handle one of the intents from a list of |
| 1154 | * predefined intents. |
| 1155 | */ |
| 1156 | private class ItemTypeMatcher { |
| 1157 | |
| 1158 | private final ArrayList<Intent> mIntents; |
| 1159 | |
| 1160 | ItemTypeMatcher(int xml_res) { |
| 1161 | mIntents = xml_res == 0 ? new ArrayList<Intent>() : parseIntents(xml_res); |
| 1162 | } |
| 1163 | |
| 1164 | private ArrayList<Intent> parseIntents(int xml_res) { |
| 1165 | ArrayList<Intent> intents = new ArrayList<Intent>(); |
| 1166 | XmlResourceParser parser = mContext.getResources().getXml(xml_res); |
| 1167 | try { |
| 1168 | DefaultLayoutParser.beginDocument(parser, DefaultLayoutParser.TAG_RESOLVE); |
| 1169 | final int depth = parser.getDepth(); |
| 1170 | int type; |
| 1171 | while (((type = parser.next()) != XmlPullParser.END_TAG || |
| 1172 | parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) { |
| 1173 | if (type != XmlPullParser.START_TAG) { |
| 1174 | continue; |
| 1175 | } else if (DefaultLayoutParser.TAG_FAVORITE.equals(parser.getName())) { |
| 1176 | final String uri = DefaultLayoutParser.getAttributeValue( |
| 1177 | parser, DefaultLayoutParser.ATTR_URI); |
| 1178 | intents.add(Intent.parseUri(uri, 0)); |
| 1179 | } |
| 1180 | } |
| 1181 | } catch (URISyntaxException | XmlPullParserException | IOException e) { |
| 1182 | Log.e(TAG, "Unable to parse " + xml_res, e); |
| 1183 | } finally { |
| 1184 | parser.close(); |
| 1185 | } |
| 1186 | return intents; |
| 1187 | } |
| 1188 | |
| 1189 | public boolean matches(ActivityInfo activity, PackageManager pm) { |
| 1190 | for (Intent intent : mIntents) { |
| 1191 | intent.setPackage(activity.packageName); |
| 1192 | ResolveInfo info = pm.resolveActivity(intent, 0); |
| 1193 | if (info != null && (info.activityInfo.name.equals(activity.name) |
| 1194 | || info.activityInfo.name.equals(activity.targetActivity))) { |
| 1195 | return true; |
| 1196 | } |
| 1197 | } |
| 1198 | return false; |
| 1199 | } |
| 1200 | } |
Chris Wren | 1ada10d | 2013-09-13 18:01:38 -0400 | [diff] [blame] | 1201 | } |