mirror of
https://github.com/akuker/RASCSI.git
synced 2025-01-18 10:30:32 +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
52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022-2023 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "generated/piscsi_interface.pb.h"
|
|
#include "shared/scsi.h"
|
|
#include <filesystem>
|
|
#include <memory>
|
|
#include <span>
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
using namespace filesystem;
|
|
using namespace piscsi_interface;
|
|
|
|
class PrimaryDevice;
|
|
class MockAbstractController;
|
|
|
|
extern const path test_data_temp_path;
|
|
|
|
pair<shared_ptr<MockAbstractController>, shared_ptr<PrimaryDevice>> CreateDevice(PbDeviceType, const string& = "");
|
|
|
|
pair<int, path> OpenTempFile();
|
|
path CreateTempFile(int);
|
|
path CreateTempFileWithData(span<const byte>);
|
|
|
|
// create a file with the specified data
|
|
void CreateTempFileWithData(const string&, vector<uint8_t>&);
|
|
|
|
void DeleteTempFile(const string&);
|
|
// Call this at the end of every test case to make sure things are cleaned up
|
|
void CleanUpAllTempFiles();
|
|
|
|
string ReadTempFileToString(const string& filename);
|
|
|
|
int GetInt16(const vector<byte>&, int);
|
|
uint32_t GetInt32(const vector<byte>&, int);
|
|
|
|
// This class is needed in order to be declared as friend, required to have access to AbstractController::SetCmdByte
|
|
class TestInquiry {
|
|
public:
|
|
static void Inquiry(PbDeviceType, scsi_defs::device_type, scsi_defs::scsi_level, const string&, int, bool,
|
|
const string& = "");
|
|
};
|