TeacCdr55.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, 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: TeacCdr55.h,v $
  21.  * Revision 1.3  1999/04/05 11:04:10  mueller
  22.  * Added driver option flags.
  23.  *
  24.  * Revision 1.2  1999/03/27 14:35:37  mueller
  25.  * Added 'read-toc' support.
  26.  *
  27.  * Revision 1.1  1999/03/21 19:36:08  mueller
  28.  * Initial revision
  29.  *
  30.  */
  31. #ifndef __TEAC_CDR55_H__
  32. #define __TEAC_CDR55_H__
  33. #include "CdrDriver.h"
  34. class Toc;
  35. class Track;
  36. class TeacCdr55 : public CdrDriver {
  37. public:
  38.   TeacCdr55(ScsiIf *scsiIf, unsigned long options);
  39.   ~TeacCdr55();
  40.   static CdrDriver *instance(ScsiIf *scsiIf, unsigned long options);
  41.   // MMC compatible drives take little endian samples
  42.   int bigEndianSamples() const { return 0; }
  43.   int speed(int);
  44.   DiskInfo *diskInfo();
  45.   int driveInfo(DriveInfo *, int showErrorMsg);
  46.   Toc *readDiskToc(int, const char *audioFilename);
  47.   Toc *readDisk(int, const char *audioFilename);
  48.   int initDao(const Toc *);
  49.   int startDao();
  50.   int finishDao();
  51.   void abortDao();
  52.   int writeData(TrackData::Mode, long &lba, const char *buf, long len);
  53.   int loadUnload(int) const;
  54. protected:
  55.   DiskInfo diskInfo_;
  56.   unsigned char modeSelectData_[12];
  57.   TrackData::Mode actMode_; // actual writing mode, used to switch modes
  58.                             // in 'writeData()'
  59.   long writeEndLba_; // LBA at which writing ends, used in 'writeData()'
  60.   int scsiTimeout_;
  61.   int getModeSelectData();
  62.   int setWriteSpeed();
  63.   int setWriteParameters();
  64.   int setSimulationMode();
  65.   int setWriteDensity(TrackData::Mode);
  66.   int executeOPC(int judge);
  67.   int clearSubcode();
  68.   int setSubcode(long start, long end, unsigned char ctl, int trackNr,
  69.  int indexNr, int pflag);
  70.   int setSubcodes(const Track *track, int trackNr, long start, long end,
  71.   long nstart);
  72.   int setSubcodes();
  73.   int setToc();
  74.   int setCatalog();
  75.   int setIsrc();
  76.   CdRawToc *getRawToc(int sessionNr, int *len);
  77.   int analyzeTrack(TrackData::Mode mode, int trackNr, long startLba,
  78.    long endLba, Msf *indexIncrements, int *indexIncrementCnt,
  79.    long *pregap, char *isrcCode, unsigned char *ctl);
  80.   int readSubChannels(long lba, long len, SubChannel ***, Sample *);
  81.   long readTrackData(TrackData::Mode mode, long lba, long len,
  82.      unsigned char *buf);
  83.   int readIsrc(int trackNr, char *buf);
  84.   int readCatalog(class Toc *, long startLba, long endLba);
  85.   int readAudioRange(int fd, long start, long end, int startTrack,
  86.      int endTrack, TrackInfo *);
  87. };
  88. #endif