2001-02-23 13:18:01 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-02-23 13:18:01 +00:00
|
|
|
|
|
|
|
#ifndef _nsDiskCacheDevice_h_
|
|
|
|
#define _nsDiskCacheDevice_h_
|
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
#include "mozilla/MemoryReporting.h"
|
2001-02-23 13:18:01 +00:00
|
|
|
#include "nsCacheDevice.h"
|
2001-05-18 23:24:09 +00:00
|
|
|
#include "nsDiskCacheBinding.h"
|
|
|
|
#include "nsDiskCacheBlockFile.h"
|
2001-03-20 22:42:03 +00:00
|
|
|
#include "nsDiskCacheEntry.h"
|
|
|
|
|
2012-06-06 02:08:30 +00:00
|
|
|
#include "nsIFile.h"
|
2001-03-14 03:35:09 +00:00
|
|
|
#include "nsIObserver.h"
|
2003-03-10 23:19:05 +00:00
|
|
|
#include "nsCOMArray.h"
|
2001-02-23 13:18:01 +00:00
|
|
|
|
2001-03-29 05:54:58 +00:00
|
|
|
class nsDiskCacheMap;
|
2001-03-11 00:19:09 +00:00
|
|
|
|
2002-08-07 01:13:29 +00:00
|
|
|
|
2001-03-09 19:01:15 +00:00
|
|
|
class nsDiskCacheDevice : public nsCacheDevice {
|
2001-02-23 13:18:01 +00:00
|
|
|
public:
|
|
|
|
nsDiskCacheDevice();
|
|
|
|
virtual ~nsDiskCacheDevice();
|
|
|
|
|
2001-03-29 05:54:58 +00:00
|
|
|
virtual nsresult Init();
|
|
|
|
virtual nsresult Shutdown();
|
2001-02-23 13:18:01 +00:00
|
|
|
|
2001-03-03 03:41:38 +00:00
|
|
|
virtual const char * GetDeviceID(void);
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual nsCacheEntry * FindEntry(nsCString * key, bool *collision);
|
2001-03-03 03:41:38 +00:00
|
|
|
virtual nsresult DeactivateEntry(nsCacheEntry * entry);
|
|
|
|
virtual nsresult BindEntry(nsCacheEntry * entry);
|
2001-03-08 05:37:00 +00:00
|
|
|
virtual void DoomEntry( nsCacheEntry * entry );
|
2001-02-23 13:18:01 +00:00
|
|
|
|
2003-01-18 02:15:14 +00:00
|
|
|
virtual nsresult OpenInputStreamForEntry(nsCacheEntry * entry,
|
|
|
|
nsCacheAccessMode mode,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t offset,
|
2003-01-18 02:15:14 +00:00
|
|
|
nsIInputStream ** result);
|
|
|
|
|
|
|
|
virtual nsresult OpenOutputStreamForEntry(nsCacheEntry * entry,
|
|
|
|
nsCacheAccessMode mode,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t offset,
|
2003-01-18 02:15:14 +00:00
|
|
|
nsIOutputStream ** result);
|
2001-02-24 01:02:37 +00:00
|
|
|
|
2001-03-08 21:22:18 +00:00
|
|
|
virtual nsresult GetFileForEntry(nsCacheEntry * entry,
|
|
|
|
nsIFile ** result);
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
virtual nsresult OnDataSizeChange(nsCacheEntry * entry, int32_t deltaSize);
|
2001-03-08 21:00:02 +00:00
|
|
|
|
|
|
|
virtual nsresult Visit(nsICacheVisitor * visitor);
|
2001-02-28 04:00:08 +00:00
|
|
|
|
2001-03-29 05:54:58 +00:00
|
|
|
virtual nsresult EvictEntries(const char * clientID);
|
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
bool EntryIsTooBig(int64_t entrySize);
|
2010-09-07 22:39:28 +00:00
|
|
|
|
2013-06-23 12:03:39 +00:00
|
|
|
size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf);
|
2012-11-05 18:22:33 +00:00
|
|
|
|
2001-06-28 01:30:26 +00:00
|
|
|
/**
|
|
|
|
* Preference accessors
|
|
|
|
*/
|
2012-06-06 02:08:30 +00:00
|
|
|
void SetCacheParentDirectory(nsIFile * parentDir);
|
2012-08-22 15:56:38 +00:00
|
|
|
void SetCapacity(uint32_t capacity);
|
|
|
|
void SetMaxEntrySize(int32_t maxSizeInKilobytes);
|
2001-06-28 01:30:26 +00:00
|
|
|
|
2001-03-03 03:41:38 +00:00
|
|
|
/* private: */
|
2001-06-28 01:30:26 +00:00
|
|
|
|
2012-06-06 02:08:30 +00:00
|
|
|
void getCacheDirectory(nsIFile ** result);
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t getCacheCapacity();
|
|
|
|
uint32_t getCacheSize();
|
|
|
|
uint32_t getEntryCount();
|
2001-03-20 22:42:03 +00:00
|
|
|
|
2006-02-25 02:58:51 +00:00
|
|
|
nsDiskCacheMap * CacheMap() { return &mCacheMap; }
|
2002-08-07 01:13:29 +00:00
|
|
|
|
2001-05-18 23:24:09 +00:00
|
|
|
private:
|
2011-04-17 17:31:15 +00:00
|
|
|
friend class nsDiskCacheDeviceDeactivateEntryEvent;
|
2012-01-06 15:19:10 +00:00
|
|
|
friend class nsEvictDiskCacheEntriesEvent;
|
2012-08-24 02:23:10 +00:00
|
|
|
friend class nsDiskCacheMap;
|
2001-05-18 23:24:09 +00:00
|
|
|
/**
|
|
|
|
* Private methods
|
|
|
|
*/
|
2003-03-10 23:19:05 +00:00
|
|
|
|
2011-04-17 17:31:15 +00:00
|
|
|
inline bool IsValidBinding(nsDiskCacheBinding *binding)
|
|
|
|
{
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ASSERTION(binding, " binding == nullptr");
|
|
|
|
NS_ASSERTION(binding->mDeactivateEvent == nullptr,
|
2011-04-17 17:31:15 +00:00
|
|
|
" entry in process of deactivation");
|
|
|
|
return (binding && !binding->mDeactivateEvent);
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool Initialized() { return mInitialized; }
|
2006-02-25 02:58:51 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
nsresult Shutdown_Private(bool flush);
|
2011-04-17 17:31:15 +00:00
|
|
|
nsresult DeactivateEntry_Private(nsCacheEntry * entry,
|
|
|
|
nsDiskCacheBinding * binding);
|
2003-03-10 23:19:05 +00:00
|
|
|
|
2006-02-25 02:58:51 +00:00
|
|
|
nsresult OpenDiskCache();
|
|
|
|
nsresult ClearDiskCache();
|
2003-03-10 23:19:05 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsresult EvictDiskCacheEntries(uint32_t targetCapacity);
|
2001-03-29 05:54:58 +00:00
|
|
|
|
2001-05-18 23:24:09 +00:00
|
|
|
/**
|
|
|
|
* Member variables
|
|
|
|
*/
|
2012-06-06 02:08:30 +00:00
|
|
|
nsCOMPtr<nsIFile> mCacheDirectory;
|
2001-05-18 23:24:09 +00:00
|
|
|
nsDiskCacheBindery mBindery;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mCacheCapacity; // Unit is KiB's
|
|
|
|
int32_t mMaxEntrySize; // Unit is bytes internally
|
2006-02-28 22:18:21 +00:00
|
|
|
// XXX need soft/hard limits, currentTotal
|
2006-02-25 02:58:51 +00:00
|
|
|
nsDiskCacheMap mCacheMap;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mInitialized;
|
2012-04-12 16:27:38 +00:00
|
|
|
bool mClearingDiskCache;
|
2001-02-23 13:18:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _nsDiskCacheDevice_h_
|