blob: 92360cb685aaf80d3fad9fc51661b95cf2587bfc [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 */
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060027class Entry : public details::ServerObject<details::EntryIface>
Adriana Kobylak88d7cf82017-01-24 12:30:15 -060028{
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 Kobylakdf995fa2017-01-08 15:14:02 -060037 /** @brief Constructor to put object onto bus at a dbus path.
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060038 * Defer signal registration (pass true for deferSignal to the
39 * base class) until after the properties are set.
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060040 * @param[in] bus - Bus to attach to.
41 * @param[in] path - Path to attach at.
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060042 * @param[in] properties - Desired Entry properties.
Adriana Kobylak88d7cf82017-01-24 12:30:15 -060043 */
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060044 Entry(sdbusplus::bus::bus& bus,
45 const std::string& path,
46 uint32_t idErr,
47 Level severityErr,
48 std::string&& msgErr,
49 std::vector<std::string>&& additionalDataErr) :
50 details::ServerObject<details::EntryIface>
51 (bus, path.c_str(), true)
52 {
53 id(idErr);
54 severity(severityErr);
55 message(std::move(msgErr));
56 additionalData(std::move(additionalDataErr));
57
58 // Emit deferred signal.
59 this->emit_object_added();
60 };
61
Adriana Kobylak88d7cf82017-01-24 12:30:15 -060062};
63
64} // namespace logging
65} // namespace phosphor