//--------------------------------------------------------------------------- // // SCSI Target Emulator RaSCSI Reloaded // for Raspberry Pi // // Copyright (C) 2022 Uwe Seimet // //--------------------------------------------------------------------------- #pragma once #include "devices/device_logger.h" #include "rascsi/command_context.h" #include "rascsi/rascsi_service.h" #include "rascsi/rascsi_image.h" #include "rascsi/rascsi_response.h" #include "generated/rascsi_interface.pb.h" #include #include using namespace std; class BUS; class ControllerManager; class RascsiExecutor; class Rascsi { using optargs_type = vector>; static const int DEFAULT_PORT = 6868; public: Rascsi() = default; ~Rascsi() = default; int run(const vector&); private: void Banner(const vector&) const; bool InitBus() const; static void Cleanup(); void ReadAccessToken(const string&) const; void LogDevices(string_view) const; PbDeviceType ParseDeviceType(const string&) const; static void TerminationHandler(int); optargs_type ParseArguments(const vector&, int&) const; void CreateInitialDevices(const optargs_type&) const; void WaitForNotBusy() const; // TODO Should not be static and should be moved to RascsiService static bool ExecuteCommand(const CommandContext&, const PbCommand&); DeviceLogger device_logger; // A static instance is needed because of the signal handler static inline shared_ptr bus; // TODO These fields should not be static static inline RascsiService service; static inline RascsiImage rascsi_image; const static inline RascsiResponse rascsi_response; static inline shared_ptr controller_manager; static inline shared_ptr executor; // Processing flag static inline volatile bool active; // Some versions of spdlog do not support get_log_level(), so we have to remember the level static inline string current_log_level = "info"; static inline string access_token; };