mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-25 20:33:35 +00:00
08194af424
- Moved C++ code to cpp/ from src/raspberrypi - Related updates to Makefile, easyinstall.sh, and the github build rules - Removed the native X68k C code in src/x68k from the repo
69 lines
2.7 KiB
C++
69 lines
2.7 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2021-2022 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "rascsi_interface.pb.h"
|
|
#include <dirent.h>
|
|
#include <list>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
using namespace rascsi_interface;
|
|
|
|
class DeviceFactory;
|
|
class ControllerManager;
|
|
class Device;
|
|
|
|
class RascsiResponse
|
|
{
|
|
public:
|
|
|
|
RascsiResponse(DeviceFactory& device_factory, const ControllerManager& controller_manager, int max_luns)
|
|
: device_factory(device_factory), controller_manager(controller_manager), max_luns(max_luns) {}
|
|
~RascsiResponse() = default;
|
|
|
|
bool GetImageFile(PbImageFile&, const string&, const string&) const;
|
|
unique_ptr<PbImageFilesInfo> GetAvailableImages(PbResult&, const string&, const string&, const string&, int) const;
|
|
unique_ptr<PbReservedIdsInfo> GetReservedIds(PbResult&, const unordered_set<int>&) const;
|
|
void GetDevices(PbServerInfo&, const string&) const;
|
|
void GetDevicesInfo(PbResult&, const PbCommand&, const string&) const;
|
|
unique_ptr<PbDeviceTypesInfo> GetDeviceTypesInfo(PbResult&) const;
|
|
unique_ptr<PbVersionInfo> GetVersionInfo(PbResult&) const;
|
|
unique_ptr<PbServerInfo> GetServerInfo(PbResult&, const unordered_set<int>&, const string&, const string&, const string&,
|
|
const string&, int) const;
|
|
unique_ptr<PbNetworkInterfacesInfo> GetNetworkInterfacesInfo(PbResult&) const;
|
|
unique_ptr<PbMappingInfo> GetMappingInfo(PbResult&) const;
|
|
unique_ptr<PbLogLevelInfo> GetLogLevelInfo(PbResult&, const string&) const;
|
|
unique_ptr<PbOperationInfo> GetOperationInfo(PbResult&, int) const;
|
|
|
|
private:
|
|
|
|
DeviceFactory& device_factory;
|
|
|
|
const ControllerManager& controller_manager;
|
|
|
|
int max_luns;
|
|
|
|
const list<string> log_levels = { "trace", "debug", "info", "warn", "err", "off" };
|
|
|
|
unique_ptr<PbDeviceProperties> GetDeviceProperties(const Device&) const;
|
|
void GetDevice(const Device&, PbDevice&, const string&) const;
|
|
void GetAllDeviceTypeProperties(PbDeviceTypesInfo&) const;
|
|
void GetDeviceTypeProperties(PbDeviceTypesInfo&, PbDeviceType) const;
|
|
void GetAvailableImages(PbImageFilesInfo&, const string&, const string&, const string&, const string&, int) const;
|
|
void GetAvailableImages(PbResult& result, PbServerInfo&, const string&, const string&, const string&, int) const;
|
|
unique_ptr<PbOperationMetaData> CreateOperation(PbOperationInfo&, const PbOperation&, const string&) const;
|
|
unique_ptr<PbOperationParameter> AddOperationParameter(PbOperationMetaData&, const string&, const string&,
|
|
const string& = "", bool = false) const;
|
|
set<id_set> MatchDevices(PbResult&, const PbCommand&) const;
|
|
|
|
static string GetNextImageFile(const dirent *, const string&);
|
|
};
|