2001-02-23 16:18:01 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-05-21 15:12:37 +04: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 16:18:01 +03:00
|
|
|
|
|
|
|
#ifndef _nsDiskCacheDevice_h_
|
|
|
|
#define _nsDiskCacheDevice_h_
|
|
|
|
|
|
|
|
#include "nsCacheDevice.h"
|
2001-05-19 03:24:09 +04:00
|
|
|
#include "nsDiskCacheBinding.h"
|
|
|
|
#include "nsDiskCacheBlockFile.h"
|
2001-03-21 01:42:03 +03:00
|
|
|
#include "nsDiskCacheEntry.h"
|
|
|
|
|
2001-02-28 07:00:08 +03:00
|
|
|
#include "nsILocalFile.h"
|
2001-03-14 06:35:09 +03:00
|
|
|
#include "nsIObserver.h"
|
2003-03-11 02:19:05 +03:00
|
|
|
#include "nsCOMArray.h"
|
2001-02-23 16:18:01 +03:00
|
|
|
|
2001-03-29 09:54:58 +04:00
|
|
|
class nsDiskCacheMap;
|
2001-03-11 03:19:09 +03:00
|
|
|
|
2002-08-07 05:13:29 +04:00
|
|
|
|
2001-03-09 22:01:15 +03:00
|
|
|
class nsDiskCacheDevice : public nsCacheDevice {
|
2001-02-23 16:18:01 +03:00
|
|
|
public:
|
|
|
|
nsDiskCacheDevice();
|
|
|
|
virtual ~nsDiskCacheDevice();
|
|
|
|
|
2001-03-29 09:54:58 +04:00
|
|
|
virtual nsresult Init();
|
|
|
|
virtual nsresult Shutdown();
|
2001-02-23 16:18:01 +03:00
|
|
|
|
2001-03-03 06:41:38 +03:00
|
|
|
virtual const char * GetDeviceID(void);
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual nsCacheEntry * FindEntry(nsCString * key, bool *collision);
|
2001-03-03 06:41:38 +03:00
|
|
|
virtual nsresult DeactivateEntry(nsCacheEntry * entry);
|
|
|
|
virtual nsresult BindEntry(nsCacheEntry * entry);
|
2001-03-08 08:37:00 +03:00
|
|
|
virtual void DoomEntry( nsCacheEntry * entry );
|
2001-02-23 16:18:01 +03:00
|
|
|
|
2003-01-18 05:15:14 +03:00
|
|
|
virtual nsresult OpenInputStreamForEntry(nsCacheEntry * entry,
|
|
|
|
nsCacheAccessMode mode,
|
|
|
|
PRUint32 offset,
|
|
|
|
nsIInputStream ** result);
|
|
|
|
|
|
|
|
virtual nsresult OpenOutputStreamForEntry(nsCacheEntry * entry,
|
|
|
|
nsCacheAccessMode mode,
|
|
|
|
PRUint32 offset,
|
|
|
|
nsIOutputStream ** result);
|
2001-02-24 04:02:37 +03:00
|
|
|
|
2001-03-09 00:22:18 +03:00
|
|
|
virtual nsresult GetFileForEntry(nsCacheEntry * entry,
|
|
|
|
nsIFile ** result);
|
|
|
|
|
2001-03-03 06:41:38 +03:00
|
|
|
virtual nsresult OnDataSizeChange(nsCacheEntry * entry, PRInt32 deltaSize);
|
2001-03-09 00:00:02 +03:00
|
|
|
|
|
|
|
virtual nsresult Visit(nsICacheVisitor * visitor);
|
2001-02-28 07:00:08 +03:00
|
|
|
|
2001-03-29 09:54:58 +04:00
|
|
|
virtual nsresult EvictEntries(const char * clientID);
|
|
|
|
|
2010-09-08 02:39:28 +04:00
|
|
|
bool EntryIsTooBig(PRInt64 entrySize);
|
|
|
|
|
2001-06-28 05:30:26 +04:00
|
|
|
/**
|
|
|
|
* Preference accessors
|
|
|
|
*/
|
|
|
|
void SetCacheParentDirectory(nsILocalFile * parentDir);
|
|
|
|
void SetCapacity(PRUint32 capacity);
|
2011-06-27 16:21:15 +04:00
|
|
|
void SetMaxEntrySize(PRInt32 maxSizeInKilobytes);
|
2001-06-28 05:30:26 +04:00
|
|
|
|
2001-03-03 06:41:38 +03:00
|
|
|
/* private: */
|
2001-06-28 05:30:26 +04:00
|
|
|
|
2001-05-19 03:24:09 +04:00
|
|
|
void getCacheDirectory(nsILocalFile ** result);
|
2001-03-09 22:01:15 +03:00
|
|
|
PRUint32 getCacheCapacity();
|
|
|
|
PRUint32 getCacheSize();
|
2001-03-29 09:54:58 +04:00
|
|
|
PRUint32 getEntryCount();
|
2001-03-21 01:42:03 +03:00
|
|
|
|
2006-02-25 05:58:51 +03:00
|
|
|
nsDiskCacheMap * CacheMap() { return &mCacheMap; }
|
2002-08-07 05:13:29 +04:00
|
|
|
|
2001-05-19 03:24:09 +04:00
|
|
|
private:
|
2011-04-17 21:31:15 +04:00
|
|
|
friend class nsDiskCacheDeviceDeactivateEntryEvent;
|
2012-01-06 19:19:10 +04:00
|
|
|
friend class nsEvictDiskCacheEntriesEvent;
|
2001-05-19 03:24:09 +04:00
|
|
|
/**
|
|
|
|
* Private methods
|
|
|
|
*/
|
2003-03-11 02:19:05 +03:00
|
|
|
|
2011-04-17 21:31:15 +04:00
|
|
|
inline bool IsValidBinding(nsDiskCacheBinding *binding)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(binding, " binding == nsnull");
|
|
|
|
NS_ASSERTION(binding->mDeactivateEvent == nsnull,
|
|
|
|
" entry in process of deactivation");
|
|
|
|
return (binding && !binding->mDeactivateEvent);
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool Initialized() { return mInitialized; }
|
2006-02-25 05:58:51 +03:00
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
nsresult Shutdown_Private(bool flush);
|
2011-04-17 21:31:15 +04:00
|
|
|
nsresult DeactivateEntry_Private(nsCacheEntry * entry,
|
|
|
|
nsDiskCacheBinding * binding);
|
2003-03-11 02:19:05 +03:00
|
|
|
|
2006-02-25 05:58:51 +03:00
|
|
|
nsresult OpenDiskCache();
|
|
|
|
nsresult ClearDiskCache();
|
2003-03-11 02:19:05 +03:00
|
|
|
|
2006-03-01 01:18:21 +03:00
|
|
|
nsresult EvictDiskCacheEntries(PRUint32 targetCapacity);
|
2001-03-29 09:54:58 +04:00
|
|
|
|
2001-05-19 03:24:09 +04:00
|
|
|
/**
|
|
|
|
* Member variables
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsILocalFile> mCacheDirectory;
|
|
|
|
nsDiskCacheBindery mBindery;
|
2006-03-01 01:18:21 +03:00
|
|
|
PRUint32 mCacheCapacity; // Unit is KiB's
|
2011-06-27 16:21:15 +04:00
|
|
|
PRInt32 mMaxEntrySize; // Unit is bytes internally
|
2006-03-01 01:18:21 +03:00
|
|
|
// XXX need soft/hard limits, currentTotal
|
2006-02-25 05:58:51 +03:00
|
|
|
nsDiskCacheMap mCacheMap;
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mInitialized;
|
2012-04-12 20:27:38 +04:00
|
|
|
bool mClearingDiskCache;
|
2001-02-23 16:18:01 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _nsDiskCacheDevice_h_
|