CdDevice.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: CdDevice.h,v $
  21.  * Revision 1.1  1999/09/03 16:05:14  mueller
  22.  * Initial revision
  23.  *
  24.  */
  25. #ifndef __CD_DEVICE_H__
  26. #define __CD_DEVICE_H__
  27. /*
  28. #include <gtk--.h>
  29. #include <gtk/gtk.h>
  30. */
  31. class TocEdit;
  32. class Process;
  33. class ScsiIf;
  34. class CdDevice /*: public Gtk_Signal_Base*/ {
  35. public:
  36.   enum Status { DEV_READY, DEV_RECORDING, DEV_BUSY, DEV_NO_DISK,
  37. DEV_BLANKING, DEV_FAULT, DEV_UNKNOWN };
  38.   enum DeviceType { CD_R, CD_RW, CD_ROM };
  39.   CdDevice(int bus, int id, int lun, const char *vendor,
  40.    const char *product);
  41.   ~CdDevice();
  42.   char *settingString() const;
  43.   int bus() const; 
  44.   int id() const;
  45.   int lun() const;
  46.   const char *vendor() const;
  47.   const char *product() const;
  48.   Status status() const;
  49.   int exitStatus() const;
  50.   void status(Status);
  51.   int updateStatus();
  52.   int updateProgress();
  53.   int autoSelectDriver();
  54.   int driverId() const;
  55.   void driverId(int);
  56.   DeviceType deviceType() const;
  57.   void deviceType(DeviceType);
  58.   unsigned long driverOptions() const;
  59.   void driverOptions(unsigned long);
  60.   const char *specialDevice() const;
  61.   void specialDevice(const char *);
  62.   int manuallyConfigured() const;
  63.   void manuallyConfigured(int);
  64.   int recordDao(TocEdit *, int simulate, int multiSession, int speed,
  65. int eject, int reload);
  66.   void abortDaoRecording();
  67.   int progressStatusChanged();
  68.   void recordProgress(int *status, int *track, int *totalProgress,
  69.       int *bufferFill) const;
  70.   
  71.   static int maxDriverId();
  72.   static const char *driverName(int id);
  73.   static int driverName2Id(const char *);
  74.   static const char *status2string(Status);
  75.   static const char *deviceType2string(DeviceType);
  76.   static CdDevice *add(int bus, int id, int lun, const char *vendor,
  77.        const char *product);
  78.   static CdDevice *add(const char *setting);
  79.   static CdDevice *find(int bus, int id, int lun);
  80.   
  81.   static void scan();
  82.   static void remove(int bus, int id, int lun);
  83.   static void clear();
  84.   static CdDevice *first();
  85.   static CdDevice *next(const CdDevice *);
  86.   static int updateDeviceStatus();
  87.   static int updateDeviceProgress();
  88.   static int count();
  89. private:
  90.   int bus_; // SCSI bus
  91.   int id_;  // SCSI id
  92.   int lun_; // SCSI logical unit
  93.   char *vendor_;
  94.   char *product_;
  95.   DeviceType deviceType_;
  96.   int driverId_;
  97.   unsigned long options_;
  98.   char *specialDevice_;
  99.   int manuallyConfigured_;
  100.   ScsiIf *scsiIf_;
  101.   int scsiIfInitFailed_;
  102.   Status status_;
  103.   int exitStatus_;
  104.   int progressStatusChanged_;
  105.   int progressStatus_;
  106.   int progressTrack_;
  107.   int progressTotal_;
  108.   int progressBufferFill_;
  109.   Process *process_;
  110.   CdDevice *next_;
  111.   void createScsiIf();
  112.   static char *DRIVER_NAMES_[];
  113.   static CdDevice *DEVICE_LIST_;
  114. };
  115. #endif