Feathercoin  0.5.0
P2P Digital Currency
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros
Public Member Functions | Private Attributes | List of all members
CLevelDB Class Reference

#include <leveldb.h>

Inheritance diagram for CLevelDB:
Inheritance graph
[legend]
Collaboration diagram for CLevelDB:
Collaboration graph
[legend]

Public Member Functions

 CLevelDB (const boost::filesystem::path &path, size_t nCacheSize, bool fMemory=false, bool fWipe=false)
 
 ~CLevelDB ()
 
template<typename K , typename V >
bool Read (const K &key, V &value) throw (leveldb_error)
 
template<typename K , typename V >
bool Write (const K &key, const V &value, bool fSync=false) throw (leveldb_error)
 
template<typename K >
bool Exists (const K &key) throw (leveldb_error)
 
template<typename K >
bool Erase (const K &key, bool fSync=false) throw (leveldb_error)
 
bool WriteBatch (CLevelDBBatch &batch, bool fSync=false) throw (leveldb_error)
 
bool Flush ()
 
bool Sync () throw (leveldb_error)
 
leveldb::IteratorNewIterator ()
 

Private Attributes

leveldb::Envpenv
 
leveldb::Options options
 
leveldb::ReadOptions readoptions
 
leveldb::ReadOptions iteroptions
 
leveldb::WriteOptions writeoptions
 
leveldb::WriteOptions syncoptions
 
leveldb::DBpdb
 

Detailed Description

Definition at line 55 of file leveldb.h.

Constructor & Destructor Documentation

CLevelDB::CLevelDB ( const boost::filesystem::path &  path,
size_t  nCacheSize,
bool  fMemory = false,
bool  fWipe = false 
)

Definition at line 37 of file leveldb.cpp.

CLevelDB::~CLevelDB ( )

Definition at line 62 of file leveldb.cpp.

Member Function Documentation

template<typename K >
bool CLevelDB::Erase ( const K &  key,
bool  fSync = false 
)
throw (leveldb_error
)
inline

Definition at line 129 of file leveldb.h.

template<typename K >
bool CLevelDB::Exists ( const K &  key)
throw (leveldb_error
)
inline

Definition at line 112 of file leveldb.h.

bool CLevelDB::Flush ( )
inline

Definition at line 138 of file leveldb.h.

leveldb::Iterator* CLevelDB::NewIterator ( )
inline

Definition at line 148 of file leveldb.h.

template<typename K , typename V >
bool CLevelDB::Read ( const K &  key,
V &  value 
)
throw (leveldb_error
)
inline

Definition at line 83 of file leveldb.h.

bool CLevelDB::Sync ( )
throw (leveldb_error
)
inline

Definition at line 142 of file leveldb.h.

template<typename K , typename V >
bool CLevelDB::Write ( const K &  key,
const V &  value,
bool  fSync = false 
)
throw (leveldb_error
)
inline

Definition at line 106 of file leveldb.h.

bool CLevelDB::WriteBatch ( CLevelDBBatch batch,
bool  fSync = false 
)
throw (leveldb_error
)

Definition at line 73 of file leveldb.cpp.

Member Data Documentation

leveldb::ReadOptions CLevelDB::iteroptions
private

Definition at line 68 of file leveldb.h.

leveldb::Options CLevelDB::options
private

Definition at line 62 of file leveldb.h.

leveldb::DB* CLevelDB::pdb
private

Definition at line 77 of file leveldb.h.

leveldb::Env* CLevelDB::penv
private

Definition at line 59 of file leveldb.h.

leveldb::ReadOptions CLevelDB::readoptions
private

Definition at line 65 of file leveldb.h.

leveldb::WriteOptions CLevelDB::syncoptions
private

Definition at line 74 of file leveldb.h.

leveldb::WriteOptions CLevelDB::writeoptions
private

Definition at line 71 of file leveldb.h.


The documentation for this class was generated from the following files: