blob: fe14a1107966fc6c1fd85d9d080511ec2d2ce29f [file] [log] [blame]
Deepak Kodihalli16e87542017-02-27 07:07:33 -06001#pragma once
2
Patrick Venturef18bf832018-10-26 18:14:00 -07003#include "callouts-gen.hpp"
4#include "elog_entry.hpp"
5
Deepak Kodihalli739e9252017-03-05 23:23:50 -06006#include <algorithm>
7#include <cstring>
Deepak Kodihalli16e87542017-02-27 07:07:33 -06008#include <phosphor-logging/elog-errors.hpp>
Patrick Venturef18bf832018-10-26 18:14:00 -07009#include <string>
10#include <tuple>
11#include <vector>
Deepak Kodihalli16e87542017-02-27 07:07:33 -060012
13namespace phosphor
14{
15namespace logging
16{
17namespace metadata
18{
19
20using Metadata = std::string;
21
22namespace associations
23{
24
Patrick Venturef18bf832018-10-26 18:14:00 -070025using Type = void(const std::string&, const std::vector<std::string>&,
Deepak Kodihalli16e87542017-02-27 07:07:33 -060026 AssociationList& list);
27
Deepak Kodihalli66c46eb2017-03-02 03:07:10 -060028/** @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 */
33inline void parse(const std::vector<std::string>& data,
34 std::map<std::string, std::string>& metadata)
35{
36 constexpr auto separator = '=';
Patrick Venture34438962018-10-30 13:17:37 -070037 for (const auto& entryItem : data)
Deepak Kodihalli66c46eb2017-03-02 03:07:10 -060038 {
Patrick Venture34438962018-10-30 13:17:37 -070039 auto pos = entryItem.find(separator);
Patrick Venturef18bf832018-10-26 18:14:00 -070040 if (std::string::npos != pos)
Deepak Kodihalli66c46eb2017-03-02 03:07:10 -060041 {
Patrick Venture34438962018-10-30 13:17:37 -070042 auto key = entryItem.substr(0, entryItem.find(separator));
43 auto value = entryItem.substr(entryItem.find(separator) + 1);
Deepak Kodihalli66c46eb2017-03-02 03:07:10 -060044 metadata.emplace(std::move(key), std::move(value));
45 }
46 }
47};
48
Deepak Kodihalli16e87542017-02-27 07:07:33 -060049/** @brief Build error associations specific to metadata. Specialize this
50 * template for handling a specific type of metadata.
51 * @tparam M - type of metadata
Deepak Kodihalli327e5802017-02-28 02:39:56 -060052 * @param [in] match - metadata to be handled
Deepak Kodihalli16e87542017-02-27 07:07:33 -060053 * @param [in] data - metadata key=value entries
54 * @param [out] list - list of error association objects
55 */
56template <typename M>
Patrick Venturef18bf832018-10-26 18:14:00 -070057void build(const std::string& match, const std::vector<std::string>& data,
Deepak Kodihalli16e87542017-02-27 07:07:33 -060058 AssociationList& list) = delete;
59
Deepak Kodihalli327e5802017-02-28 02:39:56 -060060// Example template specialization - we don't want to do anything
61// for this metadata.
62using namespace example::xyz::openbmc_project::Example::Elog;
63template <>
64inline void build<TestErrorTwo::DEV_ID>(const std::string& match,
65 const std::vector<std::string>& data,
66 AssociationList& list)
67{
68}
69
Deepak Kodihalli739e9252017-03-05 23:23:50 -060070template <>
Patrick Venturef18bf832018-10-26 18:14:00 -070071inline void
72 build<example::xyz::openbmc_project::Example::Device::Callout::
73 CALLOUT_DEVICE_PATH_TEST>(const std::string& match,
74 const std::vector<std::string>& data,
75 AssociationList& list)
Deepak Kodihalli739e9252017-03-05 23:23:50 -060076{
Deepak Kodihalli739e9252017-03-05 23:23:50 -060077 std::map<std::string, std::string> metadata;
78 parse(data, metadata);
79 auto iter = metadata.find(match);
Patrick Venturef18bf832018-10-26 18:14:00 -070080 if (metadata.end() != iter)
Deepak Kodihalli739e9252017-03-05 23:23:50 -060081 {
Patrick Venturef18bf832018-10-26 18:14:00 -070082 auto comp = [](const auto& first, const auto& second) {
Patrick Venture30047bf2018-11-01 18:52:15 -070083 return (std::strcmp(std::get<0>(first), second) < 0);
Deepak Kodihalli739e9252017-03-05 23:23:50 -060084 };
Patrick Venturef18bf832018-10-26 18:14:00 -070085 auto callout = std::lower_bound(callouts.begin(), callouts.end(),
86 (iter->second).c_str(), comp);
87 if ((callouts.end() != callout) &&
Patrick Venture30047bf2018-11-01 18:52:15 -070088 !std::strcmp((iter->second).c_str(), std::get<0>(*callout)))
Deepak Kodihalli739e9252017-03-05 23:23:50 -060089 {
Patrick Venturecaa73ad2018-10-30 13:13:06 -070090 constexpr auto ROOT = "/xyz/openbmc_project/inventory";
91
Patrick Venturef18bf832018-10-26 18:14:00 -070092 list.push_back(std::make_tuple(
93 "callout", "fault", std::string(ROOT) + std::get<1>(*callout)));
Deepak Kodihalli739e9252017-03-05 23:23:50 -060094 }
95 }
96}
97
Deepak Kodihalli5edacf32017-03-16 07:04:07 -050098// The PROCESS_META flag is needed to get out of tree builds working. Such
99// builds will have access only to internal error interfaces, hence handlers
100// for out dbus error interfaces won't compile. This flag is not set by default,
101// the phosphor-logging recipe enabled it.
Deepak Kodihalli682326a2017-03-06 05:26:53 -0600102#if defined PROCESS_META
103
104template <>
Patrick Venturef18bf832018-10-26 18:14:00 -0700105void build<xyz::openbmc_project::Common::Callout::Device::CALLOUT_DEVICE_PATH>(
106 const std::string& match, const std::vector<std::string>& data,
Deepak Kodihalli682326a2017-03-06 05:26:53 -0600107 AssociationList& list);
108
Tom Joseph213aaf62017-07-25 00:02:09 +0530109template <>
Patrick Venturef18bf832018-10-26 18:14:00 -0700110void build<
111 xyz::openbmc_project::Common::Callout::Inventory::CALLOUT_INVENTORY_PATH>(
112 const std::string& match, const std::vector<std::string>& data,
Tom Joseph213aaf62017-07-25 00:02:09 +0530113 AssociationList& list);
114
Deepak Kodihalli682326a2017-03-06 05:26:53 -0600115#endif // PROCESS_META
116
Deepak Kodihalli16e87542017-02-27 07:07:33 -0600117} // namespace associations
118} // namespace metadata
119} // namespace logging
120} // namespace phosphor