2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** 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 Places.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Google Inc.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2005
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Brett Wilson <brettw@gmail.com> (original author)
|
2008-05-07 21:35:08 -07:00
|
|
|
* Ehsan Akhgari <ehsan.akhgari@gmail.com>
|
2009-11-11 03:04:11 -08:00
|
|
|
* Shawn Wilsher <me@shawnwilsher.com>
|
|
|
|
* Marco Bonardo <mak77@bonardo.net>
|
2007-03-22 10:30:00 -07: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 ***** */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the favicon service, which stores favicons for web pages with your
|
|
|
|
* history as you browse. It is also used to save the favicons for bookmarks.
|
|
|
|
*
|
|
|
|
* DANGER: The history query system makes assumptions about the favicon storage
|
|
|
|
* so that icons can be quickly generated for history/bookmark result sets. If
|
|
|
|
* you change the database layout at all, you will have to update both services.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsFaviconService.h"
|
2008-12-11 12:01:10 -08:00
|
|
|
#include "nsICacheService.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsICacheVisitor.h"
|
|
|
|
#include "nsICachingChannel.h"
|
|
|
|
#include "nsICategoryManager.h"
|
|
|
|
#include "nsIChannelEventSink.h"
|
|
|
|
#include "nsIContentSniffer.h"
|
|
|
|
#include "nsIInterfaceRequestor.h"
|
|
|
|
#include "nsIStreamListener.h"
|
|
|
|
#include "nsISupportsPrimitives.h"
|
|
|
|
#include "nsNavBookmarks.h"
|
|
|
|
#include "nsNavHistory.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsReadableUtils.h"
|
|
|
|
#include "nsStreamUtils.h"
|
2008-01-19 22:48:07 -08:00
|
|
|
#include "nsStringStream.h"
|
2008-07-03 11:07:56 -07:00
|
|
|
#include "plbase64.h"
|
2008-08-04 10:14:17 -07:00
|
|
|
#include "nsPlacesTables.h"
|
2009-12-01 05:00:45 -08:00
|
|
|
#include "nsPlacesMacros.h"
|
2009-10-22 16:10:20 -07:00
|
|
|
#include "nsIPrefService.h"
|
2009-11-11 03:04:14 -08:00
|
|
|
#include "Helpers.h"
|
2010-03-25 04:34:31 -07:00
|
|
|
#include "AsyncFaviconHelpers.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
// For large favicons optimization.
|
2008-01-19 22:48:07 -08:00
|
|
|
#include "imgITools.h"
|
|
|
|
#include "imgIContainer.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-10-22 16:10:20 -07:00
|
|
|
// Default value for mOptimizedIconDimension
|
|
|
|
#define OPTIMIZED_FAVICON_DIMENSION 16
|
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
#define MAX_FAVICON_CACHE_SIZE 256
|
|
|
|
#define FAVICON_CACHE_REDUCE_COUNT 64
|
|
|
|
|
|
|
|
#define CONTENT_SNIFFING_SERVICES "content-sniffing-services"
|
|
|
|
|
2008-12-11 12:01:10 -08:00
|
|
|
/**
|
|
|
|
* The maximum time we will keep a favicon around. We always ask the cache, if
|
|
|
|
* we can, but default to this value if we do not get a time back, or the time
|
|
|
|
* is more in the future than this.
|
|
|
|
* Currently set to one week from now.
|
|
|
|
*/
|
2009-02-28 05:17:36 -08:00
|
|
|
#define MAX_FAVICON_EXPIRATION ((PRTime)7 * 24 * 60 * 60 * PR_USEC_PER_SEC)
|
2008-12-11 12:01:10 -08:00
|
|
|
|
2009-11-11 03:04:14 -08:00
|
|
|
using namespace mozilla::places;
|
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// Global Helpers
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// FaviconLoadListener definition
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
class FaviconLoadListener : public nsIStreamListener,
|
|
|
|
public nsIInterfaceRequestor,
|
|
|
|
public nsIChannelEventSink
|
|
|
|
{
|
|
|
|
public:
|
2009-11-11 03:04:16 -08:00
|
|
|
FaviconLoadListener(nsIURI* aPageURI,
|
|
|
|
nsIURI* aFaviconURI,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIChannel* aChannel);
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIREQUESTOBSERVER
|
|
|
|
NS_DECL_NSISTREAMLISTENER
|
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
NS_DECL_NSICHANNELEVENTSINK
|
|
|
|
|
|
|
|
private:
|
|
|
|
~FaviconLoadListener();
|
|
|
|
|
|
|
|
nsCOMPtr<nsIChannel> mChannel;
|
|
|
|
nsCOMPtr<nsIURI> mPageURI;
|
|
|
|
nsCOMPtr<nsIURI> mFaviconURI;
|
|
|
|
|
|
|
|
nsCString mData;
|
|
|
|
};
|
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// ExpireFaviconsStatementCallbackNotifier definition
|
|
|
|
|
2009-02-28 05:17:36 -08:00
|
|
|
// Used to notify a topic to system observers on async execute completion.
|
|
|
|
// Will throw on error.
|
2009-11-11 03:04:14 -08:00
|
|
|
class ExpireFaviconsStatementCallbackNotifier : public AsyncStatementCallback
|
2009-02-28 05:17:36 -08:00
|
|
|
{
|
|
|
|
public:
|
2010-01-08 04:57:49 -08:00
|
|
|
ExpireFaviconsStatementCallbackNotifier(bool* aFaviconsExpirationRunning);
|
2009-02-28 05:17:36 -08:00
|
|
|
NS_DECL_ISUPPORTS
|
2009-11-11 03:04:14 -08:00
|
|
|
NS_DECL_ASYNCSTATEMENTCALLBACK
|
2009-02-28 05:17:36 -08:00
|
|
|
|
|
|
|
private:
|
2010-01-08 04:57:49 -08:00
|
|
|
bool* mFaviconsExpirationRunning;
|
2009-02-28 05:17:36 -08:00
|
|
|
};
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-12-01 05:00:45 -08:00
|
|
|
PLACES_FACTORY_SINGLETON_IMPLEMENTATION(nsFaviconService, gFaviconService)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-04-01 16:26:16 -07:00
|
|
|
NS_IMPL_ISUPPORTS1(
|
2008-12-11 12:01:10 -08:00
|
|
|
nsFaviconService
|
|
|
|
, nsIFaviconService
|
|
|
|
)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines the real page URI that a favicon should be stored for.
|
|
|
|
*
|
|
|
|
* @param aPageURI
|
|
|
|
* The page that is trying to load the favicon.
|
|
|
|
* @param aFaviconURI
|
|
|
|
* The URI of the favicon in question.
|
|
|
|
* @return the URI to load this favicon for, or null if this icon should not be
|
|
|
|
* loaded.
|
|
|
|
*/
|
|
|
|
already_AddRefed<nsIURI>
|
2010-01-08 04:57:49 -08:00
|
|
|
GetEffectivePageForFavicon(nsIURI* aPageURI, nsIURI* aFaviconURI)
|
2009-11-11 03:04:11 -08:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aPageURI, "Must provide a pageURI!");
|
|
|
|
NS_ASSERTION(aFaviconURI, "Must provide a favicon URI!");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIURI> pageURI(aPageURI);
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
nsNavHistory* history = nsNavHistory::GetHistoryService();
|
2009-11-11 03:04:11 -08:00
|
|
|
NS_ENSURE_TRUE(history, nsnull);
|
|
|
|
|
|
|
|
PRBool canAddToHistory;
|
|
|
|
nsresult rv = history->CanAddURI(pageURI, &canAddToHistory);
|
2010-01-08 04:57:49 -08:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return nsnull;
|
2009-11-11 03:04:11 -08:00
|
|
|
|
|
|
|
// If history is disabled or the page isn't addable to history, only load
|
|
|
|
// favicons if the page is bookmarked.
|
|
|
|
if (!canAddToHistory || history->IsHistoryDisabled()) {
|
2010-01-08 04:57:49 -08:00
|
|
|
nsNavBookmarks* bmSvc = nsNavBookmarks::GetBookmarksService();
|
2009-11-11 03:04:11 -08:00
|
|
|
NS_ENSURE_TRUE(bmSvc, nsnull);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
// Check if the page is bookmarked.
|
|
|
|
nsCOMPtr<nsIURI> bookmarkedURI;
|
|
|
|
rv = bmSvc->GetBookmarkedURIFor(aPageURI, getter_AddRefs(bookmarkedURI));
|
2010-01-08 04:57:49 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
if (!bookmarkedURI)
|
|
|
|
return nsnull;
|
2009-11-11 03:04:11 -08:00
|
|
|
|
|
|
|
// We always want to use the bookmark URI regardless of aPageURI.
|
|
|
|
pageURI = bookmarkedURI.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we are given a URI to an image, the favicon URI will be the same as the
|
|
|
|
// page URI.
|
|
|
|
// TODO: In future we'll probably want to store a resample of the image, but
|
|
|
|
// for now we just avoid that, for database size concerns.
|
|
|
|
PRBool pageEqualsFavicon;
|
|
|
|
rv = pageURI->Equals(aFaviconURI, &pageEqualsFavicon);
|
2010-01-08 04:57:49 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
if (pageEqualsFavicon)
|
|
|
|
return nsnull;
|
2009-11-11 03:04:11 -08:00
|
|
|
|
|
|
|
// We don't store favicons to error pages.
|
|
|
|
nsCOMPtr<nsIURI> errorPageFaviconURI;
|
|
|
|
rv = NS_NewURI(getter_AddRefs(errorPageFaviconURI),
|
|
|
|
NS_LITERAL_CSTRING(FAVICON_ERRORPAGE_URL));
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
PRBool isErrorPage;
|
|
|
|
rv = aFaviconURI->Equals(errorPageFaviconURI, &isErrorPage);
|
2010-01-08 04:57:49 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
if (isErrorPage)
|
|
|
|
return nsnull;
|
2009-11-11 03:04:11 -08:00
|
|
|
|
|
|
|
// This favicon should load, so return the page's URI.
|
|
|
|
return pageURI.forget();
|
|
|
|
}
|
|
|
|
|
2009-11-11 03:04:16 -08:00
|
|
|
/**
|
|
|
|
* This class gets the expiration data for a favicon, and starts the lookup of
|
|
|
|
* the favicon's data if it should be loaded.
|
|
|
|
*/
|
|
|
|
class FaviconExpirationGetter : public AsyncStatementCallback
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
FaviconExpirationGetter(nsIURI* aPageURI,
|
|
|
|
nsIURI* aFaviconURI,
|
2009-11-11 03:04:16 -08:00
|
|
|
bool aForceReload) :
|
|
|
|
mPageURI(aPageURI)
|
|
|
|
, mFaviconURI(aFaviconURI)
|
|
|
|
, mForceReload(aForceReload)
|
|
|
|
, mHasData(false)
|
|
|
|
, mExpiration(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Performs a lookup of the needed information asynchronously, and loads the
|
|
|
|
* icon if necessary.
|
|
|
|
*/
|
2010-01-08 04:57:49 -08:00
|
|
|
NS_IMETHOD checkAndLoad(mozIStorageStatement* aStatement)
|
2009-11-11 03:04:16 -08:00
|
|
|
{
|
2010-01-08 04:57:49 -08:00
|
|
|
NS_ENSURE_STATE(aStatement);
|
2009-11-11 03:04:16 -08:00
|
|
|
mozStorageStatementScoper scoper(aStatement);
|
|
|
|
nsresult rv = BindStatementURI(aStatement, 0, mFaviconURI);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStoragePendingStatement> ps;
|
|
|
|
rv = aStatement->ExecuteAsync(this, getter_AddRefs(ps));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
// ExecuteAsync will reset the statement for us.
|
|
|
|
scoper.Abandon();
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
NS_IMETHOD HandleResult(mozIStorageResultSet* aResultSet)
|
2009-11-11 03:04:16 -08:00
|
|
|
{
|
|
|
|
nsCOMPtr<mozIStorageRow> row;
|
|
|
|
nsresult rv = aResultSet->GetNextRow(getter_AddRefs(row));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRInt32 dataSize = 0;
|
|
|
|
(void)row->GetInt32(1, &dataSize);
|
|
|
|
mHasData = dataSize > 0;
|
|
|
|
(void)row->GetInt64(2, &mExpiration);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHOD HandleCompletion(PRUint16 aReason)
|
|
|
|
{
|
|
|
|
if (aReason != mozIStorageStatementCallback::REASON_FINISHED)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
// See if we have data and get the expiration time for this favicon. We DO
|
|
|
|
// NOT want to set the favicon for the page unless we know we have it. For
|
|
|
|
// example, if I go to random site x.com, the browser will still tell us
|
|
|
|
// that the favicon is x.com/favicon.ico even if there is no such file. We
|
|
|
|
// don't want to pollute our tables with this useless data. We also do not
|
|
|
|
// want to reload the icon if it hasn't expired yet.
|
|
|
|
if (mHasData && PR_Now() < mExpiration && !mForceReload) {
|
|
|
|
// Our data is likely still valid, but we should check to make sure the
|
|
|
|
// URI has changed, otherwise there is no need to notify.
|
2010-01-08 04:57:49 -08:00
|
|
|
nsFaviconService* fs = nsFaviconService::GetFaviconService();
|
2009-11-11 03:04:16 -08:00
|
|
|
NS_ENSURE_TRUE(fs, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
fs->checkAndNotify(mPageURI, mFaviconURI);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIChannel> channel;
|
|
|
|
nsresult rv = NS_NewChannel(getter_AddRefs(channel), mFaviconURI);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIStreamListener> listener =
|
|
|
|
new FaviconLoadListener(mPageURI, mFaviconURI, channel);
|
|
|
|
NS_ENSURE_TRUE(listener, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
nsCOMPtr<nsIInterfaceRequestor> listenerRequestor =
|
|
|
|
do_QueryInterface(listener, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = channel->SetNotificationCallbacks(listenerRequestor);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = channel->AsyncOpen(listener, nsnull);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
nsCOMPtr<nsIURI> mPageURI;
|
|
|
|
nsCOMPtr<nsIURI> mFaviconURI;
|
|
|
|
const bool mForceReload;
|
|
|
|
bool mHasData;
|
|
|
|
PRTime mExpiration;
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(
|
|
|
|
FaviconExpirationGetter,
|
|
|
|
mozIStorageStatementCallback
|
2009-11-11 03:40:02 -08:00
|
|
|
)
|
2009-11-11 03:04:16 -08:00
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
nsFaviconService::nsFaviconService()
|
|
|
|
: mFaviconsExpirationRunning(false)
|
|
|
|
, mOptimizedIconDimension(OPTIMIZED_FAVICON_DIMENSION)
|
|
|
|
, mFailedFaviconSerial(0)
|
|
|
|
, mShuttingDown(false)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-12-01 05:00:45 -08:00
|
|
|
NS_ASSERTION(!gFaviconService,
|
|
|
|
"Attempting to create two instances of the service!");
|
2007-03-22 10:30:00 -07:00
|
|
|
gFaviconService = this;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsFaviconService::~nsFaviconService()
|
|
|
|
{
|
2009-12-01 05:00:45 -08:00
|
|
|
NS_ASSERTION(gFaviconService == this,
|
|
|
|
"Deleting a non-singleton instance of the service");
|
2007-03-22 10:30:00 -07:00
|
|
|
if (gFaviconService == this)
|
|
|
|
gFaviconService = nsnull;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult
|
|
|
|
nsFaviconService::Init()
|
|
|
|
{
|
2010-01-08 04:57:49 -08:00
|
|
|
// Creation of history service will call InitTables.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsNavHistory* historyService = nsNavHistory::GetHistoryService();
|
|
|
|
NS_ENSURE_TRUE(historyService, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
mDBConn = historyService->GetStorageConnection();
|
|
|
|
NS_ENSURE_TRUE(mDBConn, NS_ERROR_FAILURE);
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
// Init failed favicon cache.
|
|
|
|
if (!mFailedFavicons.Init(MAX_FAVICON_CACHE_SIZE))
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
2009-10-22 16:10:20 -07:00
|
|
|
nsCOMPtr<nsIPrefBranch> pb = do_GetService(NS_PREFSERVICE_CONTRACTID);
|
2010-01-08 04:57:49 -08:00
|
|
|
if (pb) {
|
|
|
|
(void)pb->GetIntPref("places.favicons.optimizeToDimension",
|
|
|
|
&mOptimizedIconDimension);
|
|
|
|
}
|
2009-10-22 16:10:20 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
|
|
|
mozIStorageStatement*
|
|
|
|
nsFaviconService::GetStatement(const nsCOMPtr<mozIStorageStatement>& aStmt)
|
|
|
|
{
|
|
|
|
if (mShuttingDown)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
RETURN_IF_STMT(mDBGetIconInfo, NS_LITERAL_CSTRING(
|
|
|
|
"SELECT id, length(data), expiration FROM moz_favicons WHERE url = ?1"));
|
|
|
|
|
2010-03-25 04:34:35 -07:00
|
|
|
// If the page does not exist url = NULL will return NULL instead of 0,
|
|
|
|
// since (1 = NULL) is NULL. Thus the need for the IFNULL.
|
|
|
|
RETURN_IF_STMT(mDBGetIconInfoWithPage, NS_LITERAL_CSTRING(
|
|
|
|
"SELECT id, length(data), expiration, data, mime_type, "
|
|
|
|
"IFNULL(url = (SELECT f.url "
|
|
|
|
"FROM ( "
|
|
|
|
"SELECT favicon_id FROM moz_places_temp "
|
|
|
|
"WHERE url = ?2 "
|
|
|
|
"UNION ALL "
|
|
|
|
"SELECT favicon_id FROM moz_places "
|
|
|
|
"WHERE url = ?2 "
|
|
|
|
") AS h "
|
|
|
|
"JOIN moz_favicons f ON h.favicon_id = f.id "
|
|
|
|
"LIMIT 1), "
|
|
|
|
"0)"
|
|
|
|
"FROM moz_favicons WHERE url = ?1"));
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
RETURN_IF_STMT(mDBGetURL, NS_LITERAL_CSTRING(
|
|
|
|
"SELECT f.id, f.url, length(f.data), f.expiration "
|
|
|
|
"FROM ( "
|
|
|
|
"SELECT " MOZ_PLACES_COLUMNS " FROM moz_places_temp "
|
|
|
|
"WHERE url = ?1 "
|
|
|
|
"UNION ALL "
|
|
|
|
"SELECT " MOZ_PLACES_COLUMNS " FROM moz_places "
|
|
|
|
"WHERE url = ?1 "
|
|
|
|
") AS h JOIN moz_favicons f ON h.favicon_id = f.id "
|
|
|
|
"LIMIT 1"));
|
|
|
|
|
|
|
|
|
|
|
|
RETURN_IF_STMT(mDBGetData, NS_LITERAL_CSTRING(
|
|
|
|
"SELECT f.data, f.mime_type FROM moz_favicons f WHERE url = ?1"));
|
|
|
|
|
|
|
|
RETURN_IF_STMT(mDBInsertIcon, NS_LITERAL_CSTRING(
|
2010-03-25 04:34:42 -07:00
|
|
|
"INSERT OR REPLACE INTO moz_favicons (id, url, data, mime_type, expiration) "
|
|
|
|
"VALUES (?1, ?2, ?3, ?4, ?5)"));
|
2010-01-08 04:57:49 -08:00
|
|
|
|
|
|
|
RETURN_IF_STMT(mDBUpdateIcon, NS_LITERAL_CSTRING(
|
|
|
|
"UPDATE moz_favicons SET data = ?2, mime_type = ?3, expiration = ?4 "
|
|
|
|
"WHERE id = ?1"));
|
|
|
|
|
|
|
|
RETURN_IF_STMT(mDBSetPageFavicon, NS_LITERAL_CSTRING(
|
|
|
|
"UPDATE moz_places_view SET favicon_id = ?2 WHERE id = ?1"));
|
|
|
|
|
|
|
|
RETURN_IF_STMT(mDBRemoveOnDiskReferences, NS_LITERAL_CSTRING(
|
|
|
|
"UPDATE moz_places "
|
|
|
|
"SET favicon_id = NULL "
|
|
|
|
"WHERE favicon_id NOT NULL"));
|
|
|
|
|
|
|
|
RETURN_IF_STMT(mDBRemoveTempReferences, NS_LITERAL_CSTRING(
|
|
|
|
"UPDATE moz_places_temp "
|
|
|
|
"SET favicon_id = NULL "
|
|
|
|
"WHERE favicon_id NOT NULL"));
|
|
|
|
|
|
|
|
RETURN_IF_STMT(mDBRemoveAllFavicons, NS_LITERAL_CSTRING(
|
|
|
|
"DELETE FROM moz_favicons WHERE id NOT IN ("
|
|
|
|
"SELECT favicon_id FROM moz_places_temp WHERE favicon_id NOT NULL "
|
|
|
|
"UNION ALL "
|
|
|
|
"SELECT favicon_id FROM moz_places WHERE favicon_id NOT NULL "
|
|
|
|
")"));
|
|
|
|
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsFaviconService::InitTables
|
|
|
|
//
|
|
|
|
// Called by the history service to create the favicon table. The history
|
|
|
|
// service uses this table in its queries, so it must exist even if
|
|
|
|
// nobody has called the favicon service.
|
|
|
|
|
|
|
|
nsresult // static
|
|
|
|
nsFaviconService::InitTables(mozIStorageConnection* aDBConn)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
PRBool exists = PR_FALSE;
|
|
|
|
aDBConn->TableExists(NS_LITERAL_CSTRING("moz_favicons"), &exists);
|
2010-01-08 04:57:49 -08:00
|
|
|
if (!exists) {
|
2008-08-04 10:14:17 -07:00
|
|
|
rv = aDBConn->ExecuteSimpleSQL(CREATE_MOZ_FAVICONS);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2009-02-28 05:17:36 -08:00
|
|
|
NS_IMETHODIMP
|
2008-12-11 12:01:10 -08:00
|
|
|
nsFaviconService::ExpireAllFavicons()
|
|
|
|
{
|
2009-11-11 03:04:11 -08:00
|
|
|
mFaviconsExpirationRunning = true;
|
2009-02-28 05:17:36 -08:00
|
|
|
|
|
|
|
// We do this in 2 steps, first we null-out all favicons in the disk table,
|
|
|
|
// then we do the same in the temp table. This is because the view UPDATE
|
|
|
|
// trigger does not allow setting a NULL value to prevent dataloss.
|
2008-12-11 12:01:10 -08:00
|
|
|
|
2010-03-24 00:32:40 -07:00
|
|
|
mozIStorageBaseStatement *stmts[] = {
|
2010-01-08 04:57:49 -08:00
|
|
|
GetStatement(mDBRemoveOnDiskReferences),
|
|
|
|
GetStatement(mDBRemoveTempReferences),
|
|
|
|
GetStatement(mDBRemoveAllFavicons),
|
2008-12-11 12:01:10 -08:00
|
|
|
};
|
2010-01-08 04:57:49 -08:00
|
|
|
NS_ENSURE_STATE(stmts[0] && stmts[1] && stmts[2]);
|
2008-12-11 12:01:10 -08:00
|
|
|
nsCOMPtr<mozIStoragePendingStatement> ps;
|
2009-02-28 05:17:36 -08:00
|
|
|
nsCOMPtr<ExpireFaviconsStatementCallbackNotifier> callback =
|
2009-11-11 03:04:11 -08:00
|
|
|
new ExpireFaviconsStatementCallbackNotifier(&mFaviconsExpirationRunning);
|
2010-01-08 04:57:49 -08:00
|
|
|
nsresult rv = mDBConn->ExecuteAsync(stmts, NS_ARRAY_LENGTH(stmts), callback,
|
|
|
|
getter_AddRefs(ps));
|
2008-12-11 12:01:10 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2008-12-11 12:01:10 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// nsIFaviconService
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::SetFaviconUrlForPage(nsIURI* aPageURI, nsIURI* aFaviconURI)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aPageURI);
|
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
2008-05-07 21:26:10 -07:00
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
if (mFaviconsExpirationRunning)
|
2009-02-28 05:17:36 -08:00
|
|
|
return NS_OK;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool hasData;
|
2008-12-11 12:01:10 -08:00
|
|
|
nsresult rv = SetFaviconUrlForPageInternal(aPageURI, aFaviconURI, &hasData);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// send favicon change notifications if the URL has any data
|
|
|
|
if (hasData)
|
2008-05-07 21:26:10 -07:00
|
|
|
SendFaviconNotifications(aPageURI, aFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFaviconService::GetDefaultFavicon(nsIURI** _retval)
|
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(_retval);
|
|
|
|
|
2007-03-25 05:28:29 -07:00
|
|
|
// not found, use default
|
|
|
|
if (!mDefaultIcon) {
|
|
|
|
nsresult rv = NS_NewURI(getter_AddRefs(mDefaultIcon),
|
|
|
|
NS_LITERAL_CSTRING(FAVICON_DEFAULT_URL));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
return mDefaultIcon->Clone(_retval);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsFaviconService::SetFaviconUrlForPageInternal
|
|
|
|
//
|
|
|
|
// This creates a new entry in the favicon table if necessary and tells the
|
2008-05-07 21:26:10 -07:00
|
|
|
// history service to associate the given favicon ID with the given URI. We
|
2007-03-22 10:30:00 -07:00
|
|
|
// don't want to update the history table directly since that may involve
|
|
|
|
// creating a new row in the history table, which should only be done by
|
|
|
|
// history.
|
|
|
|
//
|
|
|
|
// This sets aHasData if there was already icon data for this favicon. Used
|
|
|
|
// to know if we should try reloading.
|
|
|
|
//
|
|
|
|
// Does NOT send out notifications. Caller should send out notifications
|
|
|
|
// if the favicon has data.
|
|
|
|
|
|
|
|
nsresult
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::SetFaviconUrlForPageInternal(nsIURI* aPageURI,
|
|
|
|
nsIURI* aFaviconURI,
|
2008-12-11 12:01:10 -08:00
|
|
|
PRBool* aHasData)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-05-07 21:26:10 -07:00
|
|
|
nsresult rv;
|
|
|
|
PRInt64 iconId = -1;
|
2009-01-02 20:12:34 -08:00
|
|
|
*aHasData = PR_FALSE;
|
|
|
|
|
|
|
|
nsNavHistory* historyService = nsNavHistory::GetHistoryService();
|
|
|
|
NS_ENSURE_TRUE(historyService, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
|
|
|
|
if (historyService->InPrivateBrowsingMode())
|
|
|
|
return NS_OK;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
mozStorageTransaction transaction(mDBConn, PR_FALSE);
|
2008-05-07 21:26:10 -07:00
|
|
|
{
|
2010-01-16 03:38:02 -08:00
|
|
|
DECLARE_AND_ASSIGN_SCOPED_LAZY_STMT(stmt, mDBGetIconInfo);
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = BindStatementURI(stmt, 0, aFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-05-07 21:26:10 -07:00
|
|
|
PRBool hasResult = PR_FALSE;
|
2010-01-08 04:57:49 -08:00
|
|
|
if (NS_SUCCEEDED(stmt->ExecuteStep(&hasResult)) && hasResult) {
|
2008-05-07 21:26:10 -07:00
|
|
|
// We already have an entry for this icon, just get the stats
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->GetInt64(0, &iconId);
|
2008-05-07 21:26:10 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-05-07 21:26:10 -07:00
|
|
|
// see if this icon has data already
|
|
|
|
PRInt32 dataSize;
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->GetInt32(1, &dataSize);
|
2008-05-07 21:26:10 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (dataSize > 0)
|
|
|
|
*aHasData = PR_TRUE;
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-05-07 21:26:10 -07:00
|
|
|
if (iconId == -1) {
|
|
|
|
// We did not find any entry, so create a new one
|
|
|
|
// not-binded params are automatically nullified by mozStorage
|
2010-01-16 03:38:02 -08:00
|
|
|
DECLARE_AND_ASSIGN_SCOPED_LAZY_STMT(stmt, mDBInsertIcon);
|
2010-03-25 04:34:42 -07:00
|
|
|
rv = stmt->BindNullParameter(0);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = BindStatementURI(stmt, 1, aFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->Execute();
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-08-16 15:28:28 -07:00
|
|
|
{
|
2010-01-16 03:38:02 -08:00
|
|
|
DECLARE_AND_ASSIGN_SCOPED_LAZY_STMT(getInfoStmt, mDBGetIconInfo);
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = BindStatementURI(getInfoStmt, 0, aFaviconURI);
|
2008-08-16 15:28:28 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRBool hasResult;
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = getInfoStmt->ExecuteStep(&hasResult);
|
2008-08-16 15:28:28 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
NS_ASSERTION(hasResult, "hasResult is false but the call succeeded?");
|
2010-01-08 04:57:49 -08:00
|
|
|
iconId = getInfoStmt->AsInt64(0);
|
2008-08-16 15:28:28 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2008-05-07 21:26:10 -07:00
|
|
|
// now link our icon entry with the page
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt64 pageId;
|
2008-05-07 21:26:10 -07:00
|
|
|
rv = historyService->GetUrlIdFor(aPageURI, &pageId, PR_TRUE);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2010-01-16 03:38:02 -08:00
|
|
|
DECLARE_AND_ASSIGN_SCOPED_LAZY_STMT(stmt, mDBSetPageFavicon);
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->BindInt64Parameter(0, pageId);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->BindInt64Parameter(1, iconId);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->Execute();
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-05-07 21:26:10 -07:00
|
|
|
rv = transaction.Commit();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsFaviconService::UpdateBookmarkRedirectFavicon
|
|
|
|
//
|
|
|
|
// It is not uncommon to have a bookmark (usually manually entered or
|
|
|
|
// modified) that redirects to some other page. For example, "mozilla.org"
|
|
|
|
// redirects to "www.mozilla.org". We want that bookmark's favicon to get
|
|
|
|
// updated. So, we see if this URI has a bookmark redirect and set the
|
|
|
|
// favicon there as well.
|
|
|
|
//
|
|
|
|
// This should be called only when we know there is data for the favicon
|
|
|
|
// already loaded. We will always send out notifications for the bookmarked
|
|
|
|
// page.
|
|
|
|
|
|
|
|
nsresult
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::UpdateBookmarkRedirectFavicon(nsIURI* aPageURI,
|
|
|
|
nsIURI* aFaviconURI)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-05-07 21:26:10 -07:00
|
|
|
NS_ENSURE_ARG_POINTER(aPageURI);
|
|
|
|
NS_ENSURE_ARG_POINTER(aFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsNavBookmarks* bookmarks = nsNavBookmarks::GetBookmarksService();
|
2009-12-01 05:00:45 -08:00
|
|
|
NS_ENSURE_TRUE(bookmarks, NS_ERROR_OUT_OF_MEMORY);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIURI> bookmarkURI;
|
2008-05-07 21:26:10 -07:00
|
|
|
nsresult rv = bookmarks->GetBookmarkedURIFor(aPageURI,
|
|
|
|
getter_AddRefs(bookmarkURI));
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (! bookmarkURI)
|
|
|
|
return NS_OK; // no bookmark redirect
|
|
|
|
|
|
|
|
PRBool sameAsBookmark;
|
2008-05-07 21:26:10 -07:00
|
|
|
if (NS_SUCCEEDED(bookmarkURI->Equals(aPageURI, &sameAsBookmark)) &&
|
|
|
|
sameAsBookmark)
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK; // bookmarked directly, not through a redirect
|
|
|
|
|
|
|
|
PRBool hasData = PR_FALSE;
|
2008-12-11 12:01:10 -08:00
|
|
|
rv = SetFaviconUrlForPageInternal(bookmarkURI, aFaviconURI, &hasData);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (hasData) {
|
|
|
|
// send notifications
|
2008-05-07 21:26:10 -07:00
|
|
|
SendFaviconNotifications(bookmarkURI, aFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
} else {
|
|
|
|
NS_WARNING("Calling UpdateBookmarkRedirectFavicon when you don't have data for the favicon yet.");
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsFaviconService::SendFaviconNotifications
|
|
|
|
//
|
|
|
|
// Call to send out favicon changed notifications. Should only be called
|
|
|
|
// when you know there is data loaded for the favicon.
|
|
|
|
|
|
|
|
void
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::SendFaviconNotifications(nsIURI* aPageURI,
|
|
|
|
nsIURI* aFaviconURI)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsCAutoString faviconSpec;
|
|
|
|
nsNavHistory* historyService = nsNavHistory::GetHistoryService();
|
|
|
|
if (historyService && NS_SUCCEEDED(aFaviconURI->GetSpec(faviconSpec))) {
|
2008-05-07 21:26:10 -07:00
|
|
|
historyService->SendPageChangedNotification(aPageURI,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsINavHistoryObserver::ATTRIBUTE_FAVICON,
|
|
|
|
NS_ConvertUTF8toUTF16(faviconSpec));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::SetAndLoadFaviconForPage(nsIURI* aPageURI,
|
|
|
|
nsIURI* aFaviconURI,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool aForceReload)
|
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aPageURI);
|
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
2007-11-21 16:44:33 -08:00
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
if (mFaviconsExpirationRunning)
|
2009-02-28 05:17:36 -08:00
|
|
|
return NS_OK;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef LAZY_ADD
|
|
|
|
nsNavHistory* historyService = nsNavHistory::GetHistoryService();
|
|
|
|
NS_ENSURE_TRUE(historyService, NS_ERROR_OUT_OF_MEMORY);
|
2008-05-07 21:26:10 -07:00
|
|
|
return historyService->AddLazyLoadFaviconMessage(aPageURI,
|
|
|
|
aFaviconURI,
|
2007-03-22 10:30:00 -07:00
|
|
|
aForceReload);
|
|
|
|
#else
|
2008-05-07 21:26:10 -07:00
|
|
|
return DoSetAndLoadFaviconForPage(aPageURI, aFaviconURI, aForceReload);
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::DoSetAndLoadFaviconForPage(nsIURI* aPageURI,
|
|
|
|
nsIURI* aFaviconURI,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool aForceReload)
|
|
|
|
{
|
2009-11-11 03:04:11 -08:00
|
|
|
if (mFaviconsExpirationRunning)
|
2009-02-28 05:17:36 -08:00
|
|
|
return NS_OK;
|
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
// If a favicon is in the failed cache, we'll only load it if we are forcing
|
|
|
|
// a reload.
|
2007-03-22 10:30:00 -07:00
|
|
|
PRBool previouslyFailed;
|
2009-11-11 03:04:11 -08:00
|
|
|
nsresult rv = IsFailedFavicon(aFaviconURI, &previouslyFailed);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (previouslyFailed) {
|
|
|
|
if (aForceReload)
|
2008-05-07 21:26:10 -07:00
|
|
|
RemoveFailedFavicon(aFaviconURI); // force reload clears from failed cache
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
return NS_OK; // ignore previously failed favicons
|
|
|
|
}
|
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
// Get the URI we should load this favicon for. If we don't get any URI, then
|
|
|
|
// we don't want to save this favicon, so we early return.
|
|
|
|
nsCOMPtr<nsIURI> page = GetEffectivePageForFavicon(aPageURI, aFaviconURI);
|
|
|
|
NS_ENSURE_TRUE(page, NS_OK);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-11 03:04:16 -08:00
|
|
|
nsRefPtr<FaviconExpirationGetter> dataGetter =
|
|
|
|
new FaviconExpirationGetter(page, aFaviconURI, !!aForceReload);
|
|
|
|
NS_ENSURE_TRUE(dataGetter, NS_ERROR_OUT_OF_MEMORY);
|
2009-11-07 22:49:14 -08:00
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = dataGetter->checkAndLoad(GetStatement(mDBGetIconInfo));
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
// DB will be updated and observers notified when data has finished loading.
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsFaviconService::SetFaviconData
|
|
|
|
//
|
|
|
|
// See the IDL for this function for lots of info. Note from there: we don't
|
|
|
|
// send out notifications.
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::SetFaviconData(nsIURI* aFaviconURI, const PRUint8* aData,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 aDataLen, const nsACString& aMimeType,
|
|
|
|
PRTime aExpiration)
|
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
if (mFaviconsExpirationRunning)
|
2009-02-28 05:17:36 -08:00
|
|
|
return NS_OK;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult rv;
|
2008-01-19 22:48:07 -08:00
|
|
|
PRUint32 dataLen = aDataLen;
|
|
|
|
const PRUint8* data = aData;
|
|
|
|
const nsACString* mimeType = &aMimeType;
|
|
|
|
nsCString newData, newMimeType;
|
|
|
|
|
|
|
|
// If the page provided a large image for the favicon (eg, a highres image
|
|
|
|
// or a multiresolution .ico file), we don't want to store more data than
|
2008-09-02 04:59:59 -07:00
|
|
|
// needed.
|
2009-10-22 16:10:20 -07:00
|
|
|
if (aDataLen > MAX_ICON_FILESIZE(mOptimizedIconDimension)) {
|
2008-01-19 22:48:07 -08:00
|
|
|
rv = OptimizeFaviconImage(aData, aDataLen, aMimeType, newData, newMimeType);
|
|
|
|
if (NS_SUCCEEDED(rv) && newData.Length() < aDataLen) {
|
|
|
|
data = reinterpret_cast<PRUint8*>(const_cast<char*>(newData.get())),
|
|
|
|
dataLen = newData.Length();
|
|
|
|
mimeType = &newMimeType;
|
|
|
|
}
|
2008-09-02 04:59:59 -07:00
|
|
|
else if (aDataLen > MAX_FAVICON_SIZE) {
|
|
|
|
// We cannot optimize this favicon size and we are over the maximum size
|
|
|
|
// allowed, so we will not save data to the db to avoid bloating it.
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2008-01-19 22:48:07 -08:00
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
mozIStorageStatement* statement;
|
|
|
|
{
|
|
|
|
// this block forces the scoper to reset our statement: necessary for the
|
|
|
|
// next statement
|
2010-01-16 03:38:02 -08:00
|
|
|
DECLARE_AND_ASSIGN_SCOPED_LAZY_STMT(stmt, mDBGetIconInfo);
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = BindStatementURI(stmt, 0, aFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRBool hasResult;
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->ExecuteStep(&hasResult);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (hasResult) {
|
|
|
|
// update old one (statement parameter 0 = ID)
|
|
|
|
PRInt64 id;
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->GetInt64(0, &id);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-01-08 04:57:49 -08:00
|
|
|
statement = GetStatement(mDBUpdateIcon);
|
|
|
|
NS_ENSURE_STATE(statement);
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = statement->BindInt64Parameter(0, id);
|
2010-03-25 04:34:42 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = statement->BindBlobParameter(1, data, dataLen);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = statement->BindUTF8StringParameter(2, *mimeType);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = statement->BindInt64Parameter(3, aExpiration);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2010-01-08 04:57:49 -08:00
|
|
|
}
|
|
|
|
else {
|
2007-03-22 10:30:00 -07:00
|
|
|
// insert new one (statement parameter 0 = favicon URL)
|
2010-01-08 04:57:49 -08:00
|
|
|
statement = GetStatement(mDBInsertIcon);
|
|
|
|
NS_ENSURE_STATE(statement);
|
2010-03-25 04:34:42 -07:00
|
|
|
rv = statement->BindNullParameter(0);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = BindStatementURI(statement, 1, aFaviconURI);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = statement->BindBlobParameter(2, data, dataLen);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = statement->BindUTF8StringParameter(3, *mimeType);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
rv = statement->BindInt64Parameter(4, aExpiration);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mozStorageStatementScoper scoper(statement);
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = statement->Execute();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2008-07-03 11:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFaviconService::SetFaviconDataFromDataURL(nsIURI* aFaviconURI,
|
|
|
|
const nsAString& aDataURL,
|
|
|
|
PRTime aExpiration)
|
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
2009-11-11 03:04:11 -08:00
|
|
|
if (mFaviconsExpirationRunning)
|
2009-02-28 05:17:36 -08:00
|
|
|
return NS_OK;
|
2008-07-03 11:07:56 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIURI> dataURI;
|
2009-02-28 05:17:36 -08:00
|
|
|
nsresult rv = NS_NewURI(getter_AddRefs(dataURI), aDataURL);
|
2008-07-03 11:07:56 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// use the data: protocol handler to convert the data
|
|
|
|
nsCOMPtr<nsIIOService> ioService = do_GetIOService(&rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCOMPtr<nsIProtocolHandler> protocolHandler;
|
|
|
|
rv = ioService->GetProtocolHandler("data", getter_AddRefs(protocolHandler));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIChannel> channel;
|
|
|
|
rv = protocolHandler->NewChannel(dataURI, getter_AddRefs(channel));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// blocking stream is OK for data URIs
|
|
|
|
nsCOMPtr<nsIInputStream> stream;
|
|
|
|
rv = channel->Open(getter_AddRefs(stream));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 available;
|
|
|
|
rv = stream->Available(&available);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (available == 0)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// read all the decoded data
|
|
|
|
PRUint8* buffer = static_cast<PRUint8*>
|
|
|
|
(nsMemory::Alloc(sizeof(PRUint8) * available));
|
|
|
|
if (!buffer)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
PRUint32 numRead;
|
|
|
|
rv = stream->Read(reinterpret_cast<char*>(buffer), available, &numRead);
|
|
|
|
if (NS_FAILED(rv) || numRead != available) {
|
|
|
|
nsMemory::Free(buffer);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCAutoString mimeType;
|
|
|
|
rv = channel->GetContentType(mimeType);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// SetFaviconData can now do the dirty work
|
|
|
|
rv = SetFaviconData(aFaviconURI, buffer, available, mimeType, aExpiration);
|
|
|
|
nsMemory::Free(buffer);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::GetFaviconData(nsIURI* aFaviconURI, nsACString& aMimeType,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32* aDataLen, PRUint8** aData)
|
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
|
|
|
NS_ENSURE_ARG_POINTER(aDataLen);
|
|
|
|
NS_ENSURE_ARG_POINTER(aData);
|
|
|
|
|
2010-01-16 03:38:02 -08:00
|
|
|
DECLARE_AND_ASSIGN_SCOPED_LAZY_STMT(stmt, mDBGetData);
|
2010-01-08 04:57:49 -08:00
|
|
|
nsresult rv = BindStatementURI(stmt, 0, aFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2008-05-07 21:26:10 -07:00
|
|
|
PRBool hasResult = PR_FALSE;
|
2010-01-08 04:57:49 -08:00
|
|
|
if (NS_SUCCEEDED(stmt->ExecuteStep(&hasResult)) && hasResult) {
|
|
|
|
rv = stmt->GetUTF8String(1, aMimeType);
|
2008-05-07 21:26:10 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
return stmt->GetBlob(0, aDataLen, aData);
|
2008-05-07 21:26:10 -07:00
|
|
|
}
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2008-07-03 11:07:56 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsFaviconService::GetFaviconDataAsDataURL(nsIURI* aFaviconURI,
|
|
|
|
nsAString& aDataURL)
|
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
2008-07-03 11:07:56 -07:00
|
|
|
|
|
|
|
PRUint8* data;
|
|
|
|
PRUint32 dataLen;
|
|
|
|
nsCAutoString mimeType;
|
|
|
|
|
2009-06-12 00:34:35 -07:00
|
|
|
nsresult rv = GetFaviconData(aFaviconURI, mimeType, &dataLen, &data);
|
2008-07-03 11:07:56 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (!data) {
|
|
|
|
aDataURL.SetIsVoid(PR_TRUE);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
char* encoded = PL_Base64Encode(reinterpret_cast<const char*>(data),
|
|
|
|
dataLen, nsnull);
|
|
|
|
nsMemory::Free(data);
|
|
|
|
|
|
|
|
if (!encoded)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
aDataURL.AssignLiteral("data:");
|
|
|
|
AppendUTF8toUTF16(mimeType, aDataURL);
|
|
|
|
aDataURL.AppendLiteral(";base64,");
|
|
|
|
AppendUTF8toUTF16(encoded, aDataURL);
|
|
|
|
|
|
|
|
nsMemory::Free(encoded);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::GetFaviconForPage(nsIURI* aPageURI, nsIURI** _retval)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aPageURI);
|
|
|
|
NS_ENSURE_ARG_POINTER(_retval);
|
|
|
|
|
2010-01-16 03:38:02 -08:00
|
|
|
DECLARE_AND_ASSIGN_SCOPED_LAZY_STMT(stmt, mDBGetURL);
|
2010-01-08 04:57:49 -08:00
|
|
|
nsresult rv = BindStatementURI(stmt, 0, aPageURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRBool hasResult;
|
2010-01-08 04:57:49 -08:00
|
|
|
if (NS_SUCCEEDED(stmt->ExecuteStep(&hasResult)) && hasResult) {
|
2008-05-07 21:26:10 -07:00
|
|
|
nsCAutoString url;
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->GetUTF8String(1, url);
|
2008-05-07 21:26:10 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-05-07 21:26:10 -07:00
|
|
|
return NS_NewURI(_retval, url);
|
|
|
|
}
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::GetFaviconImageForPage(nsIURI* aPageURI, nsIURI** _retval)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aPageURI);
|
|
|
|
NS_ENSURE_ARG_POINTER(_retval);
|
|
|
|
|
2010-01-16 03:38:02 -08:00
|
|
|
DECLARE_AND_ASSIGN_SCOPED_LAZY_STMT(stmt, mDBGetURL);
|
2010-01-08 04:57:49 -08:00
|
|
|
nsresult rv = BindStatementURI(stmt, 0, aPageURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRBool hasResult;
|
|
|
|
nsCOMPtr<nsIURI> faviconURI;
|
2010-01-08 04:57:49 -08:00
|
|
|
if (NS_SUCCEEDED(stmt->ExecuteStep(&hasResult)) && hasResult) {
|
2007-03-22 10:30:00 -07:00
|
|
|
PRInt32 dataLen;
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->GetInt32(2, &dataLen);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (dataLen > 0) {
|
|
|
|
// this page has a favicon entry with data
|
|
|
|
nsCAutoString favIconUri;
|
2010-01-08 04:57:49 -08:00
|
|
|
rv = stmt->GetUTF8String(1, favIconUri);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return GetFaviconLinkForIconString(favIconUri, _retval);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// not found, use default
|
2007-03-25 05:28:29 -07:00
|
|
|
return GetDefaultFavicon(_retval);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::GetFaviconLinkForIcon(nsIURI* aFaviconURI,
|
|
|
|
nsIURI** aOutputURI)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
|
|
|
NS_ENSURE_ARG_POINTER(aOutputURI);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCAutoString spec;
|
2008-05-07 21:26:10 -07:00
|
|
|
if (aFaviconURI) {
|
|
|
|
nsresult rv = aFaviconURI->GetSpec(spec);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
2008-05-07 21:26:10 -07:00
|
|
|
return GetFaviconLinkForIconString(spec, aOutputURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static PLDHashOperator
|
2007-03-22 10:30:00 -07:00
|
|
|
ExpireFailedFaviconsCallback(nsCStringHashKey::KeyType aKey,
|
|
|
|
PRUint32& aData,
|
|
|
|
void* userArg)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
PRUint32* threshold = reinterpret_cast<PRUint32*>(userArg);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (aData < *threshold)
|
|
|
|
return PL_DHASH_REMOVE;
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::AddFailedFavicon(nsIURI* aFaviconURI)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCAutoString spec;
|
2008-05-07 21:26:10 -07:00
|
|
|
nsresult rv = aFaviconURI->GetSpec(spec);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (! mFailedFavicons.Put(spec, mFailedFaviconSerial))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
mFailedFaviconSerial ++;
|
|
|
|
|
|
|
|
if (mFailedFavicons.Count() > MAX_FAVICON_CACHE_SIZE) {
|
|
|
|
// need to expire some entries, delete the FAVICON_CACHE_REDUCE_COUNT number
|
|
|
|
// of items that are the oldest
|
|
|
|
PRUint32 threshold = mFailedFaviconSerial -
|
2008-05-07 21:26:10 -07:00
|
|
|
MAX_FAVICON_CACHE_SIZE + FAVICON_CACHE_REDUCE_COUNT;
|
2007-03-22 10:30:00 -07:00
|
|
|
mFailedFavicons.Enumerate(ExpireFailedFaviconsCallback, &threshold);
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::RemoveFailedFavicon(nsIURI* aFaviconURI)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2009-06-12 00:34:35 -07:00
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCAutoString spec;
|
2008-05-07 21:26:10 -07:00
|
|
|
nsresult rv = aFaviconURI->GetSpec(spec);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// we silently do nothing and succeed if the icon is not in the cache
|
|
|
|
mFailedFavicons.Remove(spec);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::IsFailedFavicon(nsIURI* aFaviconURI, PRBool* _retval)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-05-07 21:26:10 -07:00
|
|
|
NS_ENSURE_ARG(aFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCAutoString spec;
|
2008-05-07 21:26:10 -07:00
|
|
|
nsresult rv = aFaviconURI->GetSpec(spec);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 serial;
|
|
|
|
*_retval = mFailedFavicons.Get(spec, &serial);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsFaviconService::GetFaviconLinkForIconString
|
|
|
|
//
|
|
|
|
// This computes a favicon URL with string input and using the cached
|
|
|
|
// default one to minimize parsing.
|
|
|
|
|
|
|
|
nsresult
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::GetFaviconLinkForIconString(const nsCString& aSpec,
|
|
|
|
nsIURI** aOutput)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (aSpec.IsEmpty()) {
|
|
|
|
// default icon for empty strings
|
|
|
|
if (! mDefaultIcon) {
|
|
|
|
nsresult rv = NS_NewURI(getter_AddRefs(mDefaultIcon),
|
|
|
|
NS_LITERAL_CSTRING(FAVICON_DEFAULT_URL));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
return mDefaultIcon->Clone(aOutput);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (StringBeginsWith(aSpec, NS_LITERAL_CSTRING("chrome:"))) {
|
|
|
|
// pass through for chrome URLs, since they can be referenced without
|
|
|
|
// this service
|
|
|
|
return NS_NewURI(aOutput, aSpec);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCAutoString annoUri;
|
|
|
|
annoUri.AssignLiteral("moz-anno:" FAVICON_ANNOTATION_NAME ":");
|
|
|
|
annoUri += aSpec;
|
|
|
|
return NS_NewURI(aOutput, annoUri);
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsFaviconService::GetFaviconSpecForIconString
|
|
|
|
//
|
|
|
|
// This computes a favicon spec for when you don't want a URI object (as in
|
|
|
|
// the tree view implementation), sparing all parsing and normalization.
|
|
|
|
void
|
2008-05-07 21:26:10 -07:00
|
|
|
nsFaviconService::GetFaviconSpecForIconString(const nsCString& aSpec,
|
|
|
|
nsACString& aOutput)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (aSpec.IsEmpty()) {
|
|
|
|
aOutput.AssignLiteral(FAVICON_DEFAULT_URL);
|
|
|
|
} else if (StringBeginsWith(aSpec, NS_LITERAL_CSTRING("chrome:"))) {
|
|
|
|
aOutput = aSpec;
|
|
|
|
} else {
|
|
|
|
aOutput.AssignLiteral("moz-anno:" FAVICON_ANNOTATION_NAME ":");
|
|
|
|
aOutput += aSpec;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2008-01-19 22:48:07 -08:00
|
|
|
// nsFaviconService::OptimizeFaviconImage
|
|
|
|
//
|
|
|
|
// Given a blob of data (a image file already read into a buffer), optimize
|
|
|
|
// its size by recompressing it as a 16x16 PNG.
|
|
|
|
nsresult
|
|
|
|
nsFaviconService::OptimizeFaviconImage(const PRUint8* aData, PRUint32 aDataLen,
|
|
|
|
const nsACString& aMimeType,
|
|
|
|
nsACString& aNewData,
|
|
|
|
nsACString& aNewMimeType)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
|
|
|
|
nsCOMPtr<imgITools> imgtool = do_CreateInstance("@mozilla.org/image/tools;1");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIInputStream> stream;
|
|
|
|
rv = NS_NewByteInputStream(getter_AddRefs(stream),
|
|
|
|
reinterpret_cast<const char*>(aData), aDataLen,
|
|
|
|
NS_ASSIGNMENT_DEPEND);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// decode image
|
|
|
|
nsCOMPtr<imgIContainer> container;
|
|
|
|
rv = imgtool->DecodeImageData(stream, aMimeType, getter_AddRefs(container));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
aNewMimeType.AssignLiteral("image/png");
|
|
|
|
|
|
|
|
// scale and recompress
|
|
|
|
nsCOMPtr<nsIInputStream> iconStream;
|
2009-10-22 16:10:20 -07:00
|
|
|
rv = imgtool->EncodeScaledImage(container, aNewMimeType,
|
|
|
|
mOptimizedIconDimension,
|
|
|
|
mOptimizedIconDimension,
|
2008-01-19 22:48:07 -08:00
|
|
|
getter_AddRefs(iconStream));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Read the stream into a new buffer.
|
|
|
|
rv = NS_ConsumeStream(iconStream, PR_UINT32_MAX, aNewData);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2008-11-13 22:45:49 -08:00
|
|
|
nsresult
|
|
|
|
nsFaviconService::FinalizeStatements() {
|
2010-01-08 04:57:49 -08:00
|
|
|
mShuttingDown = true;
|
|
|
|
|
2008-11-13 22:45:49 -08:00
|
|
|
mozIStorageStatement* stmts[] = {
|
|
|
|
mDBGetURL,
|
|
|
|
mDBGetData,
|
|
|
|
mDBGetIconInfo,
|
2010-03-25 04:34:35 -07:00
|
|
|
mDBGetIconInfoWithPage,
|
2008-11-13 22:45:49 -08:00
|
|
|
mDBInsertIcon,
|
|
|
|
mDBUpdateIcon,
|
2010-01-08 04:57:49 -08:00
|
|
|
mDBSetPageFavicon,
|
|
|
|
mDBRemoveOnDiskReferences,
|
|
|
|
mDBRemoveTempReferences,
|
|
|
|
mDBRemoveAllFavicons,
|
2008-11-13 22:45:49 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
for (PRUint32 i = 0; i < NS_ARRAY_LENGTH(stmts); i++) {
|
|
|
|
nsresult rv = nsNavHistory::FinalizeStatement(stmts[i]);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2008-01-19 22:48:07 -08:00
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2009-03-12 14:49:37 -07:00
|
|
|
nsresult
|
|
|
|
nsFaviconService::GetFaviconDataAsync(nsIURI* aFaviconURI,
|
|
|
|
mozIStorageStatementCallback *aCallback)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(aCallback, "Doesn't make sense to call this without a callback");
|
2010-01-16 03:38:02 -08:00
|
|
|
DECLARE_AND_ASSIGN_LAZY_STMT(stmt, mDBGetData);
|
2010-01-08 04:57:49 -08:00
|
|
|
nsresult rv = BindStatementURI(stmt, 0, aFaviconURI);
|
2009-03-12 14:49:37 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<mozIStoragePendingStatement> pendingStatement;
|
2010-01-08 04:57:49 -08:00
|
|
|
return stmt->ExecuteAsync(aCallback, getter_AddRefs(pendingStatement));
|
2009-03-12 14:49:37 -07:00
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2009-11-11 03:04:16 -08:00
|
|
|
void
|
|
|
|
nsFaviconService::checkAndNotify(nsIURI *aPageURI,
|
|
|
|
nsIURI *aFaviconURI)
|
|
|
|
{
|
|
|
|
// For page revisits (pretty common) we DON'T want to send out any
|
|
|
|
// notifications if we've already set the favicon. These notifications will
|
|
|
|
// cause parts of the UI to update and will be slow. This also saves us a
|
|
|
|
// database write in these cases.
|
|
|
|
nsCOMPtr<nsIURI> oldFavicon;
|
|
|
|
PRBool faviconsEqual;
|
|
|
|
if (NS_SUCCEEDED(GetFaviconForPage(aPageURI, getter_AddRefs(oldFavicon))) &&
|
|
|
|
NS_SUCCEEDED(aFaviconURI->Equals(oldFavicon, &faviconsEqual)) &&
|
|
|
|
faviconsEqual)
|
|
|
|
return; // already set
|
|
|
|
|
|
|
|
// This will associate the favicon URL with the page.
|
|
|
|
PRBool hasData;
|
|
|
|
nsresult rv = SetFaviconUrlForPageInternal(aPageURI, aFaviconURI, &hasData);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (hasData) {
|
|
|
|
SendFaviconNotifications(aPageURI, aFaviconURI);
|
|
|
|
UpdateBookmarkRedirectFavicon(aPageURI, aFaviconURI);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2009-11-11 03:04:11 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// FaviconLoadListener
|
|
|
|
|
2008-05-07 21:26:10 -07:00
|
|
|
NS_IMPL_ISUPPORTS4(FaviconLoadListener,
|
2007-09-05 13:23:54 -07:00
|
|
|
nsIRequestObserver,
|
|
|
|
nsIStreamListener,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIInterfaceRequestor,
|
|
|
|
nsIChannelEventSink)
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2009-11-11 03:04:16 -08:00
|
|
|
FaviconLoadListener::FaviconLoadListener(nsIURI* aPageURI,
|
|
|
|
nsIURI* aFaviconURI,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIChannel* aChannel) :
|
|
|
|
mChannel(aChannel),
|
|
|
|
mPageURI(aPageURI),
|
|
|
|
mFaviconURI(aFaviconURI)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
FaviconLoadListener::~FaviconLoadListener()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
FaviconLoadListener::OnStartRequest(nsIRequest *aRequest, nsISupports *aContext)
|
|
|
|
{
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
FaviconLoadListener::OnStopRequest(nsIRequest *aRequest, nsISupports *aContext,
|
|
|
|
nsresult aStatusCode)
|
|
|
|
{
|
2009-11-11 03:04:16 -08:00
|
|
|
nsFaviconService *fs = nsFaviconService::GetFaviconService();
|
2009-12-01 05:00:45 -08:00
|
|
|
NS_ENSURE_TRUE(fs, NS_ERROR_OUT_OF_MEMORY);
|
2009-11-11 03:04:16 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_FAILED(aStatusCode) || mData.Length() == 0) {
|
|
|
|
// load failed, add to failed cache
|
2009-11-11 03:04:16 -08:00
|
|
|
fs->AddFailedFavicon(mFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
// sniff the MIME type
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsICategoryManager> categoryManager =
|
|
|
|
do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
nsCOMPtr<nsISimpleEnumerator> sniffers;
|
|
|
|
rv = categoryManager->EnumerateCategory(CONTENT_SNIFFING_SERVICES,
|
|
|
|
getter_AddRefs(sniffers));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCString mimeType;
|
|
|
|
PRBool hasMore = PR_FALSE;
|
|
|
|
while (mimeType.IsEmpty() && NS_SUCCEEDED(sniffers->HasMoreElements(&hasMore))
|
|
|
|
&& hasMore) {
|
|
|
|
nsCOMPtr<nsISupports> snifferCIDSupports;
|
|
|
|
rv = sniffers->GetNext(getter_AddRefs(snifferCIDSupports));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsISupportsCString> snifferCIDSupportsCString =
|
|
|
|
do_QueryInterface(snifferCIDSupports, &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCAutoString snifferCID;
|
|
|
|
rv = snifferCIDSupportsCString->GetData(snifferCID);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContentSniffer> sniffer = do_GetService(snifferCID.get(), &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
sniffer->GetMIMETypeFromContent(
|
|
|
|
aRequest,
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<PRUint8*>(const_cast<char*>(mData.get())),
|
2007-03-22 10:30:00 -07:00
|
|
|
mData.Length(), mimeType);
|
|
|
|
// ignore errors: mime type will be left empty and we'll try the next sniffer
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mimeType.IsEmpty()) {
|
|
|
|
// we can not handle favicons that do not have a recognisable MIME type
|
2009-11-11 03:04:16 -08:00
|
|
|
fs->AddFailedFavicon(mFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2008-12-11 12:01:10 -08:00
|
|
|
// Attempt to get an expiration time from the cache. If this fails, we'll
|
|
|
|
// make one up.
|
|
|
|
PRTime expiration = -1;
|
|
|
|
nsCOMPtr<nsICachingChannel> cachingChannel(do_QueryInterface(mChannel));
|
|
|
|
if (cachingChannel) {
|
|
|
|
nsCOMPtr<nsISupports> cacheToken;
|
|
|
|
rv = cachingChannel->GetCacheToken(getter_AddRefs(cacheToken));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
nsCOMPtr<nsICacheEntryInfo> cacheEntry(do_QueryInterface(cacheToken));
|
|
|
|
PRUint32 seconds;
|
|
|
|
rv = cacheEntry->GetExpirationTime(&seconds);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
// Set the expiration, but make sure we honor our cap.
|
2009-12-13 09:32:10 -08:00
|
|
|
expiration = PR_Now() + NS_MIN((PRTime)seconds * PR_USEC_PER_SEC,
|
2008-12-11 12:01:10 -08:00
|
|
|
MAX_FAVICON_EXPIRATION);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// If we did not obtain a time from the cache, or it was negative, use our cap
|
|
|
|
if (expiration < 0)
|
|
|
|
expiration = PR_Now() + MAX_FAVICON_EXPIRATION;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-11-11 03:04:16 -08:00
|
|
|
mozStorageTransaction transaction(fs->mDBConn, PR_FALSE);
|
2007-03-22 10:30:00 -07:00
|
|
|
// save the favicon data
|
2008-09-02 04:59:59 -07:00
|
|
|
// This could fail if the favicon is bigger than defined limit, in such a
|
|
|
|
// case data will not be saved to the db but we will still continue.
|
2009-11-11 03:04:16 -08:00
|
|
|
(void)fs->SetFaviconData(mFaviconURI,
|
|
|
|
reinterpret_cast<PRUint8*>(const_cast<char*>(mData.get())),
|
|
|
|
mData.Length(), mimeType, expiration);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// set the favicon for the page
|
|
|
|
PRBool hasData;
|
2009-11-11 03:04:16 -08:00
|
|
|
rv = fs->SetFaviconUrlForPageInternal(mPageURI, mFaviconURI,
|
2008-12-11 12:01:10 -08:00
|
|
|
&hasData);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-11-11 03:04:16 -08:00
|
|
|
fs->UpdateBookmarkRedirectFavicon(mPageURI, mFaviconURI);
|
2008-10-27 15:52:21 -07:00
|
|
|
|
|
|
|
rv = transaction.Commit();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2009-11-11 03:04:16 -08:00
|
|
|
fs->SendFaviconNotifications(mPageURI, mFaviconURI);
|
2007-03-22 10:30:00 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
2010-01-08 04:57:49 -08:00
|
|
|
FaviconLoadListener::OnDataAvailable(nsIRequest* aRequest,
|
|
|
|
nsISupports* aContext,
|
|
|
|
nsIInputStream* aInputStream,
|
2008-05-07 21:26:10 -07:00
|
|
|
PRUint32 aOffset,
|
|
|
|
PRUint32 aCount)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsCString buffer;
|
|
|
|
nsresult rv = NS_ConsumeStream(aInputStream, aCount, buffer);
|
|
|
|
if (rv != NS_BASE_STREAM_WOULD_BLOCK && NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
mData.Append(buffer);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
FaviconLoadListener::GetInterface(const nsIID& uuid, void** aResult)
|
|
|
|
{
|
|
|
|
return QueryInterface(uuid, aResult);
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMETHODIMP
|
|
|
|
FaviconLoadListener::OnChannelRedirect(nsIChannel* oldChannel,
|
2008-05-07 21:26:10 -07:00
|
|
|
nsIChannel* newChannel,
|
|
|
|
PRUint32 flags)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
mChannel = newChannel;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2009-02-28 05:17:36 -08:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//// ExpireFaviconsStatementCallbackNotifier
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(ExpireFaviconsStatementCallbackNotifier,
|
|
|
|
mozIStorageStatementCallback)
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
ExpireFaviconsStatementCallbackNotifier::ExpireFaviconsStatementCallbackNotifier(
|
|
|
|
bool* aFaviconsExpirationRunning)
|
|
|
|
: mFaviconsExpirationRunning(aFaviconsExpirationRunning)
|
2009-02-28 05:17:36 -08:00
|
|
|
{
|
2009-11-11 03:04:11 -08:00
|
|
|
NS_ASSERTION(mFaviconsExpirationRunning, "Pointer to bool mFaviconsExpirationRunning can't be null");
|
2009-02-28 05:17:36 -08:00
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2009-02-28 05:17:36 -08:00
|
|
|
NS_IMETHODIMP
|
|
|
|
ExpireFaviconsStatementCallbackNotifier::HandleCompletion(PRUint16 aReason)
|
|
|
|
{
|
2009-11-11 03:04:11 -08:00
|
|
|
*mFaviconsExpirationRunning = false;
|
2009-02-28 05:17:36 -08:00
|
|
|
|
|
|
|
// We should dispatch only if expiration has been successful.
|
|
|
|
if (aReason != mozIStorageStatementCallback::REASON_FINISHED)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIObserverService> observerService =
|
|
|
|
do_GetService("@mozilla.org/observer-service;1");
|
|
|
|
if (observerService) {
|
|
|
|
(void)observerService->NotifyObservers(nsnull,
|
|
|
|
NS_PLACES_FAVICONS_EXPIRED_TOPIC_ID,
|
|
|
|
nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2010-01-08 04:57:49 -08:00
|
|
|
|
2009-02-28 05:17:36 -08:00
|
|
|
NS_IMETHODIMP
|
2010-01-08 04:57:49 -08:00
|
|
|
ExpireFaviconsStatementCallbackNotifier::HandleResult(mozIStorageResultSet* aResultSet)
|
2009-02-28 05:17:36 -08:00
|
|
|
{
|
|
|
|
NS_ASSERTION(PR_FALSE, "You cannot use this statement callback to get async statements resultset");
|
|
|
|
return NS_OK;
|
|
|
|
}
|