Prototype implementation of database with STL. More...
#include <kcprotodb.h>
Classes | |
class | Cursor |
Cursor to indicate a record. More... | |
struct | TranLog |
Transaction log. | |
Public Member Functions | |
ProtoDB () | |
Default constructor. | |
virtual | ~ProtoDB () |
Destructor. | |
bool | accept (const char *kbuf, size_t ksiz, Visitor *visitor, bool writable=true) |
Accept a visitor to a record. | |
bool | iterate (Visitor *visitor, bool writable=true) |
Iterate to accept a visitor for each record. | |
Error | error () const |
Get the last happened error. | |
void | set_error (Error::Code code, const char *message) |
Set the error information. | |
bool | open (const std::string &path, uint32_t mode=OWRITER|OCREATE) |
Open a database file. | |
bool | close () |
Close the database file. | |
bool | synchronize (bool hard=false, FileProcessor *proc=NULL) |
Synchronize updated contents with the file and the device. | |
bool | begin_transaction (bool hard=false) |
Begin transaction. | |
bool | begin_transaction_try (bool hard=false) |
Try to begin transaction. | |
bool | end_transaction (bool commit=true) |
End transaction. | |
bool | clear () |
Remove all records. | |
int64_t | count () |
Get the number of records. | |
int64_t | size () |
Get the size of the database file. | |
std::string | path () |
Get the path of the database file. | |
bool | status (std::map< std::string, std::string > *strmap) |
Get the miscellaneous status information. | |
Cursor * | cursor () |
Create a cursor object. | |
char * | opaque () |
Get the opaque data. | |
bool | synchronize_opaque () |
Synchronize the opaque data. |
Prototype implementation of database with STL.
STRMAP | a class compatible with the map class of STL. | |
DBTYPE | the database type number of the class. |
kyotocabinet::ProtoDB< STRMAP, DBTYPE >::ProtoDB | ( | ) | [explicit] |
Default constructor.
virtual kyotocabinet::ProtoDB< STRMAP, DBTYPE >::~ProtoDB | ( | ) | [virtual] |
Destructor.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::accept | ( | const char * | kbuf, | |
size_t | ksiz, | |||
Visitor * | visitor, | |||
bool | writable = true | |||
) | [virtual] |
Accept a visitor to a record.
kbuf | the pointer to the key region. | |
ksiz | the size of the key region. | |
visitor | a visitor object. | |
writable | true for writable operation, or false for read-only operation. |
Implements kyotocabinet::DB.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::iterate | ( | Visitor * | visitor, | |
bool | writable = true | |||
) | [virtual] |
Iterate to accept a visitor for each record.
visitor | a visitor object. | |
writable | true for writable operation, or false for read-only operation. |
Implements kyotocabinet::DB.
Error kyotocabinet::ProtoDB< STRMAP, DBTYPE >::error | ( | ) | const [virtual] |
void kyotocabinet::ProtoDB< STRMAP, DBTYPE >::set_error | ( | Error::Code | code, | |
const char * | message | |||
) |
Set the error information.
code | an error code. | |
message | a supplement message. |
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::open | ( | const std::string & | path, | |
uint32_t | mode = OWRITER | OCREATE | |||
) | [virtual] |
Open a database file.
path | the path of a database file. | |
mode | the connection mode. BasicDB::OWRITER as a writer, BasicDB::OREADER as a reader. The following may be added to the writer mode by bitwise-or: BasicDB::OCREATE, which means it creates a new database if the file does not exist, BasicDB::OTRUNCATE, which means it creates a new database regardless if the file exists, BasicDB::OAUTOTRAN, which means each updating operation is performed in implicit transaction, BasicDB::OAUTOSYNC, which means each updating operation is followed by implicit synchronization with the file system. The following may be added to both of the reader mode and the writer mode by bitwise-or: BasicDB::ONOLOCK, which means it opens the database file without file locking, BasicDB::OTRYLOCK, which means locking is performed without blocking, BasicDB::ONOREPAIR, which means the database file is not repaired implicitly even if file destruction is detected. |
Implements kyotocabinet::BasicDB.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::close | ( | ) | [virtual] |
Close the database file.
Implements kyotocabinet::BasicDB.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::synchronize | ( | bool | hard = false , |
|
FileProcessor * | proc = NULL | |||
) | [virtual] |
Synchronize updated contents with the file and the device.
hard | true for physical synchronization with the device, or false for logical synchronization with the file system. | |
proc | a postprocessor object. If it is NULL, no postprocessing is performed. |
Implements kyotocabinet::BasicDB.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::begin_transaction | ( | bool | hard = false |
) | [virtual] |
Begin transaction.
hard | true for physical synchronization with the device, or false for logical synchronization with the file system. |
Implements kyotocabinet::BasicDB.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::begin_transaction_try | ( | bool | hard = false |
) | [virtual] |
Try to begin transaction.
hard | true for physical synchronization with the device, or false for logical synchronization with the file system. |
Implements kyotocabinet::BasicDB.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::end_transaction | ( | bool | commit = true |
) | [virtual] |
End transaction.
commit | true to commit the transaction, or false to abort the transaction. |
Implements kyotocabinet::BasicDB.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::clear | ( | ) | [virtual] |
int64_t kyotocabinet::ProtoDB< STRMAP, DBTYPE >::count | ( | ) | [virtual] |
Get the number of records.
Implements kyotocabinet::DB.
int64_t kyotocabinet::ProtoDB< STRMAP, DBTYPE >::size | ( | ) | [virtual] |
Get the size of the database file.
Implements kyotocabinet::BasicDB.
std::string kyotocabinet::ProtoDB< STRMAP, DBTYPE >::path | ( | ) | [virtual] |
Get the path of the database file.
Implements kyotocabinet::BasicDB.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::status | ( | std::map< std::string, std::string > * | strmap | ) | [virtual] |
Get the miscellaneous status information.
strmap | a string map to contain the result. |
Implements kyotocabinet::BasicDB.
Cursor* kyotocabinet::ProtoDB< STRMAP, DBTYPE >::cursor | ( | ) | [virtual] |
Create a cursor object.
Implements kyotocabinet::BasicDB.
char* kyotocabinet::ProtoDB< STRMAP, DBTYPE >::opaque | ( | ) |
Get the opaque data.
bool kyotocabinet::ProtoDB< STRMAP, DBTYPE >::synchronize_opaque | ( | ) |
Synchronize the opaque data.