| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* Sad objects */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | #include "structmember.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | #ifdef HAVE_SYS_AUDIOIO_H
 | 
					
						
							|  |  |  | #define SOLARIS
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-10 15:21:30 +00:00
										 |  |  | #ifdef HAVE_UNISTD_H
 | 
					
						
							|  |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef HAVE_FCNTL_H
 | 
					
						
							|  |  |  | #include <fcntl.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-06-17 12:35:49 +00:00
										 |  |  | #include <stropts.h>
 | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | #include <sys/ioctl.h>
 | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | #ifdef SOLARIS
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | #include <sys/audioio.h>
 | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | #include <sun/audioio.h>
 | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* #define offsetof(str,mem) ((int)(((str *)0)->mem)) */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	PyObject_HEAD | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	int	x_fd;		/* The open file */ | 
					
						
							|  |  |  | 	int	x_icount;	/* # samples read */ | 
					
						
							|  |  |  | 	int	x_ocount;	/* # samples written */ | 
					
						
							|  |  |  | 	int	x_isctl;	/* True if control device */ | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | } sadobject; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	PyObject_HEAD | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	audio_info_t ai; | 
					
						
							|  |  |  | } sadstatusobject; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | staticforward PyTypeObject Sadtype; | 
					
						
							|  |  |  | staticforward PyTypeObject Sadstatustype; | 
					
						
							| 
									
										
										
										
											2000-07-24 14:43:35 +00:00
										 |  |  | static sadstatusobject *sads_alloc(void);	/* Forward */ | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject *SunAudioError; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define is_sadobject(v)		((v)->ob_type == &Sadtype)
 | 
					
						
							|  |  |  | #define is_sadstatusobject(v)	((v)->ob_type == &Sadstatustype)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-31 22:52:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | static sadobject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | newsadobject(PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	sadobject *xp; | 
					
						
							|  |  |  | 	int fd; | 
					
						
							|  |  |  | 	char *mode; | 
					
						
							|  |  |  | 	int imode; | 
					
						
							| 
									
										
										
										
											1998-10-31 22:52:54 +00:00
										 |  |  | 	char* basedev; | 
					
						
							|  |  |  | 	char* ctldev; | 
					
						
							|  |  |  | 	char* opendev; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Check arg for r/w/rw */ | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "s", &mode)) | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	if (strcmp(mode, "r") == 0) | 
					
						
							|  |  |  | 		imode = 0; | 
					
						
							|  |  |  | 	else if (strcmp(mode, "w") == 0) | 
					
						
							|  |  |  | 		imode = 1; | 
					
						
							|  |  |  | 	else if (strcmp(mode, "rw") == 0) | 
					
						
							|  |  |  | 		imode = 2; | 
					
						
							|  |  |  | 	else if (strcmp(mode, "control") == 0) | 
					
						
							|  |  |  | 		imode = -1; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	else { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 		PyErr_SetString(SunAudioError, | 
					
						
							|  |  |  | 			  "Mode should be one of 'r', 'w', 'rw' or 'control'"); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1998-10-31 22:52:54 +00:00
										 |  |  | 	/* Open the correct device.  The base device name comes from the
 | 
					
						
							|  |  |  | 	 * AUDIODEV environment variable first, then /dev/audio.  The | 
					
						
							|  |  |  | 	 * control device tacks "ctl" onto the base device name. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	basedev = getenv("AUDIODEV"); | 
					
						
							|  |  |  | 	if (!basedev) | 
					
						
							|  |  |  | 		basedev = "/dev/audio"; | 
					
						
							|  |  |  | 	ctldev = PyMem_NEW(char, strlen(basedev) + 4); | 
					
						
							|  |  |  | 	if (!ctldev) { | 
					
						
							|  |  |  | 		PyErr_NoMemory(); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	strcpy(ctldev, basedev); | 
					
						
							|  |  |  | 	strcat(ctldev, "ctl"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (imode < 0) { | 
					
						
							|  |  |  | 		opendev = ctldev; | 
					
						
							|  |  |  | 		fd = open(ctldev, 2); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		opendev = basedev; | 
					
						
							|  |  |  | 		fd = open(basedev, imode); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (fd < 0) { | 
					
						
							| 
									
										
										
										
											1998-10-31 22:52:54 +00:00
										 |  |  | 		PyErr_SetFromErrnoWithFilename(SunAudioError, opendev); | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1998-10-31 22:52:54 +00:00
										 |  |  | 	PyMem_DEL(ctldev); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Create and initialize the object */ | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 	xp = PyObject_New(sadobject, &Sadtype); | 
					
						
							| 
									
										
										
										
											1997-01-09 22:29:57 +00:00
										 |  |  | 	if (xp == NULL) { | 
					
						
							|  |  |  | 		close(fd); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-01-09 22:29:57 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	xp->x_fd = fd; | 
					
						
							|  |  |  | 	xp->x_icount = xp->x_ocount = 0; | 
					
						
							|  |  |  | 	xp->x_isctl = (imode < 0); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	return xp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Sad methods */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_dealloc(sadobject *xp) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							|  |  |  |         close(xp->x_fd); | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 	PyObject_Del(xp); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_read(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							|  |  |  |         int size, count; | 
					
						
							|  |  |  | 	char *cp; | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	PyObject *rv; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  |         if (!PyArg_Parse(args, "i", &size)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	rv = PyString_FromStringAndSize(NULL, size); | 
					
						
							|  |  |  | 	if (rv == NULL) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (!(cp = PyString_AsString(rv))) | 
					
						
							|  |  |  | 		goto finally; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	count = read(self->x_fd, cp, size); | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (count < 0) { | 
					
						
							|  |  |  | 		PyErr_SetFromErrno(SunAudioError); | 
					
						
							|  |  |  | 		goto finally; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  | 	/* TBD: why print this message if you can handle the condition?
 | 
					
						
							| 
									
										
										
										
											1997-01-09 22:29:57 +00:00
										 |  |  | 	 * assume it's debugging info which we can just as well get rid | 
					
						
							|  |  |  | 	 * of.  in any case this message should *not* be using printf! | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (count != size) | 
					
						
							|  |  |  | 		printf("sunaudio: funny read rv %d wtd %d\n", count, size); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	self->x_icount += count; | 
					
						
							|  |  |  | 	return rv; | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   finally: | 
					
						
							|  |  |  | 	Py_DECREF(rv); | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_write(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							|  |  |  |         char *cp; | 
					
						
							|  |  |  | 	int count, size; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  |         if (!PyArg_Parse(args, "s#", &cp, &size)) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	count = write(self->x_fd, cp, size); | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (count < 0) { | 
					
						
							|  |  |  | 		PyErr_SetFromErrno(SunAudioError); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  | 	if (count != size) | 
					
						
							|  |  |  | 		printf("sunaudio: funny write rv %d wanted %d\n", count, size); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	self->x_ocount += count; | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_getinfo(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	sadstatusobject *rv; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "")) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											1997-01-09 22:29:57 +00:00
										 |  |  | 	if (!(rv = sads_alloc())) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (ioctl(self->x_fd, AUDIO_GETINFO, &rv->ai) < 0) { | 
					
						
							|  |  |  | 		PyErr_SetFromErrno(SunAudioError); | 
					
						
							|  |  |  | 		Py_DECREF(rv); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	return (PyObject *)rv; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_setinfo(sadobject *self, sadstatusobject *arg) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (!is_sadstatusobject(arg)) { | 
					
						
							|  |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				"Must be sun audio status object"); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (ioctl(self->x_fd, AUDIO_SETINFO, &arg->ai) < 0) { | 
					
						
							|  |  |  | 		PyErr_SetFromErrno(SunAudioError); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_ibufcount(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	audio_info_t ai; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "")) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	if (ioctl(self->x_fd, AUDIO_GETINFO, &ai) < 0) { | 
					
						
							|  |  |  | 		PyErr_SetFromErrno(SunAudioError); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return PyInt_FromLong(ai.record.samples - self->x_icount); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_obufcount(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	audio_info_t ai; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "")) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	if (ioctl(self->x_fd, AUDIO_GETINFO, &ai) < 0) { | 
					
						
							|  |  |  | 		PyErr_SetFromErrno(SunAudioError); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2000-07-16 12:04:32 +00:00
										 |  |  | 	/* x_ocount is in bytes, whereas play.samples is in frames */ | 
					
						
							| 
									
										
										
										
											1997-04-11 15:23:52 +00:00
										 |  |  | 	/* we want frames */ | 
					
						
							|  |  |  | 	return PyInt_FromLong(self->x_ocount / (ai.play.channels * | 
					
						
							|  |  |  | 						ai.play.precision / 8) - | 
					
						
							|  |  |  | 			      ai.play.samples); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_drain(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "")) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	if (ioctl(self->x_fd, AUDIO_DRAIN, 0) < 0) { | 
					
						
							|  |  |  | 		PyErr_SetFromErrno(SunAudioError); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | #ifdef SOLARIS
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_getdev(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	struct audio_device ad; | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "")) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	if (ioctl(self->x_fd, AUDIO_GETDEV, &ad) < 0) { | 
					
						
							|  |  |  | 		PyErr_SetFromErrno(SunAudioError); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return Py_BuildValue("(sss)", ad.name, ad.version, ad.config); | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_flush(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1993-06-17 12:35:49 +00:00
										 |  |  | { | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "")) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	if (ioctl(self->x_fd, I_FLUSH, FLUSHW) < 0) { | 
					
						
							|  |  |  | 		PyErr_SetFromErrno(SunAudioError); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1993-06-17 12:35:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_close(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1993-06-17 12:35:49 +00:00
										 |  |  | { | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (!PyArg_Parse(args, "")) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	if (self->x_fd >= 0) { | 
					
						
							|  |  |  | 		close(self->x_fd); | 
					
						
							|  |  |  | 		self->x_fd = -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	Py_INCREF(Py_None); | 
					
						
							|  |  |  | 	return Py_None; | 
					
						
							| 
									
										
										
										
											1993-06-17 12:35:49 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-31 22:52:54 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_fileno(sadobject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1998-10-31 22:52:54 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (!PyArg_Parse(args, "")) | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return PyInt_FromLong(self->x_fd); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyMethodDef sad_methods[] = { | 
					
						
							|  |  |  |         { "read",	(PyCFunction)sad_read }, | 
					
						
							|  |  |  |         { "write",	(PyCFunction)sad_write }, | 
					
						
							|  |  |  |         { "ibufcount",	(PyCFunction)sad_ibufcount }, | 
					
						
							|  |  |  |         { "obufcount",	(PyCFunction)sad_obufcount }, | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | #define CTL_METHODS 4
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  |         { "getinfo",	(PyCFunction)sad_getinfo }, | 
					
						
							|  |  |  |         { "setinfo",	(PyCFunction)sad_setinfo }, | 
					
						
							|  |  |  |         { "drain",	(PyCFunction)sad_drain }, | 
					
						
							|  |  |  |         { "flush",	(PyCFunction)sad_flush }, | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | #ifdef SOLARIS
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	{ "getdev",	(PyCFunction)sad_getdev }, | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  |         { "close",	(PyCFunction)sad_close }, | 
					
						
							| 
									
										
										
										
											1998-10-31 22:52:54 +00:00
										 |  |  | 	{ "fileno",     (PyCFunction)sad_fileno }, | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	{NULL,		NULL}		/* sentinel */ | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sad_getattr(sadobject *xp, char *name) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	if (xp->x_isctl) | 
					
						
							|  |  |  | 		return Py_FindMethod(sad_methods+CTL_METHODS, | 
					
						
							|  |  |  | 				     (PyObject *)xp, name); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 		return Py_FindMethod(sad_methods, (PyObject *)xp, name); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ----------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static sadstatusobject * | 
					
						
							| 
									
										
										
										
											2000-07-24 14:43:35 +00:00
										 |  |  | sads_alloc(void) { | 
					
						
							| 
									
										
										
										
											2000-05-03 23:44:39 +00:00
										 |  |  | 	return PyObject_New(sadstatusobject, &Sadstatustype); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sads_dealloc(sadstatusobject *xp) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	PyMem_DEL(xp); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define OFF(x) offsetof(audio_info_t,x)
 | 
					
						
							|  |  |  | static struct memberlist sads_ml[] = { | 
					
						
							|  |  |  | 	{ "i_sample_rate",	T_UINT,		OFF(record.sample_rate) }, | 
					
						
							|  |  |  | 	{ "i_channels",		T_UINT,		OFF(record.channels) }, | 
					
						
							|  |  |  | 	{ "i_precision",	T_UINT,		OFF(record.precision) }, | 
					
						
							|  |  |  | 	{ "i_encoding",		T_UINT,		OFF(record.encoding) }, | 
					
						
							|  |  |  | 	{ "i_gain",		T_UINT,		OFF(record.gain) }, | 
					
						
							|  |  |  | 	{ "i_port",		T_UINT,		OFF(record.port) }, | 
					
						
							|  |  |  | 	{ "i_samples",		T_UINT,		OFF(record.samples) }, | 
					
						
							|  |  |  | 	{ "i_eof",		T_UINT,		OFF(record.eof) }, | 
					
						
							|  |  |  | 	{ "i_pause",		T_UBYTE,	OFF(record.pause) }, | 
					
						
							|  |  |  | 	{ "i_error",		T_UBYTE,	OFF(record.error) }, | 
					
						
							|  |  |  | 	{ "i_waiting",		T_UBYTE,	OFF(record.waiting) }, | 
					
						
							|  |  |  | 	{ "i_open",		T_UBYTE,	OFF(record.open) ,	 RO}, | 
					
						
							|  |  |  | 	{ "i_active",		T_UBYTE,	OFF(record.active) ,	 RO}, | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | #ifdef SOLARIS
 | 
					
						
							|  |  |  | 	{ "i_buffer_size",	T_UINT,		OFF(record.buffer_size) }, | 
					
						
							|  |  |  | 	{ "i_balance",		T_UBYTE,	OFF(record.balance) }, | 
					
						
							|  |  |  | 	{ "i_avail_ports",	T_UINT,		OFF(record.avail_ports) }, | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	{ "o_sample_rate",	T_UINT,		OFF(play.sample_rate) }, | 
					
						
							|  |  |  | 	{ "o_channels",		T_UINT,		OFF(play.channels) }, | 
					
						
							|  |  |  | 	{ "o_precision",	T_UINT,		OFF(play.precision) }, | 
					
						
							|  |  |  | 	{ "o_encoding",		T_UINT,		OFF(play.encoding) }, | 
					
						
							|  |  |  | 	{ "o_gain",		T_UINT,		OFF(play.gain) }, | 
					
						
							|  |  |  | 	{ "o_port",		T_UINT,		OFF(play.port) }, | 
					
						
							|  |  |  | 	{ "o_samples",		T_UINT,		OFF(play.samples) }, | 
					
						
							|  |  |  | 	{ "o_eof",		T_UINT,		OFF(play.eof) }, | 
					
						
							|  |  |  | 	{ "o_pause",		T_UBYTE,	OFF(play.pause) }, | 
					
						
							|  |  |  | 	{ "o_error",		T_UBYTE,	OFF(play.error) }, | 
					
						
							|  |  |  | 	{ "o_waiting",		T_UBYTE,	OFF(play.waiting) }, | 
					
						
							|  |  |  | 	{ "o_open",		T_UBYTE,	OFF(play.open) ,	 RO}, | 
					
						
							|  |  |  | 	{ "o_active",		T_UBYTE,	OFF(play.active) ,	 RO}, | 
					
						
							| 
									
										
										
										
											1993-12-03 16:54:45 +00:00
										 |  |  | #ifdef SOLARIS
 | 
					
						
							|  |  |  | 	{ "o_buffer_size",	T_UINT,		OFF(play.buffer_size) }, | 
					
						
							|  |  |  | 	{ "o_balance",		T_UBYTE,	OFF(play.balance) }, | 
					
						
							|  |  |  | 	{ "o_avail_ports",	T_UINT,		OFF(play.avail_ports) }, | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	{ "monitor_gain",	T_UINT,		OFF(monitor_gain) }, | 
					
						
							|  |  |  |         { NULL,                 0,              0}, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sads_getattr(sadstatusobject *xp, char *name) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	return PyMember_Get((char *)&xp->ai, sads_ml, name); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sads_setattr(sadstatusobject *xp, char *name, PyObject *v) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (v == NULL) { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 		PyErr_SetString(PyExc_TypeError, | 
					
						
							|  |  |  | 				"can't delete sun audio status attributes"); | 
					
						
							| 
									
										
										
										
											1996-09-11 23:31:23 +00:00
										 |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											1992-09-04 09:45:18 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	return PyMember_Set((char *)&xp->ai, sads_ml, name, v); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* ------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyTypeObject Sadtype = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	0,				/*ob_size*/ | 
					
						
							|  |  |  | 	"sun_audio_device",		/*tp_name*/ | 
					
						
							|  |  |  | 	sizeof(sadobject),		/*tp_size*/ | 
					
						
							|  |  |  | 	0,				/*tp_itemsize*/ | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	/* methods */ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(destructor)sad_dealloc,	/*tp_dealloc*/ | 
					
						
							|  |  |  | 	0,				/*tp_print*/ | 
					
						
							|  |  |  | 	(getattrfunc)sad_getattr,	/*tp_getattr*/ | 
					
						
							|  |  |  | 	0,				/*tp_setattr*/ | 
					
						
							|  |  |  | 	0,				/*tp_compare*/ | 
					
						
							|  |  |  | 	0,				/*tp_repr*/ | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyTypeObject Sadstatustype = { | 
					
						
							|  |  |  | 	PyObject_HEAD_INIT(&PyType_Type) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | 	0,				/*ob_size*/ | 
					
						
							|  |  |  | 	"sun_audio_device_status",	/*tp_name*/ | 
					
						
							|  |  |  | 	sizeof(sadstatusobject),	/*tp_size*/ | 
					
						
							|  |  |  | 	0,				/*tp_itemsize*/ | 
					
						
							|  |  |  | 	/* methods */ | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 	(destructor)sads_dealloc,	/*tp_dealloc*/ | 
					
						
							|  |  |  | 	0,				/*tp_print*/ | 
					
						
							|  |  |  | 	(getattrfunc)sads_getattr,	/*tp_getattr*/ | 
					
						
							|  |  |  | 	(setattrfunc)sads_setattr,	/*tp_setattr*/ | 
					
						
							|  |  |  | 	0,				/*tp_compare*/ | 
					
						
							|  |  |  | 	0,				/*tp_repr*/ | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | /* ------------------------------------------------------------------- */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2000-07-10 17:25:37 +00:00
										 |  |  | sadopen(PyObject *self, PyObject *args) | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | 	return (PyObject *)newsadobject(args); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | static PyMethodDef sunaudiodev_methods[] = { | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  |     { "open", sadopen }, | 
					
						
							|  |  |  |     { 0, 0 }, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							| 
									
										
										
										
											2000-07-21 06:00:07 +00:00
										 |  |  | initsunaudiodev(void) | 
					
						
							| 
									
										
										
										
											1996-12-13 00:11:04 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	PyObject *m, *d; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	m = Py_InitModule("sunaudiodev", sunaudiodev_methods); | 
					
						
							|  |  |  | 	d = PyModule_GetDict(m); | 
					
						
							| 
									
										
										
										
											1997-10-01 04:29:29 +00:00
										 |  |  | 	SunAudioError = PyErr_NewException("sunaudiodev.error", NULL, NULL); | 
					
						
							| 
									
										
										
										
											1997-01-09 22:29:57 +00:00
										 |  |  | 	if (SunAudioError) | 
					
						
							|  |  |  | 		PyDict_SetItemString(d, "error", SunAudioError); | 
					
						
							| 
									
										
										
										
											1992-06-03 17:06:14 +00:00
										 |  |  | } |