mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-29 16:49:55 +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>
65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
//---------------------------------------------------------------------------
|
||
//
|
||
// SCSI Target Emulator PiSCSI
|
||
// for Raspberry Pi
|
||
//
|
||
// Copyright (C) 2001-2006 PI.(ytanaka@ipc-tokai.or.jp)
|
||
// Copyright (C) 2014-2020 GIMONS
|
||
// Copyright (C) akuker
|
||
//
|
||
// Licensed under the BSD 3-Clause License.
|
||
// See LICENSE file in the project root folder.
|
||
//
|
||
//---------------------------------------------------------------------------
|
||
|
||
#pragma once
|
||
|
||
#include "cd_track.h"
|
||
#include "disk.h"
|
||
#include "interfaces/scsi_mmc_commands.h"
|
||
|
||
class SCSICD : public Disk, private ScsiMmcCommands
|
||
{
|
||
public:
|
||
|
||
SCSICD(int, const unordered_set<uint32_t>&);
|
||
~SCSICD() override = default;
|
||
|
||
bool Init(const unordered_map<string, string>&) override;
|
||
|
||
void Open() override;
|
||
|
||
vector<uint8_t> InquiryInternal() const override;
|
||
int Read(const vector<int>&, vector<uint8_t>&, uint64_t) override;
|
||
|
||
protected:
|
||
|
||
void SetUpModePages(map<int, vector<byte>>&, int, bool) const override;
|
||
void AddVendorPage(map<int, vector<byte>>&, int, bool) const override;
|
||
|
||
private:
|
||
|
||
int ReadTocInternal(const vector<int>&, vector<uint8_t>&);
|
||
|
||
void AddCDROMPage(map<int, vector<byte>>&, bool) const;
|
||
void AddCDDAPage(map<int, vector<byte>>&, bool) const;
|
||
|
||
void OpenIso();
|
||
void OpenPhysical();
|
||
|
||
void CreateDataTrack();
|
||
|
||
void ReadToc() override;
|
||
|
||
void LBAtoMSF(uint32_t, uint8_t *) const; // LBA→MSF conversion
|
||
|
||
bool rawfile = false; // RAW flag
|
||
|
||
// Track management
|
||
void ClearTrack(); // Clear the track
|
||
int SearchTrack(uint32_t lba) const; // Track search
|
||
vector<unique_ptr<CDTrack>> tracks; // Track opbject references
|
||
int dataindex = -1; // Current data track
|
||
int audioindex = -1; // Current audio track
|
||
};
|