YamahaCDR10x.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) 1999  Cameron G. MacKinnon <C_MacKinnon@yahoo.com>
  4.  *  Copyright (C) 1998, 1999  Andreas Mueller <mueller@daneb.ping.de>
  5.  *
  6.  *  This program is free software; you can redistribute it and/or modify
  7.  *  it under the terms of the GNU General Public License as published by
  8.  *  the Free Software Foundation; either version 2 of the License, or
  9.  *  (at your option) any later version.
  10.  *
  11.  *  This program is distributed in the hope that it will be useful,
  12.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  *  GNU General Public License for more details.
  15.  *
  16.  *  You should have received a copy of the GNU General Public License
  17.  *  along with this program; if not, write to the Free Software
  18.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  */
  20. /*
  21.  * $Log: YamahaCDR10x.h,v $
  22.  * Revision 1.3  1999/04/05 11:04:10  mueller
  23.  * Added driver option flags.
  24.  *
  25.  * Revision 1.2  1999/03/27 14:35:17  mueller
  26.  * Added data track support.
  27.  *
  28.  * Revision 1.1  1999/02/28 10:27:49  mueller
  29.  * Initial revision
  30.  *
  31.  */
  32. /* Driver for Yamaha CDR10X drives. 
  33.  * Written by Cameron G. MacKinnon <C_MacKinnon@yahoo.com>.
  34.  */
  35. #ifndef __YAMAHACDR10X_H__
  36. #define __YAMAHACDR10X_H__
  37. #include "CdrDriver.h"
  38. #include "TrackData.h"
  39. class Toc;
  40. class Track;
  41. class YamahaCDR10x : public CdrDriver {
  42. public:
  43.   YamahaCDR10x(ScsiIf *scsiIf, unsigned long options);
  44.   ~YamahaCDR10x();
  45.   static CdrDriver *instance(ScsiIf *scsiIf, unsigned long options);
  46.   // FIXME: We say we're little endian, incurring work for the host
  47.   // The drive has endian flags, but I don't want to experiment
  48.   int bigEndianSamples() const { return 0; }
  49.   int multiSession(int);
  50.   int speed(int);
  51.   int speed();
  52.   DiskInfo *diskInfo();
  53.   Toc *readDiskToc(int, const char *audioFilename);
  54.   Toc *readDisk(int, const char *audioFilename);
  55.   int loadUnload(int) const;
  56.   
  57.   int initDao(const Toc *);
  58.   int startDao();
  59.   int finishDao();
  60.   void abortDao();
  61.   int driveInfo(DriveInfo *, int showErrorMsg);
  62.   virtual int writeData(TrackData::Mode, long &lba, const char *buf, long len);
  63. protected:
  64.   int scsiTimeout_;
  65.   unsigned char audioModePage_[16]; // saved audio mode page
  66.   Msf leadInStart_; // start of lead-in
  67.   long leadInLen_;  // length of lead-in
  68.   long leadOutLen_; // length if lead-out
  69.   CdRawToc *getRawToc(int sessionNr, int *len);
  70.   int readCatalog(Toc *, long startLba, long endLba);
  71.   int readIsrc(int, char *);
  72.   int readSubChannels(long lba, long len, SubChannel ***, Sample *);
  73.   virtual int selectSpeed();
  74.   virtual int setWriteParameters();
  75.   void cueSheetDataType(TrackData::Mode mode, unsigned char *dataType,
  76. unsigned char *dataForm);
  77.   unsigned char *createCueSheet(long *cueSheetLen);
  78.   int sendCueSheet();
  79.   int analyzeTrack(TrackData::Mode, int trackNr, long startLba, long endLba,
  80.    Msf *index, int *indexCnt, long *pregap, char *isrcCode,
  81.    unsigned char *ctl);
  82.   long readTrackData(TrackData::Mode mode, long lba, long len,
  83.      unsigned char *buf);
  84.   int readAudioRange(int fd, long start, long end, int startTrack,
  85.      int endTrack, TrackInfo *);
  86. };
  87. #endif