Bochs/bochs/iodev/cdrom.h
Volker Ruppert 5014eed268 - link lowlevel cdrom support with the hdimage plugin instead of harddrv and usb_common. This fixes
duplicate log prefixes on Windows if both IDE and USB cdroms are used in plugin mode. Windows also
  requires the cdrom base class and the init_cdrom() method to link and work correctly.
2011-07-17 17:23:12 +00:00

78 lines
2.3 KiB
C++

/////////////////////////////////////////////////////////////////////////
// $Id$
/////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2002-2009 The Bochs Project
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
// Header file for low-level OS specific CDROM emulation
class cdrom_base_c : public logfunctions {
public:
virtual ~cdrom_base_c(void) {}
// Load CD-ROM. Returns 0 if CD is not ready.
virtual bx_bool insert_cdrom(const char *dev = NULL) = 0;
// Logically eject the CD.
virtual void eject_cdrom() = 0;
// Read CD TOC. Returns 0 if start track is out of bounds.
virtual bx_bool read_toc(Bit8u* buf, int* length, bx_bool msf, int start_track, int format) = 0;
// Return CD-ROM capacity (in 2048 byte frames)
virtual Bit32u capacity() = 0;
// Read a single block from the CD. Returns 0 on failure.
virtual bx_bool read_block(Bit8u* buf, Bit32u lba, int blocksize) BX_CPP_AttrRegparmN(3) = 0;
// Start (spin up) the CD.
virtual bx_bool start_cdrom() = 0;
// Seek for new block address.
virtual void seek(Bit32u lba) = 0;
};
class cdrom_interface : public cdrom_base_c {
public:
cdrom_interface(const char *dev);
virtual ~cdrom_interface(void);
bx_bool insert_cdrom(const char *dev = NULL);
void eject_cdrom();
bx_bool read_toc(Bit8u* buf, int* length, bx_bool msf, int start_track, int format);
Bit32u capacity();
bx_bool read_block(Bit8u* buf, Bit32u lba, int blocksize) BX_CPP_AttrRegparmN(3);
bx_bool start_cdrom();
void seek(Bit32u lba);
private:
int fd;
char *path;
int using_file;
#ifdef WIN32
BOOL bUseASPI;
HANDLE hFile;
int hid;
int tid;
int lun;
#endif
};