2003-05-27 02:55:58 +00:00
|
|
|
|
/*
|
2004-02-08 23:49:17 +00:00
|
|
|
|
$Id: _cdio_win32.c,v 1.26 2004/02/08 23:49:17 rocky Exp $
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-02 03:55:19 +00:00
|
|
|
|
Copyright (C) 2003, 2004 Rocky Bernstein <rocky@panix.com>
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* This file contains Win32-specific code and implements low-level
|
2003-06-11 10:55:54 +00:00
|
|
|
|
control of the CD drive. Inspired by vlc's cdrom.h code
|
2003-05-27 02:55:58 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
|
# include "config.h"
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
2004-02-08 23:49:17 +00:00
|
|
|
|
static const char _rcsid[] = "$Id: _cdio_win32.c,v 1.26 2004/02/08 23:49:17 rocky Exp $";
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
#include <cdio/cdio.h>
|
|
|
|
|
|
#include <cdio/sector.h>
|
|
|
|
|
|
#include <cdio/util.h>
|
|
|
|
|
|
#include "cdio_assert.h"
|
2004-02-08 23:49:17 +00:00
|
|
|
|
#include "cdio_private.h" /* protoype for cdio_is_device_win32 */
|
2003-09-14 09:34:17 +00:00
|
|
|
|
#include "scsi_mmc.h"
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_WIN32_CDROM
|
|
|
|
|
|
|
2003-06-07 12:47:19 +00:00
|
|
|
|
#include <ctype.h>
|
2003-05-27 02:55:58 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
#include <winioctl.h>
|
2004-02-04 10:23:01 +00:00
|
|
|
|
#include "_cdio_win32.h"
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
#include <sys/types.h>
|
2004-02-02 03:55:19 +00:00
|
|
|
|
#include "wnaspi32.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define WIN_NT ( GetVersion() < 0x80000000 )
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2003-06-11 10:55:54 +00:00
|
|
|
|
/* General ioctl() CD-ROM command function */
|
|
|
|
|
|
static bool
|
|
|
|
|
|
_cdio_mciSendCommand(int id, UINT msg, DWORD flags, void *arg)
|
|
|
|
|
|
{
|
|
|
|
|
|
MCIERROR mci_error;
|
|
|
|
|
|
|
|
|
|
|
|
mci_error = mciSendCommand(id, msg, flags, (DWORD)arg);
|
|
|
|
|
|
if ( mci_error ) {
|
|
|
|
|
|
char error[256];
|
|
|
|
|
|
|
|
|
|
|
|
mciGetErrorString(mci_error, error, 256);
|
2003-10-18 04:08:46 +00:00
|
|
|
|
cdio_warn("mciSendCommand() error: %s", error);
|
2003-06-11 10:55:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
return(mci_error == 0);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2004-02-02 03:55:19 +00:00
|
|
|
|
static const char *
|
|
|
|
|
|
cdio_is_cdrom(const char drive_letter) {
|
2003-06-07 10:44:14 +00:00
|
|
|
|
if ( WIN_NT ) {
|
2004-02-04 10:23:01 +00:00
|
|
|
|
return win32ioctl_is_cdrom(drive_letter);
|
2003-06-07 10:44:14 +00:00
|
|
|
|
} else {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return wnaspi32_is_cdrom(drive_letter);
|
2003-06-07 10:44:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2003-05-27 02:55:58 +00:00
|
|
|
|
/*!
|
|
|
|
|
|
Initialize CD device.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static bool
|
2003-06-07 12:47:19 +00:00
|
|
|
|
_cdio_init_win32 (void *user_data)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
|
|
|
|
|
if (env->gen.init) {
|
2003-05-27 02:55:58 +00:00
|
|
|
|
cdio_error ("init called more than once");
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
env->gen.init = true;
|
|
|
|
|
|
env->toc_init = false;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Initializations */
|
2004-02-07 00:35:18 +00:00
|
|
|
|
env->h_device_handle = NULL;
|
|
|
|
|
|
env->i_sid = 0;
|
|
|
|
|
|
env->hASPI = 0;
|
|
|
|
|
|
env->lpSendCommand = 0;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
if ( WIN_NT ) {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return win32ioctl_init_win32(env);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
} else {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return wnaspi32_init_win32(env);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Release and free resources associated with cd.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static void
|
|
|
|
|
|
_cdio_win32_free (void *user_data)
|
|
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (NULL == env) return;
|
|
|
|
|
|
free (env->gen.source_name);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if( env->h_device_handle )
|
|
|
|
|
|
CloseHandle( env->h_device_handle );
|
|
|
|
|
|
if( env->hASPI )
|
|
|
|
|
|
FreeLibrary( (HMODULE)env->hASPI );
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
free (env);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2003-09-20 12:34:02 +00:00
|
|
|
|
/*!
|
|
|
|
|
|
Reads an audio device into data starting from lsn.
|
|
|
|
|
|
Returns 0 if no error.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static int
|
|
|
|
|
|
_cdio_read_audio_sectors (void *user_data, void *data, lsn_t lsn,
|
|
|
|
|
|
unsigned int nblocks)
|
|
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
|
|
|
|
|
if ( env->hASPI ) {
|
|
|
|
|
|
return wnaspi32_read_audio_sectors( env, data, lsn, nblocks );
|
2004-02-04 10:23:01 +00:00
|
|
|
|
} else {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return win32ioctl_read_audio_sectors( env, data, lsn, nblocks );
|
2004-02-04 10:23:01 +00:00
|
|
|
|
}
|
2003-09-20 12:34:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2003-05-27 02:55:58 +00:00
|
|
|
|
/*!
|
|
|
|
|
|
Reads a single mode2 sector from cd device into data starting
|
|
|
|
|
|
from lsn. Returns 0 if no error.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static int
|
|
|
|
|
|
_cdio_read_mode2_sector (void *user_data, void *data, lsn_t lsn,
|
|
|
|
|
|
bool mode2_form2)
|
|
|
|
|
|
{
|
2003-06-07 22:11:50 +00:00
|
|
|
|
char buf[CDIO_CD_FRAMESIZE_RAW] = { 0, };
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (env->gen.ioctls_debugged == 75)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
cdio_debug ("only displaying every 75th ioctl from now on");
|
|
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (env->gen.ioctls_debugged == 30 * 75)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
cdio_debug ("only displaying every 30*75th ioctl from now on");
|
|
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (env->gen.ioctls_debugged < 75
|
|
|
|
|
|
|| (env->gen.ioctls_debugged < (30 * 75)
|
|
|
|
|
|
&& env->gen.ioctls_debugged % 75 == 0)
|
|
|
|
|
|
|| env->gen.ioctls_debugged % (30 * 75) == 0)
|
2003-09-14 09:34:17 +00:00
|
|
|
|
cdio_debug ("reading %lu", (unsigned long int) lsn);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
env->gen.ioctls_debugged++;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if ( env->hASPI ) {
|
2004-02-04 10:23:01 +00:00
|
|
|
|
int ret;
|
2004-02-07 00:35:18 +00:00
|
|
|
|
ret = wnaspi32_read_mode2_sector(user_data, buf, lsn);
|
2004-02-04 10:23:01 +00:00
|
|
|
|
if( ret != 0 ) return ret;
|
|
|
|
|
|
if (mode2_form2)
|
|
|
|
|
|
memcpy (data, buf, M2RAW_SECTOR_SIZE);
|
|
|
|
|
|
else
|
|
|
|
|
|
memcpy (((char *)data), buf + CDIO_CD_SUBHEADER_SIZE, CDIO_CD_FRAMESIZE);
|
|
|
|
|
|
return 0;
|
2003-10-17 02:25:36 +00:00
|
|
|
|
} else {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return win32ioctl_read_mode2_sector( env, data, lsn, mode2_form2 );
|
2003-10-17 02:25:36 +00:00
|
|
|
|
}
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Reads nblocks of mode2 sectors from cd device into data starting
|
|
|
|
|
|
from lsn.
|
|
|
|
|
|
Returns 0 if no error.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static int
|
|
|
|
|
|
_cdio_read_mode2_sectors (void *user_data, void *data, lsn_t lsn,
|
2003-09-20 12:34:02 +00:00
|
|
|
|
bool mode2_form2, unsigned int nblocks)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
int i;
|
|
|
|
|
|
int retval;
|
|
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < nblocks; i++) {
|
|
|
|
|
|
if (mode2_form2) {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if ( (retval = _cdio_read_mode2_sector (env,
|
2003-05-27 02:55:58 +00:00
|
|
|
|
((char *)data) + (M2RAW_SECTOR_SIZE * i),
|
|
|
|
|
|
lsn + i, true)) )
|
|
|
|
|
|
return retval;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
char buf[M2RAW_SECTOR_SIZE] = { 0, };
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if ( (retval = _cdio_read_mode2_sector (env, buf, lsn + i, true)) )
|
2003-05-27 02:55:58 +00:00
|
|
|
|
return retval;
|
|
|
|
|
|
|
|
|
|
|
|
memcpy (((char *)data) + (CDIO_CD_FRAMESIZE * i),
|
|
|
|
|
|
buf + CDIO_CD_SUBHEADER_SIZE, CDIO_CD_FRAMESIZE);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Return the size of the CD in logical block address (LBA) units.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static uint32_t
|
|
|
|
|
|
_cdio_stat_size (void *user_data)
|
|
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return env->tocent[env->total_tracks].start_lsn;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Set the key "arg" to "value" in source device.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static int
|
|
|
|
|
|
_cdio_set_arg (void *user_data, const char key[], const char value[])
|
|
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
if (!strcmp (key, "source"))
|
|
|
|
|
|
{
|
|
|
|
|
|
if (!value)
|
|
|
|
|
|
return -2;
|
|
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
free (env->gen.source_name);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
env->gen.source_name = strdup (value);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Read and cache the CD's Track Table of Contents and track info.
|
|
|
|
|
|
Return true if successful or false if an error.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static bool
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_cdio_read_toc (_img_private_t *env)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
bool ret;
|
|
|
|
|
|
if( env->hASPI ) {
|
|
|
|
|
|
ret = wnaspi32_read_toc( env );
|
2003-05-27 02:55:58 +00:00
|
|
|
|
} else {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
ret =win32ioctl_read_toc(env);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (ret) env->gen.toc_init = true ;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Eject media. Return 1 if successful, 0 otherwise.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static int
|
|
|
|
|
|
_cdio_eject_media (void *user_data) {
|
|
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
MCI_OPEN_PARMS op;
|
|
|
|
|
|
MCI_STATUS_PARMS st;
|
|
|
|
|
|
DWORD i_flags;
|
|
|
|
|
|
char psz_drive[4];
|
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
|
|
memset( &op, 0, sizeof(MCI_OPEN_PARMS) );
|
|
|
|
|
|
op.lpstrDeviceType = (LPCSTR)MCI_DEVTYPE_CD_AUDIO;
|
|
|
|
|
|
strcpy( psz_drive, "X:" );
|
2004-02-07 00:35:18 +00:00
|
|
|
|
psz_drive[0] = env->gen.source_name[0];
|
2003-05-27 02:55:58 +00:00
|
|
|
|
op.lpstrElementName = psz_drive;
|
|
|
|
|
|
|
|
|
|
|
|
/* Set the flags for the device type */
|
|
|
|
|
|
i_flags = MCI_OPEN_TYPE | MCI_OPEN_TYPE_ID |
|
|
|
|
|
|
MCI_OPEN_ELEMENT | MCI_OPEN_SHAREABLE;
|
|
|
|
|
|
|
2003-10-18 04:08:46 +00:00
|
|
|
|
if( _cdio_mciSendCommand( 0, MCI_OPEN, i_flags, &op ) ) {
|
2003-05-27 02:55:58 +00:00
|
|
|
|
st.dwItem = MCI_STATUS_READY;
|
|
|
|
|
|
/* Eject disc */
|
2003-10-18 04:08:46 +00:00
|
|
|
|
ret = _cdio_mciSendCommand( op.wDeviceID, MCI_SET, MCI_SET_DOOR_OPEN, 0 ) != 0;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
/* Release access to the device */
|
2003-10-18 04:08:46 +00:00
|
|
|
|
_cdio_mciSendCommand( op.wDeviceID, MCI_CLOSE, MCI_WAIT, 0 );
|
2003-05-27 02:55:58 +00:00
|
|
|
|
} else
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Return the value associated with the key "arg".
|
|
|
|
|
|
*/
|
|
|
|
|
|
static const char *
|
|
|
|
|
|
_cdio_get_arg (void *user_data, const char key[])
|
|
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
if (!strcmp (key, "source")) {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return env->gen.source_name;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
} else if (!strcmp (key, "access-mode")) {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (env->hASPI)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
return "ASPI";
|
2004-02-04 10:23:01 +00:00
|
|
|
|
else if ( WIN_NT )
|
|
|
|
|
|
return "winNT/2K/XP ioctl";
|
2003-05-27 02:55:58 +00:00
|
|
|
|
else
|
|
|
|
|
|
return "undefined WIN32";
|
|
|
|
|
|
}
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Return the number of of the first track.
|
|
|
|
|
|
CDIO_INVALID_TRACK is returned on error.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static track_t
|
|
|
|
|
|
_cdio_get_first_track_num(void *user_data)
|
|
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (!env->toc_init) _cdio_read_toc (env) ;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return env->first_track_num;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2003-10-18 04:08:46 +00:00
|
|
|
|
/*!
|
|
|
|
|
|
Return the media catalog number MCN.
|
|
|
|
|
|
|
|
|
|
|
|
Note: string is malloc'd so caller should free() then returned
|
|
|
|
|
|
string when done with it.
|
|
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
static char *
|
|
|
|
|
|
_cdio_get_mcn (void *env) {
|
|
|
|
|
|
|
2004-02-04 11:08:10 +00:00
|
|
|
|
_img_private_t *_env = env;
|
2003-10-18 04:08:46 +00:00
|
|
|
|
|
2004-02-04 11:08:10 +00:00
|
|
|
|
if( ! _env->hASPI ) {
|
|
|
|
|
|
win32ioctl_get_mcn(_env);
|
2003-10-18 04:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2003-05-27 02:55:58 +00:00
|
|
|
|
/*!
|
|
|
|
|
|
Return the number of tracks in the current medium.
|
|
|
|
|
|
CDIO_INVALID_TRACK is returned on error.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static track_t
|
|
|
|
|
|
_cdio_get_num_tracks(void *user_data)
|
|
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = user_data;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (!env->toc_init) _cdio_read_toc (env) ;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return env->total_tracks;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Get format of track.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static track_format_t
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_cdio_get_track_format(void *obj, track_t track_num)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = obj;
|
2003-10-17 02:25:36 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (!env->gen.toc_init) _cdio_read_toc (env) ;
|
2003-10-17 02:25:36 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (track_num > env->total_tracks || track_num == 0)
|
2003-10-17 02:25:36 +00:00
|
|
|
|
return TRACK_FORMAT_ERROR;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if( env->hASPI ) {
|
|
|
|
|
|
return wnaspi32_get_track_format(env, track_num);
|
2003-10-17 02:25:36 +00:00
|
|
|
|
} else {
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return win32ioctl_get_track_format(env, track_num);
|
2003-06-07 16:53:21 +00:00
|
|
|
|
}
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Return true if we have XA data (green, mode2 form1) or
|
|
|
|
|
|
XA data (green, mode2 form2). That is track begins:
|
|
|
|
|
|
sync - header - subheader
|
|
|
|
|
|
12 4 - 8
|
|
|
|
|
|
|
|
|
|
|
|
FIXME: there's gotta be a better design for this and get_track_format?
|
|
|
|
|
|
*/
|
|
|
|
|
|
static bool
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_cdio_get_track_green(void *obj, track_t track_num)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
{
|
2004-02-07 00:35:18 +00:00
|
|
|
|
_img_private_t *env = obj;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (!env->toc_init) _cdio_read_toc (env) ;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (track_num == CDIO_CDROM_LEADOUT_TRACK) track_num = env->total_tracks+1;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
2004-02-07 00:35:18 +00:00
|
|
|
|
if (track_num > env->total_tracks+1 || track_num == 0)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
return false;
|
|
|
|
|
|
|
2003-10-18 19:49:00 +00:00
|
|
|
|
switch (_cdio_get_track_format(env, track_num)) {
|
|
|
|
|
|
case TRACK_FORMAT_ERROR:
|
|
|
|
|
|
case TRACK_FORMAT_CDI:
|
|
|
|
|
|
case TRACK_FORMAT_AUDIO:
|
|
|
|
|
|
return false;
|
|
|
|
|
|
default:
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2003-10-15 03:53:25 +00:00
|
|
|
|
/* FIXME: Dunno if this is the right way, but it's what
|
|
|
|
|
|
I was using in cd-info for a while.
|
|
|
|
|
|
*/
|
2004-02-07 00:35:18 +00:00
|
|
|
|
return ((env->tocent[track_num-1].Control & 2) != 0);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Return the starting MSF (minutes/secs/frames) for track number
|
|
|
|
|
|
track_num in obj. Track numbers start at 1.
|
|
|
|
|
|
The "leadout" track is specified either by
|
|
|
|
|
|
using track_num LEADOUT_TRACK or the total tracks+1.
|
|
|
|
|
|
False is returned if there is no track entry.
|
|
|
|
|
|
*/
|
|
|
|
|
|
static bool
|
2003-10-18 19:49:00 +00:00
|
|
|
|
_cdio_get_track_msf(void *env, track_t track_num, msf_t *msf)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
{
|
2003-10-18 19:49:00 +00:00
|
|
|
|
_img_private_t *_obj = env;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
if (NULL == msf) return false;
|
|
|
|
|
|
|
|
|
|
|
|
if (!_obj->toc_init) _cdio_read_toc (_obj) ;
|
|
|
|
|
|
|
|
|
|
|
|
if (track_num == CDIO_CDROM_LEADOUT_TRACK) track_num = _obj->total_tracks+1;
|
|
|
|
|
|
|
|
|
|
|
|
if (track_num > _obj->total_tracks+1 || track_num == 0) {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
} else {
|
2003-06-07 12:47:19 +00:00
|
|
|
|
cdio_lsn_to_msf(_obj->tocent[track_num-1].start_lsn, msf);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
return true;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2003-06-07 12:47:19 +00:00
|
|
|
|
#endif /* HAVE_WIN32_CDROM */
|
|
|
|
|
|
|
2003-10-03 01:11:48 +00:00
|
|
|
|
/*!
|
|
|
|
|
|
Return an array of strings giving possible CD devices.
|
|
|
|
|
|
*/
|
|
|
|
|
|
char **
|
|
|
|
|
|
cdio_get_devices_win32 (void)
|
|
|
|
|
|
{
|
|
|
|
|
|
#ifndef HAVE_WIN32_CDROM
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
#else
|
|
|
|
|
|
char **drives = NULL;
|
|
|
|
|
|
unsigned int num_drives=0;
|
|
|
|
|
|
char drive_letter;
|
|
|
|
|
|
|
|
|
|
|
|
/* Scan the system for CD-ROM drives.
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#if FINISHED
|
|
|
|
|
|
/* Now check the currently mounted CD drives */
|
|
|
|
|
|
if (NULL != (ret_drive = cdio_check_mounts("/etc/mtab"))) {
|
|
|
|
|
|
cdio_add_device_list(&drives, drive, &num_drives);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Finally check possible mountable drives in /etc/fstab */
|
|
|
|
|
|
if (NULL != (ret_drive = cdio_check_mounts("/etc/fstab"))) {
|
|
|
|
|
|
cdio_add_device_list(&drives, drive, &num_drives);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Scan the system for CD-ROM drives.
|
|
|
|
|
|
Not always 100% reliable, so use the USE_MNTENT code above first.
|
|
|
|
|
|
*/
|
|
|
|
|
|
for (drive_letter='A'; drive_letter <= 'Z'; drive_letter++) {
|
|
|
|
|
|
const char *drive_str=cdio_is_cdrom(drive_letter);
|
|
|
|
|
|
if (drive_str != NULL) {
|
|
|
|
|
|
cdio_add_device_list(&drives, drive_str, &num_drives);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
cdio_add_device_list(&drives, NULL, &num_drives);
|
|
|
|
|
|
return drives;
|
|
|
|
|
|
#endif /*HAVE_WIN32_CDROM*/
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2003-05-27 02:55:58 +00:00
|
|
|
|
/*!
|
2003-06-07 10:44:14 +00:00
|
|
|
|
Return a string containing the default CD device if none is specified.
|
2003-06-07 12:47:19 +00:00
|
|
|
|
if CdIo is NULL (we haven't initialized a specific device driver),
|
|
|
|
|
|
then find a suitable one and return the default device for that.
|
|
|
|
|
|
|
|
|
|
|
|
NULL is returned if we couldn't get a default device.
|
|
|
|
|
|
*/
|
2003-05-27 02:55:58 +00:00
|
|
|
|
char *
|
2003-06-07 10:44:14 +00:00
|
|
|
|
cdio_get_default_device_win32(void)
|
2003-05-27 02:55:58 +00:00
|
|
|
|
{
|
|
|
|
|
|
|
2003-06-07 12:47:19 +00:00
|
|
|
|
#ifdef HAVE_WIN32_CDROM
|
|
|
|
|
|
char drive_letter;
|
2003-06-07 10:44:14 +00:00
|
|
|
|
|
|
|
|
|
|
for (drive_letter='A'; drive_letter <= 'Z'; drive_letter++) {
|
2003-06-12 03:38:31 +00:00
|
|
|
|
const char *drive_str=cdio_is_cdrom(drive_letter);
|
2003-06-07 10:44:14 +00:00
|
|
|
|
if (drive_str != NULL) {
|
|
|
|
|
|
return strdup(drive_str);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2003-06-07 12:47:19 +00:00
|
|
|
|
#endif
|
2003-06-07 10:44:14 +00:00
|
|
|
|
return NULL;
|
2003-05-27 02:55:58 +00:00
|
|
|
|
}
|
2003-06-07 12:47:19 +00:00
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Return true if source_name could be a device containing a CD-ROM.
|
|
|
|
|
|
*/
|
|
|
|
|
|
bool
|
|
|
|
|
|
cdio_is_device_win32(const char *source_name)
|
2003-06-07 10:44:14 +00:00
|
|
|
|
{
|
2003-06-07 12:47:19 +00:00
|
|
|
|
unsigned int len;
|
|
|
|
|
|
len = strlen(source_name);
|
2003-06-11 10:55:54 +00:00
|
|
|
|
|
|
|
|
|
|
if (NULL == source_name) return false;
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_WIN32_CDROM
|
|
|
|
|
|
if ( WIN_NT )
|
|
|
|
|
|
/* Really should test to see if of form: \\.\x: */
|
|
|
|
|
|
return ((len == 6) && isalpha(source_name[len-2])
|
|
|
|
|
|
&& (source_name[len-1] == ':'));
|
|
|
|
|
|
else
|
|
|
|
|
|
/* See if is of form: x: */
|
|
|
|
|
|
return ((len == 2) && isalpha(source_name[0])
|
|
|
|
|
|
&& (source_name[len-1] == ':'));
|
|
|
|
|
|
#else
|
2003-08-11 09:19:18 +00:00
|
|
|
|
return false;
|
2003-06-11 10:55:54 +00:00
|
|
|
|
#endif
|
2003-06-07 10:44:14 +00:00
|
|
|
|
}
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
|
Initialization routine. This is the only thing that doesn't
|
|
|
|
|
|
get called via a function pointer. In fact *we* are the
|
|
|
|
|
|
ones to set that up.
|
|
|
|
|
|
*/
|
|
|
|
|
|
CdIo *
|
|
|
|
|
|
cdio_open_win32 (const char *source_name)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_WIN32_CDROM
|
|
|
|
|
|
CdIo *ret;
|
|
|
|
|
|
_img_private_t *_data;
|
|
|
|
|
|
|
|
|
|
|
|
cdio_funcs _funcs = {
|
|
|
|
|
|
.eject_media = _cdio_eject_media,
|
|
|
|
|
|
.free = _cdio_win32_free,
|
|
|
|
|
|
.get_arg = _cdio_get_arg,
|
|
|
|
|
|
.get_default_device = cdio_get_default_device_win32,
|
2003-10-03 01:11:48 +00:00
|
|
|
|
.get_devices = cdio_get_devices_win32,
|
2003-05-27 02:55:58 +00:00
|
|
|
|
.get_first_track_num= _cdio_get_first_track_num,
|
2003-10-18 04:08:46 +00:00
|
|
|
|
.get_mcn = _cdio_get_mcn,
|
2003-05-27 02:55:58 +00:00
|
|
|
|
.get_num_tracks = _cdio_get_num_tracks,
|
|
|
|
|
|
.get_track_format = _cdio_get_track_format,
|
|
|
|
|
|
.get_track_green = _cdio_get_track_green,
|
|
|
|
|
|
.get_track_lba = NULL, /* This could be implemented if need be. */
|
|
|
|
|
|
.get_track_msf = _cdio_get_track_msf,
|
2003-06-07 20:42:49 +00:00
|
|
|
|
.lseek = NULL,
|
|
|
|
|
|
.read = NULL,
|
2003-09-20 12:34:02 +00:00
|
|
|
|
.read_audio_sectors = _cdio_read_audio_sectors,
|
2003-05-27 02:55:58 +00:00
|
|
|
|
.read_mode2_sector = _cdio_read_mode2_sector,
|
|
|
|
|
|
.read_mode2_sectors = _cdio_read_mode2_sectors,
|
|
|
|
|
|
.set_arg = _cdio_set_arg,
|
|
|
|
|
|
.stat_size = _cdio_stat_size
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
_data = _cdio_malloc (sizeof (_img_private_t));
|
|
|
|
|
|
_data->gen.init = false;
|
|
|
|
|
|
_data->gen.fd = -1;
|
|
|
|
|
|
|
|
|
|
|
|
_cdio_set_arg(_data, "source", (NULL == source_name)
|
2003-06-07 10:44:14 +00:00
|
|
|
|
? cdio_get_default_device_win32(): source_name);
|
2003-05-27 02:55:58 +00:00
|
|
|
|
|
|
|
|
|
|
ret = cdio_new (_data, &_funcs);
|
|
|
|
|
|
if (ret == NULL) return NULL;
|
|
|
|
|
|
|
2003-06-07 12:47:19 +00:00
|
|
|
|
if (_cdio_init_win32(_data))
|
2003-05-27 02:55:58 +00:00
|
|
|
|
return ret;
|
|
|
|
|
|
else {
|
|
|
|
|
|
_cdio_win32_free (_data);
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
return NULL;
|
|
|
|
|
|
#endif /* HAVE_WIN32_CDROM */
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
|
|
cdio_have_win32 (void)
|
|
|
|
|
|
{
|
|
|
|
|
|
#ifdef HAVE_WIN32_CDROM
|
|
|
|
|
|
return true;
|
|
|
|
|
|
#else
|
|
|
|
|
|
return false;
|
|
|
|
|
|
#endif /* HAVE_WIN32_CDROM */
|
|
|
|
|
|
}
|