blob: b0cd5bf076a50c28b85aad780ace341d490b6d8d [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef RMAD_RMAD_INTERFACE_IMPL_H_
#define RMAD_RMAD_INTERFACE_IMPL_H_
#include "rmad/rmad_interface.h"
#include <memory>
#include <vector>
#include <base/memory/scoped_refptr.h>
#include "rmad/state_handler/state_handler_manager.h"
#include "rmad/utils/cr50_utils_impl.h"
#include "rmad/utils/json_store.h"
namespace rmad {
class RmadInterfaceImpl final : public RmadInterface {
public:
RmadInterfaceImpl();
// Used to inject mocked json_store and state_handler_manager.
explicit RmadInterfaceImpl(
scoped_refptr<JsonStore> json_store,
std::unique_ptr<StateHandlerManager> state_handler_manager);
RmadInterfaceImpl(const RmadInterfaceImpl&) = delete;
RmadInterfaceImpl& operator=(const RmadInterfaceImpl&) = delete;
~RmadInterfaceImpl() override = default;
void GetCurrentState(const GetStateCallback& callback) override;
void TransitionNextState(const TransitionNextStateRequest& request,
const GetStateCallback& callback) override;
void TransitionPreviousState(const GetStateCallback& callback) override;
void AbortRma(const AbortRmaCallback& callback) override;
private:
void Initialize();
bool StoreStateHistory();
scoped_refptr<JsonStore> json_store_;
std::unique_ptr<StateHandlerManager> state_handler_manager_;
RmadState::StateCase current_state_;
std::vector<RmadState::StateCase> state_history_;
bool allow_abort_;
// Utilities
Cr50UtilsImpl cr50_utils_;
};
} // namespace rmad
#endif // RMAD_RMAD_INTERFACE_IMPL_H_