OpenM++ runtime library (libopenm)
|
run_option table public interface. More...
#include <dbMetaTable.h>
Public Member Functions | |
virtual const RunOptionRow * | byKey (int i_runId, const string &i_key) const =0 |
binary search row by primary key: run id and option key, return NULL if not found. More... | |
virtual bool | isExist (int i_runId, const char *i_key) const noexcept=0 |
return true if primary key (run id, option key) found. More... | |
virtual string | strValue (int i_runId, const char *i_key, const string &i_default="") const noexcept=0 |
return string value by primary key (run id, option key) or default value if not found. More... | |
virtual bool | boolValue (int i_runId, const char *i_key) const noexcept=0 |
return boolean value by primary key (run id, option key) or false if not found or value not "yes", "1", "true" or empty "" string. More... | |
virtual int | boolValueToInt (int i_runId, const char *i_key) const noexcept=0 |
search for boolean value by primary key (run id, option key) and return one of: return 1 if key found and value is one of: "yes", "1", "true" or empty value, return 0 if key found and value is one of: "no", "0", "false", return -1 if key not found, return -2 otherwise. More... | |
virtual int | intValue (int i_runId, const char *i_key, int i_default) const noexcept=0 |
return int value by primary key (run id, option key) or default if not found or can not be converted to int. More... | |
virtual long long | longValue (int i_runId, const char *i_key, long long i_default) const noexcept=0 |
return long value by primary key (run id, option key) or default if not found or can not be converted to long. More... | |
virtual double | doubleValue (int i_runId, const char *i_key, double i_default) const noexcept=0 |
return double value by primary key (run id, option key) or default if not found or can not be converted to double. More... | |
virtual IRowBaseVec & | rowsRef (void)=0 |
get reference to list of all table rows. More... | |
Public Member Functions inherited from openm::IMetaLoadedTable< RunOptionRow > | |
virtual const IRowBaseVec & | rowsCRef (void) const=0 |
get const reference to list of all table rows. More... | |
virtual IRowBaseVec & | rowsRef (void)=0 |
get reference to list of all table rows. More... | |
IRowBaseVec::difference_type | rowCount (void) const |
return number of rows. | |
vector< RunOptionRow > | rows (void) const |
get list of loaded table rows. | |
const RunOptionRow * | firstRow (void) const |
return first table row or NULL if table is empty. | |
vector< RunOptionRow > | findAll (RowEqual i_cmp) const |
get list of rows by predicate: all rows where comparator to i_row return true. | |
const RunOptionRow * | findFirst (RowEqual i_cmp) const |
get first row by predicate or NULL if not found: first row where comparator to i_row return true. | |
const RunOptionRow * | byIndex (IRowBaseVec::difference_type i_index) const |
return row value by index or NULL if out of range. | |
IRowBaseVec::difference_type | indexOf (RowEqual i_cmp, IRowBaseVec::difference_type i_startPos=0) const |
get first row by predicate or -1 if not found: first row where comparator to i_row return true. | |
IRowBaseVec::size_type | countOf (RowEqual i_cmp) const |
count rows by predicate: where comparator to i_row return true. | |
Static Public Member Functions | |
static IRunOptionTable * | create (IDbExec *i_dbExec, int i_runId=0) |
create new table object and load table rows sorted by primary key: run id and option key. More... | |
static IRunOptionTable * | create (IRowBaseVec &io_rowVec) |
create new table rows by swap with supplied vector of rows. | |
Additional Inherited Members | |
Public Types inherited from openm::IMetaLoadedTable< RunOptionRow > | |
typedef function< bool(const RunOptionRow &i_dbRow)> | RowEqual |
db table row comparator. | |
Protected Member Functions inherited from openm::IMetaLoadedTable< RunOptionRow > | |
const RunOptionRow * | findKey (const IRowBaseUptr &i_row) const |
binary search row by primary key, return NULL if not found. | |
Static Protected Member Functions inherited from openm::IMetaLoadedTable< RunOptionRow > | |
static IRowBaseVec | load (const string &i_sqlSelect, IDbExec *i_dbExec, const IRowAdapter &i_adapter) |
load table: return vector of selected rows sorted by primary key. | |
Static Protected Member Functions inherited from openm::IMetaTable< RunOptionRow > | |
static vector< RunOptionRow > | rows (const IRowBaseVec &i_rowVec) |
get list of table rows. | |
run_option table public interface.
|
pure virtualnoexcept |
return boolean value by primary key (run id, option key) or false if not found or value not "yes", "1", "true" or empty "" string.
Implemented in openm::RunOptionTable.
|
pure virtualnoexcept |
search for boolean value by primary key (run id, option key) and return one of:
return 1 if key found and value is one of: "yes", "1", "true" or empty value,
return 0 if key found and value is one of: "no", "0", "false",
return -1 if key not found,
return -2 otherwise.
Implemented in openm::RunOptionTable.
|
pure virtual |
binary search row by primary key: run id and option key, return NULL if not found.
Implemented in openm::RunOptionTable.
|
static |
create new table object and load table rows sorted by primary key: run id and option key.
if i_runId > 0 then select only rows where run_id = i_runId
|
pure virtualnoexcept |
return double value by primary key (run id, option key) or default if not found or can not be converted to double.
Implemented in openm::RunOptionTable.
|
pure virtualnoexcept |
return int value by primary key (run id, option key) or default if not found or can not be converted to int.
Implemented in openm::RunOptionTable.
|
pure virtualnoexcept |
return true if primary key (run id, option key) found.
Implemented in openm::RunOptionTable.
|
pure virtualnoexcept |
return long value by primary key (run id, option key) or default if not found or can not be converted to long.
Implemented in openm::RunOptionTable.
|
pure virtual |
get reference to list of all table rows.
Implements openm::IMetaLoadedTable< RunOptionRow >.
Implemented in openm::RunOptionTable.
|
pure virtualnoexcept |
return string value by primary key (run id, option key) or default value if not found.
Implemented in openm::RunOptionTable.