blob: 06f6bc270b58381283151ebe64dba36d710851e9 [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"
Deepak Kodihalli36db46c2017-03-31 06:28:44 -05006#include "xyz/openbmc_project/Object/Delete/server.hpp"
Deepak Kodihallib388da62017-02-27 00:47:12 -06007#include "org/openbmc/Associations/server.hpp"
Adriana Kobylak88d7cf82017-01-24 12:30:15 -06008
9namespace phosphor
10{
11namespace logging
12{
Adriana Kobylak88d7cf82017-01-24 12:30:15 -060013
Deepak Kodihallib388da62017-02-27 00:47:12 -060014using EntryIfaces = sdbusplus::server::object::object<
15 sdbusplus::xyz::openbmc_project::Logging::server::Entry,
Deepak Kodihalli36db46c2017-03-31 06:28:44 -050016 sdbusplus::xyz::openbmc_project::Object::server::Delete,
Deepak Kodihallib388da62017-02-27 00:47:12 -060017 sdbusplus::org::openbmc::server::Associations>;
Adriana Kobylak88d7cf82017-01-24 12:30:15 -060018
Deepak Kodihalli35b46372017-02-27 04:58:18 -060019using AssociationList =
20 std::vector<std::tuple<std::string, std::string, std::string>>;
21
Deepak Kodihalli8110ca62017-04-10 02:11:54 -050022class Manager;
23
Adriana Kobylak88d7cf82017-01-24 12:30:15 -060024/** @class Entry
25 * @brief OpenBMC logging entry implementation.
26 * @details A concrete implementation for the
Deepak Kodihallib388da62017-02-27 00:47:12 -060027 * xyz.openbmc_project.Logging.Entry and
28 * org.openbmc.Associations DBus APIs.
Adriana Kobylak88d7cf82017-01-24 12:30:15 -060029 */
Deepak Kodihallib388da62017-02-27 00:47:12 -060030class Entry : public EntryIfaces
Adriana Kobylak88d7cf82017-01-24 12:30:15 -060031{
32 public:
33 Entry() = delete;
34 Entry(const Entry&) = delete;
35 Entry& operator=(const Entry&) = delete;
36 Entry(Entry&&) = delete;
37 Entry& operator=(Entry&&) = delete;
38 virtual ~Entry() = default;
39
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060040 /** @brief Constructor to put object onto bus at a dbus path.
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060041 * Defer signal registration (pass true for deferSignal to the
42 * base class) until after the properties are set.
Adriana Kobylakdf995fa2017-01-08 15:14:02 -060043 * @param[in] bus - Bus to attach to.
44 * @param[in] path - Path to attach at.
Adriana Kobylakc5f0bbd2017-01-22 14:56:04 -060045 * @param[in] idErr - The error entry id.
46 * @param[in] timestampErr - The commit timestamp.
47 * @param[in] severityErr - The severity of the error.
48 * @param[in] msgErr - The message of the error.
49 * @param[in] additionalDataErr - The error metadata.
Deepak Kodihalli8110ca62017-04-10 02:11:54 -050050 * @param[in] parent - The error's parent.
Adriana Kobylak88d7cf82017-01-24 12:30:15 -060051 */
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060052 Entry(sdbusplus::bus::bus& bus,
53 const std::string& path,
54 uint32_t idErr,
Adriana Kobylakc5f0bbd2017-01-22 14:56:04 -060055 uint64_t timestampErr,
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060056 Level severityErr,
57 std::string&& msgErr,
Deepak Kodihalli35b46372017-02-27 04:58:18 -060058 std::vector<std::string>&& additionalDataErr,
Deepak Kodihalli8110ca62017-04-10 02:11:54 -050059 AssociationList&& objects,
60 Manager& parent) :
61 EntryIfaces(bus, path.c_str(), true),
62 parent(parent)
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060063 {
64 id(idErr);
65 severity(severityErr);
Adriana Kobylakc5f0bbd2017-01-22 14:56:04 -060066 timestamp(timestampErr);
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060067 message(std::move(msgErr));
68 additionalData(std::move(additionalDataErr));
Deepak Kodihalli35b46372017-02-27 04:58:18 -060069 associations(std::move(objects));
Deepak Kodihalli16aed112017-03-31 00:11:46 -050070 // Store a copy of associations in case we need to recreate
71 assocs = associations();
Deepak Kodihalli1c9f16e2017-03-27 03:50:01 -050072 resolved(false);
Adriana Kobylak4ea7f312017-01-10 12:52:34 -060073
74 // Emit deferred signal.
75 this->emit_object_added();
76 };
77
Deepak Kodihalli90abed62017-03-27 03:56:44 -050078 /** @brief Set resolution status of the error.
79 * @param[in] value - boolean indicating resolution
80 * status (true = resolved)
81 * @returns value of 'Resolved' property
82 */
83 bool resolved(bool value) override
84 {
85 value ?
86 associations({}) :
87 associations(assocs);
88
89 return sdbusplus::xyz::openbmc_project::
90 Logging::server::Entry::resolved(value);
91 }
92
Deepak Kodihalli36db46c2017-03-31 06:28:44 -050093 /** @brief Delete this d-bus object.
94 */
95 void delete_() override;
96
Deepak Kodihalli16aed112017-03-31 00:11:46 -050097 private:
98 /** @brief This entry's associations */
99 AssociationList assocs = {};
Deepak Kodihalli8110ca62017-04-10 02:11:54 -0500100
101 /** @brief This entry's parent */
102 Manager& parent;
Adriana Kobylak88d7cf82017-01-24 12:30:15 -0600103};
104
105} // namespace logging
106} // namespace phosphor