ScsiIf-common.cc
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /*  cdrdao - write audio CD-Rs in disc-at-once mode
  2.  *
  3.  *  Copyright (C) 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$
  21.  */
  22. // checks if unit is ready
  23. // return: 0: OK, ready
  24. //         1: not ready (busy)
  25. //         2: not ready, no disk in drive
  26. //         3: scsi command failed
  27. int ScsiIf::testUnitReady()
  28. {
  29.   unsigned char cmd[6];
  30.   const unsigned char *senseData;
  31.   int senseLen;
  32.   int ret = 0;
  33.   memset(cmd, 0, 6);
  34.   switch (sendCmd(cmd, 6, NULL, 0, NULL, 0, 0)) {
  35.   case 1:
  36.     ret = 3;
  37.     break;
  38.   case 2:
  39.     senseData = getSense(senseLen);
  40.     switch (senseData[2] & 0x0f) {
  41.     case 0x02: // Not ready
  42.       switch (senseData[12]) {
  43.       case 0x3a: // medium not present
  44. ret = 2;
  45. break;
  46.       default:
  47. ret = 1;
  48. break;
  49.       }
  50.       break;
  51.     case 0x06: // Unit attention
  52.       ret = 0;
  53.       break;
  54.     default:
  55.       ret = 3;
  56.       break;
  57.     }
  58.   }
  59.   return ret;
  60. }