mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +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)
84 lines
2.8 KiB
C++
84 lines
2.8 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2021-2022 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "spdlog/spdlog.h"
|
|
#include "shared/protobuf_serializer.h"
|
|
#include "rascsi/rascsi_response.h"
|
|
#include <unordered_set>
|
|
#include <unordered_map>
|
|
|
|
class RascsiImage;
|
|
class DeviceFactory;
|
|
class ControllerManager;
|
|
class PrimaryDevice;
|
|
class CommandContext;
|
|
|
|
using namespace spdlog;
|
|
|
|
class RascsiExecutor
|
|
{
|
|
public:
|
|
|
|
RascsiExecutor(RascsiImage& rascsi_image, ControllerManager& controller_manager)
|
|
: rascsi_image(rascsi_image), controller_manager(controller_manager) {}
|
|
~RascsiExecutor() = default;
|
|
|
|
unordered_set<int> GetReservedIds() const { return reserved_ids; }
|
|
|
|
bool ProcessDeviceCmd(const CommandContext&, const PbDeviceDefinition&, const PbCommand&, bool);
|
|
bool ProcessCmd(const CommandContext&, const PbCommand&);
|
|
bool SetLogLevel(const string&) const;
|
|
bool Start(PrimaryDevice&, bool) const;
|
|
bool Stop(PrimaryDevice&, bool) const;
|
|
bool Eject(PrimaryDevice&, bool) const;
|
|
bool Protect(PrimaryDevice&, bool) const;
|
|
bool Unprotect(PrimaryDevice&, bool) const;
|
|
bool Attach(const CommandContext&, const PbDeviceDefinition&, bool);
|
|
bool Insert(const CommandContext&, const PbDeviceDefinition&, const shared_ptr<PrimaryDevice>&, bool) const;
|
|
bool Detach(const CommandContext&, const shared_ptr<PrimaryDevice>&, bool) const;
|
|
void DetachAll();
|
|
bool ShutDown(const CommandContext&, const string&);
|
|
string SetReservedIds(string_view);
|
|
bool ValidateImageFile(const CommandContext&, StorageDevice&, const string&, string&) const;
|
|
void PrintCommand(const PbCommand&, const PbDeviceDefinition&, bool) const;
|
|
string ValidateLunSetup(const PbCommand&) const;
|
|
bool VerifyExistingIdAndLun(const CommandContext&, int, int) const;
|
|
shared_ptr<PrimaryDevice> CreateDevice(const CommandContext&, const PbDeviceType, int, const string&) const;
|
|
bool SetSectorSize(const CommandContext&, shared_ptr<PrimaryDevice>, int) const;
|
|
|
|
static bool ValidateOperationAgainstDevice(const CommandContext&, const PrimaryDevice&, const PbOperation&);
|
|
static bool ValidateIdAndLun(const CommandContext&, int, int);
|
|
static bool SetProductData(const CommandContext&, const PbDeviceDefinition&, PrimaryDevice&);
|
|
|
|
private:
|
|
|
|
const RascsiResponse rascsi_response;
|
|
|
|
RascsiImage& rascsi_image;
|
|
|
|
ControllerManager& controller_manager;
|
|
|
|
const DeviceFactory device_factory;
|
|
|
|
const ProtobufSerializer serializer;
|
|
|
|
unordered_set<int> reserved_ids;
|
|
|
|
static inline const unordered_map<string, level::level_enum> log_level_mapping = {
|
|
{ "trace", level::trace },
|
|
{ "debug", level::debug },
|
|
{ "info", level::info },
|
|
{ "warn", level::warn },
|
|
{ "err", level::err },
|
|
{ "off", level::off }
|
|
};
|
|
};
|