2013-01-15 04:26:47 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim: set ts=8 sts=4 et sw=4 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 15:12:37 +04:00
|
|
|
* 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/. */
|
2001-02-23 16:18:01 +03:00
|
|
|
|
|
|
|
#ifndef _nsCacheService_h_
|
|
|
|
#define _nsCacheService_h_
|
|
|
|
|
|
|
|
#include "nsICacheService.h"
|
2001-02-26 17:55:58 +03:00
|
|
|
#include "nsCacheSession.h"
|
2001-02-23 16:18:01 +03:00
|
|
|
#include "nsCacheDevice.h"
|
|
|
|
#include "nsCacheEntry.h"
|
2012-09-18 01:31:46 +04:00
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsICacheListener.h"
|
2013-11-26 05:04:01 +04:00
|
|
|
#include "nsIMemoryReporter.h"
|
2001-05-03 06:35:26 +04:00
|
|
|
|
2006-06-28 03:13:48 +04:00
|
|
|
#include "prthread.h"
|
2001-03-13 04:59:43 +03:00
|
|
|
#include "nsIObserver.h"
|
2001-03-21 01:42:03 +03:00
|
|
|
#include "nsString.h"
|
2006-06-28 03:13:48 +04:00
|
|
|
#include "nsTArray.h"
|
2012-06-04 18:12:24 +04:00
|
|
|
#include "nsRefPtrHashtable.h"
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
#include "mozilla/CondVar.h"
|
|
|
|
#include "mozilla/Mutex.h"
|
2012-06-30 03:20:34 +04:00
|
|
|
#include "mozilla/Telemetry.h"
|
2001-02-23 16:18:01 +03:00
|
|
|
|
2001-02-26 18:53:31 +03:00
|
|
|
class nsCacheRequest;
|
2001-06-28 05:30:26 +04:00
|
|
|
class nsCacheProfilePrefObserver;
|
|
|
|
class nsDiskCacheDevice;
|
|
|
|
class nsMemoryCacheDevice;
|
2007-05-15 00:09:20 +04:00
|
|
|
class nsOfflineCacheDevice;
|
2006-06-28 03:13:48 +04:00
|
|
|
class nsCacheServiceAutoLock;
|
2012-01-06 19:19:10 +04:00
|
|
|
class nsITimer;
|
2013-04-10 04:21:07 +04:00
|
|
|
class mozIStorageService;
|
2001-02-23 16:18:01 +03:00
|
|
|
|
|
|
|
|
2012-09-18 01:31:46 +04:00
|
|
|
/******************************************************************************
|
|
|
|
* nsNotifyDoomListener
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
class nsNotifyDoomListener : public nsRunnable {
|
|
|
|
public:
|
|
|
|
nsNotifyDoomListener(nsICacheListener *listener,
|
|
|
|
nsresult status)
|
|
|
|
: mListener(listener) // transfers reference
|
|
|
|
, mStatus(status)
|
|
|
|
{}
|
|
|
|
|
|
|
|
NS_IMETHOD Run()
|
|
|
|
{
|
|
|
|
mListener->OnCacheEntryDoomed(mStatus);
|
|
|
|
NS_RELEASE(mListener);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsICacheListener *mListener;
|
|
|
|
nsresult mStatus;
|
|
|
|
};
|
|
|
|
|
2001-03-21 01:42:03 +03:00
|
|
|
/******************************************************************************
|
2001-02-23 16:18:01 +03:00
|
|
|
* nsCacheService
|
2001-03-21 01:42:03 +03:00
|
|
|
******************************************************************************/
|
2001-02-23 16:18:01 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsCacheService final : public nsICacheServiceInternal,
|
2015-03-27 21:52:19 +03:00
|
|
|
public nsIMemoryReporter
|
2001-02-23 16:18:01 +03:00
|
|
|
{
|
2014-06-24 20:36:44 +04:00
|
|
|
virtual ~nsCacheService();
|
|
|
|
|
2001-02-23 16:18:01 +03:00
|
|
|
public:
|
2013-07-19 06:24:13 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2001-02-23 16:18:01 +03:00
|
|
|
NS_DECL_NSICACHESERVICE
|
2013-05-12 18:01:13 +04:00
|
|
|
NS_DECL_NSICACHESERVICEINTERNAL
|
2013-12-08 09:39:47 +04:00
|
|
|
NS_DECL_NSIMEMORYREPORTER
|
2013-01-15 04:26:47 +04:00
|
|
|
|
2001-02-23 16:18:01 +03:00
|
|
|
nsCacheService();
|
|
|
|
|
|
|
|
// Define a Create method to be used with a factory:
|
2010-06-10 22:11:40 +04:00
|
|
|
static nsresult
|
2001-02-23 16:18:01 +03:00
|
|
|
Create(nsISupports* outer, const nsIID& iid, void* *result);
|
|
|
|
|
2001-02-26 17:55:58 +03:00
|
|
|
|
2001-02-28 07:10:43 +03:00
|
|
|
/**
|
|
|
|
* Methods called by nsCacheSession
|
|
|
|
*/
|
2002-08-07 05:13:29 +04:00
|
|
|
static nsresult OpenCacheEntry(nsCacheSession * session,
|
2005-01-13 06:25:28 +03:00
|
|
|
const nsACString & key,
|
2001-03-05 13:45:33 +03:00
|
|
|
nsCacheAccessMode accessRequested,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool blockingMode,
|
2001-03-05 13:45:33 +03:00
|
|
|
nsICacheListener * listener,
|
|
|
|
nsICacheEntryDescriptor ** result);
|
2001-03-05 10:17:58 +03:00
|
|
|
|
2002-08-07 05:13:29 +04:00
|
|
|
static nsresult EvictEntriesForSession(nsCacheSession * session);
|
2001-04-09 12:14:08 +04:00
|
|
|
|
2002-01-24 04:25:25 +03:00
|
|
|
static nsresult IsStorageEnabledForPolicy(nsCacheStoragePolicy storagePolicy,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool * result);
|
2002-01-24 04:25:25 +03:00
|
|
|
|
2012-03-23 02:54:20 +04:00
|
|
|
static nsresult DoomEntry(nsCacheSession *session,
|
|
|
|
const nsACString &key,
|
|
|
|
nsICacheListener *listener);
|
|
|
|
|
2001-02-28 07:10:43 +03:00
|
|
|
/**
|
|
|
|
* Methods called by nsCacheEntryDescriptor
|
|
|
|
*/
|
|
|
|
|
2002-08-07 05:13:29 +04:00
|
|
|
static void CloseDescriptor(nsCacheEntryDescriptor * descriptor);
|
2001-03-01 08:01:43 +03:00
|
|
|
|
2002-08-07 05:13:29 +04:00
|
|
|
static nsresult GetFileForEntry(nsCacheEntry * entry,
|
|
|
|
nsIFile ** result);
|
2001-03-02 04:51:41 +03:00
|
|
|
|
2003-01-18 05:15:14 +03:00
|
|
|
static nsresult OpenInputStreamForEntry(nsCacheEntry * entry,
|
|
|
|
nsCacheAccessMode mode,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t offset,
|
2003-01-18 05:15:14 +03:00
|
|
|
nsIInputStream ** result);
|
|
|
|
|
|
|
|
static nsresult OpenOutputStreamForEntry(nsCacheEntry * entry,
|
|
|
|
nsCacheAccessMode mode,
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t offset,
|
2003-01-18 05:15:14 +03:00
|
|
|
nsIOutputStream ** result);
|
2001-03-01 08:01:43 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static nsresult OnDataSizeChange(nsCacheEntry * entry, int32_t deltaSize);
|
2002-08-07 05:13:29 +04:00
|
|
|
|
|
|
|
static nsresult SetCacheElement(nsCacheEntry * entry, nsISupports * element);
|
|
|
|
|
|
|
|
static nsresult ValidateEntry(nsCacheEntry * entry);
|
2001-02-26 17:55:58 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static int32_t CacheCompressionLevel();
|
2001-03-09 00:22:18 +03:00
|
|
|
|
2012-12-14 21:03:01 +04:00
|
|
|
static bool GetClearingEntries();
|
|
|
|
|
2014-04-25 15:02:36 +04:00
|
|
|
static void GetCacheBaseDirectoty(nsIFile ** result);
|
2014-02-05 23:29:54 +04:00
|
|
|
static void GetDiskCacheDirectory(nsIFile ** result);
|
2014-04-25 15:02:36 +04:00
|
|
|
static void GetAppCacheDirectory(nsIFile ** result);
|
2014-02-05 23:29:54 +04:00
|
|
|
|
2001-02-28 07:10:43 +03:00
|
|
|
/**
|
|
|
|
* Methods called by any cache classes
|
|
|
|
*/
|
|
|
|
|
|
|
|
static
|
2002-08-07 05:13:29 +04:00
|
|
|
nsCacheService * GlobalInstance() { return gService; }
|
2011-07-19 05:22:36 +04:00
|
|
|
|
2002-08-07 05:13:29 +04:00
|
|
|
static nsresult DoomEntry(nsCacheEntry * entry);
|
2001-02-28 07:10:43 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
static bool IsStorageEnabledForPolicy_Locked(nsCacheStoragePolicy policy);
|
2001-06-06 06:30:07 +04:00
|
|
|
|
2012-08-08 02:46:33 +04:00
|
|
|
/**
|
|
|
|
* Called by disk cache to notify us to use the new max smart size
|
|
|
|
*/
|
|
|
|
static void MarkStartingFresh();
|
|
|
|
|
2012-04-30 21:57:09 +04:00
|
|
|
/**
|
|
|
|
* Methods called by nsApplicationCacheService
|
|
|
|
*/
|
|
|
|
|
|
|
|
nsresult GetOfflineDevice(nsOfflineCacheDevice ** aDevice);
|
|
|
|
|
2012-06-04 18:12:24 +04:00
|
|
|
/**
|
|
|
|
* Creates an offline cache device that works over a specific profile directory.
|
|
|
|
* A tool to preload offline cache for profiles different from the current
|
|
|
|
* application's profile directory.
|
|
|
|
*/
|
2012-06-06 06:08:30 +04:00
|
|
|
nsresult GetCustomOfflineDevice(nsIFile *aProfileDir,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aQuota,
|
2012-06-04 18:12:24 +04:00
|
|
|
nsOfflineCacheDevice **aDevice);
|
|
|
|
|
2006-06-28 03:13:48 +04:00
|
|
|
// This method may be called to release an object while the cache service
|
|
|
|
// lock is being held. If a non-null target is specified and the target
|
|
|
|
// does not correspond to the current thread, then the release will be
|
|
|
|
// proxied to the specified target. Otherwise, the object will be added to
|
|
|
|
// the list of objects to be released when the cache service is unlocked.
|
|
|
|
static void ReleaseObject_Locked(nsISupports * object,
|
2012-07-30 18:20:58 +04:00
|
|
|
nsIEventTarget * target = nullptr);
|
2006-06-28 03:13:48 +04:00
|
|
|
|
2010-09-15 22:42:38 +04:00
|
|
|
static nsresult DispatchToCacheIOThread(nsIRunnable* event);
|
|
|
|
|
2011-01-21 00:41:10 +03:00
|
|
|
// Calling this method will block the calling thread until all pending
|
|
|
|
// events on the cache-io thread has finished. The calling thread must
|
|
|
|
// hold the cache-lock
|
|
|
|
static nsresult SyncWithCacheIOThread();
|
|
|
|
|
2010-09-15 22:42:38 +04:00
|
|
|
|
2001-03-21 01:42:03 +03:00
|
|
|
/**
|
2001-06-28 05:30:26 +04:00
|
|
|
* Methods called by nsCacheProfilePrefObserver
|
2001-03-21 01:42:03 +03:00
|
|
|
*/
|
2014-12-30 22:09:09 +03:00
|
|
|
static void OnProfileShutdown();
|
2001-08-17 04:01:01 +04:00
|
|
|
static void OnProfileChanged();
|
2001-06-28 05:30:26 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
static void SetDiskCacheEnabled(bool enabled);
|
2008-12-15 08:57:24 +03:00
|
|
|
// Sets the disk cache capacity (in kilobytes)
|
2012-08-22 19:56:38 +04:00
|
|
|
static void SetDiskCacheCapacity(int32_t capacity);
|
2011-09-13 23:24:01 +04:00
|
|
|
// Set max size for a disk-cache entry (in KB). -1 disables limit up to
|
|
|
|
// 1/8th of disk cache size
|
2012-08-22 19:56:38 +04:00
|
|
|
static void SetDiskCacheMaxEntrySize(int32_t maxSize);
|
2011-09-13 23:24:01 +04:00
|
|
|
// Set max size for a memory-cache entry (in kilobytes). -1 disables
|
|
|
|
// limit up to 90% of memory cache size
|
2012-08-22 19:56:38 +04:00
|
|
|
static void SetMemoryCacheMaxEntrySize(int32_t maxSize);
|
2001-06-28 05:30:26 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
static void SetOfflineCacheEnabled(bool enabled);
|
2008-12-15 08:57:24 +03:00
|
|
|
// Sets the offline cache capacity (in kilobytes)
|
2012-08-22 19:56:38 +04:00
|
|
|
static void SetOfflineCacheCapacity(int32_t capacity);
|
2007-03-14 04:52:07 +03:00
|
|
|
|
2005-10-09 23:58:06 +04:00
|
|
|
static void SetMemoryCache();
|
2001-03-21 01:42:03 +03:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
static void SetCacheCompressionLevel(int32_t level);
|
2011-12-17 14:30:29 +04:00
|
|
|
|
2011-10-19 16:35:57 +04:00
|
|
|
// Starts smart cache size computation if disk device is available
|
2011-12-24 07:21:17 +04:00
|
|
|
static nsresult SetDiskSmartSize();
|
2011-10-19 16:35:57 +04:00
|
|
|
|
2013-02-11 18:47:21 +04:00
|
|
|
static void MoveOrRemoveDiskCache(nsIFile *aOldCacheDir,
|
|
|
|
nsIFile *aNewCacheDir,
|
|
|
|
const char *aCacheSubdir);
|
|
|
|
|
2004-11-01 00:58:51 +03:00
|
|
|
nsresult Init();
|
|
|
|
void Shutdown();
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
|
2012-11-09 19:34:03 +04:00
|
|
|
static bool IsInitialized()
|
|
|
|
{
|
|
|
|
if (!gService) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return gService->mInitialized;
|
|
|
|
}
|
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
static void AssertOwnsLock()
|
|
|
|
{ gService->mLock.AssertCurrentThreadOwns(); }
|
|
|
|
|
2012-05-24 19:31:54 +04:00
|
|
|
static void LeavePrivateBrowsing();
|
2012-08-20 16:08:46 +04:00
|
|
|
bool IsDoomListEmpty();
|
2012-05-24 19:31:54 +04:00
|
|
|
|
|
|
|
typedef bool (*DoomCheckFn)(nsCacheEntry* entry);
|
|
|
|
|
2014-06-05 22:14:07 +04:00
|
|
|
// Accessors to the disabled functionality
|
|
|
|
nsresult CreateSessionInternal(const char * clientID,
|
|
|
|
nsCacheStoragePolicy storagePolicy,
|
|
|
|
bool streamBased,
|
|
|
|
nsICacheSession **result);
|
|
|
|
nsresult VisitEntriesInternal(nsICacheVisitor *visitor);
|
|
|
|
nsresult EvictEntriesInternal(nsCacheStoragePolicy storagePolicy);
|
|
|
|
|
2001-02-23 16:18:01 +03:00
|
|
|
private:
|
2006-06-28 03:13:48 +04:00
|
|
|
friend class nsCacheServiceAutoLock;
|
2008-08-27 03:09:02 +04:00
|
|
|
friend class nsOfflineCacheDevice;
|
2010-08-24 05:06:23 +04:00
|
|
|
friend class nsProcessRequestEvent;
|
2010-09-15 22:42:40 +04:00
|
|
|
friend class nsSetSmartSizeEvent;
|
2011-01-21 00:41:10 +03:00
|
|
|
friend class nsBlockOnCacheThreadEvent;
|
2012-01-06 19:19:10 +04:00
|
|
|
friend class nsSetDiskSmartSizeCallback;
|
2012-03-23 02:54:20 +04:00
|
|
|
friend class nsDoomEvent;
|
2012-08-08 02:46:33 +04:00
|
|
|
friend class nsDisableOldMaxSmartSizePrefEvent;
|
2012-08-20 16:08:46 +04:00
|
|
|
friend class nsDiskCacheMap;
|
2012-09-18 01:31:46 +04:00
|
|
|
friend class nsAsyncDoomEvent;
|
|
|
|
friend class nsCacheEntryDescriptor;
|
2001-02-23 16:18:01 +03:00
|
|
|
|
2001-02-28 07:10:43 +03:00
|
|
|
/**
|
|
|
|
* Internal Methods
|
|
|
|
*/
|
2001-03-24 00:06:39 +03:00
|
|
|
|
2015-08-05 03:19:09 +03:00
|
|
|
static void Lock();
|
2012-06-30 03:20:34 +04:00
|
|
|
static void Lock(::mozilla::Telemetry::ID mainThreadLockerID);
|
2006-06-28 03:13:48 +04:00
|
|
|
static void Unlock();
|
2013-05-12 18:01:13 +04:00
|
|
|
void LockAcquired();
|
|
|
|
void LockReleased();
|
2006-06-28 03:13:48 +04:00
|
|
|
|
2001-03-24 00:06:39 +03:00
|
|
|
nsresult CreateDiskDevice();
|
2007-03-14 04:52:07 +03:00
|
|
|
nsresult CreateOfflineDevice();
|
2012-06-06 06:08:30 +04:00
|
|
|
nsresult CreateCustomOfflineDevice(nsIFile *aProfileDir,
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t aQuota,
|
2012-06-04 18:12:24 +04:00
|
|
|
nsOfflineCacheDevice **aDevice);
|
2001-03-29 09:54:58 +04:00
|
|
|
nsresult CreateMemoryDevice();
|
2001-03-24 00:06:39 +03:00
|
|
|
|
2012-07-11 22:20:17 +04:00
|
|
|
nsresult RemoveCustomOfflineDevice(nsOfflineCacheDevice *aDevice);
|
|
|
|
|
2001-03-05 13:45:33 +03:00
|
|
|
nsresult CreateRequest(nsCacheSession * session,
|
2005-01-13 06:25:28 +03:00
|
|
|
const nsACString & clientKey,
|
2001-03-05 13:45:33 +03:00
|
|
|
nsCacheAccessMode accessRequested,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool blockingMode,
|
2001-03-05 13:45:33 +03:00
|
|
|
nsICacheListener * listener,
|
|
|
|
nsCacheRequest ** request);
|
|
|
|
|
2010-10-26 02:47:40 +04:00
|
|
|
nsresult DoomEntry_Internal(nsCacheEntry * entry,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool doProcessPendingRequests);
|
2002-08-07 05:13:29 +04:00
|
|
|
|
|
|
|
nsresult EvictEntriesForClient(const char * clientID,
|
|
|
|
nsCacheStoragePolicy storagePolicy);
|
|
|
|
|
2006-06-28 03:13:48 +04:00
|
|
|
// Notifies request listener asynchronously on the request's thread, and
|
|
|
|
// releases the descriptor on the request's thread. If this method fails,
|
|
|
|
// the descriptor is not released.
|
2001-03-05 13:45:33 +03:00
|
|
|
nsresult NotifyListener(nsCacheRequest * request,
|
|
|
|
nsICacheEntryDescriptor * descriptor,
|
|
|
|
nsCacheAccessMode accessGranted,
|
|
|
|
nsresult error);
|
|
|
|
|
2010-10-26 02:47:40 +04:00
|
|
|
nsresult ActivateEntry(nsCacheRequest * request,
|
|
|
|
nsCacheEntry ** entry,
|
|
|
|
nsCacheEntry ** doomedEntry);
|
2001-03-05 13:45:33 +03:00
|
|
|
|
|
|
|
nsCacheDevice * EnsureEntryHasDevice(nsCacheEntry * entry);
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
nsCacheEntry * SearchCacheDevices(nsCString * key, nsCacheStoragePolicy policy, bool *collision);
|
2001-02-26 17:55:58 +03:00
|
|
|
|
2001-03-05 13:45:33 +03:00
|
|
|
void DeactivateEntry(nsCacheEntry * entry);
|
2001-02-23 16:18:01 +03:00
|
|
|
|
2001-05-09 07:36:00 +04:00
|
|
|
nsresult ProcessRequest(nsCacheRequest * request,
|
2011-09-29 10:19:26 +04:00
|
|
|
bool calledFromOpenCacheEntry,
|
2001-03-05 13:45:33 +03:00
|
|
|
nsICacheEntryDescriptor ** result);
|
2001-02-24 04:02:37 +03:00
|
|
|
|
2001-03-05 13:45:33 +03:00
|
|
|
nsresult ProcessPendingRequests(nsCacheEntry * entry);
|
2001-02-24 04:02:37 +03:00
|
|
|
|
2001-03-13 18:43:17 +03:00
|
|
|
void ClearDoomList(void);
|
2012-05-24 19:31:54 +04:00
|
|
|
void DoomActiveEntries(DoomCheckFn check);
|
2012-12-14 21:03:01 +04:00
|
|
|
void CloseAllStreams();
|
2013-06-18 09:44:00 +04:00
|
|
|
void FireClearNetworkCacheStoredAnywhereNotification();
|
2001-03-13 18:43:17 +03:00
|
|
|
|
2012-06-04 18:12:24 +04:00
|
|
|
static
|
|
|
|
PLDHashOperator ShutdownCustomCacheDeviceEnum(const nsAString& aProfileDir,
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsOfflineCacheDevice>& aDevice,
|
2012-06-04 18:12:24 +04:00
|
|
|
void* aUserArg);
|
2001-04-04 07:30:45 +04:00
|
|
|
void LogCacheStatistics();
|
2001-05-08 04:13:21 +04:00
|
|
|
|
2012-01-06 19:19:10 +04:00
|
|
|
nsresult SetDiskSmartSize_Locked();
|
2011-10-19 16:35:57 +04:00
|
|
|
|
2001-02-23 16:18:01 +03:00
|
|
|
/**
|
|
|
|
* Data Members
|
|
|
|
*/
|
|
|
|
|
2001-06-28 05:30:26 +04:00
|
|
|
static nsCacheService * gService; // there can be only one...
|
2013-01-15 04:26:47 +04:00
|
|
|
|
2013-04-10 04:21:07 +04:00
|
|
|
nsCOMPtr<mozIStorageService> mStorageService;
|
|
|
|
|
2001-06-28 05:30:26 +04:00
|
|
|
nsCacheProfilePrefObserver * mObserver;
|
2013-01-15 04:26:47 +04:00
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
mozilla::Mutex mLock;
|
|
|
|
mozilla::CondVar mCondVar;
|
2006-06-28 03:13:48 +04:00
|
|
|
|
2013-05-12 18:01:13 +04:00
|
|
|
mozilla::Mutex mTimeStampLock;
|
|
|
|
mozilla::TimeStamp mLockAcquiredTimeStamp;
|
|
|
|
|
2010-08-24 05:06:23 +04:00
|
|
|
nsCOMPtr<nsIThread> mCacheIOThread;
|
|
|
|
|
2006-06-28 03:13:48 +04:00
|
|
|
nsTArray<nsISupports*> mDoomedObjects;
|
2012-01-06 19:19:10 +04:00
|
|
|
nsCOMPtr<nsITimer> mSmartSizeTimer;
|
2013-01-15 04:26:47 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mInitialized;
|
2012-04-12 20:24:57 +04:00
|
|
|
bool mClearingEntries;
|
2013-01-15 04:26:47 +04:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mEnableMemoryDevice;
|
|
|
|
bool mEnableDiskDevice;
|
|
|
|
bool mEnableOfflineDevice;
|
2001-03-29 09:54:58 +04:00
|
|
|
|
2001-06-28 05:30:26 +04:00
|
|
|
nsMemoryCacheDevice * mMemoryDevice;
|
|
|
|
nsDiskCacheDevice * mDiskDevice;
|
2007-05-15 00:09:20 +04:00
|
|
|
nsOfflineCacheDevice * mOfflineDevice;
|
2001-02-27 08:35:53 +03:00
|
|
|
|
2012-06-04 18:12:24 +04:00
|
|
|
nsRefPtrHashtable<nsStringHashKey, nsOfflineCacheDevice> mCustomOfflineDevices;
|
|
|
|
|
2001-06-28 05:30:26 +04:00
|
|
|
nsCacheEntryHashTable mActiveEntries;
|
|
|
|
PRCList mDoomedEntries;
|
2001-03-02 04:51:41 +03:00
|
|
|
|
2001-03-13 18:43:17 +03:00
|
|
|
// stats
|
2013-01-15 04:26:47 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mTotalEntries;
|
|
|
|
uint32_t mCacheHits;
|
|
|
|
uint32_t mCacheMisses;
|
|
|
|
uint32_t mMaxKeyLength;
|
|
|
|
uint32_t mMaxDataSize;
|
|
|
|
uint32_t mMaxMetaSize;
|
2001-03-13 18:43:17 +03:00
|
|
|
|
2001-03-02 04:51:41 +03:00
|
|
|
// Unexpected error totals
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mDeactivateFailures;
|
|
|
|
uint32_t mDeactivatedUnboundEntries;
|
2001-02-23 16:18:01 +03:00
|
|
|
};
|
|
|
|
|
2006-06-28 03:13:48 +04:00
|
|
|
/******************************************************************************
|
|
|
|
* nsCacheServiceAutoLock
|
|
|
|
******************************************************************************/
|
|
|
|
|
2012-06-30 03:20:34 +04:00
|
|
|
#define LOCK_TELEM(x) \
|
|
|
|
(::mozilla::Telemetry::CACHE_SERVICE_LOCK_WAIT_MAINTHREAD_##x)
|
|
|
|
|
2006-06-28 03:13:48 +04:00
|
|
|
// Instantiate this class to acquire the cache service lock for a particular
|
|
|
|
// execution scope.
|
|
|
|
class nsCacheServiceAutoLock {
|
|
|
|
public:
|
2015-08-05 03:19:09 +03:00
|
|
|
nsCacheServiceAutoLock() {
|
|
|
|
nsCacheService::Lock();
|
|
|
|
}
|
2014-08-05 17:20:24 +04:00
|
|
|
explicit nsCacheServiceAutoLock(mozilla::Telemetry::ID mainThreadLockerID) {
|
2012-06-30 03:20:34 +04:00
|
|
|
nsCacheService::Lock(mainThreadLockerID);
|
2006-06-28 03:13:48 +04:00
|
|
|
}
|
|
|
|
~nsCacheServiceAutoLock() {
|
|
|
|
nsCacheService::Unlock();
|
|
|
|
}
|
|
|
|
};
|
2001-02-23 16:18:01 +03:00
|
|
|
|
|
|
|
#endif // _nsCacheService_h_
|