#include <dbInterface.hpp>
This class is the interface to the in-memory DB.
| server::DbInterface::DbInterface |
( |
const std::string & |
prefix, |
|
|
rad::DbAdapter & |
runtime_db |
|
) |
| |
Constructor.
- Parameters
-
| [in] | prefix | String used as prefix when building the keys. |
| [in] | runtimeDb | Reference to the in-memory DB adapter. |
| server::DbInterface::~DbInterface |
( |
| ) |
|
|
virtual |
| server::DbInterface::DbInterface |
( |
const DbInterface & |
| ) |
|
|
delete |
| std::string server::DbInterface::Get |
( |
const std::string & |
key | ) |
|
- Parameters
-
- Returns
- The value stored in the DB associated to the given key.
| std::string server::DbInterface::GetControlState |
( |
| ) |
|
- Returns
- The current state of the application stored in the DB.
| std::string server::DbInterface::GetControlStatus |
( |
| ) |
|
- Returns
- The current state and sub-state of the application stored in the DB.
| std::string server::DbInterface::GetControlSubstate |
( |
| ) |
|
- Returns
- The current sub-state of the application stored in the DB.
Disable copy constructor.
| void server::DbInterface::Set |
( |
const std::string & |
key, |
|
|
const std::string & |
value |
|
) |
| |
- Parameters
-
| [in] | key | Key to be written in the DB. |
| [in] | value | Value, associated to the given key, to be written in the DB. |
| void server::DbInterface::SetConfig |
( |
const std::string & |
req_endpoint, |
|
|
const std::string & |
db_endpoint, |
|
|
const timeval & |
db_timeout, |
|
|
const std::string & |
scxml_filename, |
|
|
const std::string & |
config_filename, |
|
|
const std::string & |
log_level |
|
) |
| |
Set the application configuration information in the DB.
- Parameters
-
| [in] | reqEndpoint | Request msg endpoint. |
| [in] | dbIpAddr | DB IP address. |
| [in] | dbPort | DB port. |
| [in] | dbTimeout | DB timeout. |
| void server::DbInterface::SetControl |
( |
const std::string & |
state, |
|
|
const std::string & |
substate, |
|
|
const std::string & |
status |
|
) |
| |
Set the application control information in the DB.
- Parameters
-
| [in] | state | State to be stored in the DB. |
| [in] | substate | Substate to be stored in the DB. |
| [in] | status | Status to be stored in the DB. |
| void server::DbInterface::SetControlState |
( |
const std::string & |
value | ) |
|
- Parameters
-
| [in] | value | State to be stored in the DB. |
| void server::DbInterface::SetControlStatus |
( |
const std::string & |
value | ) |
|
- Parameters
-
| [in] | value | Status (state and substate) to be stored in the DB. |
| void server::DbInterface::SetControlSubstate |
( |
const std::string & |
value | ) |
|
- Parameters
-
| [in] | value | Sub-state to be stored in the DB. |
The documentation for this class was generated from the following files: