2011-12-08 16:37:21 +00:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
|
|
* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Android code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Mozilla Foundation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Lucas Rocha <lucasr@mozilla.com>
|
2012-02-15 01:10:18 +00:00
|
|
|
* Richard Newman <rnewman@mozilla.com>
|
2011-12-08 16:37:21 +00:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
package org.mozilla.gecko.db;
|
|
|
|
|
|
|
|
import java.io.ByteArrayOutputStream;
|
|
|
|
|
|
|
|
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;
|
2011-12-13 14:46:58 +00:00
|
|
|
import org.mozilla.gecko.db.BrowserContract.URLColumns;
|
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;
|
2012-02-07 19:03:02 +00:00
|
|
|
import android.database.MatrixCursor;
|
2011-12-08 16:37:21 +00:00
|
|
|
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
|
|
|
// Same as android.provider.Browser for consistency.
|
2011-12-08 16:37:21 +00:00
|
|
|
private static final int MAX_HISTORY_COUNT = 250;
|
|
|
|
|
2012-02-15 01:10:18 +00:00
|
|
|
// Same as android.provider.Browser for consistency.
|
2011-12-08 16:37:21 +00:00
|
|
|
public static final int TRUNCATE_N_OLDEST = 5;
|
|
|
|
|
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;
|
2011-12-13 19:47:40 +00:00
|
|
|
private long mMobileFolderId;
|
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;
|
|
|
|
private final Uri mDeletedHistoryUriWithProfile;
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
public LocalBrowserDB(String profile) {
|
|
|
|
mProfile = profile;
|
2011-12-13 19:47:40 +00:00
|
|
|
mMobileFolderId = -1;
|
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);
|
|
|
|
|
|
|
|
mDeletedHistoryUriWithProfile = mHistoryUriWithProfile.buildUpon().
|
|
|
|
appendQueryParameter(BrowserContract.PARAM_SHOW_DELETED, "1").build();
|
2011-12-08 16:37:21 +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
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
private Uri appendProfile(Uri uri) {
|
|
|
|
return uri.buildUpon().appendQueryParameter(BrowserContract.PARAM_PROFILE, mProfile).build();
|
|
|
|
}
|
|
|
|
|
2012-01-19 17:23:10 +00:00
|
|
|
private Cursor filterAllSites(ContentResolver cr, String[] projection, CharSequence constraint, int limit, CharSequence urlFilter) {
|
2012-02-15 19:24:21 +00:00
|
|
|
Cursor c = cr.query(historyUriWithLimit(limit),
|
2012-01-19 17:23:10 +00:00
|
|
|
projection,
|
2012-01-10 17:09:32 +00:00
|
|
|
(urlFilter != null ? "(" + History.URL + " NOT LIKE ? ) AND " : "" ) +
|
2011-12-08 16:37:21 +00:00
|
|
|
"(" + History.URL + " LIKE ? OR " + History.TITLE + " LIKE ?)",
|
2012-01-05 05:34:06 +00:00
|
|
|
urlFilter == null ? new String[] {"%" + constraint.toString() + "%", "%" + constraint.toString() + "%"} :
|
|
|
|
new String[] {urlFilter.toString(), "%" + constraint.toString() + "%", "%" + constraint.toString() + "%"},
|
2011-12-08 16:37:21 +00:00
|
|
|
// ORDER BY is number of visits times a multiplier from 1 - 120 of how recently the site
|
|
|
|
// was accessed with a site accessed today getting 120 and a site accessed 119 or more
|
|
|
|
// days ago getting 1
|
|
|
|
History.VISITS + " * MAX(1, (" +
|
2012-01-13 19:08:39 +00:00
|
|
|
History.DATE_LAST_VISITED + " - " + System.currentTimeMillis() + ") / 86400000 + 120) DESC");
|
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,
|
|
|
|
new String[] { History._ID,
|
|
|
|
History.URL,
|
|
|
|
History.TITLE,
|
|
|
|
History.FAVICON },
|
|
|
|
constraint,
|
|
|
|
limit,
|
|
|
|
null);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Cursor getTopSites(ContentResolver cr, int limit) {
|
|
|
|
return filterAllSites(cr,
|
|
|
|
new String[] { History._ID,
|
|
|
|
History.URL,
|
|
|
|
History.TITLE,
|
|
|
|
History.THUMBNAIL },
|
|
|
|
"",
|
|
|
|
limit,
|
|
|
|
BrowserDB.ABOUT_PAGES_URL_FILTER);
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
private void truncateHistory(ContentResolver cr) {
|
|
|
|
Cursor cursor = null;
|
|
|
|
|
|
|
|
try {
|
2012-02-15 19:24:21 +00:00
|
|
|
cursor = cr.query(mHistoryUriWithProfile,
|
2011-12-08 16:37:21 +00:00
|
|
|
new String[] { History._ID },
|
|
|
|
null,
|
|
|
|
null,
|
|
|
|
History.DATE_LAST_VISITED + " ASC");
|
|
|
|
|
|
|
|
if (cursor.getCount() < MAX_HISTORY_COUNT)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (cursor.moveToFirst()) {
|
|
|
|
for (int i = 0; i < TRUNCATE_N_OLDEST; i++) {
|
|
|
|
Uri historyUri = ContentUris.withAppendedId(History.CONTENT_URI, cursor.getLong(0));
|
|
|
|
cr.delete(appendProfile(historyUri), null, null);
|
|
|
|
|
|
|
|
if (!cursor.moveToNext())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updateVisitedHistory(ContentResolver cr, String uri) {
|
|
|
|
long now = System.currentTimeMillis();
|
|
|
|
Cursor cursor = null;
|
|
|
|
|
|
|
|
try {
|
|
|
|
final String[] projection = new String[] {
|
|
|
|
History._ID, // 0
|
|
|
|
History.VISITS, // 1
|
|
|
|
};
|
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
cursor = cr.query(mDeletedHistoryUriWithProfile,
|
2011-12-08 16:37:21 +00:00
|
|
|
projection,
|
|
|
|
History.URL + " = ?",
|
|
|
|
new String[] { uri },
|
|
|
|
null);
|
|
|
|
|
|
|
|
if (cursor.moveToFirst()) {
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
|
|
|
|
values.put(History.VISITS, cursor.getInt(1) + 1);
|
|
|
|
values.put(History.DATE_LAST_VISITED, now);
|
|
|
|
|
2012-02-15 15:05:03 +00:00
|
|
|
// Restore deleted record if possible
|
|
|
|
values.put(History.IS_DELETED, 0);
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
Uri historyUri = ContentUris.withAppendedId(History.CONTENT_URI, cursor.getLong(0));
|
|
|
|
cr.update(appendProfile(historyUri), values, null, null);
|
|
|
|
} else {
|
|
|
|
// Ensure we don't blow up our database with too
|
|
|
|
// many history items.
|
|
|
|
truncateHistory(cr);
|
|
|
|
|
|
|
|
ContentValues values = new ContentValues();
|
|
|
|
|
|
|
|
values.put(History.URL, uri);
|
|
|
|
values.put(History.VISITS, 1);
|
|
|
|
values.put(History.DATE_LAST_VISITED, now);
|
|
|
|
values.put(History.TITLE, uri);
|
|
|
|
|
2012-02-15 19:24:21 +00:00
|
|
|
cr.insert(mHistoryUriWithProfile, values);
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
} finally {
|
|
|
|
if (cursor != null)
|
|
|
|
cursor.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-02-15 19:24:21 +00:00
|
|
|
Cursor c = cr.query(historyUriWithLimit(limit),
|
2011-12-08 16:37:21 +00:00
|
|
|
new String[] { History._ID,
|
|
|
|
History.URL,
|
|
|
|
History.TITLE,
|
|
|
|
History.FAVICON,
|
2012-01-25 21:10:01 +00:00
|
|
|
History.DATE_LAST_VISITED,
|
|
|
|
History.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-01-25 21:10:01 +00:00
|
|
|
public int getMaxHistoryCount() {
|
|
|
|
return MAX_HISTORY_COUNT;
|
|
|
|
}
|
|
|
|
|
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-07 19:03:02 +00:00
|
|
|
public Cursor getMobileBookmarks(ContentResolver cr) {
|
|
|
|
return getBookmarks(cr, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public Cursor getDesktopBookmarks(ContentResolver cr) {
|
|
|
|
return getBookmarks(cr, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
private Cursor getBookmarks(ContentResolver cr, boolean mobileBookmarks) {
|
|
|
|
String parentSelection = mobileBookmarks ? " = ?" : " != ?";
|
|
|
|
long mobileFolderId = getMobileBookmarksFolderId(cr);
|
2012-02-15 19:24:21 +00:00
|
|
|
Cursor c = cr.query(mBookmarksUriWithProfile,
|
2012-02-07 19:03:02 +00:00
|
|
|
new String[] { Bookmarks._ID,
|
|
|
|
Bookmarks.URL,
|
|
|
|
Bookmarks.TITLE,
|
|
|
|
Bookmarks.FAVICON },
|
|
|
|
Bookmarks.IS_FOLDER + " = 0 AND " +
|
|
|
|
Bookmarks.PARENT + parentSelection,
|
|
|
|
new String[] { String.valueOf(mobileFolderId) },
|
|
|
|
Bookmarks.DATE_MODIFIED + " DESC");
|
|
|
|
|
|
|
|
return new LocalDBCursor(c);
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
public boolean isBookmark(ContentResolver cr, String uri) {
|
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 },
|
|
|
|
Bookmarks.URL + " = ?",
|
|
|
|
new String[] { uri },
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-12-13 19:47:40 +00:00
|
|
|
private long getMobileBookmarksFolderId(ContentResolver cr) {
|
|
|
|
if (mMobileFolderId >= 0)
|
|
|
|
return mMobileFolderId;
|
|
|
|
|
|
|
|
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 + " = ?",
|
|
|
|
new String[] { Bookmarks.MOBILE_FOLDER_GUID },
|
|
|
|
null);
|
|
|
|
|
|
|
|
if (c.moveToFirst())
|
|
|
|
mMobileFolderId = c.getLong(c.getColumnIndexOrThrow(Bookmarks._ID));
|
|
|
|
} finally {
|
|
|
|
if (c != null)
|
|
|
|
c.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
return mMobileFolderId;
|
|
|
|
}
|
|
|
|
|
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.");
|
|
|
|
}
|
|
|
|
|
2011-12-08 16:37:21 +00:00
|
|
|
public void addBookmark(ContentResolver cr, String title, String uri) {
|
2011-12-13 19:47:40 +00:00
|
|
|
long folderId = getMobileBookmarksFolderId(cr);
|
|
|
|
if (folderId < 0)
|
|
|
|
return;
|
|
|
|
|
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-02-15 19:24:21 +00:00
|
|
|
Uri contentUri = mBookmarksUriWithProfile;
|
2012-02-15 01:10:18 +00:00
|
|
|
int updated = cr.update(contentUri,
|
2011-12-08 16:37:21 +00:00
|
|
|
values,
|
|
|
|
Bookmarks.URL + " = ?",
|
|
|
|
new String[] { uri });
|
|
|
|
|
|
|
|
if (updated == 0)
|
2012-02-15 01:10:18 +00:00
|
|
|
cr.insert(contentUri, values);
|
|
|
|
|
|
|
|
// 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-02-15 01:10:18 +00:00
|
|
|
updated = cr.update(contentUri, bumped, where, args);
|
|
|
|
debug("Updated " + updated + " rows to new modified time.");
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
final String[] urlArgs = new String[] { uri };
|
|
|
|
final String urlEquals = Bookmarks.URL + " = ?";
|
|
|
|
cr.delete(contentUri, urlEquals, urlArgs);
|
2012-02-15 00:23:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void registerBookmarkObserver(ContentResolver cr, ContentObserver observer) {
|
2012-02-15 19:24:21 +00:00
|
|
|
Uri uri = mBookmarksUriWithProfile;
|
2012-02-15 00:23:06 +00:00
|
|
|
cr.registerContentObserver(uri, false, observer);
|
2011-12-08 16:37:21 +00:00
|
|
|
}
|
|
|
|
|
2012-02-08 01:55:12 +00:00
|
|
|
public void updateBookmark(ContentResolver cr, String oldUri, String uri, String title, String keyword) {
|
|
|
|
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,
|
|
|
|
Bookmarks.URL + " = ?",
|
|
|
|
new String[] { oldUri });
|
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();
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|