mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
51 lines
988 B
C++
51 lines
988 B
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include "rascsi_interface.pb.h"
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
using namespace std;
|
|
using namespace rascsi_interface;
|
|
|
|
class RasctlParser
|
|
{
|
|
|
|
public:
|
|
|
|
RasctlParser() = default;
|
|
~RasctlParser() = default;
|
|
|
|
PbOperation ParseOperation(const string&) const;
|
|
PbDeviceType ParseType(const string&) const;
|
|
|
|
private:
|
|
|
|
unordered_map<int, PbOperation> operations = {
|
|
{ 'a', ATTACH },
|
|
{ 'd', DETACH },
|
|
{ 'e', EJECT },
|
|
{ 'i', INSERT },
|
|
{ 'p', PROTECT },
|
|
{ 's', DEVICES_INFO },
|
|
{ 'u', UNPROTECT }
|
|
};
|
|
|
|
unordered_map<int, PbDeviceType> device_types = {
|
|
{ 'b', SCBR },
|
|
{ 'c', SCCD },
|
|
{ 'd', SCDP },
|
|
{ 'h', SCHD },
|
|
{ 'l', SCLP },
|
|
{ 'm', SCMO },
|
|
{ 'r', SCRM },
|
|
{ 's', SCHS }
|
|
};
|
|
};
|