PlextorReader.h
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:3k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /*  cdrdao - write audio CD-Rs in disc-at-once mode
  2.  *
  3.  *  Copyright (C) 1998  Andreas Mueller <mueller@daneb.ping.de>
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19. /*
  20.  * $Log: PlextorReader.h,v $
  21.  * Revision 1.8  1999/04/05 18:48:37  mueller
  22.  * Added driver options.
  23.  * Added read-cd patch from Leon Woestenberg.
  24.  *
  25.  * Revision 1.7  1999/03/27 20:56:39  mueller
  26.  * Changed toc analysis interface.
  27.  * Added support for toc analysis of data disks.
  28.  *
  29.  * Revision 1.6  1998/09/27 19:20:05  mueller
  30.  * Added retrieval of control nibbles for track with 'analyzeTrack()'.
  31.  *
  32.  * Revision 1.5  1998/09/07 15:20:20  mueller
  33.  * Reorganized read-toc related code.
  34.  *
  35.  * Revision 1.4  1998/08/30 19:25:43  mueller
  36.  * Added function 'diskInfo()'.
  37.  * Changed sub channel data field in 'readSubChannelData()' to be more
  38.  * compatible to other drives.
  39.  *
  40.  * Revision 1.3  1998/08/25 19:26:07  mueller
  41.  * Moved basic index extraction algorithm to class 'CdrDriver'.
  42.  *
  43.  */
  44. #ifndef __PLEXTOR_READER_H__
  45. #define __PLEXTOR_READER_H__
  46. #include "CdrDriver.h"
  47. #define OPT_PLEX_USE_PARANOIA   0x0001 // always use paranoia method for DAE
  48. #define OPT_PLEX_DAE_READ10     0x0002 // use READ10 for DAE
  49. class Toc;
  50. class Track;
  51. class PlextorReader : public CdrDriver {
  52. public:
  53.   PlextorReader(ScsiIf *scsiIf, unsigned long options);
  54.   static CdrDriver *instance(ScsiIf *scsiIf, unsigned long options);
  55.   // not used for readers
  56.   int bigEndianSamples() const { return 0;}
  57.   int speed(int);
  58.   int loadUnload(int) const { return 0; }
  59.   int initDao(const Toc *);
  60.   int startDao();
  61.   int finishDao();
  62.   void abortDao();
  63.   DiskInfo *diskInfo();
  64.   Toc *readDiskToc(int, const char *);
  65.   Toc *readDisk(int, const char *);
  66. protected:
  67.   DiskInfo diskInfo_;
  68.   int model_;
  69.   CdRawToc *getRawToc(int sessionNr, int *len);
  70.   int getTrackIndex(long lba, int *trackNr, int *indexNr, 
  71.     unsigned char *ctl);
  72.   int readCatalog(Toc *, long startLba, long endLba);
  73.   int analyzeTrack(TrackData::Mode, int trackNr, long startLba, long endLba,
  74.    Msf *index,
  75.    int *indexCnt, long *pregap, char *isrcCode,
  76.    unsigned char *ctl);
  77.   int readIsrc(int trackNr, char *);
  78.   long readTrackData(TrackData::Mode mode, long lba, long len,
  79.      unsigned char *buf);
  80.   int readSubChannels(long lba, long len, SubChannel ***, Sample *);
  81.   int readAudioRange(int fd, long start, long end,
  82.      int startTrack, int endTrack, TrackInfo *trackInfo);
  83. private:
  84.   void playAudioBlock(long start, long len);
  85.   int readSubChannelData(int *trackNr, int *indexNr, long *,
  86.  unsigned char *ctl);
  87.   int readAudioRangePlextor(int fd,  long start, long end, int startTrack,
  88.     int endTrack, TrackInfo *);
  89. };
  90. #endif