blob: 3ef516cf7e0491de7689af91117e8e339d3452a1 [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_STATE_HANDLER_CHECK_CALIBRATION_STATE_HANDLER_H_
#define RMAD_STATE_HANDLER_CHECK_CALIBRATION_STATE_HANDLER_H_
#include "rmad/state_handler/base_state_handler.h"
#include <map>
#include <string>
namespace rmad {
int GetComponentCalibrationPriority(RmadComponent component);
class CheckCalibrationStateHandler : public BaseStateHandler {
public:
explicit CheckCalibrationStateHandler(scoped_refptr<JsonStore> json_store);
ASSIGN_STATE(RmadState::StateCase::kCheckCalibration);
SET_REPEATABLE;
RmadErrorCode InitializeState() override;
GetNextStateCaseReply GetNextStateCase(const RmadState& state) override;
protected:
~CheckCalibrationStateHandler() override = default;
private:
bool CheckIsCalibrationRequired(const RmadState& state,
bool* need_calibration,
RmadErrorCode* error_code);
// Store variables that can be used by other state handlers to make decisions.
bool StoreVars() const;
// To ensure that calibration starts from a higher priority, we use an ordered
// map to traverse it from high to low.
std::map<
int,
std::map<RmadComponent, CalibrationComponentStatus::CalibrationStatus>>
priority_components_calibration_map_;
};
} // namespace rmad
#endif // RMAD_STATE_HANDLER_CHECK_CALIBRATION_STATE_HANDLER_H_