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

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: Toc.h,v $
  21.  * Revision 1.7  1999/04/05 11:03:01  mueller
  22.  * Added CD-TEXT support.
  23.  *
  24.  * Revision 1.6  1999/04/02 20:36:21  mueller
  25.  * Created implementation class that contains all mutual member data.
  26.  *
  27.  * Revision 1.5  1999/03/27 19:52:26  mueller
  28.  * Added data track support.
  29.  *
  30.  * Revision 1.4  1999/01/10 15:10:13  mueller
  31.  * Added functions 'appendTrack()' and 'appendAudioData()'.
  32.  *
  33.  * Revision 1.3  1998/11/15 12:19:13  mueller
  34.  * Added several functions for manipulating track/index marks.
  35.  *
  36.  * Revision 1.2  1998/09/22 19:17:19  mueller
  37.  * Added seeking to and reading of samples for GUI.
  38.  *
  39.  */
  40. #ifndef __TOC_H__
  41. #define __TOC_H__
  42. #include <iostream.h>
  43. #include "Track.h"
  44. #include "CdTextContainer.h"
  45. #include "CdTextItem.h"
  46. class Toc {
  47. public:
  48.   Toc();
  49.   ~Toc();
  50.   enum TocType { CD_DA, CD_ROM, CD_I, CD_ROM_XA };
  51.   // sets/returns toc type
  52.   void tocType(TocType);
  53.   TocType tocType() const;
  54.   int nofTracks() const { return nofTracks_; }
  55.   Msf length() const { return length_; }
  56.   // returns mode that should be used for lead-in and gap
  57.   TrackData::Mode leadInMode() const;
  58.   // returns mode that should be used for lead-out
  59.   TrackData::Mode leadOutMode() const;
  60.   int append(const Track *);
  61.   void insert(int, const Track *);
  62.   void remove(int);
  63.   Track *getTrack(int trackNr);
  64.   int moveTrackMarker(int trackNr, int indexNr, long lba);
  65.   int removeTrackMarker(int trackNr, int indexNr);
  66.   int addIndexMarker(long lba);
  67.   int addTrackMarker(long lba);
  68.   int addPregap(long lba);
  69.   void appendTrack(const TrackDataList *, long *start, long *end);
  70.   int appendTrackData(const TrackDataList *, long *start, long *end);
  71.   int removeTrackData(unsigned long start, unsigned long end,
  72.       TrackDataList **);
  73.   int insertTrackData(unsigned long pos, const TrackDataList *list);
  74.   int check() const;
  75.   static Toc *read(const char *);
  76.   int write(const char *) const;
  77.   int catalogValid() const { return catalogValid_; }
  78.   int catalog(const char *); // sets catalog number
  79.   char catalog(int i) const { return catalog_[i]; } // BCD
  80.   const char *catalog() const;
  81.   
  82.   void addCdTextItem(int trackNr, CdTextItem *);
  83.   void removeCdTextItem(int trackNr, CdTextItem::PackType, int blockNr);
  84.   int existCdTextBlock(int blockNr) const;
  85.   const CdTextItem *getCdTextItem(int trackNr, int blockNr,
  86.   CdTextItem::PackType) const;
  87.   void cdTextLanguage(int blockNr, int lang);
  88.   int cdTextLanguage(int blockNr) const;
  89.   int checkCdTextData() const;
  90.   void print(ostream &) const;
  91.   static const char *tocType2String(TocType);
  92. private:
  93.   friend class TocImpl;
  94.   friend class TocParserGram;
  95.   struct TrackEntry {
  96.     TrackEntry() : absStart(0), start(0), end(0) {
  97.       trackNr = 0; track = 0; next = 0; pred = 0;
  98.     }
  99.     int trackNr;
  100.     Track *track;
  101.     Msf absStart; // absoulte track start (end of last track)
  102.     Msf start; // logical track start (after pre-gap)
  103.     Msf end;
  104.     
  105.     struct TrackEntry *next;
  106.     struct TrackEntry *pred;
  107.   };
  108.   TocType tocType_; // type of TOC
  109.   int nofTracks_;
  110.   TrackEntry *tracks_;
  111.   TrackEntry *lastTrack_;
  112.   Msf length_; // total length of disc
  113.   char catalog_[13];
  114.   int catalogValid_;
  115.   CdTextContainer cdtext_;
  116.   void update();
  117.   TrackEntry *findTrack(unsigned long sample) const;
  118.   TrackEntry *findTrackByNumber(int trackNr) const;
  119.   void remove(TrackEntry *);
  120.   void checkConsistency();
  121.   friend class TocReader;
  122.   friend class TrackIterator;
  123. };
  124. class TocReader {
  125. public:
  126.   TocReader(const Toc * = 0);
  127.   ~TocReader();
  128.   void init(const Toc *);
  129.   int openData();
  130.   long readData(long lba, char *buf, long len);
  131.   int seekSample(unsigned long sample);
  132.   long readSamples(Sample *buf, long len);
  133.   void closeData();
  134.   
  135. private:
  136.   const Toc *toc_;
  137.   TrackReader reader;
  138.   const Toc::TrackEntry *readTrack_; // actual read track
  139.   long readPos_; // actual read position (blocks)
  140.   long readPosSample_; // actual read position (samples)
  141.   int open_; // != 0 indicates that toc was opened for reading data
  142. };
  143. class TrackIterator {
  144. public:
  145.   TrackIterator(const Toc *);
  146.   ~TrackIterator();
  147.   const Track *find(int trackNr, Msf &start, Msf &end);
  148.   const Track *find(unsigned long sample, Msf &start, Msf &end,
  149.     int *trackNr);
  150.   const Track *first(Msf &start, Msf &end);
  151.   const Track *next(Msf &start, Msf &end);
  152. private:
  153.   const Toc *toc_;
  154.   Toc::TrackEntry *iterator_;
  155. };
  156. inline
  157. void Toc::tocType(TocType t)
  158. {
  159.   tocType_ = t;
  160. }
  161. inline
  162. Toc::TocType Toc::tocType() const
  163. {
  164.   return tocType_;
  165. }
  166. #endif