2001-02-23 13:18:01 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
|
|
|
* 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 nsMemoryCacheDevice.h, released February 20, 2001.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
* Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 2001 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Gordon Sheridan, 20-February-2001
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _nsDiskCacheDevice_h_
|
|
|
|
#define _nsDiskCacheDevice_h_
|
|
|
|
|
|
|
|
#include "nsCacheDevice.h"
|
2001-02-28 04:00:08 +00:00
|
|
|
#include "nsILocalFile.h"
|
|
|
|
#include "nsCacheEntry.h"
|
2001-02-23 13:18:01 +00:00
|
|
|
|
|
|
|
class nsDiskCacheDevice : public nsCacheDevice
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsDiskCacheDevice();
|
|
|
|
virtual ~nsDiskCacheDevice();
|
|
|
|
|
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
static nsresult Create(nsCacheDevice **result);
|
|
|
|
|
2001-02-27 05:35:53 +00:00
|
|
|
virtual const char * GetDeviceID(void);
|
2001-02-28 04:00:08 +00:00
|
|
|
virtual nsCacheEntry * FindEntry(nsCString * key);
|
|
|
|
virtual nsresult DeactivateEntry(nsCacheEntry * entry);
|
|
|
|
virtual nsresult BindEntry(nsCacheEntry * entry);
|
2001-02-28 03:42:33 +00:00
|
|
|
virtual nsresult DoomEntry( nsCacheEntry * entry );
|
2001-02-23 13:18:01 +00:00
|
|
|
|
2001-02-28 04:00:08 +00:00
|
|
|
virtual nsresult GetTransportForEntry(nsCacheEntry * entry,
|
2001-02-28 10:04:27 +00:00
|
|
|
nsCacheAccessMode mode,
|
2001-02-28 04:00:08 +00:00
|
|
|
nsITransport ** result);
|
2001-02-24 01:02:37 +00:00
|
|
|
|
2001-03-01 05:01:43 +00:00
|
|
|
virtual nsresult OnDataSizeChange(nsCacheEntry * entry, PRInt32 deltaSize);
|
2001-02-28 04:00:08 +00:00
|
|
|
|
|
|
|
void setCacheDirectory(nsILocalFile* directory);
|
2001-02-24 01:02:37 +00:00
|
|
|
|
2001-02-23 13:18:01 +00:00
|
|
|
private:
|
2001-03-02 04:57:09 +00:00
|
|
|
nsresult getFileForKey(const char* key, PRBool meta, nsIFile**);
|
2001-03-01 17:31:06 +00:00
|
|
|
static nsresult getTransportForFile(nsIFile* file, nsCacheAccessMode mode, nsITransport ** result);
|
|
|
|
|
|
|
|
nsresult scanEntries(void);
|
2001-03-02 04:57:09 +00:00
|
|
|
nsresult updateDiskCacheEntry(nsCacheEntry* entry);
|
|
|
|
nsresult readDiskCacheEntry(nsCString * key, nsCacheEntry ** entry);
|
2001-02-23 13:18:01 +00:00
|
|
|
|
2001-02-28 04:00:08 +00:00
|
|
|
private:
|
|
|
|
nsCOMPtr<nsILocalFile> mCacheDirectory;
|
2001-03-02 04:57:09 +00:00
|
|
|
nsCacheEntryHashTable mBoundEntries;
|
2001-03-01 17:31:06 +00:00
|
|
|
PRBool mScannedEntries;
|
2001-03-01 08:29:43 +00:00
|
|
|
PRUint64 mTotalCachedDataSize;
|
2001-02-23 13:18:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _nsDiskCacheDevice_h_
|