#pragma once #include namespace analyzer { /** @brief An abstract class for service event resolutions. */ class Resolution { public: /** @brief Pure virtual destructor. */ virtual ~Resolution() = 0; public: /** * @brief Resolves the service actions required by this resolution. * @param io_sd An object containing the service data collected during * hardware error analysis. */ virtual void resolve(ServiceData& io_sd) const = 0; }; // Pure virtual destructor must be defined. inline Resolution::~Resolution() {} /** @brief Resolves a hardware callout service event. */ class HardwareCalloutResolution : public Resolution { public: /** * @brief Constructor from components. * @param i_path The devtree path of a guardable unit relative to a * chip. An empty string refers to the chip itself. * @param i_priority The callout priority. * @param i_guard True, if guard is required. False, otherwise. */ HardwareCalloutResolution(const std::string& i_path, callout::Priority i_priority, bool i_guard) : iv_path(i_path), iv_priority(i_priority), iv_guard(i_guard) {} private: /** The devtree path of a guardable unit relative to a chip. An empty string * refers to the chip itself. */ const std::string iv_path; /** The callout priority. */ const callout::Priority iv_priority; /** True, if guard is required. False, otherwise. */ const bool iv_guard; public: void resolve(ServiceData& io_sd) const override; }; /** @brief Resolves a procedure callout service event. */ class ProcedureCalloutResolution : public Resolution { public: /** * @brief Constructor from components. * @param i_procedure The procedure callout type. * @param i_priority The callout priority. */ ProcedureCalloutResolution(const callout::Procedure& i_procedure, const callout::Priority& i_priority) : iv_procedure(i_procedure), iv_priority(i_priority) {} private: /** The procedure callout type. */ const callout::Procedure iv_procedure; /** The callout priority. */ const callout::Priority iv_priority; public: void resolve(ServiceData& io_sd) const override; }; /** * @brief Contains a list of resolutions. This resolutions will be resolved the * list in the order in which they were inputted into the constructor. */ class ResolutionList : public Resolution { public: /** @brief Default constructor. */ ResolutionList() = default; private: /** The resolution list. */ std::vector> iv_list; public: /** * @brief Adds a new resolution to the end of the list. * @param i_resolution The new resolution */ void push(const std::shared_ptr& i_resolution) { iv_list.push_back(i_resolution); } // Overloaded from parent. void resolve(ServiceData& io_sd) const override { for (const auto& e : iv_list) { e->resolve(io_sd); } } }; } // namespace analyzer