mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
c98c52ffb8
* Cleaned up dependencies on controller manager * Removed global fields * Simplified setting up RascsiResponse and RascsiExecutor * Got rid of remaining raw pointers * Use references instead of pointers * Improved encapsulation
52 lines
1.4 KiB
C++
52 lines
1.4 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "primary_device.h"
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
// TODO Maybe this should better be a mixin class because not all storage devicess have mode pages
|
|
class ModePageDevice : public PrimaryDevice
|
|
{
|
|
public:
|
|
|
|
using PrimaryDevice::PrimaryDevice;
|
|
|
|
bool Init(const unordered_map<string, string>&) override;
|
|
|
|
virtual void ModeSelect(scsi_defs::scsi_command, const vector<int>&, const vector<uint8_t>&, int) const;
|
|
|
|
protected:
|
|
|
|
bool SupportsSaveParameters() const { return supports_save_parameters; }
|
|
void SupportsSaveParameters(bool b) { supports_save_parameters = b; }
|
|
int AddModePages(const vector<int>&, vector<uint8_t>&, int, int, int) const;
|
|
virtual void SetUpModePages(map<int, vector<byte>>&, int, bool) const = 0;
|
|
virtual void AddVendorPage(map<int, vector<byte>>&, int, bool) const {
|
|
// Nothing to add by default
|
|
}
|
|
|
|
private:
|
|
|
|
bool supports_save_parameters = false;
|
|
|
|
virtual int ModeSense6(const vector<int>&, vector<uint8_t>&) const = 0;
|
|
virtual int ModeSense10(const vector<int>&, vector<uint8_t>&) const = 0;
|
|
|
|
void ModeSense6() const;
|
|
void ModeSense10() const;
|
|
void ModeSelect6() const;
|
|
void ModeSelect10() const;
|
|
|
|
void SaveParametersCheck(int) const;
|
|
};
|