Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 1 | #include "config.h" |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 2 | |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 3 | #include "elog_meta.hpp" |
| 4 | |
| 5 | namespace phosphor |
| 6 | { |
| 7 | namespace logging |
| 8 | { |
| 9 | namespace metadata |
| 10 | { |
| 11 | namespace associations |
| 12 | { |
| 13 | |
| 14 | #if defined PROCESS_META |
| 15 | |
| 16 | template <> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 17 | void build<xyz::openbmc_project::Common::Callout::Device::CALLOUT_DEVICE_PATH>( |
| 18 | const std::string& match, const std::vector<std::string>& data, |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 19 | AssociationList& list) |
| 20 | { |
| 21 | std::map<std::string, std::string> metadata; |
| 22 | parse(data, metadata); |
| 23 | auto iter = metadata.find(match); |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 24 | if (metadata.end() != iter) |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 25 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 26 | auto comp = [](const auto& first, const auto& second) { |
Patrick Venture | 30047bf | 2018-11-01 18:52:15 -0700 | [diff] [blame] | 27 | return (std::strcmp(std::get<0>(first), second) < 0); |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 28 | }; |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 29 | auto callout = std::lower_bound(callouts.begin(), callouts.end(), |
| 30 | (iter->second).c_str(), comp); |
| 31 | if ((callouts.end() != callout) && |
Patrick Venture | 30047bf | 2018-11-01 18:52:15 -0700 | [diff] [blame] | 32 | !std::strcmp((iter->second).c_str(), std::get<0>(*callout))) |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 33 | { |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 34 | list.emplace_back(std::make_tuple( |
| 35 | CALLOUT_FWD_ASSOCIATION, CALLOUT_REV_ASSOCIATION, |
| 36 | std::string(INVENTORY_ROOT) + std::get<1>(*callout))); |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 37 | } |
| 38 | } |
| 39 | } |
| 40 | |
Tom Joseph | 213aaf6 | 2017-07-25 00:02:09 +0530 | [diff] [blame] | 41 | template <> |
Patrick Venture | f18bf83 | 2018-10-26 18:14:00 -0700 | [diff] [blame] | 42 | void build< |
| 43 | xyz::openbmc_project::Common::Callout::Inventory::CALLOUT_INVENTORY_PATH>( |
| 44 | const std::string& match, const std::vector<std::string>& data, |
Tom Joseph | 213aaf6 | 2017-07-25 00:02:09 +0530 | [diff] [blame] | 45 | AssociationList& list) |
| 46 | { |
| 47 | std::map<std::string, std::string> metadata; |
| 48 | parse(data, metadata); |
| 49 | auto iter = metadata.find(match); |
| 50 | if (metadata.end() != iter) |
| 51 | { |
| 52 | list.emplace_back(std::make_tuple(CALLOUT_FWD_ASSOCIATION, |
| 53 | CALLOUT_REV_ASSOCIATION, |
| 54 | std::string(iter->second.c_str()))); |
| 55 | } |
| 56 | } |
| 57 | |
Deepak Kodihalli | 682326a | 2017-03-06 05:26:53 -0600 | [diff] [blame] | 58 | #endif |
| 59 | |
| 60 | } // namespace associations |
| 61 | } // namespace metadata |
| 62 | } // namespace logging |
| 63 | } // namespace phosphor |