From 3e84ec6645bcea669805947f1409b58b4b0d9f72 Mon Sep 17 00:00:00 2001 From: Ratan Gupta Date: Fri, 6 Oct 2017 21:37:01 +0530 Subject: Implement create function in event manager Implement the logging event interface. Create the dbus event object based on the event type. Change-Id: Idfa9e5c43f170d904fd25f22d73e0509b1785fc9 Signed-off-by: Ratan Gupta --- src/event_manager.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/event_manager.hpp') diff --git a/src/event_manager.hpp b/src/event_manager.hpp index 3d1f8d1..7184852 100644 --- a/src/event_manager.hpp +++ b/src/event_manager.hpp @@ -1,5 +1,10 @@ #pragma once +#include "event_entry.hpp" + +#include +#include +#include #include namespace phosphor @@ -24,16 +29,26 @@ class Manager * @detail Add the objectPath,propertyName, propertyValue * as additional data of the event object. * @param[in] eventName - Name of the event. + * @param[in] eventMessage - Message for the event. * @param[in] objectPath - Path of the D-Bus object. * @param[in] propertyName - Name of the property. * @param[in] propertyValue - Value of the property. */ void create( const std::string& eventName, + const std::string& eventMessage, const std::string& objectPath, const std::string& propertyName, const std::string& propertyValue); + private: + using EventName = std::string; + /** @brief Queue of events */ + using EventQueue = std::queue>; + + using EventMap = std::map; + /** @brief Map of event name and the list of events **/ + EventMap eventMap; }; Manager& getManager(); -- cgit v1.2.1