Fix the dbus signature used for setting postcodes
- With 9a96970ebb93eb1f495c200801343a4d1c53977c PDI change,
the dbus signature of raw post codes has been changed from
uint64 to struct[uint64,array[byte]] where the array[byte] is
the secondary post code.
- The intent behind this commit is to fix the code based on the
latest PDI change.
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
Change-Id: I46dfbf643ad138c373d3826d3504b4a26866a5bf
diff --git a/src/biccommands.cpp b/src/biccommands.cpp
index 1dc907d..ee1bddb 100644
--- a/src/biccommands.cpp
+++ b/src/biccommands.cpp
@@ -81,8 +81,10 @@
try
{
- // storing post code as varaint
- std::variant<uint64_t> postCode = static_cast<uint64_t>(data);
+ using postcode_t = std::tuple<uint64_t, std::vector<uint8_t>>;
+
+ uint64_t primaryPostCode = static_cast<uint64_t>(data);
+ postcode_t postCode = std::make_tuple(primaryPostCode, {});
// creating dbus objects for 1 to N process
std::string dbusObjStr = dbusObj + std::to_string((ctx->hostIdx + 1));
@@ -93,7 +95,7 @@
"org.freedesktop.DBus.Properties", "Set");
// Adding paramters to method call
- method.append(dbusService, "Value", postCode);
+ method.append(dbusService, "Value", std::variant<postcode_t> postCode);
// Invoke method call function
auto reply = conn->call(method);