1 #pragma once
2 
3 #include "com/ibm/Dump/Entry/Resource/server.hpp"
4 #include "dump_entry.hpp"
5 
6 #include <sdbusplus/bus.hpp>
7 #include <sdbusplus/server/object.hpp>
8 
9 #include <chrono>
10 
11 namespace openpower
12 {
13 namespace dump
14 {
15 namespace resource
16 {
17 template <typename T>
18 using ServerObject = typename sdbusplus::server::object_t<T>;
19 
20 using EntryIfaces = sdbusplus::server::object_t<
21     sdbusplus::com::ibm::Dump::Entry::server::Resource>;
22 
23 class Manager;
24 
25 /** @class Entry
26  *  @brief Resource Dump Entry implementation.
27  *  @details An extension to Dump::Entry class and
28  *  A concrete implementation for the
29  *  com::ibm::Dump::Entry::Resource DBus API
30  */
31 class Entry : virtual public EntryIfaces, virtual public phosphor::dump::Entry
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 resource 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] vspStr- Input to host to generate the resource dump.
50      *  @param[in] pwd - Password needed by host to validate the request.
51      *  @param[in] status - status  of the dump.
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           std::string vspStr, std::string pwd,
57           phosphor::dump::OperationStatus status,
58           phosphor::dump::Manager& parent) :
59         EntryIfaces(bus, objPath.c_str(), EntryIfaces::action::defer_emit),
60         phosphor::dump::Entry(bus, objPath.c_str(), dumpId, timeStamp, dumpSize,
61                               status, parent)
62     {
63         sourceDumpId(sourceId);
64         vspString(vspStr);
65         password(pwd);
66         // Emit deferred signal.
67         this->openpower::dump::resource::EntryIfaces::emit_object_added();
68     };
69 
70     /** @brief Method to initiate the offload of dump
71      *  @param[in] uri - URI to offload dump.
72      */
73     void initiateOffload(std::string uri) override;
74 
75     /** @brief Method to update an existing dump entry
76      *  @param[in] timeStamp - Dump creation timestamp
77      *  @param[in] dumpSize - Dump size in bytes.
78      *  @param[in] sourceId - The id of dump in the origin.
79      */
80     void update(uint64_t timeStamp, uint64_t dumpSize, uint32_t sourceId)
81     {
82         sourceDumpId(sourceId);
83         elapsed(timeStamp);
84         size(dumpSize);
85         // TODO: Handled dump failure case with
86         // #bm-openbmc/2808
87         status(OperationStatus::Completed);
88         completedTime(timeStamp);
89     }
90 
91     /**
92      * @brief Delete resource dump in host memory and the entry dbus object
93      */
94     void delete_() override;
95 };
96 
97 } // namespace resource
98 } // namespace dump
99 } // namespace openpower
100