blob: 6c0e52e9834445db9aacebed4e95c789addfc13e [file] [log] [blame]
Adriana Kobylak88d7cf82017-01-24 12:30:15 -06001#pragma once
2
3#include <sdbusplus/bus.hpp>
4#include <sdbusplus/server/object.hpp>
5#include "xyz/openbmc_project/Logging/Entry/server.hpp"
6
7namespace phosphor
8{
9namespace logging
10{
11namespace details
12{
13
14template <typename T>
15using ServerObject = typename sdbusplus::server::object::object<T>;
16
17using 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 */
27class Entry final :
28 public details::ServerObject<details::EntryIface>
29{
30 public:
31 Entry() = delete;
32 Entry(const Entry&) = delete;
33 Entry& operator=(const Entry&) = delete;
34 Entry(Entry&&) = delete;
35 Entry& operator=(Entry&&) = delete;
36 virtual ~Entry() = default;
37
38 /** @brief Constructor for the Log Entry object
39 * @param[in] bus - DBus bus to attach to.
40 * @param[in] obj - Object path to attach to.
41 */
42 Entry(sdbusplus::bus::bus& bus, const char* obj);
43};
44
45} // namespace logging
46} // namespace phosphor