Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Adriana Kobylak | f477fe2 | 2017-01-06 11:56:41 -0600 | [diff] [blame] | 3 | #include <sdbusplus/bus.hpp> |
Adriana Kobylak | d722b3a | 2017-02-28 12:10:44 -0600 | [diff] [blame] | 4 | #include <phosphor-logging/log.hpp> |
Adriana Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame] | 5 | #include "elog_entry.hpp" |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 6 | #include "xyz/openbmc_project/Logging/Internal/Manager/server.hpp" |
| 7 | |
| 8 | namespace phosphor |
| 9 | { |
| 10 | namespace logging |
| 11 | { |
Adriana Kobylak | d722b3a | 2017-02-28 12:10:44 -0600 | [diff] [blame] | 12 | |
| 13 | extern const std::map<std::string,std::vector<std::string>> g_errMetaMap; |
| 14 | extern const std::map<std::string,level> g_errLevelMap; |
| 15 | |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 16 | namespace details |
| 17 | { |
| 18 | |
| 19 | template <typename T> |
| 20 | using ServerObject = typename sdbusplus::server::object::object<T>; |
| 21 | |
| 22 | using ManagerIface = |
| 23 | sdbusplus::xyz::openbmc_project::Logging::Internal::server::Manager; |
| 24 | |
| 25 | } // namespace details |
| 26 | |
| 27 | /** @class Manager |
| 28 | * @brief OpenBMC logging manager implementation. |
| 29 | * @details A concrete implementation for the |
| 30 | * xyz.openbmc_project.Logging.Internal.Manager DBus API. |
| 31 | */ |
Adriana Kobylak | f477fe2 | 2017-01-06 11:56:41 -0600 | [diff] [blame] | 32 | class Manager : public details::ServerObject<details::ManagerIface> |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 33 | { |
| 34 | public: |
| 35 | Manager() = delete; |
| 36 | Manager(const Manager&) = delete; |
| 37 | Manager& operator=(const Manager&) = delete; |
Adriana Kobylak | f477fe2 | 2017-01-06 11:56:41 -0600 | [diff] [blame] | 38 | Manager(Manager&&) = delete; |
| 39 | Manager& operator=(Manager&&) = delete; |
| 40 | virtual ~Manager() = default; |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 41 | |
Adriana Kobylak | f477fe2 | 2017-01-06 11:56:41 -0600 | [diff] [blame] | 42 | /** @brief Constructor to put object onto bus at a dbus path. |
| 43 | * @param[in] bus - Bus to attach to. |
| 44 | * @param[in] path - Path to attach at. |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 45 | */ |
Adriana Kobylak | 4ea7f31 | 2017-01-10 12:52:34 -0600 | [diff] [blame] | 46 | Manager(sdbusplus::bus::bus& bus, const char* objPath) : |
| 47 | details::ServerObject<details::ManagerIface>(bus, objPath), |
| 48 | busLog(bus), |
| 49 | entryId(0) {}; |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 50 | |
| 51 | /* |
| 52 | * @fn commit() |
| 53 | * @brief sd_bus Commit method implementation callback. |
| 54 | * @details Create an error/event log based on transaction id and |
| 55 | * error message. |
| 56 | * @param[in] transactionId - Unique identifier of the journal entries |
| 57 | * to be committed. |
| 58 | * @param[in] errMsg - The error exception message associated with the |
| 59 | * error log to be committed. |
| 60 | */ |
| 61 | void commit(uint64_t transactionId, std::string errMsg) override; |
Adriana Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame] | 62 | |
| 63 | |
| 64 | private: |
Deepak Kodihalli | a87c157 | 2017-02-28 07:40:34 -0600 | [diff] [blame] | 65 | /** @brief Call metadata handler(s), if any. Handlers may create |
| 66 | * associations. |
| 67 | * @param[in] errorName - name of the error |
| 68 | * @param[in] additionalData - list of metadata (in key=value format) |
| 69 | * @param[out] objects - list of error's association objects |
| 70 | */ |
| 71 | void processMetadata(const std::string& errorName, |
| 72 | const std::vector<std::string>& additionalData, |
| 73 | AssociationList& objects) const; |
| 74 | |
Adriana Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame] | 75 | /** @brief Persistent sdbusplus DBus bus connection. */ |
| 76 | sdbusplus::bus::bus& busLog; |
| 77 | |
| 78 | /** @brief Persistent map of Entry dbus objects and their ID */ |
| 79 | std::map<uint32_t, std::unique_ptr<Entry>> entries; |
Adriana Kobylak | 4ea7f31 | 2017-01-10 12:52:34 -0600 | [diff] [blame] | 80 | |
| 81 | /** @brief Id of last error log entry */ |
| 82 | uint32_t entryId; |
Adriana Kobylak | 8f7941e | 2016-11-14 14:46:23 -0600 | [diff] [blame] | 83 | }; |
| 84 | |
| 85 | } // namespace logging |
| 86 | } // namespace phosphor |