| #pragma once |
| #include <map> |
| #include <optional> |
| #include <string> |
| #include <vector> |
| |
| namespace openpower |
| { |
| namespace pels |
| { |
| |
| /** |
| * @class AdditionalData |
| * |
| * This class takes in the contents of the AdditionalData OpenBMC |
| * event log property, and provides access to its values based on |
| * their keys. |
| * |
| * The property is a vector of strings of the form: "KEY=VALUE", |
| * and this class provides a getValue("KEY") API that would return |
| * "VALUE". |
| */ |
| class AdditionalData |
| { |
| public: |
| AdditionalData() = delete; |
| ~AdditionalData() = default; |
| AdditionalData(const AdditionalData&) = default; |
| AdditionalData& operator=(const AdditionalData&) = default; |
| AdditionalData(AdditionalData&&) = default; |
| AdditionalData& operator=(AdditionalData&&) = default; |
| |
| /** |
| * @brief constructor |
| * |
| * @param[in] ad - the AdditionalData property vector with |
| * entries of "KEY=VALUE" |
| */ |
| AdditionalData(const std::vector<std::string>& ad) |
| { |
| for (auto& item : ad) |
| { |
| auto pos = item.find_first_of('='); |
| if (pos == std::string::npos || pos == 0) |
| { |
| continue; |
| } |
| |
| _data[item.substr(0, pos)] = std::move(item.substr(pos + 1)); |
| } |
| } |
| |
| /** |
| * @brief Returns the value of the AdditionalData item for the |
| * key passed in. |
| * @param[in] key - the key to search for |
| * |
| * @return optional<string> - the value, if found |
| */ |
| std::optional<std::string> getValue(const std::string& key) |
| { |
| auto entry = _data.find(key); |
| if (entry != _data.end()) |
| { |
| return entry->second; |
| } |
| return std::nullopt; |
| } |
| |
| private: |
| /** |
| * @brief a map of keys to values |
| */ |
| std::map<std::string, std::string> _data; |
| }; |
| } // namespace pels |
| } // namespace openpower |