blob: 126bb59d55a2cc1b227dd354617d731ad1db9a5a [file] [log] [blame]
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -05001#pragma once
2
3#include "dump_manager.hpp"
4#include "dump_utils.hpp"
5#include "xyz/openbmc_project/Dump/NewDump/server.hpp"
6
7#include <sdbusplus/bus.hpp>
8#include <sdbusplus/server/object.hpp>
Dhruvaraj Subhashchandran7040bce2020-09-16 00:50:19 -05009#include <xyz/openbmc_project/Dump/Create/server.hpp>
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050010
11namespace phosphor
12{
13namespace dump
14{
15namespace system
16{
17
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -050018constexpr uint32_t INVALID_SOURCE_ID = 0xFFFFFFFF;
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050019using NotifyIface = sdbusplus::server::object::object<
Dhruvaraj Subhashchandran7040bce2020-09-16 00:50:19 -050020 sdbusplus::xyz::openbmc_project::Dump::server::Create,
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050021 sdbusplus::xyz::openbmc_project::Dump::server::NewDump>;
22
23/** @class Manager
24 * @brief System Dump manager implementation.
25 * @details A concrete implementation for the
26 * xyz.openbmc_project.Dump.Notify DBus API
27 */
28class Manager : virtual public NotifyIface,
29 virtual public phosphor::dump::Manager
30{
31 public:
32 Manager() = delete;
33 Manager(const Manager&) = default;
34 Manager& operator=(const Manager&) = delete;
35 Manager(Manager&&) = delete;
36 Manager& operator=(Manager&&) = delete;
37 virtual ~Manager() = default;
38
39 /** @brief Constructor to put object onto bus at a dbus path.
40 * @param[in] bus - Bus to attach to.
41 * @param[in] event - Dump manager sd_event loop.
42 * @param[in] path - Path to attach at.
43 * @param[in] baseEntryPath - Base path of the dump entry.
44 */
45 Manager(sdbusplus::bus::bus& bus, const char* path,
46 const std::string& baseEntryPath) :
47 NotifyIface(bus, path),
48 phosphor::dump::Manager(bus, path, baseEntryPath)
49 {
50 }
51
52 void restore() override
53 {
54 // TODO #2597 Implement the restore to restore the dump entries
55 // after the service restart.
56 }
57
58 /** @brief Notify the system dump manager about creation of a new dump.
59 * @param[in] dumpType - Type of the Dump.
60 * @param[in] dumpId - Id from the source of the dump.
61 * @param[in] size - Size of the dump.
62 */
63 void notify(NewDump::DumpType dumpType, uint32_t dumpId,
64 uint64_t size) override;
Dhruvaraj Subhashchandran7040bce2020-09-16 00:50:19 -050065
66 /** @brief Implementation for CreateDump
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -050067 * Method to create a new system dump entry when user
68 * requests for a new system dump.
Dhruvaraj Subhashchandran7040bce2020-09-16 00:50:19 -050069 *
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -050070 * @return object_path - The path to the new dump entry.
Dhruvaraj Subhashchandran7040bce2020-09-16 00:50:19 -050071 */
Dhruvaraj Subhashchandran6ccb50e2020-10-29 09:33:18 -050072 sdbusplus::message::object_path createDump() override;
Dhruvaraj Subhashchandranfef66a92020-09-06 13:10:59 -050073};
74
75} // namespace system
76} // namespace dump
77} // namespace phosphor