mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-26 13:49:21 +00:00
454c61ac0d
* Support for ID and LUN parameter for the -L option in rascsi * Added DeviceLogger class * Removed dupiicate code * Fixed SonarQube issues * Added unit tests, improved code sharing * Fixed regression (#979)
73 lines
1.5 KiB
C++
73 lines
1.5 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "shared/scsi.h"
|
|
#include "hal/bus.h"
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
using namespace std;
|
|
|
|
class RasDump
|
|
{
|
|
static const int MINIMUM_BUFFER_SIZE = 1024 * 64;
|
|
static const int DEFAULT_BUFFER_SIZE = 1024 * 1024;
|
|
|
|
public:
|
|
|
|
RasDump() = default;
|
|
~RasDump() = default;
|
|
|
|
int run(const vector<char *>&);
|
|
|
|
private:
|
|
|
|
bool Banner(const vector<char *>&) const;
|
|
bool Init() const;
|
|
void ParseArguments(const vector<char *>&);
|
|
int DumpRestore();
|
|
pair<uint64_t, uint32_t> GetDeviceInfo();
|
|
void WaitPhase(BUS::phase_t) const;
|
|
void Selection() const;
|
|
void Command(scsi_defs::scsi_command, vector<uint8_t>&) const;
|
|
void DataIn(int);
|
|
void DataOut(int);
|
|
void Status() const;
|
|
void MessageIn() const;
|
|
void BusFree() const;
|
|
void TestUnitReady() const;
|
|
void RequestSense();
|
|
void Inquiry();
|
|
pair<uint64_t, uint32_t> ReadCapacity();
|
|
void Read10(uint32_t, uint32_t, uint32_t);
|
|
void Write10(uint32_t, uint32_t, uint32_t);
|
|
void WaitForBusy() const;
|
|
|
|
static void CleanUp();
|
|
static void KillHandler(int);
|
|
|
|
// A static instance is needed because of the signal handler
|
|
static inline unique_ptr<BUS> bus;
|
|
|
|
vector<uint8_t> buffer;
|
|
|
|
int target_id = -1;
|
|
|
|
int target_lun = 0;
|
|
|
|
int initiator_id = 7;
|
|
|
|
string filename;
|
|
|
|
bool restore = false;
|
|
};
|