blob: 92bbb4019fd69e6d79e129d3bb22f74d9824094c [file] [log] [blame]
Chris Wren1ada10d2013-09-13 18:01:38 -04001/*
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 Wren1ada10d2013-09-13 18:01:38 -040016package com.android.launcher3;
17
Chris Wren92aa4232013-10-04 11:29:36 -040018import android.app.backup.BackupDataInputStream;
Chris Wren1ada10d2013-09-13 18:01:38 -040019import android.app.backup.BackupDataOutput;
Chris Wren4d89e2a2013-10-09 17:03:50 -040020import android.app.backup.BackupHelper;
Chris Wren1ada10d2013-09-13 18:01:38 -040021import android.app.backup.BackupManager;
Chris Wren22e130d2013-09-23 18:25:57 -040022import android.content.ComponentName;
Chris Wren1ada10d2013-09-13 18:01:38 -040023import android.content.ContentResolver;
Chris Wren5dee7af2013-12-20 17:22:11 -050024import android.content.ContentValues;
Chris Wren1ada10d2013-09-13 18:01:38 -040025import android.content.Context;
Chris Wren22e130d2013-09-23 18:25:57 -040026import android.content.Intent;
Sunny Goyalbb3b02f2015-01-15 12:00:14 -080027import android.content.pm.ActivityInfo;
28import android.content.pm.PackageManager;
Sunny Goyalef728d42014-10-22 11:28:28 -070029import android.content.pm.PackageManager.NameNotFoundException;
Sunny Goyalbb3b02f2015-01-15 12:00:14 -080030import android.content.pm.ResolveInfo;
31import android.content.res.XmlResourceParser;
Chris Wren1ada10d2013-09-13 18:01:38 -040032import android.database.Cursor;
Chris Wren22e130d2013-09-23 18:25:57 -040033import android.graphics.Bitmap;
34import android.graphics.BitmapFactory;
Chris Wrenfd13c712013-09-27 15:45:19 -040035import android.graphics.drawable.Drawable;
Chris Wren1ada10d2013-09-13 18:01:38 -040036import android.os.ParcelFileDescriptor;
Chris Wren1ada10d2013-09-13 18:01:38 -040037import android.text.TextUtils;
38import android.util.Base64;
39import android.util.Log;
40
Sunny Goyalef728d42014-10-22 11:28:28 -070041import com.android.launcher3.LauncherSettings.Favorites;
42import com.android.launcher3.LauncherSettings.WorkspaceScreens;
43import com.android.launcher3.backup.BackupProtos;
44import com.android.launcher3.backup.BackupProtos.CheckedMessage;
Sunny Goyal33d44382014-10-16 09:24:19 -070045import com.android.launcher3.backup.BackupProtos.DeviceProfieData;
Sunny Goyalef728d42014-10-22 11:28:28 -070046import com.android.launcher3.backup.BackupProtos.Favorite;
47import com.android.launcher3.backup.BackupProtos.Journal;
48import com.android.launcher3.backup.BackupProtos.Key;
49import com.android.launcher3.backup.BackupProtos.Resource;
50import com.android.launcher3.backup.BackupProtos.Screen;
51import com.android.launcher3.backup.BackupProtos.Widget;
52import com.android.launcher3.compat.UserHandleCompat;
53import com.android.launcher3.compat.UserManagerCompat;
54import com.google.protobuf.nano.InvalidProtocolBufferNanoException;
55import com.google.protobuf.nano.MessageNano;
56
Sunny Goyalbb3b02f2015-01-15 12:00:14 -080057import org.xmlpull.v1.XmlPullParser;
58import org.xmlpull.v1.XmlPullParserException;
59
Chris Wren22e130d2013-09-23 18:25:57 -040060import java.io.ByteArrayOutputStream;
Chris Wren1ada10d2013-09-13 18:01:38 -040061import java.io.FileInputStream;
62import java.io.FileOutputStream;
63import java.io.IOException;
Chris Wren22e130d2013-09-23 18:25:57 -040064import java.net.URISyntaxException;
Chris Wren1ada10d2013-09-13 18:01:38 -040065import java.util.ArrayList;
Sunny Goyalc0ee6752015-01-16 14:10:32 -080066import java.util.Arrays;
Chris Wren1ada10d2013-09-13 18:01:38 -040067import java.util.HashSet;
Chris Wren1ada10d2013-09-13 18:01:38 -040068import java.util.zip.CRC32;
69
70/**
71 * Persist the launcher home state across calamities.
72 */
Chris Wren92aa4232013-10-04 11:29:36 -040073public class LauncherBackupHelper implements BackupHelper {
Chris Wren92aa4232013-10-04 11:29:36 -040074 private static final String TAG = "LauncherBackupHelper";
Chris Wren50c8f422014-01-15 16:10:39 -050075 private static final boolean VERBOSE = LauncherBackupAgentHelper.VERBOSE;
76 private static final boolean DEBUG = LauncherBackupAgentHelper.DEBUG;
Chris Wren1ada10d2013-09-13 18:01:38 -040077
Sunny Goyal33d44382014-10-16 09:24:19 -070078 private static final int BACKUP_VERSION = 2;
Chris Wren1ada10d2013-09-13 18:01:38 -040079 private static final int MAX_JOURNAL_SIZE = 1000000;
80
Sunny Goyal33d44382014-10-16 09:24:19 -070081 // 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 Wrenfd13c712013-09-27 15:45:19 -040085 /** icons are large, dribble them out */
Chris Wren22e130d2013-09-23 18:25:57 -040086 private static final int MAX_ICONS_PER_PASS = 10;
87
Chris Wrenfd13c712013-09-27 15:45:19 -040088 /** widgets contain previews, which are very large, dribble them out */
89 private static final int MAX_WIDGETS_PER_PASS = 5;
90
Chris Wren1ada10d2013-09-13 18:01:38 -040091 private static final String[] FAVORITE_PROJECTION = {
Sunny Goyalef728d42014-10-22 11:28:28 -070092 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 Wren1ada10d2013-09-13 18:01:38 -0400110 };
111
112 private static final int ID_INDEX = 0;
Chris Wren22e130d2013-09-23 18:25:57 -0400113 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 Wren1ada10d2013-09-13 18:01:38 -0400129
130 private static final String[] SCREEN_PROJECTION = {
Sunny Goyalef728d42014-10-22 11:28:28 -0700131 WorkspaceScreens._ID, // 0
132 WorkspaceScreens.MODIFIED, // 1
133 WorkspaceScreens.SCREEN_RANK // 2
Chris Wren1ada10d2013-09-13 18:01:38 -0400134 };
135
Chris Wren22e130d2013-09-23 18:25:57 -0400136 private static final int SCREEN_RANK_INDEX = 2;
Chris Wren1ada10d2013-09-13 18:01:38 -0400137
Chris Wren92aa4232013-10-04 11:29:36 -0400138 private final Context mContext;
Sunny Goyalef728d42014-10-22 11:28:28 -0700139 private final HashSet<String> mExistingKeys;
Sunny Goyal42de82f2014-09-26 22:09:29 -0700140 private final ArrayList<Key> mKeys;
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800141 private final ItemTypeMatcher[] mItemTypeMatchers;
Sunny Goyal4fbc3822015-02-18 16:46:50 -0800142 private final long mUserSerial;
Chris Wren1ada10d2013-09-13 18:01:38 -0400143
Sunny Goyalef728d42014-10-22 11:28:28 -0700144 private IconCache mIconCache;
145 private BackupManager mBackupManager;
Sunny Goyalef728d42014-10-22 11:28:28 -0700146 private byte[] mBuffer = new byte[512];
147 private long mLastBackupRestoreTime;
Sunny Goyalc0ee6752015-01-16 14:10:32 -0800148 private boolean mBackupDataWasUpdated;
Sunny Goyalef728d42014-10-22 11:28:28 -0700149
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700150 private DeviceProfieData mCurrentProfile;
Sunny Goyal33d44382014-10-16 09:24:19 -0700151 boolean restoreSuccessful;
Sunny Goyal08f72612015-01-05 13:41:43 -0800152 int restoredBackupVersion = 1;
Sunny Goyal33d44382014-10-16 09:24:19 -0700153
154 public LauncherBackupHelper(Context context) {
Chris Wren92aa4232013-10-04 11:29:36 -0400155 mContext = context;
Sunny Goyalef728d42014-10-22 11:28:28 -0700156 mExistingKeys = new HashSet<String>();
Sunny Goyal42de82f2014-09-26 22:09:29 -0700157 mKeys = new ArrayList<Key>();
Sunny Goyal33d44382014-10-16 09:24:19 -0700158 restoreSuccessful = true;
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800159 mItemTypeMatchers = new ItemTypeMatcher[CommonAppTypeParser.SUPPORTED_TYPE_COUNT];
Sunny Goyal4fbc3822015-02-18 16:46:50 -0800160
161 UserManagerCompat userManager = UserManagerCompat.getInstance(mContext);
162 mUserSerial = userManager.getSerialNumberForUser(UserHandleCompat.myUserHandle());
Chris Wren92aa4232013-10-04 11:29:36 -0400163 }
164
165 private void dataChanged() {
Sunny Goyalef728d42014-10-22 11:28:28 -0700166 if (mBackupManager == null) {
167 mBackupManager = new BackupManager(mContext);
Chris Wren1ada10d2013-09-13 18:01:38 -0400168 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700169 mBackupManager.dataChanged();
170 }
171
172 private void applyJournal(Journal journal) {
173 mLastBackupRestoreTime = journal.t;
174 mExistingKeys.clear();
175 if (journal.key != null) {
176 for (Key key : journal.key) {
177 mExistingKeys.add(keyToBackupKey(key));
178 }
179 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400180 }
181
182 /**
183 * Back up launcher data so we can restore the user's state on a new device.
184 *
185 * <P>The journal is a timestamp and a list of keys that were saved as of that time.
186 *
187 * <P>Keys may come back in any order, so each key/value is one complete row of the database.
188 *
189 * @param oldState notes from the last backup
190 * @param data incremental key/value pairs to persist off-device
191 * @param newState notes for the next backup
Chris Wren1ada10d2013-09-13 18:01:38 -0400192 */
193 @Override
Chris Wren92aa4232013-10-04 11:29:36 -0400194 public void performBackup(ParcelFileDescriptor oldState, BackupDataOutput data,
195 ParcelFileDescriptor newState) {
Chris Wren50c8f422014-01-15 16:10:39 -0500196 if (VERBOSE) Log.v(TAG, "onBackup");
Chris Wren1ada10d2013-09-13 18:01:38 -0400197
198 Journal in = readJournal(oldState);
Sunny Goyalef728d42014-10-22 11:28:28 -0700199 if (!launcherIsReady()) {
200 // Perform backup later.
201 writeJournal(newState, in);
202 return;
203 }
204 Log.v(TAG, "lastBackupTime = " + in.t);
205 mKeys.clear();
206 applyJournal(in);
Chris Wren1ada10d2013-09-13 18:01:38 -0400207
Sunny Goyalef728d42014-10-22 11:28:28 -0700208 // Record the time before performing backup so that entries edited while the backup
209 // was going on, do not get missed in next backup.
210 long newBackupTime = System.currentTimeMillis();
Sunny Goyalc0ee6752015-01-16 14:10:32 -0800211 mBackupDataWasUpdated = false;
Sunny Goyalef728d42014-10-22 11:28:28 -0700212 try {
213 backupFavorites(data);
214 backupScreens(data);
215 backupIcons(data);
216 backupWidgets(data);
Chris Wren1ada10d2013-09-13 18:01:38 -0400217
Sunny Goyalef728d42014-10-22 11:28:28 -0700218 // Delete any key which still exist in the old backup, but is not valid anymore.
219 HashSet<String> validKeys = new HashSet<String>();
220 for (Key key : mKeys) {
221 validKeys.add(keyToBackupKey(key));
Chris Wren71144262014-02-27 15:49:39 -0500222 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700223 mExistingKeys.removeAll(validKeys);
224
225 // Delete anything left in the existing keys.
226 for (String deleted: mExistingKeys) {
227 if (VERBOSE) Log.v(TAG, "dropping deleted item " + deleted);
228 data.writeEntityHeader(deleted, -1);
Sunny Goyalc0ee6752015-01-16 14:10:32 -0800229 mBackupDataWasUpdated = true;
Sunny Goyalef728d42014-10-22 11:28:28 -0700230 }
231
232 mExistingKeys.clear();
Sunny Goyalc0ee6752015-01-16 14:10:32 -0800233 if (!mBackupDataWasUpdated) {
234 // Check if any metadata has changed
235 mBackupDataWasUpdated = (in.profile == null)
236 || !Arrays.equals(DeviceProfieData.toByteArray(in.profile),
237 DeviceProfieData.toByteArray(getDeviceProfieData()))
238 || (in.backupVersion != BACKUP_VERSION)
239 || (in.appVersion != getAppVersion());
240 }
Sunny Goyal33d44382014-10-16 09:24:19 -0700241
Sunny Goyalc0ee6752015-01-16 14:10:32 -0800242 if (mBackupDataWasUpdated) {
243 mLastBackupRestoreTime = newBackupTime;
244
245 // We store the journal at two places.
246 // 1) Storing it in newState allows us to do partial backups by comparing old state
247 // 2) Storing it in backup data allows us to validate keys during restore
248 Journal state = getCurrentStateJournal();
249 writeRowToBackup(JOURNAL_KEY, state, data);
250 } else {
251 if (DEBUG) Log.d(TAG, "Nothing was written during backup");
252 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700253 } catch (IOException e) {
254 Log.e(TAG, "launcher backup has failed", e);
Chris Wren92aa4232013-10-04 11:29:36 -0400255 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400256
Sunny Goyalef728d42014-10-22 11:28:28 -0700257 writeNewStateDescription(newState);
Chris Wren1ada10d2013-09-13 18:01:38 -0400258 }
259
260 /**
Sunny Goyal33d44382014-10-16 09:24:19 -0700261 * @return true if the backup corresponding to oldstate can be successfully applied
262 * to this device.
263 */
264 private boolean isBackupCompatible(Journal oldState) {
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700265 DeviceProfieData currentProfile = getDeviceProfieData();
266
267 DeviceProfieData oldProfile = oldState.profile;
268
269 if (oldProfile == null || oldProfile.desktopCols == 0) {
270 // Profile info is not valid, ignore the check.
271 return true;
272 }
273
274 boolean isHotsetCompatible = false;
275 if (currentProfile.allappsRank >= oldProfile.hotseatCount) {
276 isHotsetCompatible = true;
277 }
278 if ((currentProfile.hotseatCount >= oldProfile.hotseatCount) &&
279 (currentProfile.allappsRank == oldProfile.allappsRank)) {
280 isHotsetCompatible = true;
281 }
282
283 return isHotsetCompatible && (currentProfile.desktopCols >= oldProfile.desktopCols)
284 && (currentProfile.desktopRows >= oldProfile.desktopRows);
Sunny Goyal33d44382014-10-16 09:24:19 -0700285 }
286
287 /**
Chris Wren92aa4232013-10-04 11:29:36 -0400288 * Restore launcher configuration from the restored data stream.
Sunny Goyal33d44382014-10-16 09:24:19 -0700289 * It assumes that the keys will arrive in lexical order. So if the journal was present in the
290 * backup, it should arrive first.
Chris Wren1ada10d2013-09-13 18:01:38 -0400291 *
Chris Wren92aa4232013-10-04 11:29:36 -0400292 * @param data the key/value pair from the server
Chris Wren1ada10d2013-09-13 18:01:38 -0400293 */
294 @Override
Chris Wren92aa4232013-10-04 11:29:36 -0400295 public void restoreEntity(BackupDataInputStream data) {
Sunny Goyal33d44382014-10-16 09:24:19 -0700296 if (!restoreSuccessful) {
297 return;
298 }
Sunny Goyal4fbc3822015-02-18 16:46:50 -0800299 if (!initializeIconCache()) {
300 // During restore we do not need an initialized instance of IconCache. We can create
301 // a temporary icon cache here, as the process will be rebooted after restore
302 // is complete.
303 mIconCache = new IconCache(mContext);
304 }
Sunny Goyal33d44382014-10-16 09:24:19 -0700305
Sunny Goyalef728d42014-10-22 11:28:28 -0700306 int dataSize = data.size();
307 if (mBuffer.length < dataSize) {
308 mBuffer = new byte[dataSize];
Chris Wren92aa4232013-10-04 11:29:36 -0400309 }
310 try {
Sunny Goyalef728d42014-10-22 11:28:28 -0700311 int bytesRead = data.read(mBuffer, 0, dataSize);
312 if (DEBUG) Log.d(TAG, "read " + bytesRead + " of " + dataSize + " available");
313 String backupKey = data.getKey();
Sunny Goyal33d44382014-10-16 09:24:19 -0700314
315 if (JOURNAL_KEY.equals(backupKey)) {
316 if (VERBOSE) Log.v(TAG, "Journal entry restored");
317 if (!mKeys.isEmpty()) {
318 // We received the journal key after a restore key.
319 Log.wtf(TAG, keyToBackupKey(mKeys.get(0)) + " received after " + JOURNAL_KEY);
320 restoreSuccessful = false;
321 return;
322 }
323
324 Journal journal = new Journal();
325 MessageNano.mergeFrom(journal, readCheckedBytes(mBuffer, dataSize));
326 applyJournal(journal);
327 restoreSuccessful = isBackupCompatible(journal);
Sunny Goyal08f72612015-01-05 13:41:43 -0800328 restoredBackupVersion = journal.backupVersion;
Sunny Goyal33d44382014-10-16 09:24:19 -0700329 return;
330 }
331
332 if (!mExistingKeys.isEmpty() && !mExistingKeys.contains(backupKey)) {
333 if (DEBUG) Log.e(TAG, "Ignoring key not present in the backup state " + backupKey);
334 return;
335 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700336 Key key = backupKeyToKey(backupKey);
Chris Wren50c8f422014-01-15 16:10:39 -0500337 mKeys.add(key);
Chris Wren92aa4232013-10-04 11:29:36 -0400338 switch (key.type) {
339 case Key.FAVORITE:
Sunny Goyalef728d42014-10-22 11:28:28 -0700340 restoreFavorite(key, mBuffer, dataSize);
Chris Wren92aa4232013-10-04 11:29:36 -0400341 break;
342
343 case Key.SCREEN:
Sunny Goyalef728d42014-10-22 11:28:28 -0700344 restoreScreen(key, mBuffer, dataSize);
Chris Wren92aa4232013-10-04 11:29:36 -0400345 break;
346
347 case Key.ICON:
Sunny Goyalef728d42014-10-22 11:28:28 -0700348 restoreIcon(key, mBuffer, dataSize);
Chris Wren92aa4232013-10-04 11:29:36 -0400349 break;
350
351 case Key.WIDGET:
Sunny Goyalef728d42014-10-22 11:28:28 -0700352 restoreWidget(key, mBuffer, dataSize);
Chris Wren92aa4232013-10-04 11:29:36 -0400353 break;
354
355 default:
356 Log.w(TAG, "unknown restore entity type: " + key.type);
Sunny Goyalef728d42014-10-22 11:28:28 -0700357 mKeys.remove(key);
Chris Wren92aa4232013-10-04 11:29:36 -0400358 break;
Chris Wren1ada10d2013-09-13 18:01:38 -0400359 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700360 } catch (IOException e) {
361 Log.w(TAG, "ignoring unparsable backup entry", e);
Chris Wren1ada10d2013-09-13 18:01:38 -0400362 }
Chris Wren92aa4232013-10-04 11:29:36 -0400363 }
364
365 /**
366 * Record the restore state for the next backup.
367 *
368 * @param newState notes about the backup state after restore.
369 */
370 @Override
371 public void writeNewStateDescription(ParcelFileDescriptor newState) {
Sunny Goyalef728d42014-10-22 11:28:28 -0700372 writeJournal(newState, getCurrentStateJournal());
373 }
374
375 private Journal getCurrentStateJournal() {
376 Journal journal = new Journal();
377 journal.t = mLastBackupRestoreTime;
378 journal.key = mKeys.toArray(new BackupProtos.Key[mKeys.size()]);
379 journal.appVersion = getAppVersion();
Sunny Goyal33d44382014-10-16 09:24:19 -0700380 journal.backupVersion = BACKUP_VERSION;
381 journal.profile = getDeviceProfieData();
Sunny Goyalef728d42014-10-22 11:28:28 -0700382 return journal;
383 }
384
385 private int getAppVersion() {
386 try {
387 return mContext.getPackageManager()
388 .getPackageInfo(mContext.getPackageName(), 0).versionCode;
389 } catch (NameNotFoundException e) {
390 return 0;
391 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400392 }
393
394 /**
Sunny Goyal33d44382014-10-16 09:24:19 -0700395 * @return the current device profile information.
396 */
397 private DeviceProfieData getDeviceProfieData() {
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700398 if (mCurrentProfile != null) {
399 return mCurrentProfile;
400 }
Chris Wrenb02e6112014-11-24 16:57:54 -0500401 final Context applicationContext = mContext.getApplicationContext();
402 DeviceProfile profile = LauncherAppState.createDynamicGrid(applicationContext, null)
403 .getDeviceProfile();
Sunny Goyal33d44382014-10-16 09:24:19 -0700404
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700405 mCurrentProfile = new DeviceProfieData();
406 mCurrentProfile.desktopRows = profile.numRows;
407 mCurrentProfile.desktopCols = profile.numColumns;
408 mCurrentProfile.hotseatCount = profile.numHotseatIcons;
409 mCurrentProfile.allappsRank = profile.hotseatAllAppsRank;
410 return mCurrentProfile;
Sunny Goyal33d44382014-10-16 09:24:19 -0700411 }
412
413 /**
Chris Wren1ada10d2013-09-13 18:01:38 -0400414 * Write all modified favorites to the data stream.
415 *
Chris Wren1ada10d2013-09-13 18:01:38 -0400416 * @param data output stream for key/value pairs
Chris Wren1ada10d2013-09-13 18:01:38 -0400417 * @throws IOException
418 */
Sunny Goyalef728d42014-10-22 11:28:28 -0700419 private void backupFavorites(BackupDataOutput data) throws IOException {
Chris Wren1ada10d2013-09-13 18:01:38 -0400420 // persist things that have changed since the last backup
Chris Wren92aa4232013-10-04 11:29:36 -0400421 ContentResolver cr = mContext.getContentResolver();
Sunny Goyalffe83f12014-08-14 17:39:34 -0700422 // Don't backup apps in other profiles for now.
Chris Wren22e130d2013-09-23 18:25:57 -0400423 Cursor cursor = cr.query(Favorites.CONTENT_URI, FAVORITE_PROJECTION,
Sunny Goyalffe83f12014-08-14 17:39:34 -0700424 getUserSelectionArg(), null, null);
Chris Wren1ada10d2013-09-13 18:01:38 -0400425 try {
Chris Wren22e130d2013-09-23 18:25:57 -0400426 cursor.moveToPosition(-1);
427 while(cursor.moveToNext()) {
428 final long id = cursor.getLong(ID_INDEX);
Sunny Goyalffe83f12014-08-14 17:39:34 -0700429 final long updateTime = cursor.getLong(ID_MODIFIED);
430 Key key = getKey(Key.FAVORITE, id);
Sunny Goyalef728d42014-10-22 11:28:28 -0700431 mKeys.add(key);
Sunny Goyalffe83f12014-08-14 17:39:34 -0700432 final String backupKey = keyToBackupKey(key);
Sunny Goyalef728d42014-10-22 11:28:28 -0700433 if (!mExistingKeys.contains(backupKey) || updateTime >= mLastBackupRestoreTime) {
434 writeRowToBackup(key, packFavorite(cursor), data);
Chris Wren50c8f422014-01-15 16:10:39 -0500435 } else {
Sunny Goyalef728d42014-10-22 11:28:28 -0700436 if (DEBUG) Log.d(TAG, "favorite already backup up: " + id);
Chris Wren22e130d2013-09-23 18:25:57 -0400437 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400438 }
439 } finally {
Chris Wren22e130d2013-09-23 18:25:57 -0400440 cursor.close();
Chris Wren1ada10d2013-09-13 18:01:38 -0400441 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400442 }
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 Wren1ada10d2013-09-13 18:01:38 -0400452 */
Sunny Goyalef728d42014-10-22 11:28:28 -0700453 private void restoreFavorite(Key key, byte[] buffer, int dataSize) throws IOException {
Chris Wren50c8f422014-01-15 16:10:39 -0500454 if (VERBOSE) Log.v(TAG, "unpacking favorite " + key.id);
Chris Wren1ada10d2013-09-13 18:01:38 -0400455 if (DEBUG) Log.d(TAG, "read (" + buffer.length + "): " +
456 Base64.encodeToString(buffer, 0, dataSize, Base64.NO_WRAP));
457
Sunny Goyalef728d42014-10-22 11:28:28 -0700458 ContentResolver cr = mContext.getContentResolver();
459 ContentValues values = unpackFavorite(buffer, dataSize);
Sunny Goyal1d4a2df2015-03-30 11:11:46 -0700460 cr.insert(Favorites.CONTENT_URI, values);
Chris Wren1ada10d2013-09-13 18:01:38 -0400461 }
462
463 /**
464 * Write all modified screens to the data stream.
465 *
Chris Wren1ada10d2013-09-13 18:01:38 -0400466 * @param data output stream for key/value pairs
Chris Wren22e130d2013-09-23 18:25:57 -0400467 * @throws IOException
Chris Wren1ada10d2013-09-13 18:01:38 -0400468 */
Sunny Goyalef728d42014-10-22 11:28:28 -0700469 private void backupScreens(BackupDataOutput data) throws IOException {
Chris Wren1ada10d2013-09-13 18:01:38 -0400470 // persist things that have changed since the last backup
Chris Wren92aa4232013-10-04 11:29:36 -0400471 ContentResolver cr = mContext.getContentResolver();
Chris Wren22e130d2013-09-23 18:25:57 -0400472 Cursor cursor = cr.query(WorkspaceScreens.CONTENT_URI, SCREEN_PROJECTION,
473 null, null, null);
Chris Wren1ada10d2013-09-13 18:01:38 -0400474 try {
Chris Wren22e130d2013-09-23 18:25:57 -0400475 cursor.moveToPosition(-1);
Sunny Goyalef728d42014-10-22 11:28:28 -0700476 if (DEBUG) Log.d(TAG, "dumping screens after: " + mLastBackupRestoreTime);
Chris Wren22e130d2013-09-23 18:25:57 -0400477 while(cursor.moveToNext()) {
478 final long id = cursor.getLong(ID_INDEX);
479 final long updateTime = cursor.getLong(ID_MODIFIED);
Chris Wren1ada10d2013-09-13 18:01:38 -0400480 Key key = getKey(Key.SCREEN, id);
Sunny Goyalef728d42014-10-22 11:28:28 -0700481 mKeys.add(key);
Chris Wren5743aa92014-01-10 18:02:06 -0500482 final String backupKey = keyToBackupKey(key);
Sunny Goyalef728d42014-10-22 11:28:28 -0700483 if (!mExistingKeys.contains(backupKey) || updateTime >= mLastBackupRestoreTime) {
484 writeRowToBackup(key, packScreen(cursor), data);
Chris Wren5dee7af2013-12-20 17:22:11 -0500485 } else {
Sunny Goyalef728d42014-10-22 11:28:28 -0700486 if (VERBOSE) Log.v(TAG, "screen already backup up " + id);
Chris Wren22e130d2013-09-23 18:25:57 -0400487 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400488 }
489 } finally {
Chris Wren22e130d2013-09-23 18:25:57 -0400490 cursor.close();
Chris Wren1ada10d2013-09-13 18:01:38 -0400491 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400492 }
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 Wren1ada10d2013-09-13 18:01:38 -0400502 */
Sunny Goyalef728d42014-10-22 11:28:28 -0700503 private void restoreScreen(Key key, byte[] buffer, int dataSize) throws IOException {
Chris Wren50c8f422014-01-15 16:10:39 -0500504 if (VERBOSE) Log.v(TAG, "unpacking screen " + key.id);
Chris Wren1ada10d2013-09-13 18:01:38 -0400505 if (DEBUG) Log.d(TAG, "read (" + buffer.length + "): " +
506 Base64.encodeToString(buffer, 0, dataSize, Base64.NO_WRAP));
Chris Wren5dee7af2013-12-20 17:22:11 -0500507
Sunny Goyalef728d42014-10-22 11:28:28 -0700508 ContentResolver cr = mContext.getContentResolver();
509 ContentValues values = unpackScreen(buffer, dataSize);
510 cr.insert(WorkspaceScreens.CONTENT_URI, values);
Chris Wren1ada10d2013-09-13 18:01:38 -0400511 }
512
Chris Wren22e130d2013-09-23 18:25:57 -0400513 /**
514 * Write all the static icon resources we need to render placeholders
515 * for a package that is not installed.
516 *
Chris Wren22e130d2013-09-23 18:25:57 -0400517 * @param data output stream for key/value pairs
Chris Wren22e130d2013-09-23 18:25:57 -0400518 */
Sunny Goyalef728d42014-10-22 11:28:28 -0700519 private void backupIcons(BackupDataOutput data) throws IOException {
Chris Wrenfd13c712013-09-27 15:45:19 -0400520 // persist icons that haven't been persisted yet
Chris Wren6d0dde02014-02-10 12:16:54 -0500521 if (!initializeIconCache()) {
Chris Wren92aa4232013-10-04 11:29:36 -0400522 dataChanged(); // try again later
Chris Wrend8fe6de2013-10-04 10:42:14 -0400523 if (DEBUG) Log.d(TAG, "Launcher is not initialized, delaying icon backup");
524 return;
525 }
Chris Wren92aa4232013-10-04 11:29:36 -0400526 final ContentResolver cr = mContext.getContentResolver();
Chris Wren92aa4232013-10-04 11:29:36 -0400527 final int dpi = mContext.getResources().getDisplayMetrics().densityDpi;
Sunny Goyalffe83f12014-08-14 17:39:34 -0700528 final UserHandleCompat myUserHandle = UserHandleCompat.myUserHandle();
Sunny Goyalef728d42014-10-22 11:28:28 -0700529 int backupUpIconCount = 0;
Chris Wren22e130d2013-09-23 18:25:57 -0400530
Kenny Guyed131872014-04-30 03:02:21 +0100531 // Don't backup apps in other profiles for now.
Kenny Guyed131872014-04-30 03:02:21 +0100532 String where = "(" + Favorites.ITEM_TYPE + "=" + Favorites.ITEM_TYPE_APPLICATION + " OR " +
Kenny Guy43ea7ac2014-05-09 16:44:18 +0100533 Favorites.ITEM_TYPE + "=" + Favorites.ITEM_TYPE_SHORTCUT + ") AND " +
Sunny Goyalffe83f12014-08-14 17:39:34 -0700534 getUserSelectionArg();
Chris Wren22e130d2013-09-23 18:25:57 -0400535 Cursor cursor = cr.query(Favorites.CONTENT_URI, FAVORITE_PROJECTION,
536 where, null, null);
Chris Wren22e130d2013-09-23 18:25:57 -0400537 try {
538 cursor.moveToPosition(-1);
539 while(cursor.moveToNext()) {
540 final long id = cursor.getLong(ID_INDEX);
541 final String intentDescription = cursor.getString(INTENT_INDEX);
542 try {
543 Intent intent = Intent.parseUri(intentDescription, 0);
544 ComponentName cn = intent.getComponent();
545 Key key = null;
546 String backupKey = null;
547 if (cn != null) {
548 key = getKey(Key.ICON, cn.flattenToShortString());
549 backupKey = keyToBackupKey(key);
Chris Wren22e130d2013-09-23 18:25:57 -0400550 } else {
551 Log.w(TAG, "empty intent on application favorite: " + id);
552 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700553 if (mExistingKeys.contains(backupKey)) {
554 if (DEBUG) Log.d(TAG, "already saved icon " + backupKey);
Chris Wren22e130d2013-09-23 18:25:57 -0400555
556 // remember that we already backed this up previously
Sunny Goyalef728d42014-10-22 11:28:28 -0700557 mKeys.add(key);
Chris Wren22e130d2013-09-23 18:25:57 -0400558 } else if (backupKey != null) {
Sunny Goyalef728d42014-10-22 11:28:28 -0700559 if (DEBUG) Log.d(TAG, "I can count this high: " + backupUpIconCount);
560 if (backupUpIconCount < MAX_ICONS_PER_PASS) {
561 if (DEBUG) Log.d(TAG, "saving icon " + backupKey);
Kenny Guyed131872014-04-30 03:02:21 +0100562 Bitmap icon = mIconCache.getIcon(intent, myUserHandle);
Kenny Guyed131872014-04-30 03:02:21 +0100563 if (icon != null && !mIconCache.isDefaultIcon(icon, myUserHandle)) {
Sunny Goyalef728d42014-10-22 11:28:28 -0700564 writeRowToBackup(key, packIcon(dpi, icon), data);
565 mKeys.add(key);
566 backupUpIconCount ++;
Chris Wren22e130d2013-09-23 18:25:57 -0400567 }
568 } else {
Sunny Goyalef728d42014-10-22 11:28:28 -0700569 if (VERBOSE) Log.v(TAG, "deferring icon backup " + backupKey);
Chris Wren22e130d2013-09-23 18:25:57 -0400570 // too many icons for this pass, request another.
Chris Wren92aa4232013-10-04 11:29:36 -0400571 dataChanged();
Chris Wren22e130d2013-09-23 18:25:57 -0400572 }
573 }
574 } catch (URISyntaxException e) {
Chris Wren50c8f422014-01-15 16:10:39 -0500575 Log.e(TAG, "invalid URI on application favorite: " + id);
Chris Wren22e130d2013-09-23 18:25:57 -0400576 } catch (IOException e) {
Chris Wren50c8f422014-01-15 16:10:39 -0500577 Log.e(TAG, "unable to save application icon for favorite: " + id);
Chris Wren22e130d2013-09-23 18:25:57 -0400578 }
579
580 }
581 } finally {
582 cursor.close();
583 }
Chris Wren22e130d2013-09-23 18:25:57 -0400584 }
585
586 /**
587 * Read an icon from the stream.
588 *
Chris Wrenfd13c712013-09-27 15:45:19 -0400589 * <P>Keys arrive in any order, so shortcuts that use this icon may already exist.
Chris Wren22e130d2013-09-23 18:25:57 -0400590 *
591 * @param key identifier for the row
592 * @param buffer the serialized proto from the stream, may be larger than dataSize
593 * @param dataSize the size of the proto from the stream
Chris Wren22e130d2013-09-23 18:25:57 -0400594 */
Sunny Goyalef728d42014-10-22 11:28:28 -0700595 private void restoreIcon(Key key, byte[] buffer, int dataSize) throws IOException {
Chris Wren50c8f422014-01-15 16:10:39 -0500596 if (VERBOSE) Log.v(TAG, "unpacking icon " + key.id);
Chris Wren22e130d2013-09-23 18:25:57 -0400597 if (DEBUG) Log.d(TAG, "read (" + buffer.length + "): " +
598 Base64.encodeToString(buffer, 0, dataSize, Base64.NO_WRAP));
Chris Wren6d0dde02014-02-10 12:16:54 -0500599
Sunny Goyalef728d42014-10-22 11:28:28 -0700600 Resource res = unpackProto(new Resource(), buffer, dataSize);
601 if (DEBUG) {
602 Log.d(TAG, "unpacked " + res.dpi + " dpi icon");
Chris Wren22e130d2013-09-23 18:25:57 -0400603 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700604 Bitmap icon = BitmapFactory.decodeByteArray(res.data, 0, res.data.length);
605 if (icon == null) {
606 Log.w(TAG, "failed to unpack icon for " + key.name);
607 }
608 if (VERBOSE) Log.v(TAG, "saving restored icon as: " + key.name);
Sunny Goyal4fbc3822015-02-18 16:46:50 -0800609 mIconCache.preloadIcon(ComponentName.unflattenFromString(key.name), icon, res.dpi,
610 "" /* label */, mUserSerial);
Chris Wren22e130d2013-09-23 18:25:57 -0400611 }
612
Chris Wrenfd13c712013-09-27 15:45:19 -0400613 /**
614 * Write all the static widget resources we need to render placeholders
615 * for a package that is not installed.
616 *
Chris Wrenfd13c712013-09-27 15:45:19 -0400617 * @param data output stream for key/value pairs
Chris Wrenfd13c712013-09-27 15:45:19 -0400618 * @throws IOException
619 */
Sunny Goyalef728d42014-10-22 11:28:28 -0700620 private void backupWidgets(BackupDataOutput data) throws IOException {
Chris Wrenfd13c712013-09-27 15:45:19 -0400621 // persist static widget info that hasn't been persisted yet
Chris Wrend8fe6de2013-10-04 10:42:14 -0400622 final LauncherAppState appState = LauncherAppState.getInstanceNoCreate();
Chris Wren6d0dde02014-02-10 12:16:54 -0500623 if (appState == null || !initializeIconCache()) {
624 Log.w(TAG, "Failed to get icon cache during restore");
Chris Wrend8fe6de2013-10-04 10:42:14 -0400625 return;
626 }
Chris Wren92aa4232013-10-04 11:29:36 -0400627 final ContentResolver cr = mContext.getContentResolver();
Sunny Goyal5b0e6692015-03-19 14:31:19 -0700628 final WidgetPreviewLoader previewLoader = appState.getWidgetCache();
Chris Wren92aa4232013-10-04 11:29:36 -0400629 final int dpi = mContext.getResources().getDisplayMetrics().densityDpi;
Chris Wrenfd13c712013-09-27 15:45:19 -0400630 final DeviceProfile profile = appState.getDynamicGrid().getDeviceProfile();
631 if (DEBUG) Log.d(TAG, "cellWidthPx: " + profile.cellWidthPx);
Sunny Goyalef728d42014-10-22 11:28:28 -0700632 int backupWidgetCount = 0;
Chris Wrenfd13c712013-09-27 15:45:19 -0400633
Sunny Goyalffe83f12014-08-14 17:39:34 -0700634 String where = Favorites.ITEM_TYPE + "=" + Favorites.ITEM_TYPE_APPWIDGET + " AND "
635 + getUserSelectionArg();
Chris Wrenfd13c712013-09-27 15:45:19 -0400636 Cursor cursor = cr.query(Favorites.CONTENT_URI, FAVORITE_PROJECTION,
637 where, null, null);
Chris Wrenfd13c712013-09-27 15:45:19 -0400638 try {
639 cursor.moveToPosition(-1);
640 while(cursor.moveToNext()) {
641 final long id = cursor.getLong(ID_INDEX);
642 final String providerName = cursor.getString(APPWIDGET_PROVIDER_INDEX);
643 final int spanX = cursor.getInt(SPANX_INDEX);
Chris Wrenfd13c712013-09-27 15:45:19 -0400644 final ComponentName provider = ComponentName.unflattenFromString(providerName);
645 Key key = null;
646 String backupKey = null;
647 if (provider != null) {
648 key = getKey(Key.WIDGET, providerName);
649 backupKey = keyToBackupKey(key);
Chris Wrenfd13c712013-09-27 15:45:19 -0400650 } else {
651 Log.w(TAG, "empty intent on appwidget: " + id);
652 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700653 if (mExistingKeys.contains(backupKey)) {
654 if (DEBUG) Log.d(TAG, "already saved widget " + backupKey);
Chris Wrenfd13c712013-09-27 15:45:19 -0400655
656 // remember that we already backed this up previously
Sunny Goyalef728d42014-10-22 11:28:28 -0700657 mKeys.add(key);
Chris Wrenfd13c712013-09-27 15:45:19 -0400658 } else if (backupKey != null) {
Sunny Goyalef728d42014-10-22 11:28:28 -0700659 if (DEBUG) Log.d(TAG, "I can count this high: " + backupWidgetCount);
660 if (backupWidgetCount < MAX_WIDGETS_PER_PASS) {
661 if (DEBUG) Log.d(TAG, "saving widget " + backupKey);
Robin Lee26ace122015-03-16 19:41:43 +0000662 UserHandleCompat user = UserHandleCompat.myUserHandle();
663 writeRowToBackup(key,
Sunny Goyal5b0e6692015-03-19 14:31:19 -0700664 packWidget(dpi, previewLoader,spanX * profile.cellWidthPx,
665 mIconCache, provider, user),
Robin Lee26ace122015-03-16 19:41:43 +0000666 data);
Sunny Goyalef728d42014-10-22 11:28:28 -0700667 mKeys.add(key);
668 backupWidgetCount ++;
Chris Wrenfd13c712013-09-27 15:45:19 -0400669 } else {
Sunny Goyalef728d42014-10-22 11:28:28 -0700670 if (VERBOSE) Log.v(TAG, "deferring widget backup " + backupKey);
Chris Wrenfd13c712013-09-27 15:45:19 -0400671 // too many widgets for this pass, request another.
Chris Wren92aa4232013-10-04 11:29:36 -0400672 dataChanged();
Chris Wrenfd13c712013-09-27 15:45:19 -0400673 }
674 }
675 }
676 } finally {
677 cursor.close();
678 }
Chris Wrenfd13c712013-09-27 15:45:19 -0400679 }
680
681 /**
682 * Read a widget from the stream.
683 *
684 * <P>Keys arrive in any order, so widgets that use this data may already exist.
685 *
686 * @param key identifier for the row
687 * @param buffer the serialized proto from the stream, may be larger than dataSize
688 * @param dataSize the size of the proto from the stream
Chris Wrenfd13c712013-09-27 15:45:19 -0400689 */
Sunny Goyalef728d42014-10-22 11:28:28 -0700690 private void restoreWidget(Key key, byte[] buffer, int dataSize) throws IOException {
Chris Wren50c8f422014-01-15 16:10:39 -0500691 if (VERBOSE) Log.v(TAG, "unpacking widget " + key.id);
Chris Wrenfd13c712013-09-27 15:45:19 -0400692 if (DEBUG) Log.d(TAG, "read (" + buffer.length + "): " +
693 Base64.encodeToString(buffer, 0, dataSize, Base64.NO_WRAP));
Sunny Goyalef728d42014-10-22 11:28:28 -0700694 Widget widget = unpackProto(new Widget(), buffer, dataSize);
695 if (DEBUG) Log.d(TAG, "unpacked " + widget.provider);
696 if (widget.icon.data != null) {
697 Bitmap icon = BitmapFactory
698 .decodeByteArray(widget.icon.data, 0, widget.icon.data.length);
699 if (icon == null) {
700 Log.w(TAG, "failed to unpack widget icon for " + key.name);
Chris Wren5dee7af2013-12-20 17:22:11 -0500701 } else {
Sunny Goyal4fbc3822015-02-18 16:46:50 -0800702 mIconCache.preloadIcon(ComponentName.unflattenFromString(widget.provider),
703 icon, widget.icon.dpi, widget.label, mUserSerial);
Chris Wren5dee7af2013-12-20 17:22:11 -0500704 }
Chris Wrenfd13c712013-09-27 15:45:19 -0400705 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700706
707 // future site of widget table mutation
Chris Wrenfd13c712013-09-27 15:45:19 -0400708 }
709
Chris Wren22e130d2013-09-23 18:25:57 -0400710 /** create a new key, with an integer ID.
Chris Wren1ada10d2013-09-13 18:01:38 -0400711 *
712 * <P> Keys contain their own checksum instead of using
713 * the heavy-weight CheckedMessage wrapper.
714 */
715 private Key getKey(int type, long id) {
716 Key key = new Key();
717 key.type = type;
718 key.id = id;
719 key.checksum = checkKey(key);
720 return key;
721 }
722
Chris Wren22e130d2013-09-23 18:25:57 -0400723 /** create a new key for a named object.
724 *
725 * <P> Keys contain their own checksum instead of using
726 * the heavy-weight CheckedMessage wrapper.
727 */
728 private Key getKey(int type, String name) {
729 Key key = new Key();
730 key.type = type;
731 key.name = name;
732 key.checksum = checkKey(key);
733 return key;
734 }
735
Chris Wren1ada10d2013-09-13 18:01:38 -0400736 /** keys need to be strings, serialize and encode. */
737 private String keyToBackupKey(Key key) {
Chris Wren978194c2013-10-03 17:47:22 -0400738 return Base64.encodeToString(Key.toByteArray(key), Base64.NO_WRAP);
Chris Wren1ada10d2013-09-13 18:01:38 -0400739 }
740
741 /** keys need to be strings, decode and parse. */
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700742 private Key backupKeyToKey(String backupKey) throws InvalidBackupException {
Chris Wren1ada10d2013-09-13 18:01:38 -0400743 try {
744 Key key = Key.parseFrom(Base64.decode(backupKey, Base64.DEFAULT));
745 if (key.checksum != checkKey(key)) {
746 key = null;
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700747 throw new InvalidBackupException("invalid key read from stream" + backupKey);
Chris Wren1ada10d2013-09-13 18:01:38 -0400748 }
749 return key;
750 } catch (InvalidProtocolBufferNanoException e) {
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700751 throw new InvalidBackupException(e);
Chris Wren1ada10d2013-09-13 18:01:38 -0400752 } catch (IllegalArgumentException e) {
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700753 throw new InvalidBackupException(e);
Chris Wren1ada10d2013-09-13 18:01:38 -0400754 }
755 }
756
757 /** Compute the checksum over the important bits of a key. */
758 private long checkKey(Key key) {
759 CRC32 checksum = new CRC32();
760 checksum.update(key.type);
761 checksum.update((int) (key.id & 0xffff));
762 checksum.update((int) ((key.id >> 32) & 0xffff));
763 if (!TextUtils.isEmpty(key.name)) {
764 checksum.update(key.name.getBytes());
765 }
766 return checksum.getValue();
767 }
768
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800769 /**
770 * @return true if its an hotseat item, that can be replaced during restore.
771 * TODO: Extend check for folders in hotseat.
772 */
773 private boolean isReplaceableHotseatItem(Favorite favorite) {
774 return favorite.container == Favorites.CONTAINER_HOTSEAT
775 && favorite.intent != null
776 && (favorite.itemType == Favorites.ITEM_TYPE_APPLICATION
777 || favorite.itemType == Favorites.ITEM_TYPE_SHORTCUT);
778 }
779
Chris Wren1ada10d2013-09-13 18:01:38 -0400780 /** Serialize a Favorite for persistence, including a checksum wrapper. */
Sunny Goyalef728d42014-10-22 11:28:28 -0700781 private Favorite packFavorite(Cursor c) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400782 Favorite favorite = new Favorite();
783 favorite.id = c.getLong(ID_INDEX);
784 favorite.screen = c.getInt(SCREEN_INDEX);
785 favorite.container = c.getInt(CONTAINER_INDEX);
786 favorite.cellX = c.getInt(CELLX_INDEX);
787 favorite.cellY = c.getInt(CELLY_INDEX);
788 favorite.spanX = c.getInt(SPANX_INDEX);
789 favorite.spanY = c.getInt(SPANY_INDEX);
790 favorite.iconType = c.getInt(ICON_TYPE_INDEX);
791 if (favorite.iconType == Favorites.ICON_TYPE_RESOURCE) {
792 String iconPackage = c.getString(ICON_PACKAGE_INDEX);
793 if (!TextUtils.isEmpty(iconPackage)) {
794 favorite.iconPackage = iconPackage;
795 }
796 String iconResource = c.getString(ICON_RESOURCE_INDEX);
797 if (!TextUtils.isEmpty(iconResource)) {
798 favorite.iconResource = iconResource;
799 }
800 }
801 if (favorite.iconType == Favorites.ICON_TYPE_BITMAP) {
802 byte[] blob = c.getBlob(ICON_INDEX);
803 if (blob != null && blob.length > 0) {
804 favorite.icon = blob;
805 }
806 }
807 String title = c.getString(TITLE_INDEX);
808 if (!TextUtils.isEmpty(title)) {
809 favorite.title = title;
810 }
Kenny Guyf8b1dfd2014-05-13 12:59:34 +0100811 String intentDescription = c.getString(INTENT_INDEX);
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800812 Intent intent = null;
Kenny Guyf8b1dfd2014-05-13 12:59:34 +0100813 if (!TextUtils.isEmpty(intentDescription)) {
814 try {
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800815 intent = Intent.parseUri(intentDescription, 0);
Kenny Guyf8b1dfd2014-05-13 12:59:34 +0100816 intent.removeExtra(ItemInfo.EXTRA_PROFILE);
817 favorite.intent = intent.toUri(0);
818 } catch (URISyntaxException e) {
819 Log.e(TAG, "Invalid intent", e);
Sunny Goyalef728d42014-10-22 11:28:28 -0700820 }
Chris Wren1ada10d2013-09-13 18:01:38 -0400821 }
822 favorite.itemType = c.getInt(ITEM_TYPE_INDEX);
823 if (favorite.itemType == Favorites.ITEM_TYPE_APPWIDGET) {
824 favorite.appWidgetId = c.getInt(APPWIDGET_ID_INDEX);
825 String appWidgetProvider = c.getString(APPWIDGET_PROVIDER_INDEX);
826 if (!TextUtils.isEmpty(appWidgetProvider)) {
827 favorite.appWidgetProvider = appWidgetProvider;
828 }
829 }
830
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800831 if (isReplaceableHotseatItem(favorite)) {
832 if (intent != null && intent.getComponent() != null) {
833 PackageManager pm = mContext.getPackageManager();
834 ActivityInfo activity = null;;
835 try {
836 activity = pm.getActivityInfo(intent.getComponent(), 0);
837 } catch (NameNotFoundException e) {
838 Log.e(TAG, "Target not found", e);
839 }
840 if (activity == null) {
841 return favorite;
842 }
843 for (int i = 0; i < mItemTypeMatchers.length; i++) {
844 if (mItemTypeMatchers[i] == null) {
845 mItemTypeMatchers[i] = new ItemTypeMatcher(
846 CommonAppTypeParser.getResourceForItemType(i));
847 }
848 if (mItemTypeMatchers[i].matches(activity, pm)) {
849 favorite.targetType = i;
850 break;
851 }
852 }
853 }
854 }
855
Sunny Goyalef728d42014-10-22 11:28:28 -0700856 return favorite;
Chris Wren1ada10d2013-09-13 18:01:38 -0400857 }
858
859 /** Deserialize a Favorite from persistence, after verifying checksum wrapper. */
Sunny Goyalef728d42014-10-22 11:28:28 -0700860 private ContentValues unpackFavorite(byte[] buffer, int dataSize)
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700861 throws IOException {
Sunny Goyalef728d42014-10-22 11:28:28 -0700862 Favorite favorite = unpackProto(new Favorite(), buffer, dataSize);
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800863
Chris Wren5dee7af2013-12-20 17:22:11 -0500864 ContentValues values = new ContentValues();
865 values.put(Favorites._ID, favorite.id);
866 values.put(Favorites.SCREEN, favorite.screen);
867 values.put(Favorites.CONTAINER, favorite.container);
868 values.put(Favorites.CELLX, favorite.cellX);
869 values.put(Favorites.CELLY, favorite.cellY);
870 values.put(Favorites.SPANX, favorite.spanX);
871 values.put(Favorites.SPANY, favorite.spanY);
872 values.put(Favorites.ICON_TYPE, favorite.iconType);
873 if (favorite.iconType == Favorites.ICON_TYPE_RESOURCE) {
874 values.put(Favorites.ICON_PACKAGE, favorite.iconPackage);
875 values.put(Favorites.ICON_RESOURCE, favorite.iconResource);
876 }
877 if (favorite.iconType == Favorites.ICON_TYPE_BITMAP) {
878 values.put(Favorites.ICON, favorite.icon);
879 }
880 if (!TextUtils.isEmpty(favorite.title)) {
881 values.put(Favorites.TITLE, favorite.title);
882 } else {
883 values.put(Favorites.TITLE, "");
884 }
885 if (!TextUtils.isEmpty(favorite.intent)) {
886 values.put(Favorites.INTENT, favorite.intent);
887 }
888 values.put(Favorites.ITEM_TYPE, favorite.itemType);
Chris Wrenf4d08112014-01-16 18:13:56 -0500889
Kenny Guyf8b1dfd2014-05-13 12:59:34 +0100890 UserHandleCompat myUserHandle = UserHandleCompat.myUserHandle();
891 long userSerialNumber =
892 UserManagerCompat.getInstance(mContext).getSerialNumberForUser(myUserHandle);
893 values.put(LauncherSettings.Favorites.PROFILE_ID, userSerialNumber);
894
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700895 DeviceProfieData currentProfile = getDeviceProfieData();
896
Sunny Goyalff572272014-07-23 13:58:07 -0700897 if (favorite.itemType == Favorites.ITEM_TYPE_APPWIDGET) {
898 if (!TextUtils.isEmpty(favorite.appWidgetProvider)) {
899 values.put(Favorites.APPWIDGET_PROVIDER, favorite.appWidgetProvider);
900 }
901 values.put(Favorites.APPWIDGET_ID, favorite.appWidgetId);
902 values.put(LauncherSettings.Favorites.RESTORED,
903 LauncherAppWidgetInfo.FLAG_ID_NOT_VALID |
904 LauncherAppWidgetInfo.FLAG_PROVIDER_NOT_READY |
905 LauncherAppWidgetInfo.FLAG_UI_NOT_READY);
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700906
907 // Verify placement
908 if (((favorite.cellX + favorite.spanX) > currentProfile.desktopCols)
909 || ((favorite.cellY + favorite.spanY) > currentProfile.desktopRows)) {
910 restoreSuccessful = false;
911 throw new InvalidBackupException("Widget not in screen bounds, aborting restore");
912 }
Sunny Goyalff572272014-07-23 13:58:07 -0700913 } else {
Sunny Goyalbb3b02f2015-01-15 12:00:14 -0800914 // Check if it is an hotseat item, that can be replaced.
915 if (isReplaceableHotseatItem(favorite)
916 && favorite.targetType != Favorite.TARGET_NONE
917 && favorite.targetType < CommonAppTypeParser.SUPPORTED_TYPE_COUNT) {
918 Log.e(TAG, "Added item type flag");
919 values.put(LauncherSettings.Favorites.RESTORED,
920 1 | CommonAppTypeParser.encodeItemTypeToFlag(favorite.targetType));
921 } else {
922 // Let LauncherModel know we've been here.
923 values.put(LauncherSettings.Favorites.RESTORED, 1);
924 }
Sunny Goyal5fd733d2014-10-29 10:51:54 -0700925
926 // Verify placement
927 if (favorite.container == Favorites.CONTAINER_HOTSEAT) {
928 if ((favorite.screen >= currentProfile.hotseatCount)
929 || (favorite.screen == currentProfile.allappsRank)) {
930 restoreSuccessful = false;
931 throw new InvalidBackupException("Item not in hotseat bounds, aborting restore");
932 }
933 } else {
934 if ((favorite.cellX >= currentProfile.desktopCols)
935 || (favorite.cellY >= currentProfile.desktopRows)) {
936 restoreSuccessful = false;
937 throw new InvalidBackupException("Item not in desktop bounds, aborting restore");
938 }
939 }
Sunny Goyalff572272014-07-23 13:58:07 -0700940 }
Chris Wrenf4d08112014-01-16 18:13:56 -0500941
Chris Wren5dee7af2013-12-20 17:22:11 -0500942 return values;
Chris Wren1ada10d2013-09-13 18:01:38 -0400943 }
944
945 /** Serialize a Screen for persistence, including a checksum wrapper. */
Sunny Goyalef728d42014-10-22 11:28:28 -0700946 private Screen packScreen(Cursor c) {
Chris Wren1ada10d2013-09-13 18:01:38 -0400947 Screen screen = new Screen();
948 screen.id = c.getLong(ID_INDEX);
949 screen.rank = c.getInt(SCREEN_RANK_INDEX);
Sunny Goyalef728d42014-10-22 11:28:28 -0700950 return screen;
Chris Wren1ada10d2013-09-13 18:01:38 -0400951 }
952
953 /** Deserialize a Screen from persistence, after verifying checksum wrapper. */
Sunny Goyalef728d42014-10-22 11:28:28 -0700954 private ContentValues unpackScreen(byte[] buffer, int dataSize)
Chris Wren1ada10d2013-09-13 18:01:38 -0400955 throws InvalidProtocolBufferNanoException {
Sunny Goyalef728d42014-10-22 11:28:28 -0700956 Screen screen = unpackProto(new Screen(), buffer, dataSize);
Chris Wren5dee7af2013-12-20 17:22:11 -0500957 ContentValues values = new ContentValues();
958 values.put(WorkspaceScreens._ID, screen.id);
959 values.put(WorkspaceScreens.SCREEN_RANK, screen.rank);
960 return values;
Chris Wren1ada10d2013-09-13 18:01:38 -0400961 }
962
Chris Wren22e130d2013-09-23 18:25:57 -0400963 /** Serialize an icon Resource for persistence, including a checksum wrapper. */
Sunny Goyalef728d42014-10-22 11:28:28 -0700964 private Resource packIcon(int dpi, Bitmap icon) {
Chris Wren22e130d2013-09-23 18:25:57 -0400965 Resource res = new Resource();
966 res.dpi = dpi;
Sunny Goyal73a22a52015-04-28 16:51:09 -0700967 res.data = Utilities.flattenBitmap(icon);
Chris Wren22e130d2013-09-23 18:25:57 -0400968 return res;
969 }
970
Chris Wrenfd13c712013-09-27 15:45:19 -0400971 /** Serialize a widget for persistence, including a checksum wrapper. */
Sunny Goyal5b0e6692015-03-19 14:31:19 -0700972 private Widget packWidget(int dpi, WidgetPreviewLoader previewLoader,
973 int previewWidth, IconCache iconCache,
Robin Lee26ace122015-03-16 19:41:43 +0000974 ComponentName provider, UserHandleCompat user) {
Adam Cohen59400422014-03-05 18:07:04 -0800975 final LauncherAppWidgetProviderInfo info =
Robin Lee26ace122015-03-16 19:41:43 +0000976 LauncherModel.getProviderInfo(mContext, provider, user);
Chris Wrenfd13c712013-09-27 15:45:19 -0400977 Widget widget = new Widget();
978 widget.provider = provider.flattenToShortString();
979 widget.label = info.label;
980 widget.configure = info.configure != null;
981 if (info.icon != 0) {
982 widget.icon = new Resource();
983 Drawable fullResIcon = iconCache.getFullResIcon(provider.getPackageName(), info.icon);
Chris Wren92aa4232013-10-04 11:29:36 -0400984 Bitmap icon = Utilities.createIconBitmap(fullResIcon, mContext);
Sunny Goyal73a22a52015-04-28 16:51:09 -0700985 widget.icon.data = Utilities.flattenBitmap(icon);
986 widget.icon.dpi = dpi;
Chris Wrenfd13c712013-09-27 15:45:19 -0400987 }
988 if (info.previewImage != 0) {
989 widget.preview = new Resource();
Sunny Goyal5b0e6692015-03-19 14:31:19 -0700990 Bitmap preview = previewLoader.generateWidgetPreview(info, previewWidth, null);
Sunny Goyal73a22a52015-04-28 16:51:09 -0700991 widget.preview.data = Utilities.flattenBitmap(preview);
992 widget.preview.dpi = dpi;
Chris Wrenfd13c712013-09-27 15:45:19 -0400993 }
Sunny Goyalef728d42014-10-22 11:28:28 -0700994 return widget;
Chris Wrenfd13c712013-09-27 15:45:19 -0400995 }
996
Sunny Goyalef728d42014-10-22 11:28:28 -0700997 /**
998 * Deserialize a proto after verifying checksum wrapper.
999 */
1000 private <T extends MessageNano> T unpackProto(T proto, byte[] buffer, int dataSize)
Chris Wrenfd13c712013-09-27 15:45:19 -04001001 throws InvalidProtocolBufferNanoException {
Sunny Goyalef728d42014-10-22 11:28:28 -07001002 MessageNano.mergeFrom(proto, readCheckedBytes(buffer, dataSize));
1003 if (DEBUG) Log.d(TAG, "unpacked proto " + proto);
1004 return proto;
Chris Wrenfd13c712013-09-27 15:45:19 -04001005 }
1006
Chris Wren1ada10d2013-09-13 18:01:38 -04001007 /**
1008 * Read the old journal from the input file.
1009 *
1010 * In the event of any error, just pretend we didn't have a journal,
1011 * in that case, do a full backup.
1012 *
1013 * @param oldState the read-0only file descriptor pointing to the old journal
Chris Wren65b6a602014-01-10 14:11:25 -05001014 * @return a Journal protocol buffer
Chris Wren1ada10d2013-09-13 18:01:38 -04001015 */
1016 private Journal readJournal(ParcelFileDescriptor oldState) {
Chris Wren1ada10d2013-09-13 18:01:38 -04001017 Journal journal = new Journal();
Chris Wren92aa4232013-10-04 11:29:36 -04001018 if (oldState == null) {
1019 return journal;
1020 }
1021 FileInputStream inStream = new FileInputStream(oldState.getFileDescriptor());
1022 try {
Chris Wren65b6a602014-01-10 14:11:25 -05001023 int availableBytes = inStream.available();
1024 if (DEBUG) Log.d(TAG, "available " + availableBytes);
1025 if (availableBytes < MAX_JOURNAL_SIZE) {
1026 byte[] buffer = new byte[availableBytes];
Chris Wren1ada10d2013-09-13 18:01:38 -04001027 int bytesRead = 0;
Chris Wren65b6a602014-01-10 14:11:25 -05001028 boolean valid = false;
Chris Wren50c8f422014-01-15 16:10:39 -05001029 InvalidProtocolBufferNanoException lastProtoException = null;
Chris Wren65b6a602014-01-10 14:11:25 -05001030 while (availableBytes > 0) {
Chris Wren92aa4232013-10-04 11:29:36 -04001031 try {
Chris Wren65b6a602014-01-10 14:11:25 -05001032 // OMG what are you doing? This is crazy inefficient!
1033 // If we read a byte that is not ours, we will cause trouble: b/12491813
1034 // However, we don't know how many bytes to expect (oops).
1035 // So we have to step through *slowly*, watching for the end.
1036 int result = inStream.read(buffer, bytesRead, 1);
Chris Wren92aa4232013-10-04 11:29:36 -04001037 if (result > 0) {
Chris Wren65b6a602014-01-10 14:11:25 -05001038 availableBytes -= result;
Chris Wren92aa4232013-10-04 11:29:36 -04001039 bytesRead += result;
1040 } else {
Chris Wren65b6a602014-01-10 14:11:25 -05001041 Log.w(TAG, "unexpected end of file while reading journal.");
1042 // stop reading and see what there is to parse
1043 availableBytes = 0;
Chris Wren92aa4232013-10-04 11:29:36 -04001044 }
1045 } catch (IOException e) {
Chris Wren92aa4232013-10-04 11:29:36 -04001046 buffer = null;
Chris Wren65b6a602014-01-10 14:11:25 -05001047 availableBytes = 0;
1048 }
1049
1050 // check the buffer to see if we have a valid journal
1051 try {
Sunny Goyalef728d42014-10-22 11:28:28 -07001052 MessageNano.mergeFrom(journal, readCheckedBytes(buffer, bytesRead));
Chris Wren65b6a602014-01-10 14:11:25 -05001053 // if we are here, then we have read a valid, checksum-verified journal
1054 valid = true;
1055 availableBytes = 0;
Chris Wren50c8f422014-01-15 16:10:39 -05001056 if (VERBOSE) Log.v(TAG, "read " + bytesRead + " bytes of journal");
Chris Wren65b6a602014-01-10 14:11:25 -05001057 } catch (InvalidProtocolBufferNanoException e) {
1058 // if we don't have the whole journal yet, mergeFrom will throw. keep going.
Chris Wren50c8f422014-01-15 16:10:39 -05001059 lastProtoException = e;
Chris Wren65b6a602014-01-10 14:11:25 -05001060 journal.clear();
Chris Wren92aa4232013-10-04 11:29:36 -04001061 }
Chris Wren1ada10d2013-09-13 18:01:38 -04001062 }
Chris Wren92aa4232013-10-04 11:29:36 -04001063 if (DEBUG) Log.d(TAG, "journal bytes read: " + bytesRead);
Chris Wren65b6a602014-01-10 14:11:25 -05001064 if (!valid) {
Chris Wren50c8f422014-01-15 16:10:39 -05001065 Log.w(TAG, "could not find a valid journal", lastProtoException);
Chris Wren1ada10d2013-09-13 18:01:38 -04001066 }
1067 }
Chris Wren92aa4232013-10-04 11:29:36 -04001068 } catch (IOException e) {
Chris Wren50c8f422014-01-15 16:10:39 -05001069 Log.w(TAG, "failed to close the journal", e);
Chris Wren92aa4232013-10-04 11:29:36 -04001070 } finally {
Chris Wren1ada10d2013-09-13 18:01:38 -04001071 try {
1072 inStream.close();
1073 } catch (IOException e) {
Chris Wren50c8f422014-01-15 16:10:39 -05001074 Log.w(TAG, "failed to close the journal", e);
Chris Wren1ada10d2013-09-13 18:01:38 -04001075 }
1076 }
1077 return journal;
1078 }
1079
Sunny Goyalef728d42014-10-22 11:28:28 -07001080 private void writeRowToBackup(Key key, MessageNano proto, BackupDataOutput data)
1081 throws IOException {
1082 writeRowToBackup(keyToBackupKey(key), proto, data);
1083 }
1084
1085 private void writeRowToBackup(String backupKey, MessageNano proto,
Chris Wren22e130d2013-09-23 18:25:57 -04001086 BackupDataOutput data) throws IOException {
Sunny Goyalef728d42014-10-22 11:28:28 -07001087 byte[] blob = writeCheckedBytes(proto);
Chris Wren22e130d2013-09-23 18:25:57 -04001088 data.writeEntityHeader(backupKey, blob.length);
1089 data.writeEntityData(blob, blob.length);
Sunny Goyalc0ee6752015-01-16 14:10:32 -08001090 mBackupDataWasUpdated = true;
Sunny Goyalef728d42014-10-22 11:28:28 -07001091 if (VERBOSE) Log.v(TAG, "Writing New entry " + backupKey);
Chris Wren22e130d2013-09-23 18:25:57 -04001092 }
1093
Chris Wren1ada10d2013-09-13 18:01:38 -04001094 /**
1095 * Write the new journal to the output file.
1096 *
1097 * In the event of any error, just pretend we didn't have a journal,
1098 * in that case, do a full backup.
1099
1100 * @param newState the write-only file descriptor pointing to the new journal
1101 * @param journal a Journal protocol buffer
1102 */
1103 private void writeJournal(ParcelFileDescriptor newState, Journal journal) {
1104 FileOutputStream outStream = null;
1105 try {
1106 outStream = new FileOutputStream(newState.getFileDescriptor());
Chris Wren65b6a602014-01-10 14:11:25 -05001107 final byte[] journalBytes = writeCheckedBytes(journal);
Chris Wren65b6a602014-01-10 14:11:25 -05001108 outStream.write(journalBytes);
Chris Wren1ada10d2013-09-13 18:01:38 -04001109 outStream.close();
Chris Wren50c8f422014-01-15 16:10:39 -05001110 if (VERBOSE) Log.v(TAG, "wrote " + journalBytes.length + " bytes of journal");
Chris Wren1ada10d2013-09-13 18:01:38 -04001111 } catch (IOException e) {
Chris Wren50c8f422014-01-15 16:10:39 -05001112 Log.w(TAG, "failed to write backup journal", e);
Chris Wren1ada10d2013-09-13 18:01:38 -04001113 }
1114 }
1115
1116 /** Wrap a proto in a CheckedMessage and compute the checksum. */
1117 private byte[] writeCheckedBytes(MessageNano proto) {
1118 CheckedMessage wrapper = new CheckedMessage();
1119 wrapper.payload = MessageNano.toByteArray(proto);
1120 CRC32 checksum = new CRC32();
1121 checksum.update(wrapper.payload);
1122 wrapper.checksum = checksum.getValue();
1123 return MessageNano.toByteArray(wrapper);
1124 }
1125
1126 /** Unwrap a proto message from a CheckedMessage, verifying the checksum. */
Sunny Goyalef728d42014-10-22 11:28:28 -07001127 private static byte[] readCheckedBytes(byte[] buffer, int dataSize)
Chris Wren1ada10d2013-09-13 18:01:38 -04001128 throws InvalidProtocolBufferNanoException {
1129 CheckedMessage wrapper = new CheckedMessage();
Sunny Goyalef728d42014-10-22 11:28:28 -07001130 MessageNano.mergeFrom(wrapper, buffer, 0, dataSize);
Chris Wren1ada10d2013-09-13 18:01:38 -04001131 CRC32 checksum = new CRC32();
1132 checksum.update(wrapper.payload);
1133 if (wrapper.checksum != checksum.getValue()) {
1134 throw new InvalidProtocolBufferNanoException("checksum does not match");
1135 }
1136 return wrapper.payload;
1137 }
1138
Chris Wren6d0dde02014-02-10 12:16:54 -05001139 private boolean initializeIconCache() {
1140 if (mIconCache != null) {
1141 return true;
1142 }
1143
1144 final LauncherAppState appState = LauncherAppState.getInstanceNoCreate();
1145 if (appState == null) {
Sunny Goyal4fbc3822015-02-18 16:46:50 -08001146 if (DEBUG) {
1147 Throwable stackTrace = new Throwable();
1148 stackTrace.fillInStackTrace();
1149 Log.w(TAG, "Failed to get app state during backup/restore", stackTrace);
1150 }
Chris Wren6d0dde02014-02-10 12:16:54 -05001151 return false;
1152 }
1153 mIconCache = appState.getIconCache();
1154 return mIconCache != null;
1155 }
1156
Chris Wren71144262014-02-27 15:49:39 -05001157
Sunny Goyalef728d42014-10-22 11:28:28 -07001158 /**
1159 * @return true if the launcher is in a state to support backup
1160 */
Chris Wren71144262014-02-27 15:49:39 -05001161 private boolean launcherIsReady() {
1162 ContentResolver cr = mContext.getContentResolver();
1163 Cursor cursor = cr.query(Favorites.CONTENT_URI, FAVORITE_PROJECTION, null, null, null);
1164 if (cursor == null) {
1165 // launcher data has been wiped, do nothing
1166 return false;
1167 }
1168 cursor.close();
1169
1170 if (!initializeIconCache()) {
1171 // launcher services are unavailable, try again later
1172 dataChanged();
1173 return false;
1174 }
1175
1176 return true;
1177 }
1178
Sunny Goyalffe83f12014-08-14 17:39:34 -07001179 private String getUserSelectionArg() {
1180 return Favorites.PROFILE_ID + '=' + UserManagerCompat.getInstance(mContext)
1181 .getSerialNumberForUser(UserHandleCompat.myUserHandle());
1182 }
1183
Sunny Goyal5fd733d2014-10-29 10:51:54 -07001184 private class InvalidBackupException extends IOException {
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001185
1186 private static final long serialVersionUID = 8931456637211665082L;
1187
Sunny Goyal5fd733d2014-10-29 10:51:54 -07001188 private InvalidBackupException(Throwable cause) {
Chris Wren1ada10d2013-09-13 18:01:38 -04001189 super(cause);
1190 }
1191
Sunny Goyal5fd733d2014-10-29 10:51:54 -07001192 public InvalidBackupException(String reason) {
Chris Wren1ada10d2013-09-13 18:01:38 -04001193 super(reason);
1194 }
1195 }
Sunny Goyalbb3b02f2015-01-15 12:00:14 -08001196
1197 /**
1198 * A class to check if an activity can handle one of the intents from a list of
1199 * predefined intents.
1200 */
1201 private class ItemTypeMatcher {
1202
1203 private final ArrayList<Intent> mIntents;
1204
1205 ItemTypeMatcher(int xml_res) {
1206 mIntents = xml_res == 0 ? new ArrayList<Intent>() : parseIntents(xml_res);
1207 }
1208
1209 private ArrayList<Intent> parseIntents(int xml_res) {
1210 ArrayList<Intent> intents = new ArrayList<Intent>();
1211 XmlResourceParser parser = mContext.getResources().getXml(xml_res);
1212 try {
1213 DefaultLayoutParser.beginDocument(parser, DefaultLayoutParser.TAG_RESOLVE);
1214 final int depth = parser.getDepth();
1215 int type;
1216 while (((type = parser.next()) != XmlPullParser.END_TAG ||
1217 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
1218 if (type != XmlPullParser.START_TAG) {
1219 continue;
1220 } else if (DefaultLayoutParser.TAG_FAVORITE.equals(parser.getName())) {
1221 final String uri = DefaultLayoutParser.getAttributeValue(
1222 parser, DefaultLayoutParser.ATTR_URI);
1223 intents.add(Intent.parseUri(uri, 0));
1224 }
1225 }
1226 } catch (URISyntaxException | XmlPullParserException | IOException e) {
1227 Log.e(TAG, "Unable to parse " + xml_res, e);
1228 } finally {
1229 parser.close();
1230 }
1231 return intents;
1232 }
1233
1234 public boolean matches(ActivityInfo activity, PackageManager pm) {
1235 for (Intent intent : mIntents) {
1236 intent.setPackage(activity.packageName);
1237 ResolveInfo info = pm.resolveActivity(intent, 0);
1238 if (info != null && (info.activityInfo.name.equals(activity.name)
1239 || info.activityInfo.name.equals(activity.targetActivity))) {
1240 return true;
1241 }
1242 }
1243 return false;
1244 }
1245 }
Chris Wren1ada10d2013-09-13 18:01:38 -04001246}