mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-22 16:33:17 +00:00
52c2aa474f
* Rebrand project to PiSCSI - rascsi ->piscsi - rasctl -> scsictl - rasdump -> scsidump - ras* -> piscsi* (rasutil -> piscsi_util, etc.) * Refined the formatting and wording of the app startup banner * Kept some references to rascsi and rasctl where backwards compatibility is concerned * Point to the new github repo URL Co-authored-by: nucleogenic <nr@nucleogenic.com> Co-authored-by: Uwe Seimet <Uwe.Seimet@seimet.de>
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator PiSCSI
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 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>
|
|
|
|
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 unordered_map<string, string>&) override;
|
|
|
|
vector<uint8_t> InquiryInternal() const override;
|
|
|
|
bool WriteByteSequence(vector<uint8_t>&, uint32_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();
|
|
|
|
void Cleanup();
|
|
|
|
string file_template;
|
|
|
|
string filename;
|
|
|
|
ofstream out;
|
|
};
|