//--------------------------------------------------------------------------- // // SCSI Target Emulator RaSCSI Reloaded // 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. // // [ SCSI Magneto-Optical Disk] // //--------------------------------------------------------------------------- #pragma once #include "os.h" #include "disk.h" #include "filepath.h" class SCSIMO : public Disk, public FileSupport { public: SCSIMO(const unordered_set&, const unordered_map&); ~SCSIMO() override = default; SCSIMO(SCSIMO&) = delete; SCSIMO& operator=(const SCSIMO&) = delete; void Open(const Filepath& path) override; vector InquiryInternal() const override; void ModeSelect(const vector&, const BYTE *, int) override; protected: void SetDeviceParameters(BYTE *) const override; void AddModePages(map>&, int, bool) const override; void AddFormatPage(map>&, bool) const override; void AddVendorPage(map>&, int, bool) const override; private: void AddOptionPage(map>&, bool) const; void SetGeometries(const unordered_map& g) { geometries = g; } bool SetGeometryForCapacity(uint64_t); // The mapping of supported capacities to block sizes and block counts, empty if there is no capacity restriction unordered_map geometries; };