Add support to copy records
This commit adds support for sub-frus to copy entire
VPD record into their D-Bus representation.
The JSON file should include a copyRecords key that
contains an array of record name strings that the parser
will then copy over to any sub-frus.
Tested:
Made sure that the D-Bus introspection of the sub-fru that
contains the copyRecord key has the right record duplicated.
Change-Id: Ic3279a568b51d2f8f8b4557285448a1448dd1d39
Signed-off-by: Santosh Puranik <santosh.puranik@in.ibm.com>
diff --git a/ibm_vpd_app.cpp b/ibm_vpd_app.cpp
index 1dc0f97..faec395 100644
--- a/ibm_vpd_app.cpp
+++ b/ibm_vpd_app.cpp
@@ -277,6 +277,26 @@
isSystemVpd);
}
}
+ else
+ {
+ // Check if we have been asked to inherit specific record(s)
+ if constexpr (std::is_same<T, Parsed>::value)
+ {
+ if (item.find("copyRecords") != item.end())
+ {
+ for (const auto& record : item["copyRecords"])
+ {
+ const string& recordName = record;
+ if (vpdMap.find(recordName) != vpdMap.end())
+ {
+ populateFruSpecificInterfaces(
+ vpdMap.at(recordName), preIntrStr + recordName,
+ interfaces);
+ }
+ }
+ }
+ }
+ }
// Populate interfaces and properties that are common to every FRU
// and additional interface that might be defined on a per-FRU basis.