blob: 065438c24a6d68b040e92af93de694da502b8d62 [file] [log] [blame]
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -06001#pragma once
2
3#include "com/ibm/Dump/Entry/Resource/server.hpp"
4#include "dump_entry.hpp"
5
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -06006#include <sdbusplus/bus.hpp>
7#include <sdbusplus/server/object.hpp>
8
Jayanth Othayoth0af74a52021-04-08 03:55:21 -05009#include <chrono>
10
Dhruvaraj Subhashchandran341d6832021-01-15 06:28:04 -060011namespace openpower
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060012{
13namespace dump
14{
15namespace resource
16{
17template <typename T>
Patrick Williams9b18bf22022-07-22 19:26:55 -050018using ServerObject = typename sdbusplus::server::object_t<T>;
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060019
Patrick Williams9b18bf22022-07-22 19:26:55 -050020using EntryIfaces = sdbusplus::server::object_t<
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060021 sdbusplus::com::ibm::Dump::Entry::server::Resource>;
22
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060023class 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 */
31class 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.
Patrick Williams4bc1c2b2021-05-10 14:22:18 -050049 * @param[in] vspStr- Input to host to generate the resource dump.
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060050 * @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 */
Patrick Williams9b18bf22022-07-22 19:26:55 -050054 Entry(sdbusplus::bus_t& bus, const std::string& objPath, uint32_t dumpId,
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060055 uint64_t timeStamp, uint64_t dumpSize, const uint32_t sourceId,
Patrick Williams4bc1c2b2021-05-10 14:22:18 -050056 std::string vspStr, std::string pwd,
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060057 phosphor::dump::OperationStatus status,
58 phosphor::dump::Manager& parent) :
Patrick Williams73f64072022-04-01 17:04:47 -050059 EntryIfaces(bus, objPath.c_str(), EntryIfaces::action::defer_emit),
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060060 phosphor::dump::Entry(bus, objPath.c_str(), dumpId, timeStamp, dumpSize,
61 status, parent)
62 {
63 sourceDumpId(sourceId);
Patrick Williams4bc1c2b2021-05-10 14:22:18 -050064 vspString(vspStr);
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060065 password(pwd);
Dhruvaraj Subhashchandran2f8e2762021-02-11 07:22:35 -060066 // Emit deferred signal.
67 this->openpower::dump::resource::EntryIfaces::emit_object_added();
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060068 };
69
70 /** @brief Method to initiate the offload of dump
71 * @param[in] uri - URI to offload dump.
72 */
Dhruvaraj Subhashchandran2f8e2762021-02-11 07:22:35 -060073 void initiateOffload(std::string uri) override;
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060074
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 }
Dhruvaraj Subhashchandran4c63ce52020-12-18 02:07:22 -060090
91 /**
92 * @brief Delete resource dump in host memory and the entry dbus object
93 */
94 void delete_() override;
Dhruvaraj Subhashchandran62337a92020-11-22 21:24:30 -060095};
96
97} // namespace resource
98} // namespace dump
Dhruvaraj Subhashchandran341d6832021-01-15 06:28:04 -060099} // namespace openpower