This class implements the tables of databases.
Definition at line 23 of file CSimpleDatabase.h.
#include <mrpt/utils/CSimpleDatabase.h>
Public Member Functions | |
void * | operator new (size_t size) |
void * | operator new[] (size_t size) |
void | operator delete (void *ptr) noexcept |
void | operator delete[] (void *ptr) noexcept |
void | operator delete (void *memory, void *ptr) noexcept |
void * | operator new (size_t size, const std::nothrow_t &) noexcept |
void | operator delete (void *ptr, const std::nothrow_t &) noexcept |
CSimpleDatabaseTable () | |
Default constructor. More... | |
virtual | ~CSimpleDatabaseTable () |
Destructor. More... | |
size_t | fieldsCount () const |
Get the count of fields. More... | |
size_t | appendRecord () |
Append a new and empty record at the end of the table, and return the index of the newly added record. More... | |
void | addField (const char *fieldName) |
Add a new field to the table. More... | |
void | addField (const std::string &fieldName) |
Add a new field to the table. More... | |
std::string | getFieldName (size_t fieldIndex) const |
Get the name of a field by its index. More... | |
size_t | fieldIndex (const char *fieldName) const |
Get the index for a given field name. More... | |
size_t | fieldIndex (const std::string &fieldName) const |
Get the index for a given field name. More... | |
size_t | getRecordCount () const |
Get the records count in the table. More... | |
std::string | get (size_t recordIndex, std::string field) const |
Returns the cell content of the record indicates by its index, and the field indicated in "field". More... | |
std::string | get (size_t recordIndex, size_t fieldIndex) const |
Returns the cell content of the record indicates by its index, and the field indicated by its index. More... | |
void | set (size_t recordIndex, std::string field, std::string value) |
Sets the cell content of the record indicates by its index, and the field indicated in "field". More... | |
void | set (size_t recordIndex, size_t fieldIndex, std::string value) |
Sets the cell content of the record indicates by its index, and the field indicated by its index. More... | |
int | query (std::string field, std::string value) const |
Executes a query in the table, returning the record index which a given field has a given value, case insensitive, or -1 if not found. More... | |
void | deleteRecord (size_t recordIndex) |
Delete the record at the given index. More... | |
virtual mxArray * | writeToMatlab () const |
Introduces a pure virtual method responsible for writing to a mxArray Matlab object, typically a MATLAB struct whose contents are documented in each derived class. More... | |
RTTI classes and functions | |
mrpt::utils::CObject::Ptr | duplicateGetSmartPtr () const |
Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer). More... | |
Static Public Member Functions | |
static void * | operator new (size_t size, void *ptr) |
Protected Member Functions | |
CSerializable virtual methods | |
void | writeToStream (mrpt::utils::CStream &out, int *getVersion) const override |
Introduces a pure virtual method responsible for writing to a CStream. More... | |
void | readFromStream (mrpt::utils::CStream &in, int version) override |
Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori. More... | |
Private Attributes | |
vector_string | field_names |
Field names. More... | |
std::vector< vector_string > | data |
Data for each cell. More... | |
RTTI stuff | |
using | Ptr = std::shared_ptr< CSimpleDatabaseTable > |
using | ConstPtr = std::shared_ptr< const CSimpleDatabaseTable > |
static mrpt::utils::CLASSINIT | _init_CSimpleDatabaseTable |
static const mrpt::utils::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "CSimpleDatabaseTable" |
static const mrpt::utils::TRuntimeClassId * | _GetBaseClass () |
static const mrpt::utils::TRuntimeClassId & | GetRuntimeClassIdStatic () |
static mrpt::utils::CObject * | CreateObject () |
template<typename... Args> | |
static Ptr | Create (Args &&... args) |
virtual const mrpt::utils::TRuntimeClassId * | GetRuntimeClass () const override |
Returns information about the class of an object in runtime. More... | |
virtual mrpt::utils::CObject * | clone () const override |
Returns a deep copy (clone) of the object, indepently of its class. More... | |
using mrpt::utils::CSimpleDatabaseTable::ConstPtr = std::shared_ptr<const CSimpleDatabaseTable > |
Definition at line 25 of file CSimpleDatabase.h.
using mrpt::utils::CSimpleDatabaseTable::Ptr = std::shared_ptr< CSimpleDatabaseTable > |
A typedef for the associated smart pointer
Definition at line 25 of file CSimpleDatabase.h.
CSimpleDatabaseTable::CSimpleDatabaseTable | ( | ) |
Default constructor.
Definition at line 216 of file CSimpleDatabase.cpp.
|
virtual |
Destructor.
Definition at line 220 of file CSimpleDatabase.cpp.
|
staticprotected |
void CSimpleDatabaseTable::addField | ( | const char * | fieldName | ) |
Add a new field to the table.
The table is cleared in this operation.
Definition at line 228 of file CSimpleDatabase.cpp.
|
inline |
Add a new field to the table.
The table is cleared in this operation.
Definition at line 49 of file CSimpleDatabase.h.
References addField().
Referenced by addField().
size_t CSimpleDatabaseTable::appendRecord | ( | ) |
Append a new and empty record at the end of the table, and return the index of the newly added record.
Definition at line 347 of file CSimpleDatabase.cpp.
|
overridevirtual |
Returns a deep copy (clone) of the object, indepently of its class.
Implements mrpt::utils::CObject.
|
inlinestatic |
Definition at line 25 of file CSimpleDatabase.h.
|
static |
void CSimpleDatabaseTable::deleteRecord | ( | size_t | recordIndex | ) |
Delete the record at the given index.
Definition at line 360 of file CSimpleDatabase.cpp.
References ASSERT_, MRPT_END, and MRPT_START.
size_t CSimpleDatabaseTable::fieldIndex | ( | const char * | fieldName | ) | const |
Get the index for a given field name.
std::exception | On field not found |
Definition at line 250 of file CSimpleDatabase.cpp.
References mrpt::system::os::_strcmpi(), MRPT_END, MRPT_START, and THROW_EXCEPTION_FMT.
Referenced by fieldIndex().
|
inline |
Get the index for a given field name.
std::exception | On field not found |
Definition at line 63 of file CSimpleDatabase.h.
References fieldIndex().
size_t CSimpleDatabaseTable::fieldsCount | ( | ) | const |
Get the count of fields.
Definition at line 224 of file CSimpleDatabase.cpp.
string CSimpleDatabaseTable::get | ( | size_t | recordIndex, |
std::string | field | ||
) | const |
Returns the cell content of the record indicates by its index, and the field indicated in "field".
std::exception | On field or record not found |
Definition at line 271 of file CSimpleDatabase.cpp.
References ASSERT_, MRPT_END, and MRPT_START.
string CSimpleDatabaseTable::get | ( | size_t | recordIndex, |
size_t | fieldIndex | ||
) | const |
Returns the cell content of the record indicates by its index, and the field indicated by its index.
std::exception | On field or record not found |
Definition at line 282 of file CSimpleDatabase.cpp.
References ASSERT_, MRPT_END, and MRPT_START.
string CSimpleDatabaseTable::getFieldName | ( | size_t | fieldIndex | ) | const |
Get the name of a field by its index.
std::exception | On index out of bounds |
Definition at line 237 of file CSimpleDatabase.cpp.
References ASSERT_, MRPT_END, and MRPT_START.
size_t CSimpleDatabaseTable::getRecordCount | ( | ) | const |
Get the records count in the table.
Definition at line 267 of file CSimpleDatabase.cpp.
|
overridevirtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::utils::CSerializable.
|
static |
Definition at line 25 of file CSimpleDatabase.h.
|
inlinenoexcept |
Definition at line 25 of file CSimpleDatabase.h.
|
inlinenoexcept |
Definition at line 25 of file CSimpleDatabase.h.
Definition at line 25 of file CSimpleDatabase.h.
|
inlinestatic |
Definition at line 25 of file CSimpleDatabase.h.
|
inlinenoexcept |
Definition at line 25 of file CSimpleDatabase.h.
|
inline |
Definition at line 25 of file CSimpleDatabase.h.
|
inline |
Definition at line 25 of file CSimpleDatabase.h.
int CSimpleDatabaseTable::query | ( | std::string | field, |
std::string | value | ||
) | const |
Executes a query in the table, returning the record index which a given field has a given value, case insensitive, or -1 if not found.
Definition at line 322 of file CSimpleDatabase.cpp.
References mrpt::system::os::_strcmpi().
|
overrideprotectedvirtual |
Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori.
in | The input binary stream where the object data must read from. |
version | The version of the object stored in the stream: use this version number in your code to know how to read the incoming data. |
std::exception | On any error, see CStream::ReadBuffer |
Implements mrpt::utils::CSerializable.
Definition at line 110 of file CSimpleDatabase.cpp.
References MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION.
void CSimpleDatabaseTable::set | ( | size_t | recordIndex, |
std::string | field, | ||
std::string | value | ||
) |
Sets the cell content of the record indicates by its index, and the field indicated in "field".
std::exception | On field or record not found |
Definition at line 294 of file CSimpleDatabase.cpp.
References ASSERT_, MRPT_END, and MRPT_START.
void CSimpleDatabaseTable::set | ( | size_t | recordIndex, |
size_t | fieldIndex, | ||
std::string | value | ||
) |
Sets the cell content of the record indicates by its index, and the field indicated by its index.
std::exception | On field or record not found |
Definition at line 307 of file CSimpleDatabase.cpp.
References ASSERT_, MRPT_END, and MRPT_START.
|
inlinevirtualinherited |
Introduces a pure virtual method responsible for writing to a mxArray
Matlab object, typically a MATLAB struct
whose contents are documented in each derived class.
mxArray
(caller is responsible of memory freeing) or nullptr is class does not support conversion to MATLAB. Definition at line 89 of file CSerializable.h.
|
overrideprotectedvirtual |
Introduces a pure virtual method responsible for writing to a CStream.
This can not be used directly be users, instead use "stream << object;" for writing it to a stream.
out | The output binary stream where object must be dumped. |
getVersion | If nullptr, the object must be dumped. If not, only the version of the object dump must be returned in this pointer. This enables the versioning of objects dumping and backward compatibility with previously stored data. |
std::exception | On any error, see CStream::WriteBuffer |
Implements mrpt::utils::CSerializable.
Definition at line 89 of file CSimpleDatabase.cpp.
|
staticprotected |
Definition at line 25 of file CSimpleDatabase.h.
|
static |
Definition at line 25 of file CSimpleDatabase.h.
|
private |
Data for each cell.
Definition at line 108 of file CSimpleDatabase.h.
|
private |
Field names.
Definition at line 106 of file CSimpleDatabase.h.
|
staticprotected |
Definition at line 25 of file CSimpleDatabase.h.
Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019 |