summaryrefslogtreecommitdiffstats
path: root/config_parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'config_parser.cpp')
-rw-r--r--config_parser.cpp32
1 files changed, 11 insertions, 21 deletions
diff --git a/config_parser.cpp b/config_parser.cpp
index 92c344f..c4af404 100644
--- a/config_parser.cpp
+++ b/config_parser.cpp
@@ -22,8 +22,8 @@ Parser::Parser(const fs::path& filePath)
setFile(filePath);
}
-
-std::tuple<ReturnCode, KeyValueMap> Parser::getSection(const std::string& section)
+std::tuple<ReturnCode, KeyValueMap>
+ Parser::getSection(const std::string& section)
{
auto it = sections.find(section);
if (it == sections.end())
@@ -40,7 +40,7 @@ std::tuple<ReturnCode, ValueList> Parser::getValues(const std::string& section,
const std::string& key)
{
ValueList values;
- KeyValueMap keyValues {};
+ KeyValueMap keyValues{};
auto rc = ReturnCode::SUCCESS;
std::tie(rc, keyValues) = getSection(section);
@@ -63,7 +63,6 @@ std::tuple<ReturnCode, ValueList> Parser::getValues(const std::string& section,
return std::make_tuple(ReturnCode::SUCCESS, std::move(values));
}
-
bool Parser::isValueExist(const std::string& section, const std::string& key,
const std::string& value)
{
@@ -124,26 +123,17 @@ void Parser::setFile(const fs::path& filePath)
{
return;
}
- //clear all the section data.
+ // clear all the section data.
sections.clear();
parse(stream);
stream.close();
- }
+}
void Parser::parse(std::istream& in)
{
- static const std::regex commentRegex
- {
- R"x(\s*[;#])x"
- };
- static const std::regex sectionRegex
- {
- R"x(\s*\[([^\]]+)\])x"
- };
- static const std::regex valueRegex
- {
- R"x(\s*(\S[^ \t=]*)\s*=\s*(\S+)\s*$)x"
- };
+ static const std::regex commentRegex{R"x(\s*[;#])x"};
+ static const std::regex sectionRegex{R"x(\s*\[([^\]]+)\])x"};
+ static const std::regex valueRegex{R"x(\s*(\S[^ \t=]*)\s*=\s*(\S+)\s*$)x"};
std::string section;
std::smatch pieces;
for (std::string line; std::getline(in, line);)
@@ -169,6 +159,6 @@ void Parser::parse(std::istream& in)
}
}
-}//namespace config
-}//namespace network
-}//namespace phosphor
+} // namespace config
+} // namespace network
+} // namespace phosphor
OpenPOWER on IntegriCloud