mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
339bd01012
--HG-- extra : commitid : 7qIFuCxppoX extra : rebase_source : 89dc929577cfe329436a90f1cb51a3209a1983d7 extra : amend_source : be84917784335f86412bb873d11a162bdaa673fa
179 lines
7.5 KiB
Java
179 lines
7.5 KiB
Java
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.preferences;
|
|
|
|
import org.mozilla.gecko.GeckoProfile;
|
|
import org.mozilla.gecko.db.BrowserContract;
|
|
import org.mozilla.gecko.db.BrowserContract.Bookmarks;
|
|
import org.mozilla.gecko.db.LocalBrowserDB;
|
|
|
|
import android.content.ContentProviderOperation;
|
|
import android.content.ContentResolver;
|
|
import android.content.Context;
|
|
import android.content.OperationApplicationException;
|
|
import android.database.Cursor;
|
|
import android.net.Uri;
|
|
import android.os.RemoteException;
|
|
import android.provider.BaseColumns;
|
|
import android.util.Log;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
class AndroidImport implements Runnable {
|
|
/**
|
|
* The Android M SDK removed several fields and methods from android.provider.Browser. This class is used as a
|
|
* replacement to support building with the new SDK but at the same time still use these fields on lower Android
|
|
* versions.
|
|
*/
|
|
private static class LegacyBrowserProvider {
|
|
public static final Uri BOOKMARKS_URI = Uri.parse("content://browser/bookmarks");
|
|
|
|
// Incomplete: This are just the fields we currently use in our code base
|
|
public static class BookmarkColumns implements BaseColumns {
|
|
public static final String URL = "url";
|
|
public static final String VISITS = "visits";
|
|
public static final String DATE = "date";
|
|
public static final String BOOKMARK = "bookmark";
|
|
public static final String TITLE = "title";
|
|
public static final String CREATED = "created";
|
|
public static final String FAVICON = "favicon";
|
|
}
|
|
}
|
|
|
|
private static final String LOGTAG = "AndroidImport";
|
|
private final Context mContext;
|
|
private final Runnable mOnDoneRunnable;
|
|
private final ArrayList<ContentProviderOperation> mOperations;
|
|
private final ContentResolver mCr;
|
|
private final LocalBrowserDB mDB;
|
|
private final boolean mImportBookmarks;
|
|
private final boolean mImportHistory;
|
|
|
|
public AndroidImport(Context context, Runnable onDoneRunnable,
|
|
boolean doBookmarks, boolean doHistory) {
|
|
mContext = context;
|
|
mOnDoneRunnable = onDoneRunnable;
|
|
mOperations = new ArrayList<ContentProviderOperation>();
|
|
mCr = mContext.getContentResolver();
|
|
mDB = new LocalBrowserDB(GeckoProfile.get(context).getName());
|
|
mImportBookmarks = doBookmarks;
|
|
mImportHistory = doHistory;
|
|
}
|
|
|
|
public void mergeBookmarks() {
|
|
Cursor cursor = null;
|
|
try {
|
|
cursor = mCr.query(LegacyBrowserProvider.BOOKMARKS_URI,
|
|
null,
|
|
LegacyBrowserProvider.BookmarkColumns.BOOKMARK + " = 1",
|
|
null,
|
|
null);
|
|
|
|
if (cursor != null) {
|
|
final int faviconCol = cursor.getColumnIndexOrThrow(LegacyBrowserProvider.BookmarkColumns.FAVICON);
|
|
final int titleCol = cursor.getColumnIndexOrThrow(LegacyBrowserProvider.BookmarkColumns.TITLE);
|
|
final int urlCol = cursor.getColumnIndexOrThrow(LegacyBrowserProvider.BookmarkColumns.URL);
|
|
// http://code.google.com/p/android/issues/detail?id=17969
|
|
final int createCol = cursor.getColumnIndex(LegacyBrowserProvider.BookmarkColumns.CREATED);
|
|
|
|
cursor.moveToFirst();
|
|
while (!cursor.isAfterLast()) {
|
|
String url = cursor.getString(urlCol);
|
|
String title = cursor.getString(titleCol);
|
|
long created;
|
|
if (createCol >= 0) {
|
|
created = cursor.getLong(createCol);
|
|
} else {
|
|
created = System.currentTimeMillis();
|
|
}
|
|
// Need to set it to the current time so Sync picks it up.
|
|
long modified = System.currentTimeMillis();
|
|
byte[] data = cursor.getBlob(faviconCol);
|
|
mDB.updateBookmarkInBatch(mCr, mOperations,
|
|
url, title, null, -1,
|
|
created, modified,
|
|
BrowserContract.Bookmarks.DEFAULT_POSITION,
|
|
null, Bookmarks.TYPE_BOOKMARK);
|
|
if (data != null) {
|
|
mDB.updateFaviconInBatch(mCr, mOperations, url, null, null, data);
|
|
}
|
|
cursor.moveToNext();
|
|
}
|
|
}
|
|
} finally {
|
|
if (cursor != null)
|
|
cursor.close();
|
|
}
|
|
|
|
flushBatchOperations();
|
|
}
|
|
|
|
public void mergeHistory() {
|
|
Cursor cursor = null;
|
|
try {
|
|
cursor = mCr.query(LegacyBrowserProvider.BOOKMARKS_URI,
|
|
null,
|
|
LegacyBrowserProvider.BookmarkColumns.BOOKMARK + " = 0 AND " +
|
|
LegacyBrowserProvider.BookmarkColumns.VISITS + " > 0",
|
|
null,
|
|
null);
|
|
|
|
if (cursor != null) {
|
|
final int dateCol = cursor.getColumnIndexOrThrow(LegacyBrowserProvider.BookmarkColumns.DATE);
|
|
final int faviconCol = cursor.getColumnIndexOrThrow(LegacyBrowserProvider.BookmarkColumns.FAVICON);
|
|
final int titleCol = cursor.getColumnIndexOrThrow(LegacyBrowserProvider.BookmarkColumns.TITLE);
|
|
final int urlCol = cursor.getColumnIndexOrThrow(LegacyBrowserProvider.BookmarkColumns.URL);
|
|
final int visitsCol = cursor.getColumnIndexOrThrow(LegacyBrowserProvider.BookmarkColumns.VISITS);
|
|
|
|
cursor.moveToFirst();
|
|
while (!cursor.isAfterLast()) {
|
|
String url = cursor.getString(urlCol);
|
|
String title = cursor.getString(titleCol);
|
|
long date = cursor.getLong(dateCol);
|
|
int visits = cursor.getInt(visitsCol);
|
|
byte[] data = cursor.getBlob(faviconCol);
|
|
mDB.updateHistoryInBatch(mCr, mOperations, url, title, date, visits);
|
|
if (data != null) {
|
|
mDB.updateFaviconInBatch(mCr, mOperations, url, null, null, data);
|
|
}
|
|
cursor.moveToNext();
|
|
}
|
|
}
|
|
} finally {
|
|
if (cursor != null)
|
|
cursor.close();
|
|
}
|
|
|
|
flushBatchOperations();
|
|
}
|
|
|
|
protected void flushBatchOperations() {
|
|
Log.d(LOGTAG, "Flushing " + mOperations.size() + " DB operations");
|
|
try {
|
|
// We don't really care for the results, this is best-effort.
|
|
mCr.applyBatch(BrowserContract.AUTHORITY, mOperations);
|
|
} catch (RemoteException e) {
|
|
Log.e(LOGTAG, "Remote exception while updating db: ", e);
|
|
} catch (OperationApplicationException e) {
|
|
// Bug 716729 means this happens even in normal circumstances
|
|
Log.d(LOGTAG, "Error while applying database updates: ", e);
|
|
}
|
|
mOperations.clear();
|
|
}
|
|
|
|
@Override
|
|
public void run() {
|
|
if (mImportBookmarks) {
|
|
mergeBookmarks();
|
|
}
|
|
if (mImportHistory) {
|
|
mergeHistory();
|
|
}
|
|
|
|
mOnDoneRunnable.run();
|
|
}
|
|
}
|