1 #pragma once
2 
3 #include "dump_entry.hpp"
4 #include "xyz/openbmc_project/Dump/Entry/System/server.hpp"
5 
6 #include <sdbusplus/bus.hpp>
7 #include <sdbusplus/server/object.hpp>
8 
9 namespace openpower
10 {
11 namespace dump
12 {
13 namespace system
14 {
15 template <typename T>
16 using ServerObject = typename sdbusplus::server::object_t<T>;
17 
18 using EntryIfaces = sdbusplus::server::object_t<
19     sdbusplus::xyz::openbmc_project::Dump::Entry::server::System>;
20 
21 using originatorTypes = sdbusplus::xyz::openbmc_project::Common::server::
22     OriginatedBy::OriginatorTypes;
23 
24 class Manager;
25 
26 /** @class Entry
27  *  @brief System Dump Entry implementation.
28  *  @details A concrete implementation for the
29  *  xyz.openbmc_project.Dump.Entry DBus API
30  */
31 class Entry : virtual public phosphor::dump::Entry, virtual public EntryIfaces
32 {
33   public:
34     Entry() = delete;
35     Entry(const Entry&) = delete;
36     Entry& operator=(const Entry&) = delete;
37     Entry(Entry&&) = delete;
38     Entry& operator=(Entry&&) = delete;
39     ~Entry() = default;
40 
41     /** @brief Constructor for the Dump Entry Object
42      *  @param[in] bus - Bus to attach to.
43      *  @param[in] objPath - Object path to attach to
44      *  @param[in] dumpId - Dump id.
45      *  @param[in] timeStamp - Dump creation timestamp
46      *             since the epoch.
47      *  @param[in] dumpSize - Dump size in bytes.
48      *  @param[in] sourceId - DumpId provided by the source.
49      *  @param[in] status - status  of the dump.
50      *  @param[in] originatorId - Id of the originator of the dump
51      *  @param[in] originatorType - Originator type
52      *  @param[in] parent - The dump entry's parent.
53      */
54     Entry(sdbusplus::bus_t& bus, const std::string& objPath, uint32_t dumpId,
55           uint64_t timeStamp, uint64_t dumpSize, const uint32_t sourceId,
56           phosphor::dump::OperationStatus status, std::string originatorId,
57           originatorTypes originatorType, phosphor::dump::Manager& parent) :
58         phosphor::dump::Entry(bus, objPath.c_str(), dumpId, timeStamp, dumpSize,
59                               std::string(), status, originatorId,
60                               originatorType, parent),
61         EntryIfaces(bus, objPath.c_str(), EntryIfaces::action::defer_emit)
62     {
63         sourceDumpId(sourceId);
64         // Emit deferred signal.
65         this->openpower::dump::system::EntryIfaces::emit_object_added();
66     };
67 
68     /** @brief Method to initiate the offload of dump
69      *  @param[in] uri - URI to offload dump.
70      */
71     void initiateOffload(std::string uri) override;
72 
73     /** @brief Method to update an existing dump entry
74      *  @param[in] timeStamp - Dump creation timestamp
75      *  @param[in] dumpSize - Dump size in bytes.
76      *  @param[in] sourceId - DumpId provided by the source.
77      */
78     void update(uint64_t timeStamp, uint64_t dumpSize, const uint32_t sourceId)
79     {
80         elapsed(timeStamp);
81         size(dumpSize);
82         sourceDumpId(sourceId);
83         // TODO: Handled dump failure case with
84         // #bm-openbmc/2808
85         status(OperationStatus::Completed);
86         completedTime(timeStamp);
87     }
88 
89     /**
90      * @brief Delete host system dump and it entry dbus object
91      */
92     void delete_() override;
93 };
94 
95 } // namespace system
96 } // namespace dump
97 } // namespace openpower
98