📄 transactionalramdirectory.h
字号:
/*------------------------------------------------------------------------------
* Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team
*
* Distributable under the terms of either the Apache License (Version 2.0) or
* the GNU Lesser General Public License, as specified in the COPYING file.
------------------------------------------------------------------------------*/
#ifndef _lucene_store_TransactionalRAMDirectory_
#define _lucene_store_TransactionalRAMDirectory_
#include "RAMDirectory.h"
#include "CLucene/util/VoidList.h"
CL_NS_DEF(store)
/***
This transactional in-memory Directory was created to address a specific
situation, and was deliberately pared down to the simplest viable
implementation. For the sake of simplicity, this implementation imposes
restrictions on what operations can be performed in the directory while a
transaction is in progress (documented in TransactionalRAMDirectory.cpp).
Because the Lucene Directory interface itself is rather simplistic, it
would not be difficult to expand TransactionalRAMDirectory so that it
provided fully general transactionality. However, the developer of this
original implementation was of the opinion that the last thing CLucene
needs is gratuitous features that exceed their required complexity and
haven't been rigorously tested.
*/
class TransactionalRAMDirectory: public RAMDirectory {
private:
typedef CL_NS(util)::CLSet<const char*, void*, CL_NS(util)::Compare::Char> FilenameSet;
FilenameSet filesToRemoveOnAbort;
typedef CL_NS(util)::CLSet<const char*, RAMFile*, CL_NS(util)::Compare::Char,CL_NS(util)::Deletor::acArray,CL_NS(util)::Deletor::Object<RAMFile> > TransFileMap;
TransFileMap filesToRestoreOnAbort;
bool transOpen;
void transResolved();
bool archiveOrigFileIfNecessary(const char* name);
void unarchiveOrigFile(const char* name);
public:
TransactionalRAMDirectory();
virtual ~TransactionalRAMDirectory();
bool transIsOpen() const;
void transStart();
void transCommit();
void transAbort();
// Constrained operations:
bool deleteFile(const char* name);
void renameFile(const char* from, const char* to);
IndexOutput* createOutput(const char* name);
void close();
};
CL_NS_END
#endif // ndef _lucene_store_TransactionalRAMDirectory_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -