Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include <sdbusplus/bus.hpp> |
| 4 | #include <sdbusplus/server/object.hpp> |
| 5 | #include "xyz/openbmc_project/Logging/Entry/server.hpp" |
| 6 | |
| 7 | namespace phosphor |
| 8 | { |
| 9 | namespace logging |
| 10 | { |
| 11 | namespace details |
| 12 | { |
| 13 | |
| 14 | template <typename T> |
| 15 | using ServerObject = typename sdbusplus::server::object::object<T>; |
| 16 | |
| 17 | using EntryIface = |
| 18 | sdbusplus::xyz::openbmc_project::Logging::server::Entry; |
| 19 | |
| 20 | } // namespace details |
| 21 | |
| 22 | /** @class Entry |
| 23 | * @brief OpenBMC logging entry implementation. |
| 24 | * @details A concrete implementation for the |
| 25 | * xyz.openbmc_project.Logging.Entry DBus API. |
| 26 | */ |
Adriana Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame^] | 27 | class Entry : public details::ServerObject<details::EntryIface> |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 28 | { |
| 29 | public: |
| 30 | Entry() = delete; |
| 31 | Entry(const Entry&) = delete; |
| 32 | Entry& operator=(const Entry&) = delete; |
| 33 | Entry(Entry&&) = delete; |
| 34 | Entry& operator=(Entry&&) = delete; |
| 35 | virtual ~Entry() = default; |
| 36 | |
Adriana Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame^] | 37 | /** @brief Constructor to put object onto bus at a dbus path. |
| 38 | * @param[in] bus - Bus to attach to. |
| 39 | * @param[in] path - Path to attach at. |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 40 | */ |
Adriana Kobylak | df995fa | 2017-01-08 15:14:02 -0600 | [diff] [blame^] | 41 | Entry(sdbusplus::bus::bus& bus, const char* path) : |
| 42 | details::ServerObject<details::EntryIface>(bus, path) {}; |
Adriana Kobylak | 88d7cf8 | 2017-01-24 12:30:15 -0600 | [diff] [blame] | 43 | }; |
| 44 | |
| 45 | } // namespace logging |
| 46 | } // namespace phosphor |