|
OpenM++ runtime library (libopenm)
|
table_acc table public interface. More...
#include <dbMetaTable.h>


Public Member Functions | |
| virtual const TableAccRow * | byKey (int i_modelId, int i_tableId, int i_accId) const =0 |
| binary search row by unique key: model id, model table id, accumulator id; return NULL if not found. | |
| virtual vector< TableAccRow > | byModelId (int i_modelId) const =0 |
| get list of rows by model id. | |
| virtual vector< TableAccRow > | byModelIdTableId (int i_modelId, int i_tableId) const =0 |
| get list of rows by model id and table id. | |
| virtual IRowBaseVec & | rowsRef (void)=0 |
| get reference to list of all table rows. | |
Public Member Functions inherited from openm::IMetaLoadedTable< TableAccRow > | |
| virtual const IRowBaseVec & | rowsCRef (void) const=0 |
| get const reference to list of all table rows. | |
| IRowBaseVec::difference_type | rowCount (void) const |
| return number of rows. | |
| vector< TableAccRow > | rows (void) const |
| get list of loaded table rows. | |
| const TableAccRow * | firstRow (void) const |
| return first table row or NULL if table is empty. | |
| vector< TableAccRow > | findAll (RowEqual i_cmp) const |
| get list of rows by predicate: all rows where comparator to i_row return true. | |
| const TableAccRow * | 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 TableAccRow * | 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 ITableAccTable * | create (IDbExec *i_dbExec, int i_modelId=0, bool i_isIncludeDerived=false) |
| create new table object and load table rows sorted by unique key: model id, model table id, accumulator id. | |
| static ITableAccTable * | create (IRowBaseVec &io_rowVec) |
| create new table rows by swap with supplied vector of rows. | |
Additional Inherited Members | |
Public Types inherited from openm::IMetaLoadedTable< TableAccRow > | |
| typedef function< bool(const TableAccRow &i_dbRow)> | RowEqual |
| db table row comparator. | |
Protected Member Functions inherited from openm::IMetaLoadedTable< TableAccRow > | |
| const TableAccRow * | 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< TableAccRow > | |
| 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< TRow > | |
| static vector< TRow > | rows (const IRowBaseVec &i_rowVec) |
| get list of table rows. | |
table_acc table public interface.
|
pure virtual |
binary search row by unique key: model id, model table id, accumulator id; return NULL if not found.
Implemented in openm::TableAccTable.
|
pure virtual |
get list of rows by model id.
Implemented in openm::TableAccTable.
|
pure virtual |
get list of rows by model id and table id.
Implemented in openm::TableAccTable.
|
static |
create new table object and load table rows sorted by unique key: model id, model table id, accumulator id.
if i_modelId > 0 then select only rows where model_id = i_modelId if i_isIncludeDerived then select all acumulators else exclude derived
|
pure virtual |
get reference to list of all table rows.
Implements openm::IMetaLoadedTable< TableAccRow >.
Implemented in openm::TableAccTable.