CdTextItem.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: CdTextItem.h,v $
  21.  * Revision 1.1  1999/04/05 11:01:50  mueller
  22.  * Initial revision
  23.  *
  24.  */
  25. #ifndef __CDTEXTITEM_H__
  26. #define __CDTEXTITEM_H__
  27. class ostream;
  28. class CdTextItem {
  29. public:
  30.   enum DataType { SBCC, DBCC, BINARY };
  31.   enum PackType { CDTEXT_TITLE = 0x80,
  32.   CDTEXT_PERFORMER = 0x81,
  33.   CDTEXT_SONGWRITER = 0x82,
  34.   CDTEXT_COMPOSER = 0x83,
  35.   CDTEXT_ARRANGER = 0x84,
  36.   CDTEXT_MESSAGE = 0x85,
  37.   CDTEXT_DISK_ID = 0x86,
  38.   CDTEXT_GENRE = 0x87,
  39.   CDTEXT_TOC_INFO1 = 0x88,
  40.   CDTEXT_TOC_INFO2 = 0x89,
  41.   CDTEXT_RES1 = 0x8a,
  42.   CDTEXT_RES2 = 0x8b,
  43.   CDTEXT_RES3 = 0x8c,
  44.   CDTEXT_RES4 = 0x8d,
  45.   CDTEXT_UPCEAN_ISRC = 0x8e,
  46.   CDTEXT_SIZE_INFO = 0x8f };
  47.   CdTextItem(PackType packType, int blockNr, const char *data);
  48.   CdTextItem(PackType packType, int blockNr,
  49.      const unsigned char *data, long len);
  50.   CdTextItem(int blockNr, unsigned char genreCode1, unsigned char genreCode2,
  51.      const char *description);
  52.   CdTextItem(const CdTextItem &);
  53.   ~CdTextItem();
  54.   DataType dataType() const { return dataType_; }
  55.   
  56.   PackType packType() const { return packType_; }
  57.   int blockNr() const { return blockNr_; }
  58.   const unsigned char *data() const { return data_; }
  59.   long dataLen() const { return dataLen_; }
  60.   void print(int isTrack, ostream &) const;
  61.   int operator==(const CdTextItem &);
  62.   int operator!=(const CdTextItem &);
  63.   
  64.   static const char *packType2String(int isTrack, int packType);
  65.   
  66.   static PackType int2PackType(int);
  67.   static int isBinaryPack(PackType);
  68.   static int isTrackPack(PackType);
  69. private:
  70.   friend class CdTextContainer;
  71.   DataType dataType_;
  72.   PackType packType_;
  73.   int blockNr_; // 0 ... 7
  74.   unsigned char *data_;
  75.   long dataLen_;
  76.   CdTextItem *next_;
  77. };
  78. #endif