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

SCSI/ASPI

开发平台:

MultiPlatform

  1. /*  cdrdao - write audio CD-Rs in disc-at-once mode
  2.  *
  3.  *  Copyright (C) 1998, 1999  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: GenericMMC.h,v $
  21.  * Revision 1.8  1999/04/05 18:47:40  mueller
  22.  * Added driver options.
  23.  * Added option to read Q sub-channel data instead raw PW sub-channel data
  24.  * for 'read-toc'.
  25.  *
  26.  * Revision 1.7  1999/03/27 20:51:26  mueller
  27.  * Added data track support.
  28.  *
  29.  * Revision 1.6  1998/10/24 14:48:55  mueller
  30.  * Added retrieval of next writable address. The Panasonic CW-7502 needs it.
  31.  *
  32.  * Revision 1.5  1998/10/03 15:08:44  mueller
  33.  * Moved 'writeZeros()' to base class 'CdrDriver'.
  34.  * Takes 'writeData()' from base class now.
  35.  *
  36.  * Revision 1.4  1998/09/27 19:18:48  mueller
  37.  * Added retrieval of control nibbles for track with 'analyzeTrack()'.
  38.  * Added multi session mode.
  39.  *
  40.  * Revision 1.3  1998/09/07 15:20:20  mueller
  41.  * Reorganized read-toc related code.
  42.  *
  43.  * Revision 1.2  1998/08/30 19:17:56  mueller
  44.  * Fixed cue sheet generation and first writable address after testing
  45.  * with a Yamaha CDR400t.
  46.  *
  47.  * Revision 1.1  1998/08/15 20:45:26  mueller
  48.  * Initial revision
  49.  *
  50.  */
  51. #ifndef __GENERIC_MMC_H__
  52. #define __GENERIC_MMC_H__
  53. #include "CdrDriver.h"
  54. class Toc;
  55. class Track;
  56. class CdTextEncoder;
  57. #define OPT_MMC_USE_PQ       0x0001 // use PQ sub-channel data for scanning
  58. #define OPT_MMC_PQ_BCD       0x0002 // PQ sub-channel contains BCD numbers
  59. #define OPT_MMC_READ_ISRC    0x0004 // force reading of ISRC code with
  60.                                     // READ SUB CHANNEL instead taking it from
  61.                                     // the sub-channel data
  62. #define OPT_MMC_SCAN_MCN     0x0008 // take MCN from the sub-channel data
  63.                                     // instead using READ SUB CHANNEL
  64. #define OPT_MMC_CD_TEXT      0x0010 // drive supports CD-TEXT writing
  65. #define OPT_MMC_NO_SUBCHAN   0x0020 // drive does not support to read 
  66.                                     // sub-channel data
  67. class GenericMMC : public CdrDriver {
  68. public:
  69.   GenericMMC(ScsiIf *scsiIf, unsigned long options);
  70.   ~GenericMMC();
  71.   static CdrDriver *instance(ScsiIf *scsiIf, unsigned long options);
  72.   // MMC compatible drives take little endian samples
  73.   int bigEndianSamples() const { return 0; }
  74.   int checkToc(const Toc *);
  75.   int speed(int);
  76.   int speed();
  77.   DiskInfo *diskInfo();
  78.   int loadUnload(int) const;
  79.   int blankDisk();
  80.   int initDao(const Toc *);
  81.   int startDao();
  82.   int finishDao();
  83.   void abortDao();
  84.   int writeData(TrackData::Mode mode, long &lba, const char *buf, long len);
  85.   int driveInfo(DriveInfo *, int showErrorMsg);
  86. protected:
  87.   int scsiTimeout_;
  88.   Msf leadInStart_; // start of lead-in
  89.   long leadInLen_;  // length of lead-in
  90.   long leadOutLen_; // length if lead-out
  91.   DiskInfo diskInfo_;
  92.   CdTextEncoder *cdTextEncoder_;
  93.   virtual int getSessionInfo();
  94.   virtual int getNWA(long *);
  95.   virtual int getStartOfSession(long *);
  96.   int readCatalog(Toc *, long startLba, long endLba);
  97.   int readIsrc(int, char *);
  98.   virtual int selectSpeed(int readSpeed);
  99.   virtual int setWriteParameters();
  100.   int performPowerCalibration();
  101.   int readBufferCapacity(long *capacity);
  102.   unsigned char *createCueSheet(long *cueSheetLen);
  103.   int sendCueSheet();
  104.   int writeCdTextLeadIn();
  105.   int analyzeTrack(TrackData::Mode, int trackNr, long startLba, long endLba,
  106.    Msf *index,
  107.    int *indexCnt, long *pregap, char *isrcCode,
  108.    unsigned char *ctl);
  109.   int getTrackIndex(long lba, int *trackNr, int *indexNr, unsigned char *ctl);
  110.   int readSubChannels(long lba, long len, SubChannel ***, Sample *);
  111.   TrackData::Mode getTrackMode(int, long trackStartLba);
  112.   CdRawToc *getRawToc(int sessionNr, int *len);
  113.   long readTrackData(TrackData::Mode mode, long lba, long len,
  114.      unsigned char *buf);
  115.   int readAudioRange(int fd, long start, long end, int startTrack,
  116.      int endTrack, TrackInfo *);
  117. };
  118. #endif