|
ifw-core
4.1.0-pre1
|
#include <string>#include <log4cplus/logger.h>#include <log4cplus/loggingmacros.h>#include <log4cplus/version.h>#include <log4cplus/configurator.h>#include <boost/regex.hpp>#include <boost/exception/diagnostic_information.hpp>#include <fmt/format.h>#include <config-ng/ciiConfigApi.hpp>#include <rad/logger.hpp>#include <rad/exceptions.hpp>Go to the source code of this file.
Namespaces | |
| core | |
| core::dit | |
| core::dit::did | |
Enumerations | |
| enum | core::dit::did::HdrField { core::dit::did::NAME = 1, core::dit::did::SCOPE = 2, core::dit::did::DESCRIPTION = 4, core::dit::did::ALL = (NAME | SCOPE | DESCRIPTION) } |
| Dictionary header field types. More... | |
| enum | core::dit::did::DataType { core::dit::did::BOOL = 1, core::dit::did::DOUBLE = 2, core::dit::did::INTEGER = 4, core::dit::did::STRING = 8, core::dit::did::ALL = (BOOL | DOUBLE | INTEGER | STRING) } |
| Dictionary data types. More... | |
| enum | core::dit::did::RecField { core::dit::did::FORMAT = 1, core::dit::did::UNIT = 2, core::dit::did::COMMENT = 4, core::dit::did::DESCRIPTION = 8, core::dit::did::TYPE = 128, core::dit::did::ALL = (FORMAT | UNIT | COMMENT | DESCRIPTION | TYPE) } |
| Dictionary keyword record field types. More... | |
Functions | |
| log4cplus::Logger & | core::dit::did::Logger () |
| DataType | core::dit::did::DataTypeToNum (const std::string &type) |
| Map type from string to numeric representation. More... | |
| std::string | core::dit::did::DataTypeToStr (const DataType type) |
| Map type from numeric to string representation. More... | |
| std::string | core::dit::did::RecFieldToStr (const RecField field) |
| Map record field from numeric to string representation. More... | |
| RecField | core::dit::did::RecFieldToNum (const std::string &field) |
| Map record field from string to numeric representation. More... | |
Variables | |
| const std::string | core::dit::did::DID_SCHEMA_INCLUDE = "!cfg.include schema/core/dit/did/did.schema.yaml" |
| const std::string | core::dit::did::HDR_TAG = "header" |
| const std::string | core::dit::did::HDR_FIELD_NAME = "name" |
| const std::string | core::dit::did::HDR_FIELD_SCOPE = "scope" |
| const std::string | core::dit::did::HDR_FIELD_DESCRIPTION = "description" |
| const std::map< HdrField, std::string > | core::dit::did::HDR_FIELDS_NB_MAP |
| const std::map< std::string, HdrField > | core::dit::did::HDR_FIELDS_NAME_MAP |
| const std::string | core::dit::did::REC_TYPE_BOOL = "DidBoolKey" |
| const std::string | core::dit::did::REC_TYPE_DOUBLE = "DidDblKey" |
| const std::string | core::dit::did::REC_TYPE_INTEGER = "DidIntKey" |
| const std::string | core::dit::did::REC_TYPE_STRING = "DidStrKey" |
| const std::string | core::dit::did::REC_FIELD_FORMAT = "format" |
| const std::string | core::dit::did::REC_FIELD_UNIT = "unit" |
| const std::string | core::dit::did::REC_FIELD_COMMENT = "comment" |
| const std::string | core::dit::did::REC_FIELD_DESCRIPTION = "description" |
| const std::string | core::dit::did::REC_FIELD_TYPE = "type" |