mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 01:31:25 +00:00
aa927cb504
* Update Makefile, move top-level .cpp files * Move top-level .cpp files into their respective folders
61 lines
1.2 KiB
C++
61 lines
1.2 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022-2023 Uwe Seimet
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "hal/bus.h"
|
|
#include "hal/data_sample.h"
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <atomic>
|
|
|
|
using namespace std;
|
|
|
|
// TODO Make static fields/methods non-static
|
|
class ScsiMon
|
|
{
|
|
public:
|
|
ScsiMon() = default;
|
|
~ScsiMon() = default;
|
|
|
|
int run(const vector<char *> &);
|
|
|
|
inline static double ns_per_loop;
|
|
|
|
private:
|
|
void ParseArguments(const vector<char *> &);
|
|
void PrintHelpText(const vector<char *> &) const;
|
|
void Banner() const;
|
|
bool Init();
|
|
void Cleanup() const;
|
|
void Reset() const;
|
|
|
|
static void KillHandler(int);
|
|
|
|
static inline atomic<bool> running;
|
|
|
|
shared_ptr<BUS> bus;
|
|
|
|
uint32_t buff_size = 1000000;
|
|
|
|
vector<shared_ptr<DataSample>> data_buffer;
|
|
|
|
uint32_t data_idx = 0;
|
|
|
|
bool print_help = false;
|
|
|
|
bool import_data = false;
|
|
|
|
string file_base_name = "log";
|
|
string vcd_file_name;
|
|
string json_file_name;
|
|
string html_file_name;
|
|
string input_file_name;
|
|
};
|