blob: 41d0ae4cd4812913800fa2e085fdfc6452015599 [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.
#include "rmad/state_handler/welcome_screen_state_handler.h"
#include <base/logging.h>
#include <base/notreached.h>
namespace rmad {
WelcomeScreenStateHandler::WelcomeScreenStateHandler(
scoped_refptr<JsonStore> json_store)
: BaseStateHandler(json_store) {}
RmadErrorCode WelcomeScreenStateHandler::InitializeState() {
if (!state_.has_welcome()) {
state_.set_allocated_welcome(new WelcomeState);
}
return RMAD_ERROR_OK;
}
BaseStateHandler::GetNextStateCaseReply
WelcomeScreenStateHandler::GetNextStateCase(const RmadState& state) {
if (!state.has_welcome()) {
LOG(ERROR) << "RmadState missing |welcome| state.";
return {.error = RMAD_ERROR_REQUEST_INVALID, .state_case = GetStateCase()};
}
switch (state.welcome().choice()) {
case WelcomeState::RMAD_CHOICE_UNKNOWN:
return {.error = RMAD_ERROR_REQUEST_ARGS_MISSING,
.state_case = GetStateCase()};
case WelcomeState::RMAD_CHOICE_FINALIZE_REPAIR:
return {.error = RMAD_ERROR_OK,
.state_case = RmadState::StateCase::kComponentsRepair};
default:
break;
}
NOTREACHED();
return {.error = RMAD_ERROR_NOT_SET,
.state_case = RmadState::StateCase::STATE_NOT_SET};
}
} // namespace rmad