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

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: Track.h,v $
  21.  * Revision 1.6  1999/04/05 11:03:01  mueller
  22.  * Added CD-TEXT support.
  23.  *
  24.  * Revision 1.5  1999/04/02 20:36:21  mueller
  25.  * Created implementation class that contains all mutual member data.
  26.  *
  27.  * Revision 1.4  1999/03/27 19:52:26  mueller
  28.  * Added data track support.
  29.  *
  30.  * Revision 1.3  1998/11/15 12:19:13  mueller
  31.  * Added several functions for manipulating track/index marks.
  32.  *
  33.  * Revision 1.2  1998/09/22 19:17:19  mueller
  34.  * Added seeking to and reading of samples for GUI.
  35.  *
  36.  */
  37. #ifndef __TRACK_H__
  38. #define __TRACK_H__
  39. #include <iostream.h>
  40. #include "SubTrack.h"
  41. #include "Msf.h"
  42. #include "CdTextContainer.h"
  43. #include "CdTextItem.h"
  44. class TrackDataList;
  45. class Track {
  46. public:
  47.   Track(TrackData::Mode);
  48.   Track(const Track &);
  49.   ~Track();
  50.   
  51.   TrackData::Mode type() const { return type_; }
  52.   Msf length() const { return length_; }
  53.   Msf start() const { return start_; }
  54.   int start(Msf);
  55.   Msf end() const { return end_; }
  56.   int end(Msf);
  57.   int isPadded() const;
  58.   int nofSubTracks() const { return nofSubTracks_; }
  59.   // return first/last sub-track
  60.   const SubTrack *firstSubTrack() const;
  61.   const SubTrack *lastSubTrack() const;
  62.   int append(const SubTrack &);
  63.   int nofIndices() const { return nofIndices_; }
  64.   int appendIndex(const Msf &);
  65.   int addIndex(const Msf &index);
  66.   int removeIndex(int);
  67.   Msf getIndex(int) const;
  68.   int moveIndex(int index, long lba);
  69.   TrackDataList *removeToEnd(unsigned long samplePos);
  70.   TrackDataList *removeFromStart(unsigned long sample);
  71.   void prependTrackData(const TrackDataList *);
  72.   void appendTrackData(const TrackDataList *);
  73.   void appendTrackData(const Track *);
  74.   TrackDataList *removeTrackData(unsigned long start, unsigned long end);
  75.   void insertTrackData(unsigned long pos, const TrackDataList *list);
  76.   // fills provided buffer with an audio block that contains zero data
  77.   // encoded with given mode
  78.   static void encodeZeroData(int encMode, TrackData::Mode, long lba, char *);
  79.   int check() const;
  80.   int isrcValid() const { return isrcValid_; }
  81.   // set ISRC code from given string
  82.   int isrc(const char *); // sets ISRC code
  83.   const char *isrc() const;
  84.   char isrcCountry(int i) const { return isrcCountry_[i]; } // ASCII
  85.   char isrcOwner(int i) const { return isrcOwner_[i]; }     // ASCII
  86.   char isrcYear(int i) const { return isrcYear_[i]; }       // BCD
  87.   char isrcSerial(int i) const { return isrcSerial_[i]; }   // BCD
  88.   // return/set COPY flag (1: copy permitted, 0: copy not permitted)
  89.   int copyPermitted() const { return flags_.copy; }
  90.   void copyPermitted(int c) { flags_.copy = c != 0 ? 1 : 0; }
  91.   // return/set PRE-EMPHASIS flag (1: audio with pre-emphasis,
  92.   // 0: audio without pre-emphasis
  93.   int preEmphasis() const { return flags_.preEmphasis; }
  94.   void preEmphasis(int p) { flags_.preEmphasis = p != 0 ? 1 : 0; }
  95.   // return/set audio type (0: two channel audio, 1: four channel audio)
  96.   int audioType() const { return flags_.audioType; }
  97.   void audioType(int t) { flags_.audioType = t != 0 ? 1 : 0; }
  98.   void addCdTextItem(CdTextItem *);
  99.   void removeCdTextItem(CdTextItem::PackType, int blockNr);
  100.   int existCdTextBlock(int n) const { return cdtext_.existBlock(n); }
  101.   const CdTextItem *getCdTextItem(int blockNr, CdTextItem::PackType t) const {
  102.     return cdtext_.getPack(blockNr, t);
  103.   }
  104.   void print(ostream &) const;
  105. private:
  106.   friend class TocParserGram;
  107.   friend class Toc;
  108.   friend class TrackReader;
  109.   TrackData::Mode type_; // track type
  110.   Msf length_; // total length of track
  111.   Msf start_;  // logical start of track data, end of pre-gap
  112.                // (where index switches from 0 to 1)
  113.   Msf end_;    // end of track data, start of post-gap
  114.   
  115.   int nofSubTracks_;    // number of sub tracks
  116.   SubTrack *subTracks_; // list of subtracks
  117.   SubTrack *lastSubTrack_; // points to last sub-track in list
  118.   int nofIndices_;      // number of index increments
  119.   Msf *index_;          // index increment times
  120.   int  isrcValid_;
  121.   char isrcCountry_[2];
  122.   char isrcOwner_[3];
  123.   char isrcYear_[2];
  124.   char isrcSerial_[5];
  125.   
  126.   struct {
  127.     unsigned int copy : 1;
  128.     unsigned int preEmphasis : 1;
  129.     unsigned int audioType : 1;
  130.   } flags_;
  131.   CdTextContainer cdtext_;
  132.   void update();
  133.   void insertSubTrackAfter(SubTrack *, SubTrack *newSubtrack);
  134.   SubTrack *removeSubTrack(SubTrack *);
  135.   void countSubTracks();
  136.   void mergeSubTracks();
  137.   SubTrack *findSubTrack(unsigned long sample) const;
  138.   void checkConsistency();
  139. };
  140. class TrackReader {
  141. public:
  142.   TrackReader(const Track * = 0);
  143.   ~TrackReader();
  144.   void init(const Track *);
  145.   int openData();
  146.   long readData(int raw, long lba, char *buf, long len);
  147.   int seekSample(unsigned long sample);
  148.   long readSamples(Sample *buf, long len);
  149.   void closeData();
  150. private:
  151.   const Track *track_;
  152.   TrackDataReader reader;
  153.   long readPos_; // current read position (blocks)
  154.   long readPosSample_; // current read position (samples)
  155.   const SubTrack *readSubTrack_; // actual read sub-track
  156.   int open_; // 1 indicates the 'openData()' was called
  157.   long readTrackData(Sample *buf, long len);
  158.   int readBlock(int raw, long lba, Sample *buf);
  159. };
  160. #endif