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)
81 lines
2.0 KiB
C++
81 lines
2.0 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// 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 <vector>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
class BUS;
|
|
class ControllerManager;
|
|
class RascsiExecutor;
|
|
|
|
class Rascsi
|
|
{
|
|
using optargs_type = vector<pair<int, string>>;
|
|
|
|
static const int DEFAULT_PORT = 6868;
|
|
|
|
public:
|
|
|
|
Rascsi() = default;
|
|
~Rascsi() = default;
|
|
|
|
int run(const vector<char *>&);
|
|
|
|
private:
|
|
|
|
void Banner(const vector<char *>&) 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<char *>&, 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> 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<ControllerManager> controller_manager;
|
|
|
|
static inline shared_ptr<RascsiExecutor> 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;
|
|
};
|