From cbfe4ddd1ea58e410f7d546330e03b2c88b507c9 Mon Sep 17 00:00:00 2001 From: Scott Murray Date: Tue, 8 Nov 2022 11:09:22 -0500 Subject: Update message data type handling KUKSA.val 0.2.1 always returned numeric values as floating point, this has changed with 0.2.5 and support is required to handle data points actually having integer or unsigned integer types. Bug-AGL: SPEC-4598 Signed-off-by: Scott Murray Change-Id: Ia37a52e1dee6726ef56f5e9d7efe445b112c344d --- src/vis-session.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/vis-session.cpp b/src/vis-session.cpp index 880e3ae..53a554c 100644 --- a/src/vis-session.cpp +++ b/src/vis-session.cpp @@ -288,6 +288,12 @@ bool VisSession::parseData(const json &message, std::string &path, std::string & } else if (dp["value"].is_number_float()) { double num = dp["value"]; value = std::to_string(num); + } else if (dp["value"].is_number_unsigned()) { + unsigned int num = dp["value"]; + value = std::to_string(num); + } else if (dp["value"].is_number_integer()) { + int num = dp["value"]; + value = std::to_string(num); } else if (dp["value"].is_boolean()) { value = dp["value"] ? "true" : "false"; } else { -- cgit 1.2.3-korg