| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | /* Hey Emacs, this is -*-C-*- 
 | 
					
						
							|  |  |  |  ****************************************************************************** | 
					
						
							|  |  |  |  * linuxaudiodev.c -- Linux audio device for python. | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Author          : Peter Bosch | 
					
						
							|  |  |  |  * Created On      : Thu Mar  2 21:10:33 2000 | 
					
						
							|  |  |  |  * Status          : Unknown, Use with caution! | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Unless other notices are present in any part of this file | 
					
						
							|  |  |  |  * explicitly claiming copyrights for other people and/or  | 
					
						
							|  |  |  |  * organizations, the contents of this file is fully copyright  | 
					
						
							|  |  |  |  * (C) 2000 Peter Bosch, all rights reserved. | 
					
						
							|  |  |  |  ****************************************************************************** | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "Python.h"
 | 
					
						
							|  |  |  | #include "structmember.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAVE_FCNTL_H
 | 
					
						
							|  |  |  | #include <fcntl.h>
 | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | #else
 | 
					
						
							|  |  |  | #define O_RDONLY 00
 | 
					
						
							|  |  |  | #define O_WRONLY 01
 | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | #include <sys/ioctl.h>
 | 
					
						
							| 
									
										
										
										
											2000-08-31 18:11:07 +00:00
										 |  |  | #if defined(linux)
 | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | #include <linux/soundcard.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-10-04 10:23:57 +00:00
										 |  |  | #ifndef HAVE_STDINT_H
 | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | typedef unsigned long uint32_t; | 
					
						
							| 
									
										
										
										
											2006-10-04 10:23:57 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-31 18:11:07 +00:00
										 |  |  | #elif defined(__FreeBSD__)
 | 
					
						
							|  |  |  | #include <machine/soundcard.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef SNDCTL_DSP_CHANNELS
 | 
					
						
							|  |  |  | #define SNDCTL_DSP_CHANNELS SOUND_PCM_WRITE_CHANNELS
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2006-01-07 21:19:49 +00:00
										 |  |  |     PyObject_HEAD | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     int		x_fd;		/* The open file */ | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     int         x_mode;           /* file mode */ | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     int		x_icount;	/* Input count */ | 
					
						
							|  |  |  |     int		x_ocount;	/* Output count */ | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     uint32_t	x_afmts;	/* Audio formats supported by hardware*/ | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } lad_t; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | /* XXX several format defined in soundcard.h are not supported,
 | 
					
						
							|  |  |  |    including _NE (native endian) options and S32 options | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | static struct { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     int		a_bps; | 
					
						
							|  |  |  |     uint32_t	a_fmt; | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     char       *a_name; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } audio_types[] = { | 
					
						
							| 
									
										
										
										
											2001-01-15 22:21:39 +00:00
										 |  |  |     {  8, 	AFMT_MU_LAW, "logarithmic mu-law 8-bit audio" }, | 
					
						
							|  |  |  |     {  8, 	AFMT_A_LAW,  "logarithmic A-law 8-bit audio" }, | 
					
						
							|  |  |  |     {  8,	AFMT_U8,     "linear unsigned 8-bit audio" }, | 
					
						
							|  |  |  |     {  8, 	AFMT_S8,     "linear signed 8-bit audio" }, | 
					
						
							|  |  |  |     { 16, 	AFMT_U16_BE, "linear unsigned 16-bit big-endian audio" }, | 
					
						
							|  |  |  |     { 16, 	AFMT_U16_LE, "linear unsigned 16-bit little-endian audio" }, | 
					
						
							|  |  |  |     { 16, 	AFMT_S16_BE, "linear signed 16-bit big-endian audio" }, | 
					
						
							|  |  |  |     { 16, 	AFMT_S16_LE, "linear signed 16-bit little-endian audio" }, | 
					
						
							| 
									
										
										
										
											2001-01-17 19:31:29 +00:00
										 |  |  |     { 16, 	AFMT_S16_NE, "linear signed 16-bit native-endian audio" }, | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | static int n_audio_types = sizeof(audio_types) / sizeof(audio_types[0]); | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-17 16:30:39 +00:00
										 |  |  | static PyTypeObject Ladtype; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject *LinuxAudioError; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static lad_t * | 
					
						
							|  |  |  | newladobject(PyObject *arg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     lad_t *xp; | 
					
						
							|  |  |  |     int fd, afmts, imode; | 
					
						
							| 
									
										
										
										
											2002-11-27 22:19:15 +00:00
										 |  |  |     char *basedev = NULL; | 
					
						
							|  |  |  |     char *mode = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Two ways to call linuxaudiodev.open():
 | 
					
						
							|  |  |  |          open(device, mode) (for consistency with builtin open()) | 
					
						
							|  |  |  |          open(mode)         (for backwards compatibility) | 
					
						
							|  |  |  |        because the *first* argument is optional, parsing args is | 
					
						
							|  |  |  |        a wee bit tricky. */ | 
					
						
							|  |  |  |     if (!PyArg_ParseTuple(arg, "s|s:open", &basedev, &mode)) | 
					
						
							|  |  |  |        return NULL; | 
					
						
							|  |  |  |     if (mode == NULL) {                 /* only one arg supplied */ | 
					
						
							|  |  |  |        mode = basedev; | 
					
						
							|  |  |  |        basedev = NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (strcmp(mode, "r") == 0) | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |         imode = O_RDONLY; | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     else if (strcmp(mode, "w") == 0) | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |         imode = O_WRONLY; | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     else { | 
					
						
							| 
									
										
										
										
											2001-01-15 22:21:39 +00:00
										 |  |  |         PyErr_SetString(LinuxAudioError, "mode should be 'r' or 'w'"); | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Open the correct device.  The base device name comes from the
 | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |      * AUDIODEV environment variable first, then /dev/dsp.  The | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |      * control device tacks "ctl" onto the base device name. | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |      *  | 
					
						
							|  |  |  |      * Note that the only difference between /dev/audio and /dev/dsp | 
					
						
							|  |  |  |      * is that the former uses logarithmic mu-law encoding and the | 
					
						
							|  |  |  |      * latter uses 8-bit unsigned encoding. | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-27 22:19:15 +00:00
										 |  |  |     if (basedev == NULL) {              /* called with one arg */ | 
					
						
							|  |  |  |        basedev = getenv("AUDIODEV"); | 
					
						
							|  |  |  |        if (basedev == NULL)             /* $AUDIODEV not set */ | 
					
						
							|  |  |  |           basedev = "/dev/dsp"; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if ((fd = open(basedev, imode)) == -1) { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (imode == O_WRONLY && ioctl(fd, SNDCTL_DSP_NONBLOCK, NULL) == -1) { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (ioctl(fd, SNDCTL_DSP_GETFMTS, &afmts) == -1) { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     /* Create and initialize the object */ | 
					
						
							|  |  |  |     if ((xp = PyObject_New(lad_t, &Ladtype)) == NULL) { | 
					
						
							|  |  |  |         close(fd); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     xp->x_fd = fd; | 
					
						
							|  |  |  |     xp->x_mode = imode; | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     xp->x_icount = xp->x_ocount = 0; | 
					
						
							|  |  |  |     xp->x_afmts  = afmts; | 
					
						
							|  |  |  |     return xp; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | lad_dealloc(lad_t *xp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-08-18 05:10:45 +00:00
										 |  |  |     /* if already closed, don't reclose it */ | 
					
						
							|  |  |  |     if (xp->x_fd != -1) | 
					
						
							|  |  |  | 	close(xp->x_fd); | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     PyObject_Del(xp); | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | lad_read(lad_t *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     int size, count; | 
					
						
							|  |  |  |     char *cp; | 
					
						
							|  |  |  |     PyObject *rv; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "i:read", &size)) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     rv = PyString_FromStringAndSize(NULL, size); | 
					
						
							|  |  |  |     if (rv == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     cp = PyString_AS_STRING(rv); | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     if ((count = read(self->x_fd, cp, size)) < 0) { | 
					
						
							|  |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         Py_DECREF(rv); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     self->x_icount += count; | 
					
						
							| 
									
										
										
										
											2002-04-27 18:44:32 +00:00
										 |  |  |     _PyString_Resize(&rv, count); | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     return rv; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | lad_write(lad_t *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     char *cp; | 
					
						
							|  |  |  |     int rv, size; | 
					
						
							| 
									
										
										
										
											2001-04-02 17:59:02 +00:00
										 |  |  |     fd_set write_set_fds; | 
					
						
							|  |  |  |     struct timeval tv; | 
					
						
							|  |  |  |     int select_retval; | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "s#:write", &cp, &size))  | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-02 17:59:02 +00:00
										 |  |  |     /* use select to wait for audio device to be available */ | 
					
						
							|  |  |  |     FD_ZERO(&write_set_fds); | 
					
						
							|  |  |  |     FD_SET(self->x_fd, &write_set_fds); | 
					
						
							|  |  |  |     tv.tv_sec = 4; /* timeout values */ | 
					
						
							|  |  |  |     tv.tv_usec = 0;  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     while (size > 0) { | 
					
						
							| 
									
										
										
										
											2001-04-02 17:59:02 +00:00
										 |  |  |       select_retval = select(self->x_fd+1, NULL, &write_set_fds, NULL, &tv); | 
					
						
							|  |  |  |       tv.tv_sec = 1; tv.tv_usec = 0; /* willing to wait this long next time*/ | 
					
						
							|  |  |  |       if (select_retval) { | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |         if ((rv = write(self->x_fd, cp, size)) == -1) { | 
					
						
							| 
									
										
										
										
											2001-04-02 17:59:02 +00:00
										 |  |  | 	  if (errno != EAGAIN) { | 
					
						
							|  |  |  | 	    PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							|  |  |  | 	  } else { | 
					
						
							|  |  |  | 	    errno = 0; /* EAGAIN: buffer is full, try again */ | 
					
						
							|  |  |  | 	  } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  | 	  self->x_ocount += rv; | 
					
						
							|  |  |  | 	  size -= rv; | 
					
						
							|  |  |  | 	  cp += rv; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  | 	/* printf("Not able to write to linux audio device within %ld seconds\n", tv.tv_sec); */ | 
					
						
							|  |  |  | 	PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     Py_INCREF(Py_None); | 
					
						
							|  |  |  |     return Py_None; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  | lad_close(lad_t *self, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     if (self->x_fd >= 0) { | 
					
						
							|  |  |  |         close(self->x_fd); | 
					
						
							|  |  |  |         self->x_fd = -1; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  |     Py_RETURN_NONE; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  | lad_fileno(lad_t *self, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     return PyInt_FromLong(self->x_fd); | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | lad_setparameters(lad_t *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     int rate, ssize, nchannels, n, fmt, emulate=0; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (!PyArg_ParseTuple(args, "iiii|i:setparameters", | 
					
						
							|  |  |  |                           &rate, &ssize, &nchannels, &fmt, &emulate)) | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (rate < 0) { | 
					
						
							|  |  |  | 	PyErr_Format(PyExc_ValueError, "expected rate >= 0, not %d", | 
					
						
							|  |  |  | 		     rate);  | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (ssize < 0) { | 
					
						
							|  |  |  | 	PyErr_Format(PyExc_ValueError, "expected sample size >= 0, not %d", | 
					
						
							|  |  |  | 		     ssize); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (nchannels != 1 && nchannels != 2) { | 
					
						
							|  |  |  | 	PyErr_Format(PyExc_ValueError, "nchannels must be 1 or 2, not %d", | 
					
						
							|  |  |  | 		     nchannels); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (n = 0; n < n_audio_types; n++) | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         if (fmt == audio_types[n].a_fmt) | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (n == n_audio_types) { | 
					
						
							|  |  |  | 	PyErr_Format(PyExc_ValueError, "unknown audio encoding: %d", fmt); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (audio_types[n].a_bps != ssize) { | 
					
						
							|  |  |  | 	PyErr_Format(PyExc_ValueError,  | 
					
						
							| 
									
										
										
										
											2001-01-15 22:21:39 +00:00
										 |  |  | 		     "for %s, expected sample size %d, not %d", | 
					
						
							|  |  |  | 		     audio_types[n].a_name, audio_types[n].a_bps, ssize); | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | 	return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (emulate == 0) { | 
					
						
							|  |  |  | 	if ((self->x_afmts & audio_types[n].a_fmt) == 0) { | 
					
						
							|  |  |  | 	    PyErr_Format(PyExc_ValueError,  | 
					
						
							| 
									
										
										
										
											2001-01-15 22:21:39 +00:00
										 |  |  | 			 "%s format not supported by device", | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | 			 audio_types[n].a_name); | 
					
						
							|  |  |  | 	    return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (ioctl(self->x_fd, SNDCTL_DSP_SETFMT,  | 
					
						
							|  |  |  | 	      &audio_types[n].a_fmt) == -1) { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2001-12-08 17:13:45 +00:00
										 |  |  |     if (ioctl(self->x_fd, SNDCTL_DSP_CHANNELS, &nchannels) == -1) { | 
					
						
							|  |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ioctl(self->x_fd, SNDCTL_DSP_SPEED, &rate) == -1) { | 
					
						
							|  |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     Py_INCREF(Py_None); | 
					
						
							|  |  |  |     return Py_None; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | _ssize(lad_t *self, int *nchannels, int *ssize) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     int fmt; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     fmt = 0; | 
					
						
							|  |  |  |     if (ioctl(self->x_fd, SNDCTL_DSP_SETFMT, &fmt) < 0)  | 
					
						
							|  |  |  |         return -errno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     switch (fmt) { | 
					
						
							|  |  |  |     case AFMT_MU_LAW: | 
					
						
							|  |  |  |     case AFMT_A_LAW: | 
					
						
							|  |  |  |     case AFMT_U8: | 
					
						
							|  |  |  |     case AFMT_S8: | 
					
						
							|  |  |  |         *ssize = sizeof(char); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case AFMT_S16_LE: | 
					
						
							|  |  |  |     case AFMT_S16_BE: | 
					
						
							|  |  |  |     case AFMT_U16_LE: | 
					
						
							|  |  |  |     case AFMT_U16_BE: | 
					
						
							|  |  |  |         *ssize = sizeof(short); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case AFMT_MPEG: | 
					
						
							|  |  |  |     case AFMT_IMA_ADPCM: | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         return -EOPNOTSUPP; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ioctl(self->x_fd, SNDCTL_DSP_CHANNELS, nchannels) < 0) | 
					
						
							|  |  |  |         return -errno; | 
					
						
							|  |  |  |     return 0; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* bufsize returns the size of the hardware audio buffer in number 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |    of samples */ | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  | lad_bufsize(lad_t *self, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     audio_buf_info ai; | 
					
						
							| 
									
										
										
										
											2006-03-01 22:45:36 +00:00
										 |  |  |     int nchannels=0, ssize=0; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-01 22:45:36 +00:00
										 |  |  |     if (_ssize(self, &nchannels, &ssize) < 0 || !ssize || !nchannels) { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ioctl(self->x_fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) { | 
					
						
							|  |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyInt_FromLong((ai.fragstotal * ai.fragsize) / (nchannels * ssize)); | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* obufcount returns the number of samples that are available in the 
 | 
					
						
							|  |  |  |    hardware for playing */ | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  | lad_obufcount(lad_t *self, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     audio_buf_info ai; | 
					
						
							| 
									
										
										
										
											2006-03-01 22:45:36 +00:00
										 |  |  |     int nchannels=0, ssize=0; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-01 22:45:36 +00:00
										 |  |  |     if (_ssize(self, &nchannels, &ssize) < 0 || !ssize || !nchannels) { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ioctl(self->x_fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) { | 
					
						
							|  |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyInt_FromLong((ai.fragstotal * ai.fragsize - ai.bytes) /  | 
					
						
							|  |  |  |                           (ssize * nchannels)); | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* obufcount returns the number of samples that can be played without
 | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |    blocking */ | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  | lad_obuffree(lad_t *self, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     audio_buf_info ai; | 
					
						
							| 
									
										
										
										
											2006-03-01 22:45:36 +00:00
										 |  |  |     int nchannels=0, ssize=0; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-01 22:45:36 +00:00
										 |  |  |     if (_ssize(self, &nchannels, &ssize) < 0 || !ssize || !nchannels) { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (ioctl(self->x_fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) { | 
					
						
							|  |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return PyInt_FromLong(ai.bytes / (ssize * nchannels)); | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Flush the device */ | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  | lad_flush(lad_t *self, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     if (ioctl(self->x_fd, SNDCTL_DSP_SYNC, NULL) == -1) { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  |     Py_RETURN_NONE; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  | lad_getptr(lad_t *self, PyObject *unused) | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     count_info info; | 
					
						
							|  |  |  |     int req; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (self->x_mode == O_RDONLY) | 
					
						
							|  |  |  | 	req = SNDCTL_DSP_GETIPTR; | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  | 	req = SNDCTL_DSP_GETOPTR; | 
					
						
							|  |  |  |     if (ioctl(self->x_fd, req, &info) == -1) { | 
					
						
							|  |  |  |         PyErr_SetFromErrno(LinuxAudioError); | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return Py_BuildValue("iii", info.bytes, info.blocks, info.ptr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | static PyMethodDef lad_methods[] = { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     { "read",		(PyCFunction)lad_read, METH_VARARGS }, | 
					
						
							|  |  |  |     { "write",		(PyCFunction)lad_write, METH_VARARGS }, | 
					
						
							|  |  |  |     { "setparameters",	(PyCFunction)lad_setparameters, METH_VARARGS }, | 
					
						
							|  |  |  |     { "bufsize",	(PyCFunction)lad_bufsize, METH_VARARGS }, | 
					
						
							| 
									
										
										
										
											2006-05-29 21:04:52 +00:00
										 |  |  |     { "obufcount",	(PyCFunction)lad_obufcount, METH_NOARGS }, | 
					
						
							|  |  |  |     { "obuffree",	(PyCFunction)lad_obuffree, METH_NOARGS }, | 
					
						
							|  |  |  |     { "flush",		(PyCFunction)lad_flush, METH_NOARGS }, | 
					
						
							|  |  |  |     { "close",		(PyCFunction)lad_close, METH_NOARGS }, | 
					
						
							|  |  |  |     { "fileno",     	(PyCFunction)lad_fileno, METH_NOARGS }, | 
					
						
							|  |  |  |     { "getptr",         (PyCFunction)lad_getptr, METH_NOARGS }, | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     { NULL,		NULL}		/* sentinel */ | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | lad_getattr(lad_t *xp, char *name) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     return Py_FindMethod(lad_methods, (PyObject *)xp, name); | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyTypeObject Ladtype = { | 
					
						
							| 
									
										
										
										
											2007-07-21 06:55:02 +00:00
										 |  |  |     PyVarObject_HEAD_INIT(&PyType_Type, 0) | 
					
						
							| 
									
										
										
										
											2001-12-08 18:02:58 +00:00
										 |  |  |     "linuxaudiodev.linux_audio_device", /*tp_name*/ | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     sizeof(lad_t),		/*tp_size*/ | 
					
						
							|  |  |  |     0,				/*tp_itemsize*/ | 
					
						
							|  |  |  |     /* methods */ | 
					
						
							|  |  |  |     (destructor)lad_dealloc,	/*tp_dealloc*/ | 
					
						
							|  |  |  |     0,				/*tp_print*/ | 
					
						
							|  |  |  |     (getattrfunc)lad_getattr,	/*tp_getattr*/ | 
					
						
							|  |  |  |     0,				/*tp_setattr*/ | 
					
						
							|  |  |  |     0,				/*tp_compare*/ | 
					
						
							|  |  |  |     0,				/*tp_repr*/ | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | ladopen(PyObject *self, PyObject *args) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     return (PyObject *)newladobject(args); | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyMethodDef linuxaudiodev_methods[] = { | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     { "open", ladopen, METH_VARARGS }, | 
					
						
							|  |  |  |     { 0, 0 }, | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-21 06:00:07 +00:00
										 |  |  | initlinuxaudiodev(void) | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  |     PyObject *m; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  |    | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  |     m = Py_InitModule("linuxaudiodev", linuxaudiodev_methods); | 
					
						
							| 
									
										
										
										
											2006-01-19 06:09:39 +00:00
										 |  |  |     if (m == NULL) | 
					
						
							|  |  |  | 	return; | 
					
						
							| 
									
										
										
										
											2000-07-08 06:05:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     LinuxAudioError = PyErr_NewException("linuxaudiodev.error", NULL, NULL); | 
					
						
							|  |  |  |     if (LinuxAudioError) | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | 	PyModule_AddObject(m, "error", LinuxAudioError); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (PyModule_AddIntConstant(m, "AFMT_MU_LAW", (long)AFMT_MU_LAW) == -1) | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  |     if (PyModule_AddIntConstant(m, "AFMT_A_LAW", (long)AFMT_A_LAW) == -1) | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  |     if (PyModule_AddIntConstant(m, "AFMT_U8", (long)AFMT_U8) == -1) | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  |     if (PyModule_AddIntConstant(m, "AFMT_S8", (long)AFMT_S8) == -1) | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  |     if (PyModule_AddIntConstant(m, "AFMT_U16_BE", (long)AFMT_U16_BE) == -1) | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  |     if (PyModule_AddIntConstant(m, "AFMT_U16_LE", (long)AFMT_U16_LE) == -1) | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  |     if (PyModule_AddIntConstant(m, "AFMT_S16_BE", (long)AFMT_S16_BE) == -1) | 
					
						
							|  |  |  | 	return; | 
					
						
							|  |  |  |     if (PyModule_AddIntConstant(m, "AFMT_S16_LE", (long)AFMT_S16_LE) == -1) | 
					
						
							|  |  |  | 	return; | 
					
						
							| 
									
										
										
										
											2000-10-08 19:47:47 +00:00
										 |  |  |     if (PyModule_AddIntConstant(m, "AFMT_S16_NE", (long)AFMT_S16_NE) == -1) | 
					
						
							|  |  |  | 	return; | 
					
						
							| 
									
										
										
										
											2000-10-06 19:39:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-01 09:01:32 +00:00
										 |  |  |     return; | 
					
						
							| 
									
										
										
										
											2000-03-30 23:25:49 +00:00
										 |  |  | } |