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 class Manager;
22 
23 /** @class Entry
24  *  @brief System Dump Entry implementation.
25  *  @details A concrete implementation for the
26  *  xyz.openbmc_project.Dump.Entry DBus API
27  */
28 class Entry : virtual public EntryIfaces, virtual public phosphor::dump::Entry
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     ~Entry() = default;
37 
38     /** @brief Constructor for the Dump Entry Object
39      *  @param[in] bus - Bus to attach to.
40      *  @param[in] objPath - Object path to attach to
41      *  @param[in] dumpId - Dump id.
42      *  @param[in] timeStamp - Dump creation timestamp
43      *             since the epoch.
44      *  @param[in] dumpSize - Dump size in bytes.
45      *  @param[in] sourceId - DumpId provided by the source.
46      *  @param[in] status - status  of the dump.
47      *  @param[in] parent - The dump entry's parent.
48      */
49     Entry(sdbusplus::bus_t& bus, const std::string& objPath, uint32_t dumpId,
50           uint64_t timeStamp, uint64_t dumpSize, const uint32_t sourceId,
51           phosphor::dump::OperationStatus status,
52           phosphor::dump::Manager& parent) :
53         EntryIfaces(bus, objPath.c_str(), EntryIfaces::action::defer_emit),
54         phosphor::dump::Entry(bus, objPath.c_str(), dumpId, timeStamp, dumpSize,
55                               status, parent)
56     {
57         sourceDumpId(sourceId);
58         // Emit deferred signal.
59         this->openpower::dump::system::EntryIfaces::emit_object_added();
60     };
61 
62     /** @brief Method to initiate the offload of dump
63      *  @param[in] uri - URI to offload dump.
64      */
65     void initiateOffload(std::string uri) override;
66 
67     /** @brief Method to update an existing dump entry
68      *  @param[in] timeStamp - Dump creation timestamp
69      *  @param[in] dumpSize - Dump size in bytes.
70      *  @param[in] sourceId - DumpId provided by the source.
71      */
72     void update(uint64_t timeStamp, uint64_t dumpSize, const uint32_t sourceId)
73     {
74         elapsed(timeStamp);
75         size(dumpSize);
76         sourceDumpId(sourceId);
77         // TODO: Handled dump failure case with
78         // #bm-openbmc/2808
79         status(OperationStatus::Completed);
80         completedTime(timeStamp);
81     }
82 
83     /**
84      * @brief Delete host system dump and it entry dbus object
85      */
86     void delete_() override;
87 };
88 
89 } // namespace system
90 } // namespace dump
91 } // namespace openpower
92