mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
3.7 KiB
138 lines
3.7 KiB
/*++
|
|
|
|
Copyright (C) 2000-2001 Microsoft Corporation
|
|
|
|
--*/
|
|
|
|
#ifndef __WMI_A51_FILECACHE_H_
|
|
#define __WMI_A51_FILECACHE_H_
|
|
|
|
#include "shortstg.h"
|
|
#include <set>
|
|
#include <string>
|
|
|
|
extern DWORD g_ShutDownFlags;
|
|
|
|
|
|
#include "objheap.h"
|
|
#include "index.h"
|
|
|
|
class CFileCache
|
|
{
|
|
protected:
|
|
long m_lRef;
|
|
BOOL m_bInit;
|
|
CCritSec m_cs;
|
|
|
|
//CUniquePointerArray<CShortFileStagingFile> m_apStages;
|
|
//CShortFileStagingFile* m_pMainStage;
|
|
|
|
CAbstractFileSource m_AbstractSource;
|
|
|
|
//CFileHeap m_BaseObjHeap;
|
|
//CBtrIndex m_Index;
|
|
|
|
CObjectHeap m_ObjectHeap;
|
|
|
|
|
|
|
|
DWORD m_dwBaseNameLen;
|
|
WCHAR m_wszBaseName[MAX_PATH+1]; // be debugger friendly, live it last
|
|
|
|
public:
|
|
class CFileEnumerator
|
|
{
|
|
protected:
|
|
CFileCache* m_pCache;
|
|
WCHAR m_wszPrefix[MAX_PATH+1];
|
|
DWORD m_dwPrefixDirLen;
|
|
int m_nCurrentStage;
|
|
bool m_bUseFiles;
|
|
//void* m_pStageEnumerator;
|
|
HANDLE m_hFileEnum;
|
|
std::set<WString, WSiless> m_setSent;
|
|
DWORD m_dwBaseNameLen;
|
|
|
|
public:
|
|
CFileEnumerator(CFileCache* pCache, DWORD dwBaseNameLen)
|
|
: m_pCache(pCache), m_nCurrentStage(-1), //m_pStageEnumerator(NULL),
|
|
m_hFileEnum(NULL), m_dwBaseNameLen(dwBaseNameLen)
|
|
{}
|
|
~CFileEnumerator();
|
|
|
|
long GetFirst(LPCWSTR wszPrefix, WIN32_FIND_DATAW* pfd,
|
|
bool bNeedToContinue);
|
|
long GetFirstFile(WIN32_FIND_DATAW* pfd, bool bNeedToContinue);
|
|
void ComputeCanonicalName(WIN32_FIND_DATAW* pfd, wchar_t *wszFilePath);
|
|
long GetNext(WIN32_FIND_DATAW* pfd, bool bNeedToContinue);
|
|
long GetRawNext(WIN32_FIND_DATAW* pfd, bool bNeedToContinue);
|
|
};
|
|
friend CFileEnumerator;
|
|
|
|
class CFindCloseMe
|
|
{
|
|
protected:
|
|
CFileCache* m_pCache;
|
|
void* m_hSearch;
|
|
public:
|
|
CFindCloseMe(CFileCache* pCache, void* hSearch)
|
|
: m_pCache(pCache), m_hSearch(hSearch){}
|
|
|
|
~CFindCloseMe()
|
|
{
|
|
if(m_pCache && m_hSearch) m_pCache->FindClose(m_hSearch);
|
|
}
|
|
};
|
|
|
|
protected:
|
|
//int GetNumStages() {return m_apStages.GetSize();}
|
|
//INTERNAL CShortFileStagingFile* GetStageFile(int nIndex) {return m_apStages[nIndex];}
|
|
//INTERNAL CShortFileStagingFile* GetMainStagingFile() {return m_pMainStage;}
|
|
|
|
public:
|
|
CFileCache();
|
|
~CFileCache();
|
|
private:
|
|
void Clear(DWORD dwShutDownFlags);
|
|
public:
|
|
bool IsFullyFlushed();
|
|
|
|
long Initialize(LPCWSTR wszBaseName);
|
|
long Uninitialize(DWORD dwShutDownFlags);
|
|
|
|
private:
|
|
long InnerInitialize(LPCWSTR wszBaseName);
|
|
long RepositoryExists(LPCWSTR wszBaseName);
|
|
public:
|
|
long WriteFile(LPCWSTR wszFileName, DWORD dwLen, BYTE* pBuffer);
|
|
long ReadFile(LPCWSTR wszFileName, DWORD* pdwLen, BYTE** ppBuffer,
|
|
bool bMustBeThere = false);
|
|
long DeleteFile(LPCWSTR wszFileName);
|
|
long RemoveDirectory(LPCWSTR wszFileName, bool bMustSucceed = true);
|
|
|
|
long FindFirst(LPCWSTR wszFilePrefix, WIN32_FIND_DATAW* pfd,
|
|
void** ppHandle);
|
|
long FindNext(void* pHandle, WIN32_FIND_DATAW* pfd);
|
|
void FindClose(void* pHandle);
|
|
|
|
long FindFirstIdx(LPCWSTR wszFilePrefix, WIN32_FIND_DATAW* pfd,
|
|
void** ppHandle);
|
|
long FindNextIdx(void* pHandle, WIN32_FIND_DATAW* pfd);
|
|
void FindCloseIdx(void* pHandle);
|
|
|
|
long BeginTransaction();
|
|
long CommitTransaction();
|
|
long AbortTransaction();
|
|
|
|
CCritSec* GetLock() {return &m_cs;}
|
|
|
|
long AddRef() {return InterlockedIncrement(&m_lRef);}
|
|
long Release() {long lRet = InterlockedDecrement(&m_lRef); if (!lRet) delete this;return lRet;}
|
|
|
|
bool GetFlushFailure(long* plFlushStatus);
|
|
|
|
CObjectHeap* GetObjectHeap() {return &m_ObjectHeap;}
|
|
|
|
};
|
|
|
|
#endif
|