mirror of
https://github.com/akuker/RASCSI.git
synced 2024-12-22 15:30:09 +00:00
41bdcd4aed
* Update logging * Remove duplicate code * Update unit tests * Clean up includes * Merge ProtobufSerializer into protobuf_util namespace * Precompile regex * Add const * Add Split() convenience method, update log level/ID parsing * Move log.h to legacy folder * Elimininate gotos * Fixes for gcc 13 * Update compiler flags * Update default folder handling * Use references instead of pointers * Move code for better encapsulation * Move code * Remove unused method argument * Move device logger * Remove redundant to_string * Rename for consistency * Update handling of protobuf pointers * Simplify protobuf usage * Memory handling update * Add hasher
82 lines
1.7 KiB
C++
82 lines
1.7 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022-2023 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "controllers/controller_manager.h"
|
|
#include "controllers/abstract_controller.h"
|
|
#include "piscsi/command_context.h"
|
|
#include "piscsi/piscsi_service.h"
|
|
#include "piscsi/piscsi_image.h"
|
|
#include "piscsi/piscsi_response.h"
|
|
#include "piscsi/piscsi_executor.h"
|
|
#include "generated/piscsi_interface.pb.h"
|
|
#include "spdlog/sinks/stdout_color_sinks.h"
|
|
#include <span>
|
|
#include <string>
|
|
#include <atomic>
|
|
|
|
using namespace std;
|
|
|
|
class BUS;
|
|
|
|
class Piscsi
|
|
{
|
|
static const int DEFAULT_PORT = 6868;
|
|
|
|
public:
|
|
|
|
Piscsi() = default;
|
|
~Piscsi() = default;
|
|
|
|
int run(span<char *>);
|
|
|
|
private:
|
|
|
|
void Banner(span<char *>) const;
|
|
bool InitBus();
|
|
void CleanUp();
|
|
void ReadAccessToken(const path&);
|
|
void LogDevices(string_view) const;
|
|
static void TerminationHandler(int);
|
|
string ParseArguments(span<char *>, PbCommand&, int&, string&);
|
|
void Process();
|
|
bool IsNotBusy() const;
|
|
|
|
void ShutDown(AbstractController::piscsi_shutdown_mode);
|
|
|
|
bool ExecuteCommand(CommandContext&);
|
|
|
|
bool SetLogLevel(const string&) const;
|
|
|
|
const shared_ptr<spdlog::logger> logger = spdlog::stdout_color_mt("piscsi stdout logger");
|
|
|
|
static PbDeviceType ParseDeviceType(const string&);
|
|
|
|
// Processing flag
|
|
atomic_bool target_is_active;
|
|
|
|
string access_token;
|
|
|
|
PiscsiImage piscsi_image;
|
|
|
|
PiscsiResponse response;
|
|
|
|
PiscsiService service;
|
|
|
|
unique_ptr<PiscsiExecutor> executor;
|
|
|
|
ControllerManager controller_manager;
|
|
|
|
unique_ptr<BUS> bus;
|
|
|
|
// Required for the termination handler
|
|
static inline Piscsi *instance;
|
|
};
|