Deepak Kodihalli | 16e8754 | 2017-02-27 07:07:33 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 3 | #include "callouts-gen.hpp" |
| 4 | #include "elog_entry.hpp" |
| 5 | |
Deepak Kodihalli | 739e925 | 2017-03-05 23:23:50 -0600 | [diff] [blame] | 6 | #include <algorithm> |
| 7 | #include <cstring> |
Deepak Kodihalli | 16e8754 | 2017-02-27 07:07:33 -0600 | [diff] [blame] | 8 | #include <phosphor-logging/elog-errors.hpp> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 9 | #include <string> |
| 10 | #include <tuple> |
| 11 | #include <vector> |
Deepak Kodihalli | 16e8754 | 2017-02-27 07:07:33 -0600 | [diff] [blame] | 12 | |
| 13 | namespace phosphor |
| 14 | { |
| 15 | namespace logging |
| 16 | { |
| 17 | namespace metadata |
| 18 | { |
| 19 | |
| 20 | using Metadata = std::string; |
| 21 | |
| 22 | namespace associations |
| 23 | { |
| 24 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 25 | using Type = void(const std::string&, const std::vector<std::string>&, |
Deepak Kodihalli | 16e8754 | 2017-02-27 07:07:33 -0600 | [diff] [blame] | 26 | AssociationList& list); |
| 27 | |
Deepak Kodihalli | 66c46eb | 2017-03-02 03:07:10 -0600 | [diff] [blame] | 28 | /** @brief Pull out metadata name and value from the string |
| 29 | * <metadata name>=<metadata value> |
| 30 | * @param [in] data - metadata key=value entries |
| 31 | * @param [out] metadata - map of metadata name:value |
| 32 | */ |
| 33 | inline void parse(const std::vector<std::string>& data, |
| 34 | std::map<std::string, std::string>& metadata) |
| 35 | { |
| 36 | constexpr auto separator = '='; |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 37 | for (const auto& entryItem : data) |
Deepak Kodihalli | 66c46eb | 2017-03-02 03:07:10 -0600 | [diff] [blame] | 38 | { |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 39 | auto pos = entryItem.find(separator); |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 40 | if (std::string::npos != pos) |
Deepak Kodihalli | 66c46eb | 2017-03-02 03:07:10 -0600 | [diff] [blame] | 41 | { |
Patrick Venture | 3443896 | 2018-10-30 13:17:37 -0700 | [diff] [blame] | 42 | auto key = entryItem.substr(0, entryItem.find(separator)); |
| 43 | auto value = entryItem.substr(entryItem.find(separator) + 1); |
Deepak Kodihalli | 66c46eb | 2017-03-02 03:07:10 -0600 | [diff] [blame] | 44 | metadata.emplace(std::move(key), std::move(value)); |
| 45 | } |
| 46 | } |
| 47 | }; |
| 48 | |
Matt Spinler | 3fb83b3 | 2019-07-26 11:22:44 -0500 | [diff] [blame] | 49 | /** @brief Combine the metadata keys and values from the map |
| 50 | * into a vector of strings that look like: |
| 51 | * "<metadata name>=<metadata value>" |
| 52 | * @param [in] data - metadata key:value map |
| 53 | * @param [out] metadata - vector of "key=value" strings |
| 54 | */ |
| 55 | inline void combine(const std::map<std::string, std::string>& data, |
| 56 | std::vector<std::string>& metadata) |
| 57 | { |
| 58 | for (const auto& [key, value] : data) |
| 59 | { |
| 60 | std::string line{key}; |
| 61 | line += "=" + value; |
| 62 | metadata.push_back(std::move(line)); |
| 63 | } |
| 64 | } |
| 65 | |
Deepak Kodihalli | 16e8754 | 2017-02-27 07:07:33 -0600 | [diff] [blame] | 66 | /** @brief Build error associations specific to metadata. Specialize this |
| 67 | * template for handling a specific type of metadata. |
| 68 | * @tparam M - type of metadata |
Deepak Kodihalli | 327e580 | 2017-02-28 02:39:56 -0600 | [diff] [blame] | 69 | * @param [in] match - metadata to be handled |
Deepak Kodihalli | 16e8754 | 2017-02-27 07:07:33 -0600 | [diff] [blame] | 70 | * @param [in] data - metadata key=value entries |
| 71 | * @param [out] list - list of error association objects |
| 72 | */ |
| 73 | template <typename M> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 74 | void build(const std::string& match, const std::vector<std::string>& data, |
Deepak Kodihalli | 16e8754 | 2017-02-27 07:07:33 -0600 | [diff] [blame] | 75 | AssociationList& list) = delete; |
| 76 | |
Deepak Kodihalli | 327e580 | 2017-02-28 02:39:56 -0600 | [diff] [blame] | 77 | // Example template specialization - we don't want to do anything |
| 78 | // for this metadata. |
| 79 | using namespace example::xyz::openbmc_project::Example::Elog; |
| 80 | template <> |
| 81 | inline void build<TestErrorTwo::DEV_ID>(const std::string& match, |
| 82 | const std::vector<std::string>& data, |
| 83 | AssociationList& list) |
| 84 | { |
| 85 | } |
| 86 | |
Deepak Kodihalli | 739e925 | 2017-03-05 23:23:50 -0600 | [diff] [blame] | 87 | template <> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 88 | inline void |
| 89 | build<example::xyz::openbmc_project::Example::Device::Callout:: |
| 90 | CALLOUT_DEVICE_PATH_TEST>(const std::string& match, |
| 91 | const std::vector<std::string>& data, |
| 92 | AssociationList& list) |
Deepak Kodihalli | 739e925 | 2017-03-05 23:23:50 -0600 | [diff] [blame] | 93 | { |
Deepak Kodihalli | 739e925 | 2017-03-05 23:23:50 -0600 | [diff] [blame] | 94 | std::map<std::string, std::string> metadata; |
| 95 | parse(data, metadata); |
| 96 | auto iter = metadata.find(match); |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 97 | if (metadata.end() != iter) |
Deepak Kodihalli | 739e925 | 2017-03-05 23:23:50 -0600 | [diff] [blame] | 98 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 99 | auto comp = [](const auto& first, const auto& second) { |
Patrick Venture | 30047bf | 2018-11-01 18:52:15 -0700 | [diff] [blame] | 100 | return (std::strcmp(std::get<0>(first), second) < 0); |
Deepak Kodihalli | 739e925 | 2017-03-05 23:23:50 -0600 | [diff] [blame] | 101 | }; |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 102 | auto callout = std::lower_bound(callouts.begin(), callouts.end(), |
| 103 | (iter->second).c_str(), comp); |
| 104 | if ((callouts.end() != callout) && |
Patrick Venture | 30047bf | 2018-11-01 18:52:15 -0700 | [diff] [blame] | 105 | !std::strcmp((iter->second).c_str(), std::get<0>(*callout))) |
Deepak Kodihalli | 739e925 | 2017-03-05 23:23:50 -0600 | [diff] [blame] | 106 | { |
Patrick Venture | caa73ad | 2018-10-30 13:13:06 -0700 | [diff] [blame] | 107 | constexpr auto ROOT = "/xyz/openbmc_project/inventory"; |
| 108 | |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 109 | list.push_back(std::make_tuple( |
| 110 | "callout", "fault", std::string(ROOT) + std::get<1>(*callout))); |
Deepak Kodihalli | 739e925 | 2017-03-05 23:23:50 -0600 | [diff] [blame] | 111 | } |
| 112 | } |
| 113 | } |
| 114 | |
Deepak Kodihalli | 5edacf3 | 2017-03-16 07:04:07 -0500 | [diff] [blame] | 115 | // The PROCESS_META flag is needed to get out of tree builds working. Such |
| 116 | // builds will have access only to internal error interfaces, hence handlers |
| 117 | // for out dbus error interfaces won't compile. This flag is not set by default, |
| 118 | // the phosphor-logging recipe enabled it. |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 119 | #if defined PROCESS_META |
| 120 | |
| 121 | template <> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 122 | void build<xyz::openbmc_project::Common::Callout::Device::CALLOUT_DEVICE_PATH>( |
| 123 | const std::string& match, const std::vector<std::string>& data, |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 124 | AssociationList& list); |
| 125 | |
Tom Joseph | 213aaf6 | 2017-07-25 00:02:09 +0530 | [diff] [blame] | 126 | template <> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 127 | void build< |
| 128 | xyz::openbmc_project::Common::Callout::Inventory::CALLOUT_INVENTORY_PATH>( |
| 129 | const std::string& match, const std::vector<std::string>& data, |
Tom Joseph | 213aaf6 | 2017-07-25 00:02:09 +0530 | [diff] [blame] | 130 | AssociationList& list); |
| 131 | |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 132 | #endif // PROCESS_META |
| 133 | |
Deepak Kodihalli | 16e8754 | 2017-02-27 07:07:33 -0600 | [diff] [blame] | 134 | } // namespace associations |
| 135 | } // namespace metadata |
| 136 | } // namespace logging |
| 137 | } // namespace phosphor |