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
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022-2023 Uwe Seimet
|
|
//
|
|
// Implementation of a SCSI printer (see SCSI-2 specification for a command description)
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
#pragma once
|
|
|
|
#include "interfaces/scsi_printer_commands.h"
|
|
#include "primary_device.h"
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <span>
|
|
|
|
using namespace std;
|
|
|
|
class SCSIPrinter : public PrimaryDevice, private ScsiPrinterCommands
|
|
{
|
|
static const int NOT_RESERVED = -2;
|
|
|
|
static constexpr const char *PRINTER_FILE_PATTERN = "/piscsi_sclp-XXXXXX";
|
|
|
|
public:
|
|
|
|
explicit SCSIPrinter(int);
|
|
~SCSIPrinter() override = default;
|
|
|
|
bool Init(const param_map&) override;
|
|
void CleanUp() override;
|
|
|
|
vector<uint8_t> InquiryInternal() const override;
|
|
|
|
bool WriteByteSequence(span<const uint8_t>) override;
|
|
|
|
private:
|
|
|
|
void TestUnitReady() override;
|
|
void ReserveUnit() override { PrimaryDevice::ReserveUnit(); }
|
|
void ReleaseUnit() override { PrimaryDevice::ReleaseUnit(); }
|
|
void SendDiagnostic() override { PrimaryDevice::SendDiagnostic(); }
|
|
void Print() override;
|
|
void SynchronizeBuffer();
|
|
|
|
string file_template;
|
|
|
|
string filename;
|
|
|
|
ofstream out;
|
|
};
|