1992-04-13 15:22:53 -03:00
|
|
|
/**********************************************************
|
1995-01-04 15:10:35 -04:00
|
|
|
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
The Netherlands.
|
1992-04-13 15:22:53 -03:00
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
1992-04-13 15:22:53 -03:00
|
|
|
provided that the above copyright notice appear in all copies and that
|
1996-10-25 11:44:06 -03:00
|
|
|
both that copyright notice and this permission notice appear in
|
1992-04-13 15:22:53 -03:00
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
1996-10-25 11:44:06 -03:00
|
|
|
Centrum or CWI or Corporation for National Research Initiatives or
|
|
|
|
CNRI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior
|
|
|
|
permission.
|
|
|
|
|
|
|
|
While CWI is the initial source for this software, a modified version
|
|
|
|
is made available by the Corporation for National Research Initiatives
|
|
|
|
(CNRI) at the Internet address ftp://ftp.python.org.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
|
|
|
|
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
|
|
|
|
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
|
|
|
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
PERFORMANCE OF THIS SOFTWARE.
|
1992-04-13 15:22:53 -03:00
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
/* CD module -- interface to Mark Callow's and Roger Chickering's */
|
|
|
|
/* CD Audio Library (CD). */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <cdaudio.h>
|
1995-03-28 08:06:23 -04:00
|
|
|
/* #include <sigfpe.h> */
|
1992-04-13 15:22:53 -03:00
|
|
|
#include "allobjects.h"
|
|
|
|
#include "import.h"
|
|
|
|
#include "modsupport.h"
|
|
|
|
#include "ceval.h"
|
|
|
|
|
|
|
|
#define NCALLBACKS 8
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
OB_HEAD
|
|
|
|
CDPLAYER *ob_cdplayer;
|
|
|
|
} cdplayerobject;
|
|
|
|
|
1992-09-24 07:48:40 -03:00
|
|
|
static object *CdError; /* exception cd.error */
|
|
|
|
|
1992-04-13 15:22:53 -03:00
|
|
|
static object *
|
|
|
|
CD_allowremoval(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
CDallowremoval(self->ob_cdplayer);
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_preventremoval(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
CDpreventremoval(self->ob_cdplayer);
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_bestreadsize(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return newintobject((long) CDbestreadsize(self->ob_cdplayer));
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_close(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDclose(self->ob_cdplayer)) {
|
1992-09-24 07:48:40 -03:00
|
|
|
err_errno(CdError); /* XXX - ??? */
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
self->ob_cdplayer = NULL;
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_eject(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-05-06 06:48:30 -03:00
|
|
|
CDSTATUS status;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDeject(self->ob_cdplayer)) {
|
1992-05-06 06:48:30 -03:00
|
|
|
if (CDgetstatus(self->ob_cdplayer, &status) &&
|
|
|
|
status.state == CD_NODISC)
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "no disc in player");
|
1992-05-06 06:48:30 -03:00
|
|
|
else
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "eject failed");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_getstatus(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
CDSTATUS status;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDgetstatus(self->ob_cdplayer, &status)) {
|
1992-09-24 07:48:40 -03:00
|
|
|
err_errno(CdError); /* XXX - ??? */
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
return mkvalue("(ii(iii)(iii)(iii)iiii)", status.state,
|
1992-04-15 12:56:11 -03:00
|
|
|
status.track, status.min, status.sec, status.frame,
|
|
|
|
status.abs_min, status.abs_sec, status.abs_frame,
|
|
|
|
status.total_min, status.total_sec, status.total_frame,
|
|
|
|
status.first, status.last, status.scsi_audio,
|
1995-03-28 08:06:23 -04:00
|
|
|
status.cur_block);
|
1992-04-13 15:22:53 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_gettrackinfo(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int track;
|
|
|
|
CDTRACKINFO info;
|
1992-05-06 06:48:30 -03:00
|
|
|
CDSTATUS status;
|
1992-04-13 15:22:53 -03:00
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "i", &track))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDgettrackinfo(self->ob_cdplayer, track, &info)) {
|
1992-05-06 06:48:30 -03:00
|
|
|
if (CDgetstatus(self->ob_cdplayer, &status) &&
|
|
|
|
status.state == CD_NODISC)
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "no disc in player");
|
1992-05-06 06:48:30 -03:00
|
|
|
else
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "gettrackinfo failed");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1992-04-15 12:56:11 -03:00
|
|
|
return mkvalue("((iii)(iii))",
|
1992-04-13 15:22:53 -03:00
|
|
|
info.start_min, info.start_sec, info.start_frame,
|
|
|
|
info.total_min, info.total_sec, info.total_frame);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_msftoblock(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int min, sec, frame;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "iii", &min, &sec, &frame))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
return newintobject((long) CDmsftoblock(self->ob_cdplayer,
|
|
|
|
min, sec, frame));
|
1992-04-13 15:22:53 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_play(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int start, play;
|
1992-05-06 06:48:30 -03:00
|
|
|
CDSTATUS status;
|
1992-04-13 15:22:53 -03:00
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "ii", &start, &play))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDplay(self->ob_cdplayer, start, play)) {
|
1992-05-06 06:48:30 -03:00
|
|
|
if (CDgetstatus(self->ob_cdplayer, &status) &&
|
|
|
|
status.state == CD_NODISC)
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "no disc in player");
|
1992-05-06 06:48:30 -03:00
|
|
|
else
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "play failed");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_playabs(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int min, sec, frame, play;
|
1992-05-06 06:48:30 -03:00
|
|
|
CDSTATUS status;
|
1992-04-13 15:22:53 -03:00
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "iiii", &min, &sec, &frame, &play))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDplayabs(self->ob_cdplayer, min, sec, frame, play)) {
|
1992-05-06 06:48:30 -03:00
|
|
|
if (CDgetstatus(self->ob_cdplayer, &status) &&
|
|
|
|
status.state == CD_NODISC)
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "no disc in player");
|
1992-05-06 06:48:30 -03:00
|
|
|
else
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "playabs failed");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_playtrack(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int start, play;
|
1992-05-06 06:48:30 -03:00
|
|
|
CDSTATUS status;
|
1992-04-13 15:22:53 -03:00
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "ii", &start, &play))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDplaytrack(self->ob_cdplayer, start, play)) {
|
1992-05-06 06:48:30 -03:00
|
|
|
if (CDgetstatus(self->ob_cdplayer, &status) &&
|
|
|
|
status.state == CD_NODISC)
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "no disc in player");
|
1992-05-06 06:48:30 -03:00
|
|
|
else
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "playtrack failed");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_playtrackabs(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int track, min, sec, frame, play;
|
1992-05-06 06:48:30 -03:00
|
|
|
CDSTATUS status;
|
1992-04-13 15:22:53 -03:00
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "iiiii", &track, &min, &sec, &frame, &play))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDplaytrackabs(self->ob_cdplayer, track, min, sec, frame, play)) {
|
1992-05-06 06:48:30 -03:00
|
|
|
if (CDgetstatus(self->ob_cdplayer, &status) &&
|
|
|
|
status.state == CD_NODISC)
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "no disc in player");
|
1992-05-06 06:48:30 -03:00
|
|
|
else
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "playtrackabs failed");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_readda(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int numframes, n;
|
|
|
|
object *result;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "i", &numframes))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
result = newsizedstringobject(NULL, numframes * sizeof(CDFRAME));
|
|
|
|
if (result == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
n = CDreadda(self->ob_cdplayer, (CDFRAME *) getstringvalue(result), numframes);
|
|
|
|
if (n == -1) {
|
|
|
|
DECREF(result);
|
1992-09-24 07:48:40 -03:00
|
|
|
err_errno(CdError);
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (n < numframes)
|
|
|
|
if (resizestring(&result, n * sizeof(CDFRAME)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_seek(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int min, sec, frame;
|
|
|
|
long block;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "iii", &min, &sec, &frame))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
block = CDseek(self->ob_cdplayer, min, sec, frame);
|
|
|
|
if (block == -1) {
|
1992-09-24 07:48:40 -03:00
|
|
|
err_errno(CdError);
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newintobject(block);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_seektrack(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int track;
|
|
|
|
long block;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "i", &track))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
block = CDseektrack(self->ob_cdplayer, track);
|
|
|
|
if (block == -1) {
|
1992-09-24 07:48:40 -03:00
|
|
|
err_errno(CdError);
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newintobject(block);
|
|
|
|
}
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
static object *
|
|
|
|
CD_seekblock(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
unsigned long block;
|
|
|
|
|
|
|
|
if (!newgetargs(args, "l", &block))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
block = CDseekblock(self->ob_cdplayer, block);
|
|
|
|
if (block == (unsigned long) -1) {
|
|
|
|
err_errno(CdError);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newintobject(block);
|
|
|
|
}
|
|
|
|
|
1992-04-13 15:22:53 -03:00
|
|
|
static object *
|
|
|
|
CD_stop(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-05-06 06:48:30 -03:00
|
|
|
CDSTATUS status;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDstop(self->ob_cdplayer)) {
|
1992-05-06 06:48:30 -03:00
|
|
|
if (CDgetstatus(self->ob_cdplayer, &status) &&
|
|
|
|
status.state == CD_NODISC)
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "no disc in player");
|
1992-05-06 06:48:30 -03:00
|
|
|
else
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "stop failed");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_togglepause(self, args)
|
|
|
|
cdplayerobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1992-05-06 06:48:30 -03:00
|
|
|
CDSTATUS status;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!CDtogglepause(self->ob_cdplayer)) {
|
1992-05-06 06:48:30 -03:00
|
|
|
if (CDgetstatus(self->ob_cdplayer, &status) &&
|
|
|
|
status.state == CD_NODISC)
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "no disc in player");
|
1992-05-06 06:48:30 -03:00
|
|
|
else
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "togglepause failed");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct methodlist cdplayer_methods[] = {
|
1995-03-28 08:06:23 -04:00
|
|
|
{"allowremoval", (method)CD_allowremoval, 1},
|
|
|
|
{"bestreadsize", (method)CD_bestreadsize, 1},
|
|
|
|
{"close", (method)CD_close, 1},
|
|
|
|
{"eject", (method)CD_eject, 1},
|
|
|
|
{"getstatus", (method)CD_getstatus, 1},
|
|
|
|
{"gettrackinfo", (method)CD_gettrackinfo, 1},
|
|
|
|
{"msftoblock", (method)CD_msftoblock, 1},
|
|
|
|
{"play", (method)CD_play, 1},
|
|
|
|
{"playabs", (method)CD_playabs, 1},
|
|
|
|
{"playtrack", (method)CD_playtrack, 1},
|
|
|
|
{"playtrackabs", (method)CD_playtrackabs, 1},
|
|
|
|
{"preventremoval", (method)CD_preventremoval, 1},
|
|
|
|
{"readda", (method)CD_readda, 1},
|
|
|
|
{"seek", (method)CD_seek, 1},
|
|
|
|
{"seekblock", (method)CD_seekblock, 1},
|
|
|
|
{"seektrack", (method)CD_seektrack, 1},
|
|
|
|
{"stop", (method)CD_stop, 1},
|
|
|
|
{"togglepause", (method)CD_togglepause, 1},
|
1992-04-13 15:22:53 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
cdplayer_dealloc(self)
|
|
|
|
cdplayerobject *self;
|
|
|
|
{
|
|
|
|
if (self->ob_cdplayer != NULL)
|
|
|
|
CDclose(self->ob_cdplayer);
|
|
|
|
DEL(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1995-03-28 08:06:23 -04:00
|
|
|
cdplayer_getattr(self, name)
|
|
|
|
cdplayerobject *self;
|
1992-04-13 15:22:53 -03:00
|
|
|
char *name;
|
|
|
|
{
|
1995-03-28 08:06:23 -04:00
|
|
|
if (self->ob_cdplayer == NULL) {
|
|
|
|
err_setstr(RuntimeError, "no player active");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return findmethod(cdplayer_methods, (object *)self, name);
|
1992-04-13 15:22:53 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
typeobject CdPlayertype = {
|
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0, /*ob_size*/
|
|
|
|
"cdplayer", /*tp_name*/
|
|
|
|
sizeof(cdplayerobject), /*tp_size*/
|
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
1994-08-01 08:34:53 -03:00
|
|
|
(destructor)cdplayer_dealloc, /*tp_dealloc*/
|
1992-04-13 15:22:53 -03:00
|
|
|
0, /*tp_print*/
|
1994-08-01 08:34:53 -03:00
|
|
|
(getattrfunc)cdplayer_getattr, /*tp_getattr*/
|
1992-04-13 15:22:53 -03:00
|
|
|
0, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
};
|
|
|
|
|
|
|
|
static object *
|
|
|
|
newcdplayerobject(cdp)
|
|
|
|
CDPLAYER *cdp;
|
|
|
|
{
|
|
|
|
cdplayerobject *p;
|
|
|
|
|
|
|
|
p = NEWOBJ(cdplayerobject, &CdPlayertype);
|
|
|
|
if (p == NULL)
|
|
|
|
return NULL;
|
|
|
|
p->ob_cdplayer = cdp;
|
|
|
|
return (object *) p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_open(self, args)
|
|
|
|
object *self, *args;
|
|
|
|
{
|
|
|
|
char *dev, *direction;
|
|
|
|
CDPLAYER *cdp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Variable number of args.
|
|
|
|
* First defaults to "None", second defaults to "r".
|
|
|
|
*/
|
|
|
|
dev = NULL;
|
|
|
|
direction = "r";
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "|zs", &dev, &direction))
|
|
|
|
return NULL;
|
1992-04-13 15:22:53 -03:00
|
|
|
|
|
|
|
cdp = CDopen(dev, direction);
|
|
|
|
if (cdp == NULL) {
|
1992-09-24 07:48:40 -03:00
|
|
|
err_errno(CdError);
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newcdplayerobject(cdp);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
OB_HEAD
|
|
|
|
CDPARSER *ob_cdparser;
|
|
|
|
struct {
|
|
|
|
object *ob_cdcallback;
|
|
|
|
object *ob_cdcallbackarg;
|
|
|
|
} ob_cdcallbacks[NCALLBACKS];
|
|
|
|
} cdparserobject;
|
|
|
|
|
|
|
|
static void
|
|
|
|
CD_callback(arg, type, data)
|
|
|
|
void *arg;
|
|
|
|
CDDATATYPES type;
|
|
|
|
void *data;
|
|
|
|
{
|
1996-12-05 19:43:35 -04:00
|
|
|
object *result, *args, *v = NULL;
|
1992-04-13 15:22:53 -03:00
|
|
|
char *p;
|
|
|
|
int i;
|
|
|
|
cdparserobject *self;
|
|
|
|
|
|
|
|
self = (cdparserobject *) arg;
|
|
|
|
args = newtupleobject(3);
|
|
|
|
if (args == NULL)
|
|
|
|
return;
|
|
|
|
INCREF(self->ob_cdcallbacks[type].ob_cdcallbackarg);
|
|
|
|
settupleitem(args, 0, self->ob_cdcallbacks[type].ob_cdcallbackarg);
|
|
|
|
settupleitem(args, 1, newintobject((long) type));
|
|
|
|
switch (type) {
|
|
|
|
case cd_audio:
|
|
|
|
v = newsizedstringobject(data, CDDA_DATASIZE);
|
|
|
|
break;
|
|
|
|
case cd_pnum:
|
|
|
|
case cd_index:
|
|
|
|
v = newintobject(((CDPROGNUM *) data)->value);
|
|
|
|
break;
|
|
|
|
case cd_ptime:
|
|
|
|
case cd_atime:
|
1992-04-15 12:56:11 -03:00
|
|
|
#define ptr ((struct cdtimecode *) data)
|
1995-03-28 08:06:23 -04:00
|
|
|
v = mkvalue("(iii)",
|
|
|
|
ptr->mhi * 10 + ptr->mlo,
|
1992-04-15 12:56:11 -03:00
|
|
|
ptr->shi * 10 + ptr->slo,
|
|
|
|
ptr->fhi * 10 + ptr->flo);
|
|
|
|
#undef ptr
|
1992-04-13 15:22:53 -03:00
|
|
|
break;
|
|
|
|
case cd_catalog:
|
|
|
|
v = newsizedstringobject(NULL, 13);
|
|
|
|
p = getstringvalue(v);
|
|
|
|
for (i = 0; i < 13; i++)
|
|
|
|
*p++ = ((char *) data)[i] + '0';
|
|
|
|
break;
|
|
|
|
case cd_ident:
|
1995-03-28 08:06:23 -04:00
|
|
|
#define ptr ((struct cdident *) data)
|
1992-04-13 15:22:53 -03:00
|
|
|
v = newsizedstringobject(NULL, 12);
|
|
|
|
p = getstringvalue(v);
|
1995-03-28 08:06:23 -04:00
|
|
|
CDsbtoa(p, ptr->country, 2);
|
1992-04-13 15:22:53 -03:00
|
|
|
p += 2;
|
1995-03-28 08:06:23 -04:00
|
|
|
CDsbtoa(p, ptr->owner, 3);
|
1992-04-13 15:22:53 -03:00
|
|
|
p += 3;
|
1995-03-28 08:06:23 -04:00
|
|
|
*p++ = ptr->year[0] + '0';
|
|
|
|
*p++ = ptr->year[1] + '0';
|
|
|
|
*p++ = ptr->serial[0] + '0';
|
|
|
|
*p++ = ptr->serial[1] + '0';
|
|
|
|
*p++ = ptr->serial[2] + '0';
|
|
|
|
*p++ = ptr->serial[3] + '0';
|
|
|
|
*p++ = ptr->serial[4] + '0';
|
|
|
|
#undef ptr
|
1992-04-13 15:22:53 -03:00
|
|
|
break;
|
|
|
|
case cd_control:
|
|
|
|
v = newintobject((long) *((unchar *) data));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
settupleitem(args, 2, v);
|
|
|
|
if (err_occurred()) {
|
|
|
|
DECREF(args);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = call_object(self->ob_cdcallbacks[type].ob_cdcallback, args);
|
|
|
|
DECREF(args);
|
|
|
|
XDECREF(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_deleteparser(self, args)
|
|
|
|
cdparserobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
CDdeleteparser(self->ob_cdparser);
|
|
|
|
self->ob_cdparser = NULL;
|
|
|
|
|
|
|
|
/* no sense in keeping the callbacks, so remove them */
|
|
|
|
for (i = 0; i < NCALLBACKS; i++) {
|
|
|
|
XDECREF(self->ob_cdcallbacks[i].ob_cdcallback);
|
|
|
|
self->ob_cdcallbacks[i].ob_cdcallback = NULL;
|
|
|
|
XDECREF(self->ob_cdcallbacks[i].ob_cdcallbackarg);
|
|
|
|
self->ob_cdcallbacks[i].ob_cdcallbackarg = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_parseframe(self, args)
|
|
|
|
cdparserobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
char *cdfp;
|
|
|
|
int length;
|
|
|
|
CDFRAME *p;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "s#", &cdfp, &length))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (length % sizeof(CDFRAME) != 0) {
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(TypeError, "bad length");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
p = (CDFRAME *) cdfp;
|
|
|
|
while (length > 0) {
|
|
|
|
CDparseframe(self->ob_cdparser, p);
|
|
|
|
length -= sizeof(CDFRAME);
|
|
|
|
p++;
|
|
|
|
if (err_occurred())
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_removecallback(self, args)
|
|
|
|
cdparserobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "i", &type))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
1992-08-03 16:06:59 -03:00
|
|
|
if (type < 0 || type >= NCALLBACKS) {
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(TypeError, "bad type");
|
1992-08-03 16:06:59 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1992-04-13 15:22:53 -03:00
|
|
|
CDremovecallback(self->ob_cdparser, (CDDATATYPES) type);
|
|
|
|
|
|
|
|
XDECREF(self->ob_cdcallbacks[type].ob_cdcallback);
|
|
|
|
self->ob_cdcallbacks[type].ob_cdcallback = NULL;
|
|
|
|
|
|
|
|
XDECREF(self->ob_cdcallbacks[type].ob_cdcallbackarg);
|
|
|
|
self->ob_cdcallbacks[type].ob_cdcallbackarg = NULL;
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_resetparser(self, args)
|
|
|
|
cdparserobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
CDresetparser(self->ob_cdparser);
|
|
|
|
|
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1992-08-03 16:06:59 -03:00
|
|
|
CD_addcallback(self, args)
|
1992-04-13 15:22:53 -03:00
|
|
|
cdparserobject *self;
|
|
|
|
object *args;
|
|
|
|
{
|
|
|
|
int type;
|
1993-06-17 09:35:49 -03:00
|
|
|
object *func, *funcarg;
|
1992-04-13 15:22:53 -03:00
|
|
|
|
|
|
|
/* XXX - more work here */
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "iOO", &type, &func, &funcarg))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (type < 0 || type >= NCALLBACKS) {
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(TypeError, "argument out of range");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1992-09-25 08:15:58 -03:00
|
|
|
#ifdef CDsetcallback
|
1992-08-03 16:06:59 -03:00
|
|
|
CDaddcallback(self->ob_cdparser, (CDDATATYPES) type, CD_callback, (void *) self);
|
|
|
|
#else
|
1992-04-13 15:22:53 -03:00
|
|
|
CDsetcallback(self->ob_cdparser, (CDDATATYPES) type, CD_callback, (void *) self);
|
1992-08-03 16:06:59 -03:00
|
|
|
#endif
|
1992-04-13 15:22:53 -03:00
|
|
|
XDECREF(self->ob_cdcallbacks[type].ob_cdcallback);
|
1993-06-17 09:35:49 -03:00
|
|
|
INCREF(func);
|
|
|
|
self->ob_cdcallbacks[type].ob_cdcallback = func;
|
1992-04-13 15:22:53 -03:00
|
|
|
XDECREF(self->ob_cdcallbacks[type].ob_cdcallbackarg);
|
1993-06-17 09:35:49 -03:00
|
|
|
INCREF(funcarg);
|
|
|
|
self->ob_cdcallbacks[type].ob_cdcallbackarg = funcarg;
|
1992-04-13 15:22:53 -03:00
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
/*
|
|
|
|
if (type == cd_audio) {
|
|
|
|
sigfpe_[_UNDERFL].repls = _ZERO;
|
|
|
|
handle_sigfpes(_ON, _EN_UNDERFL, NULL, _ABORT_ON_ERROR, NULL);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
1992-04-13 15:22:53 -03:00
|
|
|
INCREF(None);
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct methodlist cdparser_methods[] = {
|
1995-03-28 08:06:23 -04:00
|
|
|
{"addcallback", (method)CD_addcallback, 1},
|
|
|
|
{"deleteparser", (method)CD_deleteparser, 1},
|
|
|
|
{"parseframe", (method)CD_parseframe, 1},
|
|
|
|
{"removecallback", (method)CD_removecallback, 1},
|
|
|
|
{"resetparser", (method)CD_resetparser, 1},
|
|
|
|
{"setcallback", (method)CD_addcallback, 1}, /* backward compatibility */
|
1992-04-13 15:22:53 -03:00
|
|
|
{NULL, NULL} /* sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
cdparser_dealloc(self)
|
|
|
|
cdparserobject *self;
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < NCALLBACKS; i++) {
|
|
|
|
XDECREF(self->ob_cdcallbacks[i].ob_cdcallback);
|
|
|
|
self->ob_cdcallbacks[i].ob_cdcallback = NULL;
|
|
|
|
XDECREF(self->ob_cdcallbacks[i].ob_cdcallbackarg);
|
|
|
|
self->ob_cdcallbacks[i].ob_cdcallbackarg = NULL;
|
|
|
|
}
|
|
|
|
CDdeleteparser(self->ob_cdparser);
|
|
|
|
DEL(self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1995-03-28 08:06:23 -04:00
|
|
|
cdparser_getattr(self, name)
|
|
|
|
cdparserobject *self;
|
1992-04-13 15:22:53 -03:00
|
|
|
char *name;
|
|
|
|
{
|
1995-03-28 08:06:23 -04:00
|
|
|
if (self->ob_cdparser == NULL) {
|
|
|
|
err_setstr(RuntimeError, "no parser active");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return findmethod(cdparser_methods, (object *)self, name);
|
1992-04-13 15:22:53 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
typeobject CdParsertype = {
|
|
|
|
OB_HEAD_INIT(&Typetype)
|
|
|
|
0, /*ob_size*/
|
|
|
|
"cdparser", /*tp_name*/
|
|
|
|
sizeof(cdparserobject), /*tp_size*/
|
|
|
|
0, /*tp_itemsize*/
|
|
|
|
/* methods */
|
1994-08-01 08:34:53 -03:00
|
|
|
(destructor)cdparser_dealloc, /*tp_dealloc*/
|
1992-04-13 15:22:53 -03:00
|
|
|
0, /*tp_print*/
|
1994-08-01 08:34:53 -03:00
|
|
|
(getattrfunc)cdparser_getattr, /*tp_getattr*/
|
1992-04-13 15:22:53 -03:00
|
|
|
0, /*tp_setattr*/
|
|
|
|
0, /*tp_compare*/
|
|
|
|
0, /*tp_repr*/
|
|
|
|
};
|
|
|
|
|
|
|
|
static object *
|
|
|
|
newcdparserobject(cdp)
|
|
|
|
CDPARSER *cdp;
|
|
|
|
{
|
|
|
|
cdparserobject *p;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
p = NEWOBJ(cdparserobject, &CdParsertype);
|
|
|
|
if (p == NULL)
|
|
|
|
return NULL;
|
|
|
|
p->ob_cdparser = cdp;
|
|
|
|
for (i = 0; i < NCALLBACKS; i++) {
|
|
|
|
p->ob_cdcallbacks[i].ob_cdcallback = NULL;
|
|
|
|
p->ob_cdcallbacks[i].ob_cdcallbackarg = NULL;
|
|
|
|
}
|
|
|
|
return (object *) p;
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
|
|
|
CD_createparser(self, args)
|
|
|
|
object *self, *args;
|
|
|
|
{
|
|
|
|
CDPARSER *cdp;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, ""))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
cdp = CDcreateparser();
|
|
|
|
if (cdp == NULL) {
|
1992-09-24 07:48:40 -03:00
|
|
|
err_setstr(CdError, "createparser failed");
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return newcdparserobject(cdp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static object *
|
1995-03-28 08:06:23 -04:00
|
|
|
CD_msftoframe(self, args)
|
|
|
|
object *self, *args;
|
1992-04-13 15:22:53 -03:00
|
|
|
{
|
1995-03-28 08:06:23 -04:00
|
|
|
int min, sec, frame;
|
1992-04-13 15:22:53 -03:00
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
if (!newgetargs(args, "iii", &min, &sec, &frame))
|
1992-04-13 15:22:53 -03:00
|
|
|
return NULL;
|
|
|
|
|
1995-03-28 08:06:23 -04:00
|
|
|
return newintobject((long) CDmsftoframe(min, sec, frame));
|
1992-04-13 15:22:53 -03:00
|
|
|
}
|
1995-03-28 08:06:23 -04:00
|
|
|
|
1992-04-13 15:22:53 -03:00
|
|
|
static struct methodlist CD_methods[] = {
|
1995-03-28 08:06:23 -04:00
|
|
|
{"open", (method)CD_open, 1},
|
|
|
|
{"createparser", (method)CD_createparser, 1},
|
|
|
|
{"msftoframe", (method)CD_msftoframe, 1},
|
1992-04-13 15:22:53 -03:00
|
|
|
{NULL, NULL} /* Sentinel */
|
|
|
|
};
|
|
|
|
|
|
|
|
void
|
|
|
|
initcd()
|
|
|
|
{
|
1992-09-24 07:48:40 -03:00
|
|
|
object *m, *d;
|
|
|
|
|
|
|
|
m = initmodule("cd", CD_methods);
|
|
|
|
d = getmoduledict(m);
|
|
|
|
|
|
|
|
CdError = newstringobject("cd.error");
|
1995-03-28 08:06:23 -04:00
|
|
|
dictinsert(d, "error", CdError);
|
|
|
|
|
|
|
|
/* Identifiers for the different types of callbacks from the parser */
|
|
|
|
dictinsert(d, "audio", newintobject((long) cd_audio));
|
|
|
|
dictinsert(d, "pnum", newintobject((long) cd_pnum));
|
|
|
|
dictinsert(d, "index", newintobject((long) cd_index));
|
|
|
|
dictinsert(d, "ptime", newintobject((long) cd_ptime));
|
|
|
|
dictinsert(d, "atime", newintobject((long) cd_atime));
|
|
|
|
dictinsert(d, "catalog", newintobject((long) cd_catalog));
|
|
|
|
dictinsert(d, "ident", newintobject((long) cd_ident));
|
|
|
|
dictinsert(d, "control", newintobject((long) cd_control));
|
|
|
|
|
|
|
|
/* Block size information for digital audio data */
|
|
|
|
dictinsert(d, "DATASIZE", newintobject((long) CDDA_DATASIZE));
|
|
|
|
dictinsert(d, "BLOCKSIZE", newintobject((long) CDDA_BLOCKSIZE));
|
|
|
|
|
|
|
|
/* Possible states for the cd player */
|
|
|
|
dictinsert(d, "ERROR", newintobject((long) CD_ERROR));
|
|
|
|
dictinsert(d, "NODISC", newintobject((long) CD_NODISC));
|
|
|
|
dictinsert(d, "READY", newintobject((long) CD_READY));
|
|
|
|
dictinsert(d, "PLAYING", newintobject((long) CD_PLAYING));
|
|
|
|
dictinsert(d, "PAUSED", newintobject((long) CD_PAUSED));
|
|
|
|
dictinsert(d, "STILL", newintobject((long) CD_STILL));
|
|
|
|
#ifdef CD_CDROM /* only newer versions of the library */
|
|
|
|
dictinsert(d, "CDROM", newintobject((long) CD_CDROM));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (err_occurred())
|
|
|
|
fatal("can't initialize module cd");
|
1992-04-13 15:22:53 -03:00
|
|
|
}
|