Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 1 | #pragma once |
| 2 | |
| 3 | #include "dump_entry.hpp" |
| 4 | #include "xyz/openbmc_project/Dump/Entry/BMC/server.hpp" |
| 5 | #include "xyz/openbmc_project/Dump/Entry/server.hpp" |
| 6 | #include "xyz/openbmc_project/Object/Delete/server.hpp" |
| 7 | #include "xyz/openbmc_project/Time/EpochTime/server.hpp" |
| 8 | |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 9 | #include <sdbusplus/bus.hpp> |
| 10 | #include <sdbusplus/server/object.hpp> |
| 11 | |
Jayanth Othayoth | 0af74a5 | 2021-04-08 03:55:21 -0500 | [diff] [blame] | 12 | #include <filesystem> |
| 13 | |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 14 | namespace phosphor |
| 15 | { |
| 16 | namespace dump |
| 17 | { |
| 18 | namespace bmc |
| 19 | { |
| 20 | template <typename T> |
Patrick Williams | 9b18bf2 | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 21 | using ServerObject = typename sdbusplus::server::object_t<T>; |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 22 | |
Patrick Williams | 9b18bf2 | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 23 | using EntryIfaces = sdbusplus::server::object_t< |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 24 | sdbusplus::xyz::openbmc_project::Dump::Entry::server::BMC>; |
| 25 | |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 26 | class Manager; |
| 27 | |
| 28 | /** @class Entry |
| 29 | * @brief OpenBMC Dump Entry implementation. |
| 30 | * @details A concrete implementation for the |
| 31 | * xyz.openbmc_project.Dump.Entry DBus API |
| 32 | */ |
| 33 | class Entry : virtual public EntryIfaces, virtual public phosphor::dump::Entry |
| 34 | { |
| 35 | public: |
| 36 | Entry() = delete; |
| 37 | Entry(const Entry&) = delete; |
| 38 | Entry& operator=(const Entry&) = delete; |
| 39 | Entry(Entry&&) = delete; |
| 40 | Entry& operator=(Entry&&) = delete; |
| 41 | ~Entry() = default; |
| 42 | |
| 43 | /** @brief Constructor for the Dump Entry Object |
| 44 | * @param[in] bus - Bus to attach to. |
| 45 | * @param[in] objPath - Object path to attach to |
| 46 | * @param[in] dumpId - Dump id. |
| 47 | * @param[in] timeStamp - Dump creation timestamp |
| 48 | * since the epoch. |
| 49 | * @param[in] fileSize - Dump file size in bytes. |
| 50 | * @param[in] file - Name of dump file. |
Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 51 | * @param[in] status - status of the dump. |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 52 | * @param[in] parent - The dump entry's parent. |
| 53 | */ |
Patrick Williams | 9b18bf2 | 2022-07-22 19:26:55 -0500 | [diff] [blame] | 54 | Entry(sdbusplus::bus_t& bus, const std::string& objPath, uint32_t dumpId, |
Jayanth Othayoth | 3fc6df4 | 2021-04-08 03:45:24 -0500 | [diff] [blame] | 55 | uint64_t timeStamp, uint64_t fileSize, |
| 56 | const std::filesystem::path& file, |
Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 57 | phosphor::dump::OperationStatus status, |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 58 | phosphor::dump::Manager& parent) : |
Patrick Williams | 73f6407 | 2022-04-01 17:04:47 -0500 | [diff] [blame] | 59 | EntryIfaces(bus, objPath.c_str(), EntryIfaces::action::defer_emit), |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 60 | phosphor::dump::Entry(bus, objPath.c_str(), dumpId, timeStamp, fileSize, |
Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 61 | status, parent), |
Dhruvaraj Subhashchandran | 2f8e276 | 2021-02-11 07:22:35 -0600 | [diff] [blame] | 62 | file(file) |
| 63 | { |
| 64 | // Emit deferred signal. |
| 65 | this->phosphor::dump::bmc::EntryIfaces::emit_object_added(); |
| 66 | } |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 67 | |
| 68 | /** @brief Delete this d-bus object. |
| 69 | */ |
| 70 | void delete_() override; |
| 71 | |
Dhruvaraj Subhashchandran | 580d91d | 2020-04-22 12:29:18 -0500 | [diff] [blame] | 72 | /** @brief Method to initiate the offload of dump |
| 73 | * @param[in] uri - URI to offload dump |
| 74 | */ |
| 75 | void initiateOffload(std::string uri) override; |
| 76 | |
Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 77 | /** @brief Method to update an existing dump entry, once the dump creation |
| 78 | * is completed this function will be used to update the entry which got |
| 79 | * created during the dump request. |
| 80 | * @param[in] timeStamp - Dump creation timestamp |
| 81 | * @param[in] fileSize - Dump file size in bytes. |
| 82 | * @param[in] file - Name of dump file. |
| 83 | */ |
Jayanth Othayoth | 3fc6df4 | 2021-04-08 03:45:24 -0500 | [diff] [blame] | 84 | void update(uint64_t timeStamp, uint64_t fileSize, |
| 85 | const std::filesystem::path& filePath) |
Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 86 | { |
| 87 | elapsed(timeStamp); |
| 88 | size(fileSize); |
Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 89 | // TODO: Handled dump failed case with #ibm-openbmc/2808 |
| 90 | status(OperationStatus::Completed); |
Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 91 | file = filePath; |
Dhruvaraj Subhashchandran | a6ab806 | 2020-10-29 15:29:10 -0500 | [diff] [blame] | 92 | // TODO: serialization of this property will be handled with |
| 93 | // #ibm-openbmc/2597 |
| 94 | completedTime(timeStamp); |
Dhruvaraj Subhashchandran | 6ccb50e | 2020-10-29 09:33:18 -0500 | [diff] [blame] | 95 | } |
| 96 | |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 97 | private: |
| 98 | /** @Dump file name */ |
Jayanth Othayoth | 3fc6df4 | 2021-04-08 03:45:24 -0500 | [diff] [blame] | 99 | std::filesystem::path file; |
Dhruvaraj Subhashchandran | 4a98e8f | 2020-01-29 07:11:08 -0600 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | } // namespace bmc |
| 103 | } // namespace dump |
| 104 | } // namespace phosphor |