CDD2600.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: CDD2600.h,v $
  21.  * Revision 1.12  1999/04/05 11:04:10  mueller
  22.  * Added driver option flags.
  23.  *
  24.  * Revision 1.11  1999/03/27 20:52:02  mueller
  25.  * Adapted to changed writing interface.
  26.  *
  27.  * Revision 1.10  1998/10/24 14:30:40  mueller
  28.  * Changed prototype of 'readDiskToc()'.
  29.  *
  30.  * Revision 1.9  1998/10/03 15:11:05  mueller
  31.  * Moved basic writing methods to class 'CDD2600Base'.
  32.  *
  33.  * Revision 1.8  1998/09/27 19:17:46  mueller
  34.  * Fixed 'disc-info' for CDD2000.
  35.  * Added retrieval of control nibbles for track with 'analyzeTrack()'.
  36.  *
  37.  * Revision 1.7  1998/09/22 19:15:13  mueller
  38.  * Removed memory allocations during write process.
  39.  *
  40.  * Revision 1.6  1998/09/07 15:20:20  mueller
  41.  * Reorganized read-toc related code.
  42.  *
  43.  * Revision 1.5  1998/08/25 19:22:42  mueller
  44.  * Added index extraction for 'read-toc'.
  45.  * Added disk info code.
  46.  *
  47.  * Revision 1.4  1998/08/07 12:44:30  mueller
  48.  * Changed group 1 mode select commands to group 0 mode select commands.
  49.  * Implement pre-gap detection in 'readDiscToc()'.
  50.  *
  51.  */
  52. #ifndef __CDD2600_H__
  53. #define __CDD2600_H__
  54. #include "CdrDriver.h"
  55. #include "CDD2600Base.h"
  56. class Toc;
  57. class Track;
  58. class CDD2600 : public CdrDriver, private CDD2600Base {
  59. public:
  60.   CDD2600(ScsiIf *scsiIf, unsigned long options);
  61.   ~CDD2600();
  62.   static CdrDriver *instance(ScsiIf *scsiIf, unsigned long options);
  63.   // CDD2600 takes big endian samples
  64.   int bigEndianSamples() const { return 1; }
  65.   int speed(int);
  66.   DiskInfo *diskInfo();
  67.   int loadUnload(int) const;
  68.   
  69.   int initDao(const Toc *);
  70.   int startDao();
  71.   int finishDao();
  72.   void abortDao();
  73.   int writeData(TrackData::Mode, long &lba, const char *buf, long len);
  74.   Toc *readDiskToc(int, const char *);
  75.   Toc *readDisk(int, const char *);
  76. protected:
  77.   DiskInfo diskInfo_;
  78.   CdRawToc *getRawToc(int sessionNr, int *len);
  79.   int readCatalog(Toc *, long startLba, long endLba);
  80.   int readIsrc(int, char *);
  81.   int getTrackIndex(long lba, int *trackNr, int *indexNr, unsigned char *ctl);
  82.   int analyzeTrack(TrackData::Mode, int trackNr, long startLba, long endLba,
  83.    Msf *index,
  84.    int *indexCnt, long *pregap, char *isrcCode,
  85.    unsigned char *ctl);
  86.   int readSubChannels(long lba, long len, SubChannel ***, Sample *);
  87. private:
  88.   long leadInLength_;
  89.   long leadOutLength_;
  90.   int modeSelectPlay(int immediate, int sotc, unsigned char volume);
  91.   int readSubChannelData(int *trackNr, int *indexNr, long *,
  92.  unsigned char *ctl);
  93.   void readBlock(unsigned long sector);
  94.   long readTrackData(TrackData::Mode mode, long lba, long len,
  95.      unsigned char *buf);
  96.   int readAudioRange(int fd, long start, long end,
  97.      int startTrack, int endTrack, TrackInfo *);
  98. };
  99. #endif