SubChannel.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  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: SubChannel.h,v $
  21.  * Revision 1.5  1999/04/05 11:04:48  mueller
  22.  * Added decoding of media catalog number and ISRC code.
  23.  *
  24.  * Revision 1.4  1999/03/27 20:58:55  mueller
  25.  * Added various access functions.
  26.  *
  27.  * Revision 1.3  1998/09/07 15:20:20  mueller
  28.  * Reorganized read-toc related code.
  29.  *
  30.  * Revision 1.2  1998/08/30 19:10:32  mueller
  31.  * Added handling of Catalog Number and ISRC codes.
  32.  *
  33.  * Revision 1.1  1998/08/29 21:31:00  mueller
  34.  * Initial revision
  35.  *
  36.  *
  37.  */
  38. #ifndef __SUB_CHANNEL_H__
  39. #define __SUB_CHANNEL_H__
  40. class SubChannel {
  41. public:
  42.   enum Type { QMODE1TOC,  // toc data
  43.       QMODE1DATA, // current position in data
  44.       QMODE2,     // Catalog number
  45.       QMODE3,     // ISRC code
  46.       QMODE_ILLEGAL // indicates illegal adr field
  47.   };
  48.   SubChannel();
  49.   virtual ~SubChannel();
  50.   // marks the CRC of this sub-channel as invalid, 'checkCrc()' will always
  51.   // return true for such sub-channels
  52.   void crcInvalid(); 
  53.   // virtual constructors:
  54.   // create sub channel with specified q-mode
  55.   virtual SubChannel *makeSubChannel(Type) = 0;
  56.   // create sub channel with reading sub channel data from given buffer
  57.   virtual SubChannel *makeSubChannel(unsigned char *) = 0;
  58.   virtual void type(unsigned char) = 0; // sets Q mode type
  59.   virtual Type type() const; // return Q mode type
  60.   virtual long dataLength() const = 0; // returns number of sub channel bytes
  61.   virtual void pChannel(int) = 0; // sets P channel bit
  62.   virtual void ctl(int) = 0;     // sets control flags
  63.   virtual unsigned char ctl() const = 0; // return control nibbles in bits 0-3
  64.   virtual void trackNr(int) = 0;   // sets track number (QMODE1DATA)
  65.   virtual int trackNr() const = 0; // returns track number (QMODE1DATA)
  66.   virtual void indexNr(int) = 0;   // sets index number (QMODE1DATA)
  67.   virtual int indexNr() const = 0; // returns index number (QMODE1DATA)
  68.   virtual void point(int) = 0;   // sets point filed (QMODE1TOC)
  69.   virtual void min(int) = 0;     // track relative time (QMODE1TOC, QMODE1DATA)
  70.   virtual int min() const = 0;
  71.   virtual void sec(int) = 0;     // track relative time (QMODE1TOC, QMODE1DATA)
  72.   virtual int sec() const = 0;
  73.   virtual void frame(int) = 0;   // track relative time (QMODE1TOC, QMODE1DATA)
  74.   virtual int frame() const = 0;
  75.   virtual void amin(int) = 0;    // absolute time (QMODE1DATA)
  76.   virtual int amin() const = 0;
  77.   virtual void asec(int) = 0;    // absolute time (QMODE1DATA)
  78.   virtual int asec() const = 0;
  79.   virtual void aframe(int) = 0;  // absolute time (QMODE1DATA, QMODE2, QMODE3)
  80.   virtual int aframe() const = 0;
  81.   virtual void pmin(int) = 0;    // track start time (QMODE1TOC)
  82.   virtual void psec(int) = 0;    // track start time (QMODE1TOC)
  83.   virtual void pframe(int) = 0;  // track start time (QMODE1TOC)
  84.   // set catalog number (QMODE2)
  85.   virtual void catalog(char, char, char, char, char, char, char, char, char,
  86.        char, char, char, char) = 0;
  87.   // return catalog number
  88.   virtual const char *catalog() const = 0;
  89.   // set ISRC code (QMODE3)
  90.   virtual void isrc(char, char, char, char, char, char, char, char, char,
  91.     char, char, char) = 0;
  92.   // returns ISRC code
  93.   virtual const char *isrc() const = 0;
  94.   virtual void print() const = 0;
  95.   virtual void calcCrc() = 0; // calculates crc and stores it in crc fields
  96.   virtual int checkCrc() const = 0;
  97.   virtual int checkConsistency();
  98.   virtual const unsigned char *data() const = 0;
  99.   static unsigned char ascii2Isrc(char);
  100.   static char isrc2Ascii(unsigned char);
  101.   static unsigned char bcd(int);
  102.   static int bcd2int(unsigned char d);
  103.   static int isBcd(unsigned char);
  104. protected:
  105.   Type type_;
  106.   int crcValid_; // 0 if sub channel has no valid CRC that can be checked,
  107.                  // 1 if CRC is valid and can be checked
  108.   static unsigned short crctab[256];
  109.   static void encodeCatalogNumber(unsigned char *, char, char, char, char,
  110.   char, char, char, char, char, char, char,
  111.   char, char);
  112.   static void decodeCatalogNumber(const unsigned char *, char *, char *,
  113.   char *, char *, char *, char *, char *,
  114.   char *, char *, char *, char *, char *,
  115.   char *);
  116.   static void encodeIsrcCode(unsigned char *, char, char, char, char, char, 
  117.      char, char, char, char, char, char, char);
  118.   static void decodeIsrcCode(const unsigned char *in, char *c1, char *c2,
  119.      char *o1, char *o2, char *o3, char *y1,
  120.      char *y2, char *s1, char *s2, char *s3,
  121.      char *s4, char *s5);
  122. };
  123. #endif