atapi.c
上传用户:xmgzy123
上传日期:2007-01-07
资源大小:373k
文件大小:5k
源码类别:

SCSI/ASPI

开发平台:

WINDOWS

  1. /*
  2.  * atapi.c - Copyright (C) 1999 Jay A. Key
  3.  *
  4.  * Functions for the CDR_ATAPI1, CDR_ATAPI2 class of read/init/deinit functions
  5.  *
  6.  **********************************************************************
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU Lesser General Public License as published
  10.  * by the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU Lesser General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21.  *
  22.  **********************************************************************
  23.  *
  24.  * $Id: atapi.c,v 1.2 2000/02/25 10:47:37 akey Exp $
  25.  * $Date: 2000/02/25 10:47:37 $
  26.  * $Locker:  $
  27.  * $Log: atapi.c,v $
  28.  * Revision 1.2  2000/02/25 10:47:37  akey
  29.  * sync'ed with akrip32.dll v0.94
  30.  *
  31.  * Revision 1.3  2000/02/14 09:56:25  akey
  32.  * cleaned up #ifdef _DEBUG code considerably
  33.  *
  34.  * Revision 1.2  2000/01/03 12:29:43  akey
  35.  * v0.91 release -- added CDDB and bug fixes
  36.  *
  37.  *
  38.  */
  39. #define _AKRIP32_
  40. #include <windows.h>
  41. #include <stdio.h>
  42. #include "myaspi32.h"
  43. #include "scsidefs.h"
  44. #include "aspilib.h"
  45. #include "akrip32.h"
  46. extern CDHANDLEREC *cdHandles;
  47. extern HANDLE *cdMutexes;
  48. extern CRITICAL_SECTION getHandle;
  49. extern int alErrCode;
  50. extern BYTE alAspiErr;
  51. extern int *nextHandle;
  52. extern DWORD (*pfnSendASPI32Command)(LPSRB);
  53. /***************************************************************************
  54.  * readCDAudioLBA_ATAPI
  55.  ***************************************************************************/
  56. DWORD readCDAudioLBA_ATAPI( HCDROM hCD, LPTRACKBUF t )
  57. {
  58.   DWORD dwStatus;
  59.   HANDLE heventSRB;
  60.   SRB_ExecSCSICmd s;
  61.   int idx = (int)hCD - 1;
  62.   if ( (idx<0) || (idx>=MAXCDHAND) || !cdHandles[idx].used )
  63.     {
  64.       alErrCode = ALERR_INVHANDLE;
  65.       return SS_ERR;
  66.     }
  67.   if ( t->numFrames * 2352 > t->maxLen )
  68.     {
  69.       alErrCode = ALERR_BUFTOOSMALL;
  70.       return SS_ERR;
  71.     }
  72.   dwStatus = WaitForSingleObject( cdMutexes[idx], TIMEOUT );
  73.   if ( dwStatus != WAIT_OBJECT_0 )
  74.     {
  75.       alErrCode = ALERR_LOCK;
  76.       return SS_ERR;
  77.     }
  78. #ifdef _DEBUG
  79.   dbprintf( "akrip32: readCDAudioLBA_ATAPI: (%d:%d:%d) %06X:%02X", 
  80.     cdHandles[idx].ha, cdHandles[idx].tgt, cdHandles[idx].lun,
  81.     t->startFrame, t->numFrames );
  82. #endif
  83.   heventSRB = CreateEvent( NULL, TRUE, FALSE, NULL );
  84.   memset( &s, 0, sizeof( s ) );
  85.   s.SRB_Cmd        = SC_EXEC_SCSI_CMD;
  86.   s.SRB_HaID       = cdHandles[idx].ha;
  87.   s.SRB_Target     = cdHandles[idx].tgt;
  88.   s.SRB_Lun        = cdHandles[idx].lun;
  89.   s.SRB_Flags      = SRB_DIR_IN | SRB_EVENT_NOTIFY;
  90.   s.SRB_BufLen     = t->maxLen;
  91.   s.SRB_BufPointer = &(t->buf[0]);
  92.   s.SRB_SenseLen   = SENSE_LEN;
  93.   s.SRB_CDBLen     = 12;
  94.   s.SRB_PostProc   = (LPVOID)heventSRB;
  95.   s.CDBByte[0]     = 0xBE;
  96.   //s.CDBByte[1]     = 0x04;
  97.   s.CDBByte[3]     = (t->startFrame >> 16) & 0xFF;
  98.   s.CDBByte[4]     = (t->startFrame >> 8) & 0xFF;
  99.   s.CDBByte[5]     = t->startFrame & 0xFF;
  100.   s.CDBByte[8]     = t->numFrames & 0xFF;
  101.   s.CDBByte[9]     = (cdHandles[idx].readType==CDR_ATAPI1)?0x10:0xF0;
  102.   ResetEvent( heventSRB );
  103.   dwStatus = pfnSendASPI32Command( (LPSRB)&s );
  104.   if ( dwStatus == SS_PENDING )
  105.     {
  106.       WaitForSingleObject( heventSRB, DEFWAITLEN );
  107.     }
  108.   CloseHandle( heventSRB );
  109.   if ( s.SRB_Status != SS_COMP )
  110.     {
  111. #ifdef _DEBUG
  112.       BYTE *p;
  113.       dbprintf( "akrip32: readCDAudioLBA_ATAPI: ERROR! 0x%08Xn", s.SRB_Status );
  114.       dbprintf( "akrip32:  haStat == %d (0x%04X), tgtStat == %d (0x%04X)",
  115.        s.SRB_HaStat, s.SRB_HaStat, s.SRB_TargStat, s.SRB_TargStat );
  116.       p = s.SenseArea;
  117.       dbprintf( "  %02X %02X %02X %02X %02X %02X %02X %02X",
  118.        p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7] );
  119.       p = &(s.SenseArea[8]);
  120.       dbprintf( "  %02X %02X %02X %02X %02X %02X %02X %02X",
  121.        p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7] );
  122. #endif
  123.       alErrCode = ALERR_ASPI;
  124.       alAspiErr = s.SRB_Status;
  125.       ReleaseMutex( cdMutexes[idx] );
  126.       return SS_ERR;
  127.     }
  128.   t->len = t->numFrames * 2352;
  129.   t->startOffset = 0;
  130.   t->status = s.SRB_Status;
  131.   ReleaseMutex( cdMutexes[idx] );
  132.   return s.SRB_Status;
  133. }