| // Copyright 2022 The ChromiumOS Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef RMAD_EXECUTOR_EXECUTOR_H_ |
| #define RMAD_EXECUTOR_EXECUTOR_H_ |
| |
| #include <memory> |
| #include <string> |
| |
| #include <mojo/public/cpp/bindings/pending_receiver.h> |
| #include <mojo/public/cpp/bindings/receiver.h> |
| |
| #include "rmad/executor/mojom/executor.mojom.h" |
| #include "rmad/utils/cmd_utils.h" |
| #include "rmad/utils/crossystem_utils.h" |
| #include "rmad/utils/ec_utils.h" |
| #include "rmad/utils/futility_utils.h" |
| |
| namespace rmad { |
| |
| // Production implementation of the chromeos::rmad::mojom::Executor Mojo |
| // interface. |
| class Executor final : public chromeos::rmad::mojom::Executor { |
| public: |
| explicit Executor( |
| mojo::PendingReceiver<chromeos::rmad::mojom::Executor> receiver); |
| Executor(const Executor&) = delete; |
| Executor& operator=(const Executor&) = delete; |
| ~Executor() override = default; |
| |
| // chromeos::rmad::mojom::Executor overrides. |
| void MountAndWriteLog(uint8_t device_id, |
| const std::string& text_log, |
| const std::string& json_log, |
| const std::string& system_log, |
| MountAndWriteLogCallback callback) override; |
| void CopyRootfsFirmwareUpdater( |
| CopyRootfsFirmwareUpdaterCallback callback) override; |
| void MountAndCopyFirmwareUpdater( |
| uint8_t device_id, MountAndCopyFirmwareUpdaterCallback callback) override; |
| void MountAndCopyDiagnosticsApp( |
| uint8_t device_id, MountAndCopyDiagnosticsAppCallback callback) override; |
| void RebootEc(RebootEcCallback callback) override; |
| void RequestRmaPowerwash(RequestRmaPowerwashCallback callback) override; |
| void RequestBatteryCutoff(RequestBatteryCutoffCallback callback) override; |
| void ResetFpmcuEntropy(ResetFpmcuEntropyCallback callback) override; |
| void GetFlashInfo(GetFlashInfoCallback callback) override; |
| void PreseedRmaState(PreseedRmaStateCallback callback) override; |
| |
| private: |
| // Provides a Mojo endpoint that rmad can call to access the executor's Mojo |
| // methods. |
| mojo::Receiver<chromeos::rmad::mojom::Executor> receiver_; |
| |
| std::unique_ptr<EcUtils> ec_utils_; |
| std::unique_ptr<CrosSystemUtils> crossystem_utils_; |
| std::unique_ptr<CmdUtils> cmd_utils_; |
| std::unique_ptr<FutilityUtils> futility_utils_; |
| }; |
| |
| } // namespace rmad |
| |
| #endif // RMAD_EXECUTOR_EXECUTOR_H_ |