2007-03-22 10:30:00 -07:00
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cin: */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-05-14 13:09:20 -07:00
|
|
|
#ifndef nsOfflineCacheDevice_h__
|
|
|
|
#define nsOfflineCacheDevice_h__
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsCacheDevice.h"
|
2008-08-26 16:09:02 -07:00
|
|
|
#include "nsIApplicationCache.h"
|
|
|
|
#include "nsIApplicationCacheService.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "mozIStorageConnection.h"
|
2007-07-25 17:47:33 -07:00
|
|
|
#include "mozIStorageFunction.h"
|
|
|
|
#include "nsIFile.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCOMPtr.h"
|
2007-07-25 17:47:33 -07:00
|
|
|
#include "nsCOMArray.h"
|
2008-08-26 16:09:02 -07:00
|
|
|
#include "nsInterfaceHashtable.h"
|
|
|
|
#include "nsClassHashtable.h"
|
|
|
|
#include "nsWeakReference.h"
|
2012-06-05 20:18:25 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2013-08-15 03:42:02 -07:00
|
|
|
#include "mozilla/Mutex.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-09-30 11:34:23 -07:00
|
|
|
class nsIURI;
|
2007-07-25 17:47:33 -07:00
|
|
|
class nsOfflineCacheDevice;
|
2013-04-09 17:21:07 -07:00
|
|
|
class mozIStorageService;
|
2007-07-25 17:47:33 -07:00
|
|
|
|
2012-06-05 20:18:25 -07:00
|
|
|
class nsApplicationCacheNamespace MOZ_FINAL : public nsIApplicationCacheNamespace
|
2008-09-30 11:34:23 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIAPPLICATIONCACHENAMESPACE
|
|
|
|
|
|
|
|
nsApplicationCacheNamespace() : mItemType(0) {}
|
|
|
|
|
|
|
|
private:
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mItemType;
|
2008-09-30 11:34:23 -07:00
|
|
|
nsCString mNamespaceSpec;
|
|
|
|
nsCString mData;
|
|
|
|
};
|
|
|
|
|
2012-06-05 20:18:25 -07:00
|
|
|
class nsOfflineCacheEvictionFunction MOZ_FINAL : public mozIStorageFunction {
|
2007-07-25 17:47:33 -07:00
|
|
|
public:
|
2013-07-18 19:24:13 -07:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2007-07-25 17:47:33 -07:00
|
|
|
NS_DECL_MOZISTORAGEFUNCTION
|
|
|
|
|
|
|
|
nsOfflineCacheEvictionFunction(nsOfflineCacheDevice *device)
|
|
|
|
: mDevice(device)
|
|
|
|
{}
|
|
|
|
|
|
|
|
void Reset() { mItems.Clear(); }
|
|
|
|
void Apply();
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsOfflineCacheDevice *mDevice;
|
|
|
|
nsCOMArray<nsIFile> mItems;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2007-05-14 13:09:20 -07:00
|
|
|
class nsOfflineCacheDevice : public nsCacheDevice
|
2012-04-30 10:57:09 -07:00
|
|
|
, public nsISupports
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2007-05-14 13:09:20 -07:00
|
|
|
nsOfflineCacheDevice();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-07-18 19:24:13 -07:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2008-08-26 16:09:02 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* nsCacheDevice methods
|
|
|
|
*/
|
2007-05-14 13:09:20 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual nsresult Init();
|
2013-04-09 17:21:07 -07:00
|
|
|
nsresult InitWithSqlite(mozIStorageService * ss);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual nsresult Shutdown();
|
|
|
|
|
|
|
|
virtual const char * GetDeviceID(void);
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual nsCacheEntry * FindEntry(nsCString * key, bool *collision);
|
2007-03-22 10:30:00 -07:00
|
|
|
virtual nsresult DeactivateEntry(nsCacheEntry * entry);
|
|
|
|
virtual nsresult BindEntry(nsCacheEntry * entry);
|
|
|
|
virtual void DoomEntry( nsCacheEntry * entry );
|
|
|
|
|
|
|
|
virtual nsresult OpenInputStreamForEntry(nsCacheEntry * entry,
|
|
|
|
nsCacheAccessMode mode,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t offset,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIInputStream ** result);
|
|
|
|
|
|
|
|
virtual nsresult OpenOutputStreamForEntry(nsCacheEntry * entry,
|
|
|
|
nsCacheAccessMode mode,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t offset,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIOutputStream ** result);
|
|
|
|
|
|
|
|
virtual nsresult GetFileForEntry(nsCacheEntry * entry,
|
|
|
|
nsIFile ** result);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
virtual nsresult OnDataSizeChange(nsCacheEntry * entry, int32_t deltaSize);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
virtual nsresult Visit(nsICacheVisitor * visitor);
|
|
|
|
|
|
|
|
virtual nsresult EvictEntries(const char * clientID);
|
|
|
|
|
2007-05-14 13:09:20 -07:00
|
|
|
/* Entry ownership */
|
2007-07-24 22:35:39 -07:00
|
|
|
nsresult GetOwnerDomains(const char * clientID,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t * count,
|
2007-07-24 22:35:39 -07:00
|
|
|
char *** domains);
|
|
|
|
nsresult GetOwnerURIs(const char * clientID,
|
|
|
|
const nsACString & ownerDomain,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t * count,
|
2007-07-24 22:35:39 -07:00
|
|
|
char *** uris);
|
2007-05-14 13:09:20 -07:00
|
|
|
nsresult SetOwnedKeys(const char * clientID,
|
|
|
|
const nsACString & ownerDomain,
|
|
|
|
const nsACString & ownerUrl,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t count,
|
2007-05-14 13:09:20 -07:00
|
|
|
const char ** keys);
|
|
|
|
nsresult GetOwnedKeys(const char * clientID,
|
|
|
|
const nsACString & ownerDomain,
|
|
|
|
const nsACString & ownerUrl,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t * count,
|
2007-05-14 13:09:20 -07:00
|
|
|
char *** keys);
|
|
|
|
nsresult AddOwnedKey(const char * clientID,
|
|
|
|
const nsACString & ownerDomain,
|
|
|
|
const nsACString & ownerURI,
|
|
|
|
const nsACString & key);
|
|
|
|
nsresult RemoveOwnedKey(const char * clientID,
|
|
|
|
const nsACString & ownerDomain,
|
|
|
|
const nsACString & ownerURI,
|
|
|
|
const nsACString & key);
|
|
|
|
nsresult KeyIsOwned(const char * clientID,
|
|
|
|
const nsACString & ownerDomain,
|
|
|
|
const nsACString & ownerURI,
|
|
|
|
const nsACString & key,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool * isOwned);
|
2007-05-14 13:09:20 -07:00
|
|
|
|
|
|
|
nsresult ClearKeysOwnedByDomain(const char *clientID,
|
|
|
|
const nsACString &ownerDomain);
|
|
|
|
nsresult EvictUnownedEntries(const char *clientID);
|
|
|
|
|
2012-07-30 23:36:00 -07:00
|
|
|
static nsresult BuildApplicationCacheGroupID(nsIURI *aManifestURL,
|
2012-10-02 06:55:00 -07:00
|
|
|
uint32_t appId, bool isInBrowserElement,
|
2012-07-30 23:36:00 -07:00
|
|
|
nsACString &_result);
|
|
|
|
|
2008-08-26 16:09:02 -07:00
|
|
|
nsresult ActivateCache(const nsCSubstring &group,
|
|
|
|
const nsCSubstring &clientID);
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsActiveCache(const nsCSubstring &group,
|
2008-08-26 16:09:02 -07:00
|
|
|
const nsCSubstring &clientID);
|
2012-04-30 10:57:09 -07:00
|
|
|
nsresult CreateApplicationCache(const nsACString &group,
|
|
|
|
nsIApplicationCache **out);
|
|
|
|
|
|
|
|
nsresult GetApplicationCache(const nsACString &clientID,
|
|
|
|
nsIApplicationCache **out);
|
2013-08-15 03:42:02 -07:00
|
|
|
nsresult GetApplicationCache_Unlocked(const nsACString &clientID,
|
|
|
|
nsIApplicationCache **out);
|
2012-04-30 10:57:09 -07:00
|
|
|
|
|
|
|
nsresult GetActiveCache(const nsACString &group,
|
|
|
|
nsIApplicationCache **out);
|
|
|
|
|
|
|
|
nsresult DeactivateGroup(const nsACString &group);
|
|
|
|
|
|
|
|
nsresult ChooseApplicationCache(const nsACString &key,
|
2013-09-20 02:11:25 -07:00
|
|
|
nsILoadContextInfo *loadContext,
|
2012-04-30 10:57:09 -07:00
|
|
|
nsIApplicationCache **out);
|
|
|
|
|
|
|
|
nsresult CacheOpportunistically(nsIApplicationCache* cache,
|
|
|
|
const nsACString &key);
|
|
|
|
|
2012-10-02 17:39:09 -07:00
|
|
|
nsresult DiscardByAppId(int32_t appID, bool isInBrowser);
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult GetGroups(uint32_t *count,char ***keys);
|
2012-04-30 10:57:09 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult GetGroupsTimeOrdered(uint32_t *count,
|
2012-04-30 10:57:09 -07:00
|
|
|
char ***keys);
|
|
|
|
|
2012-06-28 15:27:03 -07:00
|
|
|
bool IsLocked(const nsACString &key);
|
|
|
|
void Lock(const nsACString &key);
|
|
|
|
void Unlock(const nsACString &key);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
|
|
|
* Preference accessors
|
|
|
|
*/
|
|
|
|
|
2012-06-05 19:08:30 -07:00
|
|
|
void SetCacheParentDirectory(nsIFile * parentDir);
|
2012-08-22 08:56:38 -07:00
|
|
|
void SetCapacity(uint32_t capacity);
|
2012-07-11 11:20:17 -07:00
|
|
|
void SetAutoShutdown() { mAutoShutdown = true; }
|
|
|
|
bool AutoShutdown(nsIApplicationCache * aAppCache);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-06-05 19:08:30 -07:00
|
|
|
nsIFile * BaseDirectory() { return mBaseDirectory; }
|
|
|
|
nsIFile * CacheDirectory() { return mCacheDirectory; }
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t CacheCapacity() { return mCacheCapacity; }
|
|
|
|
uint32_t CacheSize();
|
|
|
|
uint32_t EntryCount();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-05-14 13:09:20 -07:00
|
|
|
private:
|
2008-08-26 16:09:02 -07:00
|
|
|
friend class nsApplicationCache;
|
|
|
|
|
|
|
|
static PLDHashOperator ShutdownApplicationCache(const nsACString &key,
|
|
|
|
nsIWeakReference *weakRef,
|
|
|
|
void *ctx);
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool GetStrictFileOriginPolicy();
|
2008-08-27 18:15:32 -07:00
|
|
|
|
2012-07-30 07:20:58 -07:00
|
|
|
bool Initialized() { return mDB != nullptr; }
|
2008-08-26 16:09:02 -07:00
|
|
|
|
|
|
|
nsresult InitActiveCaches();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult UpdateEntry(nsCacheEntry *entry);
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult UpdateEntrySize(nsCacheEntry *entry, uint32_t newSize);
|
2011-09-28 23:19:26 -07:00
|
|
|
nsresult DeleteEntry(nsCacheEntry *entry, bool deleteData);
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult DeleteData(nsCacheEntry *entry);
|
|
|
|
nsresult EnableEvictionObserver();
|
|
|
|
nsresult DisableEvictionObserver();
|
2008-08-26 16:09:02 -07:00
|
|
|
|
2013-09-20 02:11:25 -07:00
|
|
|
bool CanUseCache(nsIURI *keyURI, const nsACString &clientID, nsILoadContextInfo *loadContext);
|
2008-09-30 11:34:23 -07:00
|
|
|
|
2008-08-26 16:09:02 -07:00
|
|
|
nsresult MarkEntry(const nsCString &clientID,
|
|
|
|
const nsACString &key,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t typeBits);
|
2008-08-26 16:09:02 -07:00
|
|
|
nsresult UnmarkEntry(const nsCString &clientID,
|
|
|
|
const nsACString &key,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t typeBits);
|
2008-09-30 11:34:23 -07:00
|
|
|
|
|
|
|
nsresult CacheOpportunistically(const nsCString &clientID,
|
|
|
|
const nsACString &key);
|
2008-08-26 16:09:02 -07:00
|
|
|
nsresult GetTypes(const nsCString &clientID,
|
|
|
|
const nsACString &key,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t *typeBits);
|
2008-09-30 11:34:23 -07:00
|
|
|
|
|
|
|
nsresult GetMatchingNamespace(const nsCString &clientID,
|
|
|
|
const nsACString &key,
|
|
|
|
nsIApplicationCacheNamespace **out);
|
2008-08-26 16:09:02 -07:00
|
|
|
nsresult GatherEntries(const nsCString &clientID,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t typeBits,
|
|
|
|
uint32_t *count,
|
2008-08-26 16:09:02 -07:00
|
|
|
char *** values);
|
2008-09-30 11:34:23 -07:00
|
|
|
nsresult AddNamespace(const nsCString &clientID,
|
|
|
|
nsIApplicationCacheNamespace *ns);
|
2008-08-26 16:09:02 -07:00
|
|
|
|
2009-02-22 11:09:10 -08:00
|
|
|
nsresult GetUsage(const nsACString &clientID,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t *usage);
|
2009-02-22 11:09:10 -08:00
|
|
|
|
2007-07-24 22:35:39 -07:00
|
|
|
nsresult RunSimpleQuery(mozIStorageStatement *statment,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t resultIndex,
|
|
|
|
uint32_t * count,
|
2007-07-24 22:35:39 -07:00
|
|
|
char *** values);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-07-25 17:47:33 -07:00
|
|
|
nsCOMPtr<mozIStorageConnection> mDB;
|
|
|
|
nsRefPtr<nsOfflineCacheEvictionFunction> mEvictionFunction;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_CacheSize;
|
2009-02-22 11:09:10 -08:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_ApplicationCacheSize;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_EntryCount;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_UpdateEntry;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_UpdateEntrySize;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_DeleteEntry;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_FindEntry;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_BindEntry;
|
2007-05-14 13:09:20 -07:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_ClearDomain;
|
2008-08-26 16:09:02 -07:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_MarkEntry;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_UnmarkEntry;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_GetTypes;
|
2008-09-30 11:34:23 -07:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_FindNamespaceEntry;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_InsertNamespaceEntry;
|
2008-08-26 16:09:02 -07:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_CleanupUnmarked;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_GatherEntries;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_ActivateClient;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_DeactivateGroup;
|
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_FindClient;
|
2008-09-30 11:34:23 -07:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_FindClientByNamespace;
|
2012-10-02 17:39:09 -07:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_EnumerateApps;
|
2009-02-22 11:09:10 -08:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_EnumerateGroups;
|
2012-03-30 17:52:06 -07:00
|
|
|
nsCOMPtr<mozIStorageStatement> mStatement_EnumerateGroupsTimeOrder;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-06-05 19:08:30 -07:00
|
|
|
nsCOMPtr<nsIFile> mBaseDirectory;
|
|
|
|
nsCOMPtr<nsIFile> mCacheDirectory;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mCacheCapacity; // in bytes
|
|
|
|
int32_t mDeltaCounter;
|
2012-07-11 11:20:17 -07:00
|
|
|
bool mAutoShutdown;
|
2008-08-26 16:09:02 -07:00
|
|
|
|
2013-08-15 03:42:02 -07:00
|
|
|
mozilla::Mutex mLock;
|
|
|
|
|
2008-08-26 16:09:02 -07:00
|
|
|
nsInterfaceHashtable<nsCStringHashKey, nsIWeakReference> mCaches;
|
|
|
|
nsClassHashtable<nsCStringHashKey, nsCString> mActiveCachesByGroup;
|
2011-11-08 12:22:15 -08:00
|
|
|
nsTHashtable<nsCStringHashKey> mActiveCaches;
|
2012-06-28 15:27:03 -07:00
|
|
|
nsTHashtable<nsCStringHashKey> mLockedEntries;
|
2010-08-23 18:06:23 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIThread> mInitThread;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2007-05-14 13:09:20 -07:00
|
|
|
#endif // nsOfflineCacheDevice_h__
|