Fix: Replace span with vector

The message args in the event service data is
coming empty and also crashing bmcweb when multiple
arguments present. The boost::beast::span has issue
in passing it as reference to function for assignment.
Replaced span with std::vector to avoid empty response
to caller function.

Tested:
 - All message arguments are working fine and resolved
   crash.

Change-Id: I800247cfd0d5dba7698cdb3e60c1290e478bf3ac
Signed-off-by: AppaRao Puli <apparao.puli@linux.intel.com>
diff --git a/redfish-core/include/event_service_manager.hpp b/redfish-core/include/event_service_manager.hpp
index c48db09..c11e31b 100644
--- a/redfish-core/include/event_service_manager.hpp
+++ b/redfish-core/include/event_service_manager.hpp
@@ -58,7 +58,7 @@
 // <ID, timestamp, RedfishLogId, registryPrefix, MessageId, MessageArgs>
 using EventLogObjectsType =
     std::tuple<std::string, std::string, std::string, std::string, std::string,
-               boost::beast::span<std::string>>;
+               std::vector<std::string>>;
 
 namespace message_registries
 {
@@ -150,7 +150,7 @@
 
 int getEventLogParams(const std::string& logEntry, std::string& timestamp,
                       std::string& messageID,
-                      boost::beast::span<std::string>& messageArgs)
+                      std::vector<std::string>& messageArgs)
 {
     // The redfish log format is "<Timestamp> <MessageId>,<MessageArgs>"
     // First get the Timestamp
@@ -184,13 +184,11 @@
     {
         std::string& messageArgsStart = logEntryFields[1];
         // If the first string is empty, assume there are no MessageArgs
-        std::size_t messageArgsSize = 0;
         if (!messageArgsStart.empty())
         {
-            messageArgsSize = logEntryFields.size() - 1;
+            messageArgs.assign(logEntryFields.begin() + 1,
+                               logEntryFields.end());
         }
-
-        messageArgs = boost::beast::span(&messageArgsStart, messageArgsSize);
     }
 
     return 0;
@@ -215,7 +213,7 @@
 
 int formatEventLogEntry(const std::string& logEntryID,
                         const std::string& messageID,
-                        const boost::beast::span<std::string>& messageArgs,
+                        const std::vector<std::string>& messageArgs,
                         std::string timestamp, const std::string customText,
                         nlohmann::json& logEntryJson)
 {
@@ -351,8 +349,7 @@
             const std::string& messageID = std::get<2>(logEntry);
             const std::string& registryName = std::get<3>(logEntry);
             const std::string& messageKey = std::get<4>(logEntry);
-            const boost::beast::span<std::string>& messageArgs =
-                std::get<5>(logEntry);
+            const std::vector<std::string>& messageArgs = std::get<5>(logEntry);
 
             // If registryPrefixes list is empty, don't filter events
             // send everything.
@@ -920,7 +917,7 @@
 
             std::string timestamp;
             std::string messageID;
-            boost::beast::span<std::string> messageArgs;
+            std::vector<std::string> messageArgs;
             if (event_log::getEventLogParams(logEntry, timestamp, messageID,
                                              messageArgs) != 0)
             {