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

SCSI/ASPI

开发平台:

WINDOWS

  1. /*
  2.  * readd8.c - Copyright (C) 1999 Jay A. Key
  3.  *
  4.  * Functions for the CDR_READ_D8 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: readd8.c,v 1.2 2000/02/25 10:47:37 akey Exp $
  25.  * $Date: 2000/02/25 10:47:37 $
  26.  * $Locker:  $
  27.  * $Log: readd8.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.4  2000/02/14 09:56:25  akey
  32.  * cleaned up #ifdef _DEBUG code considerably
  33.  *
  34.  * Revision 1.3  2000/01/07 09:04:22  akey
  35.  * Fixed stupid bug with && used in place of &
  36.  *
  37.  * Revision 1.2  2000/01/03 12:29:43  akey
  38.  * v0.91 release -- added CDDB and bug fixes
  39.  *
  40.  *
  41.  */
  42. #define _AKRIP32_
  43. #include <windows.h>
  44. #include <stdio.h>
  45. #include "myaspi32.h"
  46. #include "scsidefs.h"
  47. #include "aspilib.h"
  48. #include "akrip32.h"
  49. extern CDHANDLEREC *cdHandles;
  50. extern HANDLE *cdMutexes;
  51. extern CRITICAL_SECTION getHandle;
  52. extern int alErrCode;
  53. extern BYTE alAspiErr;
  54. extern int *nextHandle;
  55. extern DWORD (*pfnSendASPI32Command)(LPSRB);
  56. /***************************************************************************
  57.  * readCDAudioLBA_D8
  58.  ***************************************************************************/
  59. DWORD readCDAudioLBA_D8( HCDROM hCD, LPTRACKBUF t )
  60. {
  61.   DWORD dwStatus;
  62.   HANDLE heventSRB;
  63.   SRB_ExecSCSICmd s;
  64.   int idx = (int)hCD - 1;
  65.   if ( (idx<0) || (idx>=MAXCDHAND) || !cdHandles[idx].used )
  66.     {
  67.       alErrCode = ALERR_INVHANDLE;
  68.       return SS_ERR;
  69.     }
  70.   if ( t->numFrames * 2352 > t->maxLen )
  71.     {
  72.       alErrCode = ALERR_BUFTOOSMALL;
  73.       return SS_ERR;
  74.     }
  75.   dwStatus = WaitForSingleObject( cdMutexes[idx], TIMEOUT );
  76.   if ( dwStatus != WAIT_OBJECT_0 )
  77.     {
  78.       alErrCode = ALERR_LOCK;
  79.       return SS_ERR;
  80.     }
  81.   if ( !cdHandles[idx].bInit )
  82.     {
  83.       pauseResumeCD( hCD, TRUE );  // stop the unit if happens to be playing
  84.       cdHandles[idx].bInit = TRUE;
  85.     }
  86. #ifdef _DEBUG
  87.   dbprintf( "akrip32: readCDAudioLBA_D8: (%d:%d:%d) %08X:%02X", 
  88.     cdHandles[idx].ha, cdHandles[idx].tgt, cdHandles[idx].lun,
  89.     t->startFrame, t->numFrames );
  90. #endif
  91.   heventSRB = CreateEvent( NULL, TRUE, FALSE, NULL );
  92.   memset( &s, 0, sizeof( s ) );
  93.   s.SRB_Cmd        = SC_EXEC_SCSI_CMD;
  94.   s.SRB_HaID       = cdHandles[idx].ha;
  95.   s.SRB_Target     = cdHandles[idx].tgt;
  96.   s.SRB_Lun        = cdHandles[idx].lun;
  97.   s.SRB_Flags      = SRB_DIR_IN | SRB_EVENT_NOTIFY;
  98.   s.SRB_BufLen     = t->numFrames * 2352;
  99.   s.SRB_BufPointer = &(t->buf[0]);
  100.   s.SRB_SenseLen   = SENSE_LEN;
  101.   s.SRB_CDBLen     = 12;
  102.   s.SRB_PostProc   = (LPVOID)heventSRB;
  103.   s.CDBByte[0]     = 0xD8;
  104.   //s.CDBByte[1]     = cdHandles[idx].lun << 5;
  105.   s.CDBByte[3]     = (t->startFrame >> 16) & 0xFF;
  106.   s.CDBByte[4]     = (t->startFrame >> 8) & 0xFF;
  107.   s.CDBByte[5]     = t->startFrame & 0xFF;
  108.   s.CDBByte[9]     = t->numFrames & 0xFF;
  109.   ResetEvent( heventSRB );
  110.   dwStatus = pfnSendASPI32Command( (LPSRB)&s );
  111.   if ( dwStatus == SS_PENDING )
  112.     {
  113.       WaitForSingleObject( heventSRB, DEFWAITLEN );
  114.     }
  115.   CloseHandle( heventSRB );
  116.   if ( s.SRB_Status != SS_COMP )
  117.     {
  118. #ifdef _DEBUG
  119.       BYTE *p;
  120.       dbprintf( "akrip32: readCDAudioLBA_D8: ERROR! 0x%08Xn", s.SRB_Status );
  121.       dbprintf( "akrip32:  haStat == %d (0x%04X), tgtStat == %d (0x%04X)",
  122.        s.SRB_HaStat, s.SRB_HaStat, s.SRB_TargStat, s.SRB_TargStat );
  123.       p = s.SenseArea;
  124.       dbprintf( "  %02X %02X %02X %02X %02X %02X %02X %02X",
  125.        p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7] );
  126.       p = &(s.SenseArea[8]);
  127.       dbprintf( "  %02X %02X %02X %02X %02X %02X %02X %02X",
  128.        p[0], p[1], p[2], p[3], p[4], p[5], p[6], p[7] );
  129. #endif
  130.       alErrCode = ALERR_ASPI;
  131.       alAspiErr = s.SRB_Status;
  132.       ReleaseMutex( cdMutexes[idx] );
  133.       return SS_ERR;
  134.     }
  135.   t->len = t->numFrames * 2352;
  136.   t->startOffset = 0;
  137.   t->status = s.SRB_Status;
  138.   ReleaseMutex( cdMutexes[idx] );
  139.   return s.SRB_Status;
  140. }