mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
8cb4105409
* Fix SonarQube issues * Fix error handling when target ID for INQUIRY is missing
68 lines
1.6 KiB
C++
68 lines
1.6 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022-2023 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "shared/scsi.h"
|
|
#include "shared/piscsi_exceptions.h"
|
|
#include <unordered_map>
|
|
#include <functional>
|
|
|
|
using namespace scsi_defs;
|
|
|
|
class PhaseHandler
|
|
{
|
|
phase_t phase = phase_t::busfree;
|
|
|
|
public:
|
|
|
|
PhaseHandler() = default;
|
|
virtual ~PhaseHandler() = default;
|
|
|
|
void Init();
|
|
|
|
virtual void BusFree() = 0;
|
|
virtual void Selection() = 0;
|
|
virtual void Command() = 0;
|
|
virtual void Status() = 0;
|
|
virtual void DataIn() = 0;
|
|
virtual void DataOut() = 0;
|
|
virtual void MsgIn() = 0;
|
|
virtual void MsgOut() = 0;
|
|
|
|
virtual bool Process(int) = 0;
|
|
|
|
protected:
|
|
|
|
phase_t GetPhase() const { return phase; }
|
|
void SetPhase(phase_t p) { phase = p; }
|
|
bool IsSelection() const { return phase == phase_t::selection; }
|
|
bool IsBusFree() const { return phase == phase_t::busfree; }
|
|
bool IsCommand() const { return phase == phase_t::command; }
|
|
bool IsStatus() const { return phase == phase_t::status; }
|
|
bool IsDataIn() const { return phase == phase_t::datain; }
|
|
bool IsDataOut() const { return phase == phase_t::dataout; }
|
|
bool IsMsgIn() const { return phase == phase_t::msgin; }
|
|
bool IsMsgOut() const { return phase == phase_t::msgout; }
|
|
|
|
void ProcessPhase() const
|
|
{
|
|
try {
|
|
phase_executors.at(phase)();
|
|
}
|
|
catch(const out_of_range&) {
|
|
throw scsi_exception(sense_key::aborted_command);
|
|
}
|
|
}
|
|
|
|
private:
|
|
|
|
unordered_map<phase_t, function<void()>> phase_executors;
|
|
};
|