|
|
void | INTELLI::ConfigMap::spilt (const std::string s, const std::string &c, vector< std::string > &v) |
| |
| void | INTELLI::ConfigMap::edit (std::string key, uint64_t value) |
| | Edit the config map. If not exit the config, will create new, or will overwrite. More...
|
| |
| void | INTELLI::ConfigMap::edit (std::string key, int64_t value) |
| | Edit the config map. If not exit the config, will create new, or will overwrite. More...
|
| |
| void | INTELLI::ConfigMap::edit (std::string key, double value) |
| | Edit the config map. If not exit the config, will create new, or will overwrite. More...
|
| |
| void | INTELLI::ConfigMap::edit (std::string key, std::string value) |
| | Edit the config map. If not exit the config, will create new, or will overwrite. More...
|
| |
| bool | INTELLI::ConfigMap::existU64 (std::string key) |
| | To detect whether the key exists and related to a U64. More...
|
| |
| bool | INTELLI::ConfigMap::existI64 (std::string key) |
| | To detect whether the key exists and related to a I64. More...
|
| |
| bool | INTELLI::ConfigMap::existDouble (std::string key) |
| | To detect whether the key exists and related to a double. More...
|
| |
| bool | INTELLI::ConfigMap::existString (std::string key) |
| | To detect whether the key exists and related to a std::string. More...
|
| |
| bool | INTELLI::ConfigMap::exist (std::string key) |
| | To detect whether the key exists. More...
|
| |
| uint64_t | INTELLI::ConfigMap::getU64 (std::string key) |
| | To get a U64 value by key. More...
|
| |
| int64_t | INTELLI::ConfigMap::getI64 (std::string key) |
| | To get a I64 value by key. More...
|
| |
| double | INTELLI::ConfigMap::getDouble (std::string key) |
| | To get a double value by key. More...
|
| |
| std::string | INTELLI::ConfigMap::getString (std::string key) |
| | To get a std::string value by key. More...
|
| |
| std::string | INTELLI::ConfigMap::toString (std::string separator="\t", std::string newLine="\n") |
| | convert the whole map to std::string and retuen More...
|
| |
| void | INTELLI::ConfigMap::cloneInto (ConfigMap &dest) |
| | clone this config into destination More...
|
| |
| bool | INTELLI::ConfigMap::toFile (std::string fname, std::string separator=",", std::string newLine="\n") |
| | convert the whole map to file More...
|
| |
| bool | INTELLI::ConfigMap::fromFile (std::string fname, std::string separator=",", std::string newLine="\n") |
| | update the whole map from file More...
|
| |
| int64_t | INTELLI::ConfigMap::tryI64 (string key, int64_t defaultValue=0, bool showWarning=false) |
| | Try to get an I64 from config map, if not exist, use default value instead. More...
|
| |
| uint64_t | INTELLI::ConfigMap::tryU64 (string key, uint64_t defaultValue=0, bool showWarning=false) |
| | Try to get an U64 from config map, if not exist, use default value instead. More...
|
| |
| double | INTELLI::ConfigMap::tryDouble (string key, double defaultValue=0, bool showWarning=false) |
| | Try to get a double from config map, if not exist, use default value instead. More...
|
| |
| string | INTELLI::ConfigMap::tryString (string key, string defaultValue="", bool showWarning=false) |
| | Try to get an String from config map, if not exist, use default value instead. More...
|
| |
This group provides common functions to support the Intelli Stream programs.