2011-12-08 16:37:21 +00:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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/. */
|
2011-12-08 16:37:21 +00:00
|
|
|
|
|
|
|
package org.mozilla.gecko.db;
|
|
|
|
|
|
|
|
import java.io.ByteArrayOutputStream;
|
2012-05-10 19:08:36 +00:00
|
|
|
import java.util.HashMap;
|
2011-12-08 16:37:21 +00:00
|
|
|
|
|
|
|
import org.mozilla.gecko.db.BrowserContract.Bookmarks;
|
|
|
|
import org.mozilla.gecko.db.BrowserContract.History;
|
|
|
|
import org.mozilla.gecko.db.BrowserContract.ImageColumns;
|
|
|
|
import org.mozilla.gecko.db.BrowserContract.Images;
|
2012-03-23 22:52:42 +00:00
|
|
|
import org.mozilla.gecko.db.BrowserContract.Combined;
|
2011-12-13 14:46:58 +00:00
|
|
|
import org.mozilla.gecko.db.BrowserContract.URLColumns;
|
2012-03-16 18:36:31 +00:00
|
|
|
import org.mozilla.gecko.db.DBUtils;
|
2011-12-08 16:37:21 +00:00
|
|
|
|
|
|
|
import android.content.ContentResolver;
|
|
|
|
import android.content.ContentUris;
|
|
|
|
import android.content.ContentValues;
|
2012-02-15 00:23:06 +00:00
|
|
|
import android.database.ContentObserver;
|
2011-12-08 16:37:21 +00:00
|
|
|
import android.database.Cursor;
|
|
|
|
import android.database.CursorWrapper;
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.provider.Browser;
|
2012-02-15 01:10:18 +00:00
|
|
|
import android.util.Log;
|
2011-12-08 16:37:21 +00:00
|
|
|
|
|
|
|
public class LocalBrowserDB implements BrowserDB.BrowserDBIface {
|
2012-02-15 01:10:18 +00:00
|
|
|
// Calculate these once, at initialization. isLoggable is too expensive to
|
|
|
|
// have in-line in each log call.
|
|
|
|
private static final String LOGTAG = "GeckoLocalBrowserDB";
|
|
|
|
private static boolean logDebug = Log.isLoggable(LOGTAG, Log.DEBUG);
|
|
|
|
protected static void debug(String message) {
|
|
|
|
if (logDebug) {
|
|
|
|
Log.d(LOGTAG, message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
private final String mProfile;
|
2012-03-19 18:22:33 +00:00
|
|
|
|
2012-05-10 19:08:36 +00:00
|
|
|
// Map of folder GUIDs to IDs. Used for caching.
|
|
|
|
private HashMap<String, Long> mFolderIdMap;
|
|
|
|
|
2012-03-19 18:22:33 +00:00
|
|
|
// Use wrapped Boolean so that we can have a null state
|
|
|
|
private Boolean mDesktopBookmarksExist;
|
2012-06-02 18:23:45 +00:00
|
|
|
private Boolean mReadingListItemsExist;
|
2011-12-08 16:37:21 +00:00
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
private final Uri mBookmarksUriWithProfile;
|
|
|
|
private final Uri mParentsUriWithProfile;
|
|
|
|
private final Uri mHistoryUriWithProfile;
|
|
|
|
private final Uri mImagesUriWithProfile;
|
2012-03-23 22:52:42 +00:00
|
|
|
private final Uri mCombinedUriWithProfile;
|
2012-02-15 19:24:21 +00:00
|
|
|
private final Uri mDeletedHistoryUriWithProfile;
|
2012-04-10 00:28:59 +00:00
|
|
|
private final Uri mUpdateHistoryUriWithProfile;
|
2012-02-15 19:24:21 +00:00
|
|
|
|
2012-02-23 18:48:47 +00:00
|
|
|
private static final String[] DEFAULT_BOOKMARK_COLUMNS =
|
|
|
|
new String[] { Bookmarks._ID,
|
2012-03-07 19:13:03 +00:00
|
|
|
Bookmarks.GUID,
|
2012-02-23 18:48:47 +00:00
|
|
|
Bookmarks.URL,
|
|
|
|
Bookmarks.TITLE,
|
2012-03-20 11:44:32 +00:00
|
|
|
Bookmarks.TYPE,
|
2012-02-23 18:48:47 +00:00
|
|
|
Bookmarks.PARENT,
|
2012-03-23 01:36:09 +00:00
|
|
|
Bookmarks.KEYWORD,
|
2012-02-23 18:48:47 +00:00
|
|
|
Bookmarks.FAVICON };
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
public LocalBrowserDB(String profile) {
|
|
|
|
mProfile = profile;
|
2012-05-10 19:08:36 +00:00
|
|
|
mFolderIdMap = new HashMap<String, Long>();
|
2012-03-19 18:22:33 +00:00
|
|
|
mDesktopBookmarksExist = null;
|
2012-06-02 18:23:45 +00:00
|
|
|
mReadingListItemsExist = null;
|
2011-12-08 16:37:21 +00:00
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
mBookmarksUriWithProfile = appendProfile(Bookmarks.CONTENT_URI);
|
|
|
|
mParentsUriWithProfile = appendProfile(Bookmarks.PARENTS_CONTENT_URI);
|
|
|
|
mHistoryUriWithProfile = appendProfile(History.CONTENT_URI);
|
|
|
|
mImagesUriWithProfile = appendProfile(Images.CONTENT_URI);
|
2012-03-23 22:52:42 +00:00
|
|
|
mCombinedUriWithProfile = appendProfile(Combined.CONTENT_URI);
|
2012-02-15 19:24:21 +00:00
|
|
|
|
|
|
|
mDeletedHistoryUriWithProfile = mHistoryUriWithProfile.buildUpon().
|
|
|
|
appendQueryParameter(BrowserContract.PARAM_SHOW_DELETED, "1").build();
|
2012-04-10 00:28:59 +00:00
|
|
|
|
|
|
|
mUpdateHistoryUriWithProfile = mHistoryUriWithProfile.buildUpon().
|
|
|
|
appendQueryParameter(BrowserContract.PARAM_INCREMENT_VISITS, "true").
|
|
|
|
appendQueryParameter(BrowserContract.PARAM_INSERT_IF_NEEDED, "true").build();
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
2012-03-19 18:22:33 +00:00
|
|
|
// Invalidate cached data
|
|
|
|
public void invalidateCachedState() {
|
|
|
|
mDesktopBookmarksExist = null;
|
2012-06-02 18:23:45 +00:00
|
|
|
mReadingListItemsExist = null;
|
2012-03-19 18:22:33 +00:00
|
|
|
}
|
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
private Uri historyUriWithLimit(int limit) {
|
|
|
|
return mHistoryUriWithProfile.buildUpon().appendQueryParameter(BrowserContract.PARAM_LIMIT,
|
|
|
|
String.valueOf(limit)).build();
|
2012-02-15 15:05:03 +00:00
|
|
|
}
|
|
|
|
|
2012-03-19 18:22:33 +00:00
|
|
|
private Uri bookmarksUriWithLimit(int limit) {
|
|
|
|
return mBookmarksUriWithProfile.buildUpon().appendQueryParameter(BrowserContract.PARAM_LIMIT,
|
|
|
|
String.valueOf(limit)).build();
|
|
|
|
}
|
|
|
|
|
2012-03-23 22:52:42 +00:00
|
|
|
private Uri combinedUriWithLimit(int limit) {
|
|
|
|
return mCombinedUriWithProfile.buildUpon().appendQueryParameter(BrowserContract.PARAM_LIMIT,
|
|
|
|
String.valueOf(limit)).build();
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
private Uri appendProfile(Uri uri) {
|
|
|
|
return uri.buildUpon().appendQueryParameter(BrowserContract.PARAM_PROFILE, mProfile).build();
|
|
|
|
}
|
|
|
|
|
2012-03-16 18:36:31 +00:00
|
|
|
private Cursor filterAllSites(ContentResolver cr, String[] projection, CharSequence constraint,
|
|
|
|
int limit, CharSequence urlFilter) {
|
2012-04-02 18:56:48 +00:00
|
|
|
String selection = "";
|
|
|
|
String[] selectionArgs = null;
|
|
|
|
|
|
|
|
// The combined history/bookmarks selection queries for sites with a url or title containing
|
|
|
|
// the constraint string(s), treating space-separated words as separate constraints
|
|
|
|
String[] constraintWords = constraint.toString().split(" ");
|
|
|
|
for (int i = 0; i < constraintWords.length; i++) {
|
|
|
|
selection = DBUtils.concatenateWhere(selection, "(" + Combined.URL + " LIKE ? OR " +
|
|
|
|
Combined.TITLE + " LIKE ?)");
|
|
|
|
String constraintWord = "%" + constraintWords[i] + "%";
|
|
|
|
selectionArgs = DBUtils.appendSelectionArgs(selectionArgs,
|
|
|
|
new String[] { constraintWord, constraintWord });
|
|
|
|
}
|
2012-03-16 18:36:31 +00:00
|
|
|
|
|
|
|
if (urlFilter != null) {
|
2012-03-23 22:52:42 +00:00
|
|
|
selection = DBUtils.concatenateWhere(selection, "(" + Combined.URL + " NOT LIKE ?)");
|
2012-03-16 18:36:31 +00:00
|
|
|
selectionArgs = DBUtils.appendSelectionArgs(selectionArgs, new String[] { urlFilter.toString() });
|
|
|
|
}
|
|
|
|
|
2012-03-16 18:36:34 +00:00
|
|
|
// Our version of frecency is computed by scaling the number of visits by a multiplier
|
|
|
|
// that approximates Gaussian decay, based on how long ago the entry was last visited.
|
|
|
|
// Since we're limited by the math we can do with sqlite, we're calculating this
|
|
|
|
// approximation using the Cauchy distribution: multiplier = 15^2 / (age^2 + 15^2).
|
|
|
|
// Using 15 as our scale parameter, we get a constant 15^2 = 225. Following this math,
|
|
|
|
// frecencyScore = numVisits * max(1, 100 * 225 / (age*age + 225)). (See bug 704977)
|
2012-05-02 16:07:58 +00:00
|
|
|
// We also give bookmarks an extra bonus boost by adding 100 points to their frecency score.
|
2012-03-23 22:52:42 +00:00
|
|
|
final String age = "(" + Combined.DATE_LAST_VISITED + " - " + System.currentTimeMillis() + ") / 86400000";
|
2012-05-02 16:07:58 +00:00
|
|
|
final String sortOrder = "(CASE WHEN " + Combined.BOOKMARK_ID + " > -1 THEN 100 ELSE 0 END) + " +
|
|
|
|
Combined.VISITS + " * MAX(1, 100 * 225 / (" + age + "*" + age + " + 225)) DESC";
|
2012-03-16 18:36:31 +00:00
|
|
|
|
2012-03-23 22:52:42 +00:00
|
|
|
Cursor c = cr.query(combinedUriWithLimit(limit),
|
2012-01-19 17:23:10 +00:00
|
|
|
projection,
|
2012-03-16 18:36:31 +00:00
|
|
|
selection,
|
|
|
|
selectionArgs,
|
|
|
|
sortOrder);
|
2011-12-08 16:37:21 +00:00
|
|
|
|
|
|
|
return new LocalDBCursor(c);
|
|
|
|
}
|
|
|
|
|
2012-01-19 17:23:10 +00:00
|
|
|
public Cursor filter(ContentResolver cr, CharSequence constraint, int limit) {
|
|
|
|
return filterAllSites(cr,
|
2012-03-23 22:52:42 +00:00
|
|
|
new String[] { Combined._ID,
|
|
|
|
Combined.URL,
|
|
|
|
Combined.TITLE,
|
2012-04-24 22:59:09 +00:00
|
|
|
Combined.FAVICON,
|
2012-06-02 18:23:45 +00:00
|
|
|
Combined.DISPLAY,
|
2012-05-14 18:44:34 +00:00
|
|
|
Combined.BOOKMARK_ID,
|
|
|
|
Combined.HISTORY_ID },
|
2012-01-19 17:23:10 +00:00
|
|
|
constraint,
|
|
|
|
limit,
|
|
|
|
null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Cursor getTopSites(ContentResolver cr, int limit) {
|
|
|
|
return filterAllSites(cr,
|
2012-03-23 22:52:42 +00:00
|
|
|
new String[] { Combined._ID,
|
|
|
|
Combined.URL,
|
|
|
|
Combined.TITLE,
|
|
|
|
Combined.THUMBNAIL },
|
2012-01-19 17:23:10 +00:00
|
|
|
"",
|
|
|
|
limit,
|
|
|
|
BrowserDB.ABOUT_PAGES_URL_FILTER);
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
public void updateVisitedHistory(ContentResolver cr, String uri) {
|
2012-04-10 00:28:59 +00:00
|
|
|
ContentValues values = new ContentValues();
|
2011-12-08 16:37:21 +00:00
|
|
|
|
2012-04-10 00:28:59 +00:00
|
|
|
values.put(History.URL, uri);
|
|
|
|
values.put(History.DATE_LAST_VISITED, System.currentTimeMillis());
|
|
|
|
values.put(History.IS_DELETED, 0);
|
|
|
|
|
|
|
|
// This will insert a new history entry if one for this URL
|
|
|
|
// doesn't already exist
|
2012-04-12 17:28:50 +00:00
|
|
|
cr.update(mUpdateHistoryUriWithProfile,
|
|
|
|
values,
|
|
|
|
History.URL + " = ?",
|
|
|
|
new String[] { uri });
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void updateHistoryTitle(ContentResolver cr, String uri, String title) {
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
values.put(History.TITLE, title);
|
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
cr.update(mHistoryUriWithProfile,
|
2011-12-08 16:37:21 +00:00
|
|
|
values,
|
|
|
|
History.URL + " = ?",
|
|
|
|
new String[] { uri });
|
|
|
|
}
|
|
|
|
|
2012-01-25 21:10:01 +00:00
|
|
|
public void updateHistoryEntry(ContentResolver cr, String uri, String title,
|
|
|
|
long date, int visits) {
|
|
|
|
int oldVisits = 0;
|
|
|
|
Cursor cursor = null;
|
|
|
|
try {
|
2012-02-15 19:24:21 +00:00
|
|
|
cursor = cr.query(mHistoryUriWithProfile,
|
2012-01-25 21:10:01 +00:00
|
|
|
new String[] { History.VISITS },
|
|
|
|
History.URL + " = ?",
|
|
|
|
new String[] { uri },
|
|
|
|
null);
|
|
|
|
|
|
|
|
if (cursor.moveToFirst()) {
|
|
|
|
oldVisits = cursor.getInt(0);
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
|
2011-12-19 21:56:11 +00:00
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
values.put(History.DATE_LAST_VISITED, date);
|
2012-01-25 21:10:01 +00:00
|
|
|
values.put(History.VISITS, oldVisits + visits);
|
|
|
|
if (title != null) {
|
|
|
|
values.put(History.TITLE, title);
|
|
|
|
}
|
2011-12-19 21:56:11 +00:00
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
cr.update(mHistoryUriWithProfile,
|
2011-12-19 21:56:11 +00:00
|
|
|
values,
|
|
|
|
History.URL + " = ?",
|
|
|
|
new String[] { uri });
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
public Cursor getAllVisitedHistory(ContentResolver cr) {
|
2012-02-15 19:24:21 +00:00
|
|
|
Cursor c = cr.query(mHistoryUriWithProfile,
|
2011-12-08 16:37:21 +00:00
|
|
|
new String[] { History.URL },
|
|
|
|
History.VISITS + " > 0",
|
|
|
|
null,
|
|
|
|
null);
|
|
|
|
|
|
|
|
return new LocalDBCursor(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Cursor getRecentHistory(ContentResolver cr, int limit) {
|
2012-04-24 22:59:30 +00:00
|
|
|
Cursor c = cr.query(combinedUriWithLimit(limit),
|
|
|
|
new String[] { Combined._ID,
|
|
|
|
Combined.BOOKMARK_ID,
|
2012-05-14 18:44:34 +00:00
|
|
|
Combined.HISTORY_ID,
|
2012-04-24 22:59:30 +00:00
|
|
|
Combined.URL,
|
|
|
|
Combined.TITLE,
|
|
|
|
Combined.FAVICON,
|
|
|
|
Combined.DATE_LAST_VISITED,
|
|
|
|
Combined.VISITS },
|
2011-12-08 16:37:21 +00:00
|
|
|
History.DATE_LAST_VISITED + " > 0",
|
|
|
|
null,
|
|
|
|
History.DATE_LAST_VISITED + " DESC");
|
|
|
|
|
|
|
|
return new LocalDBCursor(c);
|
|
|
|
}
|
|
|
|
|
2012-05-14 18:44:34 +00:00
|
|
|
public void removeHistoryEntry(ContentResolver cr, int id) {
|
|
|
|
cr.delete(mHistoryUriWithProfile,
|
|
|
|
History._ID + " = ?",
|
|
|
|
new String[] { String.valueOf(id) });
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
public void clearHistory(ContentResolver cr) {
|
2012-02-15 19:24:21 +00:00
|
|
|
cr.delete(mHistoryUriWithProfile, null, null);
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
2012-02-23 18:48:47 +00:00
|
|
|
public Cursor getBookmarksInFolder(ContentResolver cr, long folderId) {
|
2012-03-15 17:01:11 +00:00
|
|
|
Cursor c = null;
|
2012-04-02 18:56:53 +00:00
|
|
|
boolean addDesktopFolder = false;
|
2012-06-02 18:23:45 +00:00
|
|
|
boolean addReadingListFolder = false;
|
2012-03-15 17:01:11 +00:00
|
|
|
|
2012-04-02 18:56:53 +00:00
|
|
|
// We always want to show mobile bookmarks in the root view.
|
|
|
|
if (folderId == Bookmarks.FIXED_ROOT_ID) {
|
2012-05-10 19:08:39 +00:00
|
|
|
folderId = getFolderIdFromGuid(cr, Bookmarks.MOBILE_FOLDER_GUID);
|
2012-03-19 18:22:33 +00:00
|
|
|
|
2012-04-02 18:56:53 +00:00
|
|
|
// We'll add a fake "Desktop Bookmarks" folder to the root view if desktop
|
|
|
|
// bookmarks exist, so that the user can still access non-mobile bookmarks.
|
|
|
|
addDesktopFolder = desktopBookmarksExist(cr);
|
2012-06-02 18:23:45 +00:00
|
|
|
|
|
|
|
// We'll add the Reading List folder to the root view if any reading
|
|
|
|
// list items exist.
|
|
|
|
addReadingListFolder = readingListItemsExist(cr);
|
2012-04-02 18:56:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (folderId == Bookmarks.FAKE_DESKTOP_FOLDER_ID) {
|
|
|
|
// Since the "Desktop Bookmarks" folder doesn't actually exist, we
|
|
|
|
// just fake it by querying specifically certain known desktop folders.
|
2012-03-15 17:01:11 +00:00
|
|
|
c = cr.query(mBookmarksUriWithProfile,
|
|
|
|
DEFAULT_BOOKMARK_COLUMNS,
|
|
|
|
Bookmarks.GUID + " = ? OR " +
|
|
|
|
Bookmarks.GUID + " = ? OR " +
|
2012-04-02 18:56:53 +00:00
|
|
|
Bookmarks.GUID + " = ?",
|
|
|
|
new String[] { Bookmarks.TOOLBAR_FOLDER_GUID,
|
2012-03-15 17:01:11 +00:00
|
|
|
Bookmarks.MENU_FOLDER_GUID,
|
|
|
|
Bookmarks.UNFILED_FOLDER_GUID },
|
|
|
|
null);
|
|
|
|
} else {
|
2012-03-20 11:44:32 +00:00
|
|
|
// Right now, we only support showing folder and bookmark type of
|
|
|
|
// entries. We should add support for other types though (bug 737024)
|
2012-03-15 17:01:11 +00:00
|
|
|
c = cr.query(mBookmarksUriWithProfile,
|
|
|
|
DEFAULT_BOOKMARK_COLUMNS,
|
2012-03-20 11:44:32 +00:00
|
|
|
Bookmarks.PARENT + " = ? AND " +
|
|
|
|
"(" + Bookmarks.TYPE + " = ? OR " + Bookmarks.TYPE + " = ?)",
|
|
|
|
new String[] { String.valueOf(folderId),
|
|
|
|
String.valueOf(Bookmarks.TYPE_BOOKMARK),
|
|
|
|
String.valueOf(Bookmarks.TYPE_FOLDER) },
|
2012-03-15 17:01:11 +00:00
|
|
|
null);
|
|
|
|
}
|
2012-02-07 19:03:02 +00:00
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
if (addDesktopFolder || addReadingListFolder) {
|
|
|
|
// Wrap cursor to add fake desktop bookmarks and reading list folders
|
|
|
|
c = new SpecialFoldersCursorWrapper(c, addDesktopFolder, addReadingListFolder);
|
2012-04-02 18:56:53 +00:00
|
|
|
}
|
|
|
|
|
2012-02-07 19:03:02 +00:00
|
|
|
return new LocalDBCursor(c);
|
|
|
|
}
|
|
|
|
|
2012-03-19 18:22:33 +00:00
|
|
|
// Returns true if any desktop bookmarks exist, which will be true if the user
|
|
|
|
// has set up sync at one point, or done a profile migration from XUL fennec.
|
|
|
|
private boolean desktopBookmarksExist(ContentResolver cr) {
|
|
|
|
if (mDesktopBookmarksExist != null)
|
|
|
|
return mDesktopBookmarksExist;
|
|
|
|
|
|
|
|
Cursor c = null;
|
|
|
|
int count = 0;
|
|
|
|
try {
|
2012-05-10 19:08:36 +00:00
|
|
|
// Check to see if there are any bookmarks in one of our three
|
|
|
|
// fixed "Desktop Boomarks" folders.
|
2012-03-19 18:22:33 +00:00
|
|
|
c = cr.query(bookmarksUriWithLimit(1),
|
|
|
|
new String[] { Bookmarks._ID },
|
2012-05-10 19:08:36 +00:00
|
|
|
Bookmarks.PARENT + " = ? OR " +
|
|
|
|
Bookmarks.PARENT + " = ? OR " +
|
|
|
|
Bookmarks.PARENT + " = ?",
|
|
|
|
new String[] { String.valueOf(getFolderIdFromGuid(cr, Bookmarks.TOOLBAR_FOLDER_GUID)),
|
|
|
|
String.valueOf(getFolderIdFromGuid(cr, Bookmarks.MENU_FOLDER_GUID)),
|
|
|
|
String.valueOf(getFolderIdFromGuid(cr, Bookmarks.UNFILED_FOLDER_GUID)) },
|
2012-03-19 18:22:33 +00:00
|
|
|
null);
|
|
|
|
count = c.getCount();
|
|
|
|
} finally {
|
|
|
|
c.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cache result for future queries
|
2012-06-02 18:23:45 +00:00
|
|
|
mDesktopBookmarksExist = (count > 0);
|
2012-03-19 18:22:33 +00:00
|
|
|
return mDesktopBookmarksExist;
|
|
|
|
}
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
private boolean readingListItemsExist(ContentResolver cr) {
|
|
|
|
if (mReadingListItemsExist != null)
|
|
|
|
return mReadingListItemsExist;
|
|
|
|
|
|
|
|
Cursor c = null;
|
|
|
|
int count = 0;
|
|
|
|
try {
|
|
|
|
c = cr.query(bookmarksUriWithLimit(1),
|
|
|
|
new String[] { Bookmarks._ID },
|
|
|
|
Bookmarks.PARENT + " = ?",
|
|
|
|
new String[] { String.valueOf(Bookmarks.FIXED_READING_LIST_ID) },
|
|
|
|
null);
|
|
|
|
count = c.getCount();
|
|
|
|
} finally {
|
|
|
|
c.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cache result for future queries
|
|
|
|
mReadingListItemsExist = (count > 0);
|
|
|
|
return mReadingListItemsExist;
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
public boolean isBookmark(ContentResolver cr, String uri) {
|
2012-06-02 18:23:45 +00:00
|
|
|
// This method is about normal bookmarks, not the Reading List
|
2012-02-15 19:24:21 +00:00
|
|
|
Cursor cursor = cr.query(mBookmarksUriWithProfile,
|
2011-12-08 16:37:21 +00:00
|
|
|
new String[] { Bookmarks._ID },
|
2012-06-02 18:23:45 +00:00
|
|
|
Bookmarks.URL + " = ? AND " +
|
|
|
|
Bookmarks.PARENT + " != ?",
|
|
|
|
new String[] { uri,
|
|
|
|
String.valueOf(Bookmarks.FIXED_READING_LIST_ID) },
|
2011-12-08 16:37:21 +00:00
|
|
|
Bookmarks.URL);
|
|
|
|
|
|
|
|
int count = cursor.getCount();
|
|
|
|
cursor.close();
|
|
|
|
|
|
|
|
return (count == 1);
|
|
|
|
}
|
|
|
|
|
2012-02-08 01:55:12 +00:00
|
|
|
public String getUrlForKeyword(ContentResolver cr, String keyword) {
|
2012-02-15 19:24:21 +00:00
|
|
|
Cursor cursor = cr.query(mBookmarksUriWithProfile,
|
2012-02-08 01:55:12 +00:00
|
|
|
new String[] { Bookmarks.URL },
|
|
|
|
Bookmarks.KEYWORD + " = ?",
|
|
|
|
new String[] { keyword },
|
|
|
|
null);
|
|
|
|
|
|
|
|
if (!cursor.moveToFirst()) {
|
|
|
|
cursor.close();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
String url = cursor.getString(cursor.getColumnIndexOrThrow(Bookmarks.URL));
|
|
|
|
cursor.close();
|
|
|
|
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
2012-05-10 19:08:36 +00:00
|
|
|
private synchronized long getFolderIdFromGuid(ContentResolver cr, String guid) {
|
|
|
|
if (mFolderIdMap.containsKey(guid))
|
|
|
|
return mFolderIdMap.get(guid);
|
|
|
|
|
2012-02-23 18:48:47 +00:00
|
|
|
long folderId = -1;
|
2011-12-13 19:47:40 +00:00
|
|
|
Cursor c = null;
|
|
|
|
|
|
|
|
try {
|
2012-02-15 19:24:21 +00:00
|
|
|
c = cr.query(mBookmarksUriWithProfile,
|
2011-12-13 19:47:40 +00:00
|
|
|
new String[] { Bookmarks._ID },
|
|
|
|
Bookmarks.GUID + " = ?",
|
2012-02-23 18:48:47 +00:00
|
|
|
new String[] { guid },
|
2011-12-13 19:47:40 +00:00
|
|
|
null);
|
|
|
|
|
|
|
|
if (c.moveToFirst())
|
2012-02-23 18:48:47 +00:00
|
|
|
folderId = c.getLong(c.getColumnIndexOrThrow(Bookmarks._ID));
|
2011-12-13 19:47:40 +00:00
|
|
|
} finally {
|
|
|
|
if (c != null)
|
|
|
|
c.close();
|
|
|
|
}
|
|
|
|
|
2012-05-10 19:08:36 +00:00
|
|
|
mFolderIdMap.put(guid, folderId);
|
2012-02-23 18:48:47 +00:00
|
|
|
return folderId;
|
2011-12-13 19:47:40 +00:00
|
|
|
}
|
|
|
|
|
2012-02-15 01:10:18 +00:00
|
|
|
/**
|
|
|
|
* Find parents of records that match the provided criteria, and bump their
|
|
|
|
* modified timestamp.
|
|
|
|
*/
|
|
|
|
protected void bumpParents(ContentResolver cr, String param, String value) {
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
values.put(Bookmarks.DATE_MODIFIED, System.currentTimeMillis());
|
|
|
|
|
|
|
|
String where = param + " = ?";
|
|
|
|
String[] args = new String[] { value };
|
2012-02-15 19:24:21 +00:00
|
|
|
int updated = cr.update(mParentsUriWithProfile, values, where, args);
|
2012-02-15 01:10:18 +00:00
|
|
|
debug("Updated " + updated + " rows to new modified time.");
|
|
|
|
}
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
private void addBookmarkItem(ContentResolver cr, String title, String uri, long folderId) {
|
2012-02-15 01:10:18 +00:00
|
|
|
final long now = System.currentTimeMillis();
|
2011-12-08 16:37:21 +00:00
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
values.put(Browser.BookmarkColumns.TITLE, title);
|
|
|
|
values.put(Bookmarks.URL, uri);
|
2011-12-13 19:47:40 +00:00
|
|
|
values.put(Bookmarks.PARENT, folderId);
|
2012-02-15 01:10:18 +00:00
|
|
|
values.put(Bookmarks.DATE_MODIFIED, now);
|
2011-12-08 16:37:21 +00:00
|
|
|
|
2011-12-13 14:46:58 +00:00
|
|
|
// Restore deleted record if possible
|
|
|
|
values.put(Bookmarks.IS_DELETED, 0);
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
int updated = cr.update(mBookmarksUriWithProfile,
|
2011-12-08 16:37:21 +00:00
|
|
|
values,
|
2012-06-02 18:23:45 +00:00
|
|
|
Bookmarks.URL + " = ? AND " +
|
|
|
|
Bookmarks.PARENT + " = ?",
|
|
|
|
new String[] { uri, String.valueOf(folderId) });
|
2011-12-08 16:37:21 +00:00
|
|
|
|
|
|
|
if (updated == 0)
|
2012-06-02 18:23:45 +00:00
|
|
|
cr.insert(mBookmarksUriWithProfile, values);
|
2012-02-15 01:10:18 +00:00
|
|
|
|
|
|
|
// Bump parent modified time using its ID.
|
|
|
|
debug("Bumping parent modified time for addition to: " + folderId);
|
|
|
|
final String where = Bookmarks._ID + " = ?";
|
|
|
|
final String[] args = new String[] { String.valueOf(folderId) };
|
|
|
|
|
|
|
|
ContentValues bumped = new ContentValues();
|
|
|
|
bumped.put(Bookmarks.DATE_MODIFIED, now);
|
2012-02-15 00:23:06 +00:00
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
updated = cr.update(mBookmarksUriWithProfile, bumped, where, args);
|
2012-02-15 01:10:18 +00:00
|
|
|
debug("Updated " + updated + " rows to new modified time.");
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
public void addBookmark(ContentResolver cr, String title, String uri) {
|
|
|
|
long folderId = getFolderIdFromGuid(cr, Bookmarks.MOBILE_FOLDER_GUID);
|
|
|
|
addBookmarkItem(cr, title, uri, folderId);
|
|
|
|
}
|
|
|
|
|
2012-02-09 18:01:57 +00:00
|
|
|
public void removeBookmark(ContentResolver cr, int id) {
|
2012-02-15 19:24:21 +00:00
|
|
|
Uri contentUri = mBookmarksUriWithProfile;
|
2012-02-15 01:10:18 +00:00
|
|
|
|
|
|
|
// Do this now so that the item still exists!
|
|
|
|
final String idString = String.valueOf(id);
|
|
|
|
bumpParents(cr, Bookmarks._ID, idString);
|
2012-02-15 00:23:06 +00:00
|
|
|
|
2012-02-15 01:10:18 +00:00
|
|
|
final String[] idArgs = new String[] { idString };
|
|
|
|
final String idEquals = Bookmarks._ID + " = ?";
|
|
|
|
cr.delete(contentUri, idEquals, idArgs);
|
2012-02-09 18:01:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void removeBookmarksWithURL(ContentResolver cr, String uri) {
|
2012-02-15 19:24:21 +00:00
|
|
|
Uri contentUri = mBookmarksUriWithProfile;
|
2012-02-15 01:10:18 +00:00
|
|
|
|
|
|
|
// Do this now so that the items still exist!
|
|
|
|
bumpParents(cr, Bookmarks.URL, uri);
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
// Toggling bookmark on an URL should not affect the items in the reading list
|
|
|
|
final String[] urlArgs = new String[] { uri, String.valueOf(Bookmarks.FIXED_READING_LIST_ID) };
|
|
|
|
final String urlEquals = Bookmarks.URL + " = ? AND " + Bookmarks.PARENT + " != ?";
|
|
|
|
|
2012-02-15 01:10:18 +00:00
|
|
|
cr.delete(contentUri, urlEquals, urlArgs);
|
2012-02-15 00:23:06 +00:00
|
|
|
}
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
public void addReadingListItem(ContentResolver cr, String title, String uri) {
|
|
|
|
addBookmarkItem(cr, title, uri, Bookmarks.FIXED_READING_LIST_ID);
|
|
|
|
}
|
|
|
|
|
2012-02-15 00:23:06 +00:00
|
|
|
public void registerBookmarkObserver(ContentResolver cr, ContentObserver observer) {
|
2012-05-14 18:44:37 +00:00
|
|
|
cr.registerContentObserver(mBookmarksUriWithProfile, false, observer);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void registerHistoryObserver(ContentResolver cr, ContentObserver observer) {
|
|
|
|
cr.registerContentObserver(mHistoryUriWithProfile, false, observer);
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
2012-05-07 22:33:07 +00:00
|
|
|
public void updateBookmark(ContentResolver cr, int id, String uri, String title, String keyword) {
|
2012-02-08 01:55:12 +00:00
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
values.put(Browser.BookmarkColumns.TITLE, title);
|
|
|
|
values.put(Bookmarks.URL, uri);
|
|
|
|
values.put(Bookmarks.KEYWORD, keyword);
|
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
cr.update(mBookmarksUriWithProfile,
|
2012-02-08 04:08:46 +00:00
|
|
|
values,
|
2012-05-07 22:33:07 +00:00
|
|
|
Bookmarks._ID + " = ?",
|
|
|
|
new String[] { String.valueOf(id) });
|
2012-02-08 01:55:12 +00:00
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
public BitmapDrawable getFaviconForUrl(ContentResolver cr, String uri) {
|
2012-02-15 19:24:21 +00:00
|
|
|
Cursor c = cr.query(mImagesUriWithProfile,
|
2011-12-08 16:37:21 +00:00
|
|
|
new String[] { Images.FAVICON },
|
|
|
|
Images.URL + " = ?",
|
|
|
|
new String[] { uri },
|
|
|
|
null);
|
|
|
|
|
|
|
|
if (!c.moveToFirst()) {
|
|
|
|
c.close();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
int faviconIndex = c.getColumnIndexOrThrow(Images.FAVICON);
|
|
|
|
|
|
|
|
byte[] b = c.getBlob(faviconIndex);
|
|
|
|
c.close();
|
|
|
|
|
|
|
|
if (b == null)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
Bitmap bitmap = BitmapFactory.decodeByteArray(b, 0, b.length);
|
|
|
|
return new BitmapDrawable(bitmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateFaviconForUrl(ContentResolver cr, String uri,
|
|
|
|
BitmapDrawable favicon) {
|
|
|
|
Bitmap bitmap = favicon.getBitmap();
|
2012-03-27 12:47:14 +00:00
|
|
|
if (bitmap == null)
|
|
|
|
return;
|
2011-12-08 16:37:21 +00:00
|
|
|
|
|
|
|
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
|
|
|
bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
|
|
|
|
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
values.put(Images.FAVICON, stream.toByteArray());
|
|
|
|
values.put(Images.URL, uri);
|
|
|
|
|
2011-12-13 14:46:58 +00:00
|
|
|
// Restore deleted record if possible
|
|
|
|
values.put(Images.IS_DELETED, 0);
|
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
int updated = cr.update(mImagesUriWithProfile,
|
2011-12-13 14:46:58 +00:00
|
|
|
values,
|
|
|
|
Images.URL + " = ?",
|
|
|
|
new String[] { uri });
|
|
|
|
|
|
|
|
if (updated == 0)
|
2012-02-15 19:24:21 +00:00
|
|
|
cr.insert(mImagesUriWithProfile, values);
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void updateThumbnailForUrl(ContentResolver cr, String uri,
|
|
|
|
BitmapDrawable thumbnail) {
|
|
|
|
Bitmap bitmap = thumbnail.getBitmap();
|
|
|
|
|
|
|
|
ByteArrayOutputStream stream = new ByteArrayOutputStream();
|
|
|
|
bitmap.compress(Bitmap.CompressFormat.PNG, 0, stream);
|
|
|
|
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
values.put(Images.THUMBNAIL, stream.toByteArray());
|
|
|
|
values.put(Images.URL, uri);
|
|
|
|
|
2011-12-13 14:46:58 +00:00
|
|
|
// Restore deleted record if possible
|
|
|
|
values.put(Images.IS_DELETED, 0);
|
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
int updated = cr.update(mImagesUriWithProfile,
|
2011-12-13 14:46:58 +00:00
|
|
|
values,
|
|
|
|
Images.URL + " = ?",
|
|
|
|
new String[] { uri });
|
|
|
|
|
|
|
|
if (updated == 0)
|
2012-02-15 19:24:21 +00:00
|
|
|
cr.insert(mImagesUriWithProfile, values);
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
2012-01-31 22:13:33 +00:00
|
|
|
public byte[] getThumbnailForUrl(ContentResolver cr, String uri) {
|
2012-02-15 19:24:21 +00:00
|
|
|
Cursor c = cr.query(mImagesUriWithProfile,
|
2012-01-31 22:13:33 +00:00
|
|
|
new String[] { Images.THUMBNAIL },
|
|
|
|
Images.URL + " = ?",
|
|
|
|
new String[] { uri },
|
|
|
|
null);
|
|
|
|
|
|
|
|
if (!c.moveToFirst()) {
|
|
|
|
c.close();
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
int thumbnailIndex = c.getColumnIndexOrThrow(Images.THUMBNAIL);
|
|
|
|
|
|
|
|
byte[] b = c.getBlob(thumbnailIndex);
|
|
|
|
c.close();
|
|
|
|
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2012-04-02 18:56:53 +00:00
|
|
|
// This wrapper adds a fake "Desktop Bookmarks" folder entry to the
|
|
|
|
// beginning of the cursor's data set.
|
2012-06-02 18:23:45 +00:00
|
|
|
private class SpecialFoldersCursorWrapper extends CursorWrapper {
|
|
|
|
private int mIndexOffset;
|
|
|
|
|
|
|
|
private int mDesktopBookmarksIndex = -1;
|
|
|
|
private int mReadingListIndex = -1;
|
|
|
|
|
2012-04-02 18:56:53 +00:00
|
|
|
private boolean mAtDesktopBookmarksPosition = false;
|
2012-06-02 18:23:45 +00:00
|
|
|
private boolean mAtReadingListPosition = false;
|
2012-04-02 18:56:53 +00:00
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
public SpecialFoldersCursorWrapper(Cursor c, boolean showDesktopBookmarks, boolean showReadingList) {
|
2012-04-02 18:56:53 +00:00
|
|
|
super(c);
|
2012-06-02 18:23:45 +00:00
|
|
|
|
|
|
|
mIndexOffset = 0;
|
|
|
|
|
|
|
|
if (showDesktopBookmarks) {
|
|
|
|
mDesktopBookmarksIndex = mIndexOffset;
|
|
|
|
mIndexOffset++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (showReadingList) {
|
|
|
|
mReadingListIndex = mIndexOffset;
|
|
|
|
mIndexOffset++;
|
|
|
|
}
|
2012-04-02 18:56:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getCount() {
|
2012-06-02 18:23:45 +00:00
|
|
|
return super.getCount() + mIndexOffset;
|
2012-04-02 18:56:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean moveToPosition(int position) {
|
2012-06-02 18:23:45 +00:00
|
|
|
mAtDesktopBookmarksPosition = (mDesktopBookmarksIndex == position);
|
|
|
|
mAtReadingListPosition = (mReadingListIndex == position);
|
|
|
|
|
|
|
|
if (mAtDesktopBookmarksPosition || mAtReadingListPosition)
|
2012-04-02 18:56:53 +00:00
|
|
|
return true;
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
return super.moveToPosition(position - mIndexOffset);
|
2012-04-02 18:56:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public long getLong(int columnIndex) {
|
2012-06-02 18:23:45 +00:00
|
|
|
if (!mAtDesktopBookmarksPosition && !mAtReadingListPosition)
|
2012-04-02 18:56:53 +00:00
|
|
|
return super.getLong(columnIndex);
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
if (columnIndex == getColumnIndex(Bookmarks.PARENT)) {
|
2012-04-02 18:56:53 +00:00
|
|
|
return Bookmarks.FIXED_ROOT_ID;
|
2012-06-02 18:23:45 +00:00
|
|
|
}
|
2012-04-02 18:56:53 +00:00
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getInt(int columnIndex) {
|
2012-06-02 18:23:45 +00:00
|
|
|
if (!mAtDesktopBookmarksPosition && !mAtReadingListPosition)
|
2012-04-02 18:56:53 +00:00
|
|
|
return super.getInt(columnIndex);
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
if (columnIndex == getColumnIndex(Bookmarks._ID)) {
|
|
|
|
if (mAtDesktopBookmarksPosition) {
|
|
|
|
return Bookmarks.FAKE_DESKTOP_FOLDER_ID;
|
|
|
|
} else if (mAtReadingListPosition) {
|
|
|
|
return Bookmarks.FIXED_READING_LIST_ID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-02 18:56:53 +00:00
|
|
|
if (columnIndex == getColumnIndex(Bookmarks.TYPE))
|
|
|
|
return Bookmarks.TYPE_FOLDER;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getString(int columnIndex) {
|
2012-06-02 18:23:45 +00:00
|
|
|
if (!mAtDesktopBookmarksPosition && !mAtReadingListPosition)
|
2012-04-02 18:56:53 +00:00
|
|
|
return super.getString(columnIndex);
|
|
|
|
|
2012-06-02 18:23:45 +00:00
|
|
|
if (columnIndex == getColumnIndex(Bookmarks.GUID)) {
|
|
|
|
if (mAtDesktopBookmarksPosition) {
|
|
|
|
return Bookmarks.FAKE_DESKTOP_FOLDER_GUID;
|
|
|
|
} else if (mAtReadingListPosition) {
|
|
|
|
return Bookmarks.READING_LIST_FOLDER_GUID;
|
|
|
|
}
|
|
|
|
}
|
2012-04-02 18:56:53 +00:00
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
private static class LocalDBCursor extends CursorWrapper {
|
|
|
|
public LocalDBCursor(Cursor c) {
|
|
|
|
super(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
private String translateColumnName(String columnName) {
|
|
|
|
if (columnName.equals(BrowserDB.URLColumns.URL)) {
|
2011-12-13 14:46:58 +00:00
|
|
|
columnName = URLColumns.URL;
|
2011-12-08 16:37:21 +00:00
|
|
|
} else if (columnName.equals(BrowserDB.URLColumns.TITLE)) {
|
2011-12-13 14:46:58 +00:00
|
|
|
columnName = URLColumns.TITLE;
|
2011-12-08 16:37:21 +00:00
|
|
|
} else if (columnName.equals(BrowserDB.URLColumns.FAVICON)) {
|
|
|
|
columnName = ImageColumns.FAVICON;
|
|
|
|
} else if (columnName.equals(BrowserDB.URLColumns.THUMBNAIL)) {
|
|
|
|
columnName = ImageColumns.THUMBNAIL;
|
|
|
|
} else if (columnName.equals(BrowserDB.URLColumns.DATE_LAST_VISITED)) {
|
|
|
|
columnName = History.DATE_LAST_VISITED;
|
2012-01-25 21:10:01 +00:00
|
|
|
} else if (columnName.equals(BrowserDB.URLColumns.VISITS)) {
|
|
|
|
columnName = History.VISITS;
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return columnName;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getColumnIndex(String columnName) {
|
|
|
|
return super.getColumnIndex(translateColumnName(columnName));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getColumnIndexOrThrow(String columnName) {
|
|
|
|
return super.getColumnIndexOrThrow(translateColumnName(columnName));
|
|
|
|
}
|
|
|
|
}
|
2011-12-13 14:46:58 +00:00
|
|
|
}
|