blob: 6e26e17a15f907f82745a8e9418155929a682f8e [file] [log] [blame]
#pragma once
#include "dump_entry.hpp"
#include "xyz/openbmc_project/Dump/Entry/System/server.hpp"
#include <sdbusplus/bus.hpp>
#include <sdbusplus/server/object.hpp>
namespace openpower
{
namespace dump
{
namespace system
{
template <typename T>
using ServerObject = typename sdbusplus::server::object_t<T>;
using EntryIfaces = sdbusplus::server::object_t<
sdbusplus::xyz::openbmc_project::Dump::Entry::server::System>;
using originatorTypes = sdbusplus::xyz::openbmc_project::Common::server::
OriginatedBy::OriginatorTypes;
class Manager;
/** @class Entry
* @brief System Dump Entry implementation.
* @details A concrete implementation for the
* xyz.openbmc_project.Dump.Entry DBus API
*/
class Entry : virtual public phosphor::dump::Entry, virtual public EntryIfaces
{
public:
Entry() = delete;
Entry(const Entry&) = delete;
Entry& operator=(const Entry&) = delete;
Entry(Entry&&) = delete;
Entry& operator=(Entry&&) = delete;
~Entry() = default;
/** @brief Constructor for the Dump Entry Object
* @param[in] bus - Bus to attach to.
* @param[in] objPath - Object path to attach to
* @param[in] dumpId - Dump id.
* @param[in] timeStamp - Dump creation timestamp
* since the epoch.
* @param[in] dumpSize - Dump size in bytes.
* @param[in] sourceId - DumpId provided by the source.
* @param[in] status - status of the dump.
* @param[in] originatorId - Id of the originator of the dump
* @param[in] originatorType - Originator type
* @param[in] parent - The dump entry's parent.
*/
Entry(sdbusplus::bus_t& bus, const std::string& objPath, uint32_t dumpId,
uint64_t timeStamp, uint64_t dumpSize, const uint32_t sourceId,
phosphor::dump::OperationStatus status, std::string originatorId,
originatorTypes originatorType, phosphor::dump::Manager& parent) :
phosphor::dump::Entry(bus, objPath.c_str(), dumpId, timeStamp, dumpSize,
std::string(), status, originatorId,
originatorType, parent),
EntryIfaces(bus, objPath.c_str(), EntryIfaces::action::defer_emit)
{
sourceDumpId(sourceId);
// Emit deferred signal.
this->openpower::dump::system::EntryIfaces::emit_object_added();
};
/** @brief Method to initiate the offload of dump
* @param[in] uri - URI to offload dump.
*/
void initiateOffload(std::string uri) override;
/** @brief Method to update an existing dump entry
* @param[in] timeStamp - Dump creation timestamp
* @param[in] dumpSize - Dump size in bytes.
* @param[in] sourceId - DumpId provided by the source.
*/
void update(uint64_t timeStamp, uint64_t dumpSize, const uint32_t sourceId)
{
elapsed(timeStamp);
size(dumpSize);
sourceDumpId(sourceId);
// TODO: Handled dump failure case with
// #bm-openbmc/2808
status(OperationStatus::Completed);
completedTime(timeStamp);
}
/**
* @brief Delete host system dump and it entry dbus object
*/
void delete_() override;
};
} // namespace system
} // namespace dump
} // namespace openpower