blob: 5e45abdf98c899f2756830ddbf92a98368247f12 [file] [log] [blame]
Greg Ward04613a92002-11-30 22:47:45 +00001/*
2 * ossaudiodev -- Python interface to the OSS (Open Sound System) API.
3 * This is the standard audio API for Linux and some
4 * flavours of BSD [XXX which ones?]; it is also available
5 * for a wide range of commercial Unices.
6 *
7 * Originally written by Peter Bosch, March 2000, as linuxaudiodev.
8 *
9 * Renamed to ossaudiodev and rearranged/revised/hacked up
10 * by Greg Ward <gward@python.net>, November 2002.
Greg Ward3d9994d2002-12-11 15:12:01 +000011 * Mixer interface by Nicholas FitzRoy-Dale <wzdd@lardcave.net>, Dec 2002.
Guido van Rossum0741f802003-06-02 14:15:34 +000012 *
Greg Ward04613a92002-11-30 22:47:45 +000013 * (c) 2000 Peter Bosch. All Rights Reserved.
14 * (c) 2002 Gregory P. Ward. All Rights Reserved.
15 * (c) 2002 Python Software Foundation. All Rights Reserved.
16 *
17 * XXX need a license statement
18 *
19 * $Id$
20 */
21
22#include "Python.h"
23#include "structmember.h"
24
25#ifdef HAVE_FCNTL_H
26#include <fcntl.h>
27#else
28#define O_RDONLY 00
29#define O_WRONLY 01
30#endif
31
Greg Ward04613a92002-11-30 22:47:45 +000032#include <sys/ioctl.h>
Greg Ward0b6dfb82003-03-10 03:17:06 +000033#include <sys/soundcard.h>
34
Greg Ward04613a92002-11-30 22:47:45 +000035#if defined(linux)
Greg Ward04613a92002-11-30 22:47:45 +000036
Thomas Wouters89f507f2006-12-13 04:49:30 +000037#ifndef HAVE_STDINT_H
Greg Ward04613a92002-11-30 22:47:45 +000038typedef unsigned long uint32_t;
Thomas Wouters89f507f2006-12-13 04:49:30 +000039#endif
Greg Ward04613a92002-11-30 22:47:45 +000040
41#elif defined(__FreeBSD__)
Greg Ward04613a92002-11-30 22:47:45 +000042
Greg Ward0b6dfb82003-03-10 03:17:06 +000043# ifndef SNDCTL_DSP_CHANNELS
44# define SNDCTL_DSP_CHANNELS SOUND_PCM_WRITE_CHANNELS
45# endif
Greg Ward04613a92002-11-30 22:47:45 +000046
47#endif
48
49typedef struct {
Neal Norwitz3f046482006-01-07 21:19:49 +000050 PyObject_HEAD
Greg Ward50682d02005-03-07 01:41:11 +000051 char *devicename; /* name of the device file */
52 int fd; /* file descriptor */
53 int mode; /* file mode (O_RDONLY, etc.) */
54 int icount; /* input count */
55 int ocount; /* output count */
56 uint32_t afmts; /* audio formats supported by hardware */
Greg Ward499b73e2002-12-31 03:04:52 +000057} oss_audio_t;
Greg Ward04613a92002-11-30 22:47:45 +000058
Greg Ward3d9994d2002-12-11 15:12:01 +000059typedef struct {
Neal Norwitz3f046482006-01-07 21:19:49 +000060 PyObject_HEAD
Greg Wardad4d9b92002-12-30 03:02:22 +000061 int fd; /* The open mixer device */
Greg Ward3d9994d2002-12-11 15:12:01 +000062} oss_mixer_t;
63
Greg Ward04613a92002-11-30 22:47:45 +000064
Greg Ward499b73e2002-12-31 03:04:52 +000065static PyTypeObject OSSAudioType;
Greg Ward3d9994d2002-12-11 15:12:01 +000066static PyTypeObject OSSMixerType;
Greg Ward04613a92002-11-30 22:47:45 +000067
Greg Ward97708bc2002-11-30 23:17:10 +000068static PyObject *OSSAudioError;
Greg Ward04613a92002-11-30 22:47:45 +000069
Greg Wardda1cacb2002-12-31 03:02:23 +000070
71/* ----------------------------------------------------------------------
72 * DSP object initialization/deallocation
73 */
74
Greg Ward499b73e2002-12-31 03:04:52 +000075static oss_audio_t *
Greg Ward8c6b6a92002-12-11 14:43:13 +000076newossobject(PyObject *arg)
Greg Ward04613a92002-11-30 22:47:45 +000077{
Greg Ward58ae13c2002-12-31 03:07:21 +000078 oss_audio_t *self;
Greg Ward04613a92002-11-30 22:47:45 +000079 int fd, afmts, imode;
Greg Ward50682d02005-03-07 01:41:11 +000080 char *devicename = NULL;
Greg Ward04613a92002-11-30 22:47:45 +000081 char *mode = NULL;
82
Greg Ward9a568eb2002-11-30 23:20:09 +000083 /* Two ways to call open():
Greg Ward04613a92002-11-30 22:47:45 +000084 open(device, mode) (for consistency with builtin open())
85 open(mode) (for backwards compatibility)
86 because the *first* argument is optional, parsing args is
87 a wee bit tricky. */
Greg Ward50682d02005-03-07 01:41:11 +000088 if (!PyArg_ParseTuple(arg, "s|s:open", &devicename, &mode))
Greg Ward04613a92002-11-30 22:47:45 +000089 return NULL;
90 if (mode == NULL) { /* only one arg supplied */
Greg Ward50682d02005-03-07 01:41:11 +000091 mode = devicename;
92 devicename = NULL;
Greg Ward04613a92002-11-30 22:47:45 +000093 }
94
95 if (strcmp(mode, "r") == 0)
96 imode = O_RDONLY;
97 else if (strcmp(mode, "w") == 0)
98 imode = O_WRONLY;
Greg Ward1e0f57d2002-11-30 23:05:26 +000099 else if (strcmp(mode, "rw") == 0)
100 imode = O_RDWR;
Greg Ward04613a92002-11-30 22:47:45 +0000101 else {
Greg Ward97708bc2002-11-30 23:17:10 +0000102 PyErr_SetString(OSSAudioError, "mode must be 'r', 'w', or 'rw'");
Greg Ward04613a92002-11-30 22:47:45 +0000103 return NULL;
104 }
105
Greg Ward5c5c5772002-12-30 02:58:04 +0000106 /* Open the correct device: either the 'device' argument,
107 or the AUDIODEV environment variable, or "/dev/dsp". */
Greg Ward50682d02005-03-07 01:41:11 +0000108 if (devicename == NULL) { /* called with one arg */
109 devicename = getenv("AUDIODEV");
110 if (devicename == NULL) /* $AUDIODEV not set */
111 devicename = "/dev/dsp";
Greg Ward04613a92002-11-30 22:47:45 +0000112 }
113
Greg Ward5c49ef22003-03-11 16:53:13 +0000114 /* Open with O_NONBLOCK to avoid hanging on devices that only allow
115 one open at a time. This does *not* affect later I/O; OSS
116 provides a special ioctl() for non-blocking read/write, which is
117 exposed via oss_nonblock() below. */
Greg Ward50682d02005-03-07 01:41:11 +0000118 if ((fd = open(devicename, imode|O_NONBLOCK)) == -1) {
119 PyErr_SetFromErrnoWithFilename(PyExc_IOError, devicename);
Greg Ward04613a92002-11-30 22:47:45 +0000120 return NULL;
121 }
Greg Ward76ffb192003-04-04 01:47:42 +0000122
123 /* And (try to) put it back in blocking mode so we get the
124 expected write() semantics. */
125 if (fcntl(fd, F_SETFL, 0) == -1) {
126 close(fd);
Greg Ward50682d02005-03-07 01:41:11 +0000127 PyErr_SetFromErrnoWithFilename(PyExc_IOError, devicename);
Greg Ward76ffb192003-04-04 01:47:42 +0000128 return NULL;
129 }
130
Greg Ward04613a92002-11-30 22:47:45 +0000131 if (ioctl(fd, SNDCTL_DSP_GETFMTS, &afmts) == -1) {
Charles-François Natali5a4a1092011-09-29 19:46:37 +0200132 close(fd);
Greg Ward50682d02005-03-07 01:41:11 +0000133 PyErr_SetFromErrnoWithFilename(PyExc_IOError, devicename);
Greg Ward04613a92002-11-30 22:47:45 +0000134 return NULL;
135 }
136 /* Create and initialize the object */
Greg Ward58ae13c2002-12-31 03:07:21 +0000137 if ((self = PyObject_New(oss_audio_t, &OSSAudioType)) == NULL) {
Greg Ward04613a92002-11-30 22:47:45 +0000138 close(fd);
139 return NULL;
140 }
Greg Ward50682d02005-03-07 01:41:11 +0000141 self->devicename = devicename;
Greg Ward58ae13c2002-12-31 03:07:21 +0000142 self->fd = fd;
143 self->mode = imode;
144 self->icount = self->ocount = 0;
145 self->afmts = afmts;
146 return self;
Greg Ward04613a92002-11-30 22:47:45 +0000147}
148
149static void
Greg Ward58ae13c2002-12-31 03:07:21 +0000150oss_dealloc(oss_audio_t *self)
Greg Ward04613a92002-11-30 22:47:45 +0000151{
152 /* if already closed, don't reclose it */
Greg Ward58ae13c2002-12-31 03:07:21 +0000153 if (self->fd != -1)
154 close(self->fd);
155 PyObject_Del(self);
Greg Ward04613a92002-11-30 22:47:45 +0000156}
157
Greg Wardda1cacb2002-12-31 03:02:23 +0000158
159/* ----------------------------------------------------------------------
160 * Mixer object initialization/deallocation
161 */
162
Greg Ward3d9994d2002-12-11 15:12:01 +0000163static oss_mixer_t *
164newossmixerobject(PyObject *arg)
165{
Greg Ward50682d02005-03-07 01:41:11 +0000166 char *devicename = NULL;
Greg Ward0b6dfb82003-03-10 03:17:06 +0000167 int fd;
Greg Ward58ae13c2002-12-31 03:07:21 +0000168 oss_mixer_t *self;
Guido van Rossum0741f802003-06-02 14:15:34 +0000169
Greg Ward50682d02005-03-07 01:41:11 +0000170 if (!PyArg_ParseTuple(arg, "|s", &devicename)) {
Greg Wardad4d9b92002-12-30 03:02:22 +0000171 return NULL;
Greg Ward3d9994d2002-12-11 15:12:01 +0000172 }
Guido van Rossum0741f802003-06-02 14:15:34 +0000173
Greg Ward50682d02005-03-07 01:41:11 +0000174 if (devicename == NULL) {
175 devicename = getenv("MIXERDEV");
176 if (devicename == NULL) /* MIXERDEV not set */
177 devicename = "/dev/mixer";
Greg Ward3d9994d2002-12-11 15:12:01 +0000178 }
179
Greg Ward50682d02005-03-07 01:41:11 +0000180 if ((fd = open(devicename, O_RDWR)) == -1) {
181 PyErr_SetFromErrnoWithFilename(PyExc_IOError, devicename);
Greg Ward3d9994d2002-12-11 15:12:01 +0000182 return NULL;
183 }
Greg Ward0b6dfb82003-03-10 03:17:06 +0000184
Greg Ward58ae13c2002-12-31 03:07:21 +0000185 if ((self = PyObject_New(oss_mixer_t, &OSSMixerType)) == NULL) {
Greg Ward3d9994d2002-12-11 15:12:01 +0000186 close(fd);
187 return NULL;
188 }
Guido van Rossum0741f802003-06-02 14:15:34 +0000189
Greg Ward58ae13c2002-12-31 03:07:21 +0000190 self->fd = fd;
Guido van Rossum0741f802003-06-02 14:15:34 +0000191
Greg Ward58ae13c2002-12-31 03:07:21 +0000192 return self;
Greg Ward3d9994d2002-12-11 15:12:01 +0000193}
194
195static void
Greg Ward58ae13c2002-12-31 03:07:21 +0000196oss_mixer_dealloc(oss_mixer_t *self)
Greg Ward3d9994d2002-12-11 15:12:01 +0000197{
198 /* if already closed, don't reclose it */
Greg Ward58ae13c2002-12-31 03:07:21 +0000199 if (self->fd != -1)
200 close(self->fd);
201 PyObject_Del(self);
Greg Ward3d9994d2002-12-11 15:12:01 +0000202}
203
Greg Ward131bce02002-11-30 22:56:44 +0000204
205/* Methods to wrap the OSS ioctls. The calling convention is pretty
206 simple:
207 nonblock() -> ioctl(fd, SNDCTL_DSP_NONBLOCK)
208 fmt = setfmt(fmt) -> ioctl(fd, SNDCTL_DSP_SETFMT, &fmt)
209 etc.
210*/
211
212
Greg Wardd6769062003-05-29 21:53:06 +0000213/* ----------------------------------------------------------------------
214 * Helper functions
215 */
216
Charles-François Natalia5293082011-06-11 18:58:24 +0200217/* Check if a given file descriptor is valid (i.e. hasn't been closed).
218 * If true, return 1. Otherwise, raise ValueError and return 0.
219 */
220static int _is_fd_valid(int fd)
221{
222 /* the FD is set to -1 in oss_close()/oss_mixer_close() */
223 if (fd >= 0) {
224 return 1;
225 } else {
226 PyErr_SetString(PyExc_ValueError,
227 "Operation on closed OSS device.");
228 return 0;
229 }
230}
231
Greg Ward131bce02002-11-30 22:56:44 +0000232/* _do_ioctl_1() is a private helper function used for the OSS ioctls --
Terry Jan Reedy0158af32013-03-11 17:42:46 -0400233 SNDCTL_DSP_{SETFMT,CHANNELS,SPEED} -- that are called from C
Greg Ward131bce02002-11-30 22:56:44 +0000234 like this:
235 ioctl(fd, SNDCTL_DSP_cmd, &arg)
236
237 where arg is the value to set, and on return the driver sets arg to
238 the value that was actually set. Mapping this to Python is obvious:
239 arg = dsp.xxx(arg)
240*/
241static PyObject *
Greg Wardda9f8532002-12-11 14:49:59 +0000242_do_ioctl_1(int fd, PyObject *args, char *fname, int cmd)
Greg Ward131bce02002-11-30 22:56:44 +0000243{
Greg Wardda9f8532002-12-11 14:49:59 +0000244 char argfmt[33] = "i:";
Greg Ward131bce02002-11-30 22:56:44 +0000245 int arg;
246
Greg Wardda9f8532002-12-11 14:49:59 +0000247 assert(strlen(fname) <= 30);
Christian Heimese91ad502013-07-20 14:11:28 +0200248 strncat(argfmt, fname, 30);
Greg Ward131bce02002-11-30 22:56:44 +0000249 if (!PyArg_ParseTuple(args, argfmt, &arg))
Greg Wardad4d9b92002-12-30 03:02:22 +0000250 return NULL;
Greg Ward131bce02002-11-30 22:56:44 +0000251
Greg Wardda9f8532002-12-11 14:49:59 +0000252 if (ioctl(fd, cmd, &arg) == -1)
Greg Ward97708bc2002-11-30 23:17:10 +0000253 return PyErr_SetFromErrno(PyExc_IOError);
Christian Heimes217cfd12007-12-02 14:31:20 +0000254 return PyLong_FromLong(arg);
Greg Ward131bce02002-11-30 22:56:44 +0000255}
256
Greg Wardda1cacb2002-12-31 03:02:23 +0000257
Greg Ward3d9994d2002-12-11 15:12:01 +0000258/* _do_ioctl_1_internal() is a wrapper for ioctls that take no inputs
259 but return an output -- ie. we need to pass a pointer to a local C
260 variable so the driver can write its output there, but from Python
261 all we see is the return value. For example,
262 SOUND_MIXER_READ_DEVMASK returns a bitmask of available mixer
263 devices, but does not use the value of the parameter passed-in in any
264 way.
265*/
Greg Ward3d9994d2002-12-11 15:12:01 +0000266static PyObject *
267_do_ioctl_1_internal(int fd, PyObject *args, char *fname, int cmd)
268{
269 char argfmt[32] = ":";
270 int arg = 0;
271
272 assert(strlen(fname) <= 30);
Christian Heimese91ad502013-07-20 14:11:28 +0200273 strncat(argfmt, fname, 30);
Greg Ward3d9994d2002-12-11 15:12:01 +0000274 if (!PyArg_ParseTuple(args, argfmt, &arg))
Greg Wardad4d9b92002-12-30 03:02:22 +0000275 return NULL;
Greg Ward3d9994d2002-12-11 15:12:01 +0000276
277 if (ioctl(fd, cmd, &arg) == -1)
278 return PyErr_SetFromErrno(PyExc_IOError);
Christian Heimes217cfd12007-12-02 14:31:20 +0000279 return PyLong_FromLong(arg);
Greg Ward3d9994d2002-12-11 15:12:01 +0000280}
281
282
283
Greg Ward131bce02002-11-30 22:56:44 +0000284/* _do_ioctl_0() is a private helper for the no-argument ioctls:
285 SNDCTL_DSP_{SYNC,RESET,POST}. */
286static PyObject *
Greg Wardda9f8532002-12-11 14:49:59 +0000287_do_ioctl_0(int fd, PyObject *args, char *fname, int cmd)
Greg Ward131bce02002-11-30 22:56:44 +0000288{
Greg Wardda9f8532002-12-11 14:49:59 +0000289 char argfmt[32] = ":";
Greg Wardd0d592f2003-05-27 01:57:21 +0000290 int rv;
Greg Ward131bce02002-11-30 22:56:44 +0000291
Greg Wardda9f8532002-12-11 14:49:59 +0000292 assert(strlen(fname) <= 30);
Christian Heimese91ad502013-07-20 14:11:28 +0200293 strncat(argfmt, fname, 30);
Greg Ward131bce02002-11-30 22:56:44 +0000294 if (!PyArg_ParseTuple(args, argfmt))
Greg Wardad4d9b92002-12-30 03:02:22 +0000295 return NULL;
Greg Ward131bce02002-11-30 22:56:44 +0000296
Greg Wardd0d592f2003-05-27 01:57:21 +0000297 /* According to hannu@opensound.com, all three of the ioctls that
298 use this function can block, so release the GIL. This is
299 especially important for SYNC, which can block for several
300 seconds. */
301 Py_BEGIN_ALLOW_THREADS
302 rv = ioctl(fd, cmd, 0);
303 Py_END_ALLOW_THREADS
304
305 if (rv == -1)
Greg Ward97708bc2002-11-30 23:17:10 +0000306 return PyErr_SetFromErrno(PyExc_IOError);
Greg Ward131bce02002-11-30 22:56:44 +0000307 Py_INCREF(Py_None);
308 return Py_None;
309}
310
311
Greg Wardda1cacb2002-12-31 03:02:23 +0000312/* ----------------------------------------------------------------------
Greg Ward499b73e2002-12-31 03:04:52 +0000313 * Methods of DSP objects (OSSAudioType)
Greg Wardda1cacb2002-12-31 03:02:23 +0000314 */
315
Greg Ward131bce02002-11-30 22:56:44 +0000316static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000317oss_nonblock(oss_audio_t *self, PyObject *unused)
Greg Ward131bce02002-11-30 22:56:44 +0000318{
Charles-François Natalia5293082011-06-11 18:58:24 +0200319 if (!_is_fd_valid(self->fd))
320 return NULL;
321
Greg Ward131bce02002-11-30 22:56:44 +0000322 /* Hmmm: it doesn't appear to be possible to return to blocking
323 mode once we're in non-blocking mode! */
Greg Ward7b43c682002-12-30 02:29:28 +0000324 if (ioctl(self->fd, SNDCTL_DSP_NONBLOCK, NULL) == -1)
Greg Ward97708bc2002-11-30 23:17:10 +0000325 return PyErr_SetFromErrno(PyExc_IOError);
Greg Ward131bce02002-11-30 22:56:44 +0000326 Py_INCREF(Py_None);
327 return Py_None;
328}
329
330static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000331oss_setfmt(oss_audio_t *self, PyObject *args)
Greg Ward131bce02002-11-30 22:56:44 +0000332{
Charles-François Natalia5293082011-06-11 18:58:24 +0200333 if (!_is_fd_valid(self->fd))
334 return NULL;
335
Greg Ward7b43c682002-12-30 02:29:28 +0000336 return _do_ioctl_1(self->fd, args, "setfmt", SNDCTL_DSP_SETFMT);
Greg Ward131bce02002-11-30 22:56:44 +0000337}
338
339static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000340oss_getfmts(oss_audio_t *self, PyObject *unused)
Greg Ward131bce02002-11-30 22:56:44 +0000341{
342 int mask;
Charles-François Natalia5293082011-06-11 18:58:24 +0200343
344 if (!_is_fd_valid(self->fd))
345 return NULL;
346
Greg Ward7b43c682002-12-30 02:29:28 +0000347 if (ioctl(self->fd, SNDCTL_DSP_GETFMTS, &mask) == -1)
Greg Ward97708bc2002-11-30 23:17:10 +0000348 return PyErr_SetFromErrno(PyExc_IOError);
Christian Heimes217cfd12007-12-02 14:31:20 +0000349 return PyLong_FromLong(mask);
Greg Ward131bce02002-11-30 22:56:44 +0000350}
351
352static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000353oss_channels(oss_audio_t *self, PyObject *args)
Greg Ward131bce02002-11-30 22:56:44 +0000354{
Charles-François Natalia5293082011-06-11 18:58:24 +0200355 if (!_is_fd_valid(self->fd))
356 return NULL;
357
Greg Ward7b43c682002-12-30 02:29:28 +0000358 return _do_ioctl_1(self->fd, args, "channels", SNDCTL_DSP_CHANNELS);
Greg Ward131bce02002-11-30 22:56:44 +0000359}
360
361static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000362oss_speed(oss_audio_t *self, PyObject *args)
Greg Ward131bce02002-11-30 22:56:44 +0000363{
Charles-François Natalia5293082011-06-11 18:58:24 +0200364 if (!_is_fd_valid(self->fd))
365 return NULL;
366
Greg Ward7b43c682002-12-30 02:29:28 +0000367 return _do_ioctl_1(self->fd, args, "speed", SNDCTL_DSP_SPEED);
Greg Ward131bce02002-11-30 22:56:44 +0000368}
369
370static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000371oss_sync(oss_audio_t *self, PyObject *args)
Greg Ward131bce02002-11-30 22:56:44 +0000372{
Charles-François Natalia5293082011-06-11 18:58:24 +0200373 if (!_is_fd_valid(self->fd))
374 return NULL;
375
Greg Wardd0d592f2003-05-27 01:57:21 +0000376 return _do_ioctl_0(self->fd, args, "sync", SNDCTL_DSP_SYNC);
Greg Ward131bce02002-11-30 22:56:44 +0000377}
Guido van Rossum0741f802003-06-02 14:15:34 +0000378
Greg Ward131bce02002-11-30 22:56:44 +0000379static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000380oss_reset(oss_audio_t *self, PyObject *args)
Greg Ward131bce02002-11-30 22:56:44 +0000381{
Charles-François Natalia5293082011-06-11 18:58:24 +0200382 if (!_is_fd_valid(self->fd))
383 return NULL;
384
Greg Ward7b43c682002-12-30 02:29:28 +0000385 return _do_ioctl_0(self->fd, args, "reset", SNDCTL_DSP_RESET);
Greg Ward131bce02002-11-30 22:56:44 +0000386}
Guido van Rossum0741f802003-06-02 14:15:34 +0000387
Greg Ward131bce02002-11-30 22:56:44 +0000388static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000389oss_post(oss_audio_t *self, PyObject *args)
Greg Ward131bce02002-11-30 22:56:44 +0000390{
Charles-François Natalia5293082011-06-11 18:58:24 +0200391 if (!_is_fd_valid(self->fd))
392 return NULL;
393
Greg Ward7b43c682002-12-30 02:29:28 +0000394 return _do_ioctl_0(self->fd, args, "post", SNDCTL_DSP_POST);
Greg Ward131bce02002-11-30 22:56:44 +0000395}
396
397
398/* Regular file methods: read(), write(), close(), etc. as well
399 as one convenience method, writeall(). */
400
Greg Ward04613a92002-11-30 22:47:45 +0000401static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000402oss_read(oss_audio_t *self, PyObject *args)
Greg Ward04613a92002-11-30 22:47:45 +0000403{
404 int size, count;
405 char *cp;
406 PyObject *rv;
Guido van Rossum0741f802003-06-02 14:15:34 +0000407
Charles-François Natalia5293082011-06-11 18:58:24 +0200408 if (!_is_fd_valid(self->fd))
409 return NULL;
410
Greg Ward04613a92002-11-30 22:47:45 +0000411 if (!PyArg_ParseTuple(args, "i:read", &size))
412 return NULL;
Gregory P. Smith0a608fd2008-09-06 21:34:51 +0000413 rv = PyBytes_FromStringAndSize(NULL, size);
Greg Ward04613a92002-11-30 22:47:45 +0000414 if (rv == NULL)
415 return NULL;
Gregory P. Smith0a608fd2008-09-06 21:34:51 +0000416 cp = PyBytes_AS_STRING(rv);
Greg Ward64927852003-05-23 01:50:37 +0000417
418 Py_BEGIN_ALLOW_THREADS
419 count = read(self->fd, cp, size);
420 Py_END_ALLOW_THREADS
421
422 if (count < 0) {
Greg Ward97708bc2002-11-30 23:17:10 +0000423 PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000424 Py_DECREF(rv);
425 return NULL;
426 }
Greg Ward7b43c682002-12-30 02:29:28 +0000427 self->icount += count;
Gregory P. Smith0a608fd2008-09-06 21:34:51 +0000428 _PyBytes_Resize(&rv, count);
Greg Ward04613a92002-11-30 22:47:45 +0000429 return rv;
430}
431
432static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000433oss_write(oss_audio_t *self, PyObject *args)
Greg Ward04613a92002-11-30 22:47:45 +0000434{
435 char *cp;
436 int rv, size;
Greg Ward131bce02002-11-30 22:56:44 +0000437
Charles-François Natalia5293082011-06-11 18:58:24 +0200438 if (!_is_fd_valid(self->fd))
439 return NULL;
440
Neal Norwitz8abd2e62007-08-26 04:57:08 +0000441 if (!PyArg_ParseTuple(args, "y#:write", &cp, &size)) {
Greg Wardad4d9b92002-12-30 03:02:22 +0000442 return NULL;
Greg Ward131bce02002-11-30 22:56:44 +0000443 }
Greg Ward64927852003-05-23 01:50:37 +0000444
445 Py_BEGIN_ALLOW_THREADS
446 rv = write(self->fd, cp, size);
447 Py_END_ALLOW_THREADS
448
449 if (rv == -1) {
Greg Ward97708bc2002-11-30 23:17:10 +0000450 return PyErr_SetFromErrno(PyExc_IOError);
Greg Ward131bce02002-11-30 22:56:44 +0000451 } else {
Greg Ward7b43c682002-12-30 02:29:28 +0000452 self->ocount += rv;
Greg Ward131bce02002-11-30 22:56:44 +0000453 }
Christian Heimes217cfd12007-12-02 14:31:20 +0000454 return PyLong_FromLong(rv);
Greg Ward131bce02002-11-30 22:56:44 +0000455}
456
457static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000458oss_writeall(oss_audio_t *self, PyObject *args)
Greg Ward131bce02002-11-30 22:56:44 +0000459{
460 char *cp;
461 int rv, size;
462 fd_set write_set_fds;
463 int select_rv;
Guido van Rossum0741f802003-06-02 14:15:34 +0000464
Greg Ward131bce02002-11-30 22:56:44 +0000465 /* NB. writeall() is only useful in non-blocking mode: according to
466 Guenter Geiger <geiger@xdv.org> on the linux-audio-dev list
467 (http://eca.cx/lad/2002/11/0380.html), OSS guarantees that
468 write() in blocking mode consumes the whole buffer. In blocking
469 mode, the behaviour of write() and writeall() from Python is
470 indistinguishable. */
471
Charles-François Natalia5293082011-06-11 18:58:24 +0200472 if (!_is_fd_valid(self->fd))
473 return NULL;
474
Neal Norwitz8abd2e62007-08-26 04:57:08 +0000475 if (!PyArg_ParseTuple(args, "y#:write", &cp, &size))
Greg Ward131bce02002-11-30 22:56:44 +0000476 return NULL;
Greg Ward04613a92002-11-30 22:47:45 +0000477
Charles-François Nataliaa26b272011-08-28 17:51:43 +0200478 if (!_PyIsSelectable_fd(self->fd)) {
479 PyErr_SetString(PyExc_ValueError,
480 "file descriptor out of range for select");
481 return NULL;
482 }
Greg Ward04613a92002-11-30 22:47:45 +0000483 /* use select to wait for audio device to be available */
484 FD_ZERO(&write_set_fds);
Greg Ward7b43c682002-12-30 02:29:28 +0000485 FD_SET(self->fd, &write_set_fds);
Greg Ward04613a92002-11-30 22:47:45 +0000486
487 while (size > 0) {
Greg Ward64927852003-05-23 01:50:37 +0000488 Py_BEGIN_ALLOW_THREADS
Greg Ward7b43c682002-12-30 02:29:28 +0000489 select_rv = select(self->fd+1, NULL, &write_set_fds, NULL, NULL);
Greg Ward64927852003-05-23 01:50:37 +0000490 Py_END_ALLOW_THREADS
Greg Ward131bce02002-11-30 22:56:44 +0000491 assert(select_rv != 0); /* no timeout, can't expire */
492 if (select_rv == -1)
Greg Ward97708bc2002-11-30 23:17:10 +0000493 return PyErr_SetFromErrno(PyExc_IOError);
Greg Ward131bce02002-11-30 22:56:44 +0000494
Greg Ward64927852003-05-23 01:50:37 +0000495 Py_BEGIN_ALLOW_THREADS
Greg Ward7b43c682002-12-30 02:29:28 +0000496 rv = write(self->fd, cp, size);
Greg Ward64927852003-05-23 01:50:37 +0000497 Py_END_ALLOW_THREADS
Greg Ward131bce02002-11-30 22:56:44 +0000498 if (rv == -1) {
499 if (errno == EAGAIN) { /* buffer is full, try again */
500 errno = 0;
501 continue;
502 } else /* it's a real error */
Greg Ward97708bc2002-11-30 23:17:10 +0000503 return PyErr_SetFromErrno(PyExc_IOError);
Greg Ward131bce02002-11-30 22:56:44 +0000504 } else { /* wrote rv bytes */
Greg Ward7b43c682002-12-30 02:29:28 +0000505 self->ocount += rv;
Greg Ward131bce02002-11-30 22:56:44 +0000506 size -= rv;
507 cp += rv;
508 }
Greg Ward04613a92002-11-30 22:47:45 +0000509 }
510 Py_INCREF(Py_None);
511 return Py_None;
512}
513
514static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000515oss_close(oss_audio_t *self, PyObject *unused)
Greg Ward04613a92002-11-30 22:47:45 +0000516{
Greg Ward7b43c682002-12-30 02:29:28 +0000517 if (self->fd >= 0) {
Greg Wardb8043902003-05-26 22:47:30 +0000518 Py_BEGIN_ALLOW_THREADS
Greg Ward7b43c682002-12-30 02:29:28 +0000519 close(self->fd);
Greg Wardb8043902003-05-26 22:47:30 +0000520 Py_END_ALLOW_THREADS
Greg Ward7b43c682002-12-30 02:29:28 +0000521 self->fd = -1;
Greg Ward04613a92002-11-30 22:47:45 +0000522 }
523 Py_INCREF(Py_None);
524 return Py_None;
525}
526
527static PyObject *
Georg Brandl770a2be2010-10-24 20:47:32 +0000528oss_self(PyObject *self, PyObject *unused)
Georg Brandl1e908af2010-10-23 17:31:52 +0000529{
530 Py_INCREF(self);
531 return self;
532}
533
Victor Stinner63941882011-09-29 00:42:28 +0200534static PyObject *
Georg Brandl1e908af2010-10-23 17:31:52 +0000535oss_exit(PyObject *self, PyObject *unused)
536{
Martin v. Löwisbd928fe2011-10-14 10:20:37 +0200537 _Py_IDENTIFIER(close);
Martin v. Löwisafe55bb2011-10-09 10:38:36 +0200538
539 PyObject *ret = _PyObject_CallMethodId(self, &PyId_close, NULL);
Georg Brandl1e908af2010-10-23 17:31:52 +0000540 if (!ret)
541 return NULL;
542 Py_DECREF(ret);
543 Py_RETURN_NONE;
544}
545
546static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000547oss_fileno(oss_audio_t *self, PyObject *unused)
Greg Ward04613a92002-11-30 22:47:45 +0000548{
Charles-François Natalia5293082011-06-11 18:58:24 +0200549 if (!_is_fd_valid(self->fd))
550 return NULL;
551
Christian Heimes217cfd12007-12-02 14:31:20 +0000552 return PyLong_FromLong(self->fd);
Greg Ward04613a92002-11-30 22:47:45 +0000553}
554
Greg Ward131bce02002-11-30 22:56:44 +0000555
556/* Convenience methods: these generally wrap a couple of ioctls into one
557 common task. */
558
Greg Ward04613a92002-11-30 22:47:45 +0000559static PyObject *
Greg Ward499b73e2002-12-31 03:04:52 +0000560oss_setparameters(oss_audio_t *self, PyObject *args)
Greg Ward04613a92002-11-30 22:47:45 +0000561{
Greg Wardd6769062003-05-29 21:53:06 +0000562 int wanted_fmt, wanted_channels, wanted_rate, strict=0;
563 int fmt, channels, rate;
564 PyObject * rv; /* return tuple (fmt, channels, rate) */
Greg Ward04613a92002-11-30 22:47:45 +0000565
Charles-François Natalia5293082011-06-11 18:58:24 +0200566 if (!_is_fd_valid(self->fd))
567 return NULL;
568
Greg Wardd6769062003-05-29 21:53:06 +0000569 if (!PyArg_ParseTuple(args, "iii|i:setparameters",
570 &wanted_fmt, &wanted_channels, &wanted_rate,
571 &strict))
Greg Ward04613a92002-11-30 22:47:45 +0000572 return NULL;
Greg Wardd6769062003-05-29 21:53:06 +0000573
574 fmt = wanted_fmt;
575 if (ioctl(self->fd, SNDCTL_DSP_SETFMT, &fmt) == -1) {
576 return PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000577 }
Greg Wardd6769062003-05-29 21:53:06 +0000578 if (strict && fmt != wanted_fmt) {
579 return PyErr_Format
580 (OSSAudioError,
581 "unable to set requested format (wanted %d, got %d)",
582 wanted_fmt, fmt);
Greg Ward04613a92002-11-30 22:47:45 +0000583 }
584
Greg Wardd6769062003-05-29 21:53:06 +0000585 channels = wanted_channels;
586 if (ioctl(self->fd, SNDCTL_DSP_CHANNELS, &channels) == -1) {
587 return PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000588 }
Greg Wardd6769062003-05-29 21:53:06 +0000589 if (strict && channels != wanted_channels) {
590 return PyErr_Format
591 (OSSAudioError,
592 "unable to set requested channels (wanted %d, got %d)",
593 wanted_channels, channels);
Greg Ward04613a92002-11-30 22:47:45 +0000594 }
595
Greg Wardd6769062003-05-29 21:53:06 +0000596 rate = wanted_rate;
Greg Ward7b43c682002-12-30 02:29:28 +0000597 if (ioctl(self->fd, SNDCTL_DSP_SPEED, &rate) == -1) {
Greg Wardd6769062003-05-29 21:53:06 +0000598 return PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000599 }
Greg Wardd6769062003-05-29 21:53:06 +0000600 if (strict && rate != wanted_rate) {
601 return PyErr_Format
602 (OSSAudioError,
603 "unable to set requested rate (wanted %d, got %d)",
604 wanted_rate, rate);
605 }
Guido van Rossum0741f802003-06-02 14:15:34 +0000606
Greg Wardd6769062003-05-29 21:53:06 +0000607 /* Construct the return value: a (fmt, channels, rate) tuple that
608 tells what the audio hardware was actually set to. */
609 rv = PyTuple_New(3);
610 if (rv == NULL)
611 return NULL;
Christian Heimes217cfd12007-12-02 14:31:20 +0000612 PyTuple_SET_ITEM(rv, 0, PyLong_FromLong(fmt));
613 PyTuple_SET_ITEM(rv, 1, PyLong_FromLong(channels));
614 PyTuple_SET_ITEM(rv, 2, PyLong_FromLong(rate));
Greg Wardd6769062003-05-29 21:53:06 +0000615 return rv;
Greg Ward04613a92002-11-30 22:47:45 +0000616}
617
618static int
Greg Ward499b73e2002-12-31 03:04:52 +0000619_ssize(oss_audio_t *self, int *nchannels, int *ssize)
Greg Ward04613a92002-11-30 22:47:45 +0000620{
621 int fmt;
622
623 fmt = 0;
Guido van Rossum0741f802003-06-02 14:15:34 +0000624 if (ioctl(self->fd, SNDCTL_DSP_SETFMT, &fmt) < 0)
Greg Ward04613a92002-11-30 22:47:45 +0000625 return -errno;
626
627 switch (fmt) {
628 case AFMT_MU_LAW:
629 case AFMT_A_LAW:
630 case AFMT_U8:
631 case AFMT_S8:
Greg Ward38c92662003-05-29 21:55:41 +0000632 *ssize = 1; /* 8 bit formats: 1 byte */
Greg Ward04613a92002-11-30 22:47:45 +0000633 break;
634 case AFMT_S16_LE:
635 case AFMT_S16_BE:
636 case AFMT_U16_LE:
637 case AFMT_U16_BE:
Greg Ward84f8ecd2003-05-29 23:44:44 +0000638 *ssize = 2; /* 16 bit formats: 2 byte */
Greg Ward04613a92002-11-30 22:47:45 +0000639 break;
640 case AFMT_MPEG:
641 case AFMT_IMA_ADPCM:
642 default:
643 return -EOPNOTSUPP;
644 }
Greg Ward7b43c682002-12-30 02:29:28 +0000645 if (ioctl(self->fd, SNDCTL_DSP_CHANNELS, nchannels) < 0)
Greg Ward04613a92002-11-30 22:47:45 +0000646 return -errno;
647 return 0;
648}
649
650
Guido van Rossum0741f802003-06-02 14:15:34 +0000651/* bufsize returns the size of the hardware audio buffer in number
Greg Ward04613a92002-11-30 22:47:45 +0000652 of samples */
653static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000654oss_bufsize(oss_audio_t *self, PyObject *unused)
Greg Ward04613a92002-11-30 22:47:45 +0000655{
656 audio_buf_info ai;
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000657 int nchannels=0, ssize=0;
Greg Ward04613a92002-11-30 22:47:45 +0000658
Charles-François Natalia5293082011-06-11 18:58:24 +0200659 if (!_is_fd_valid(self->fd))
660 return NULL;
661
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000662 if (_ssize(self, &nchannels, &ssize) < 0 || !nchannels || !ssize) {
Greg Ward97708bc2002-11-30 23:17:10 +0000663 PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000664 return NULL;
665 }
Greg Ward7b43c682002-12-30 02:29:28 +0000666 if (ioctl(self->fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) {
Greg Ward97708bc2002-11-30 23:17:10 +0000667 PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000668 return NULL;
669 }
Christian Heimes217cfd12007-12-02 14:31:20 +0000670 return PyLong_FromLong((ai.fragstotal * ai.fragsize) / (nchannels * ssize));
Greg Ward04613a92002-11-30 22:47:45 +0000671}
672
Guido van Rossum0741f802003-06-02 14:15:34 +0000673/* obufcount returns the number of samples that are available in the
Greg Ward04613a92002-11-30 22:47:45 +0000674 hardware for playing */
675static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000676oss_obufcount(oss_audio_t *self, PyObject *unused)
Greg Ward04613a92002-11-30 22:47:45 +0000677{
678 audio_buf_info ai;
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000679 int nchannels=0, ssize=0;
Greg Ward04613a92002-11-30 22:47:45 +0000680
Charles-François Natalia5293082011-06-11 18:58:24 +0200681 if (!_is_fd_valid(self->fd))
682 return NULL;
683
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000684 if (_ssize(self, &nchannels, &ssize) < 0 || !nchannels || !ssize) {
Greg Ward97708bc2002-11-30 23:17:10 +0000685 PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000686 return NULL;
687 }
Greg Ward7b43c682002-12-30 02:29:28 +0000688 if (ioctl(self->fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) {
Greg Ward97708bc2002-11-30 23:17:10 +0000689 PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000690 return NULL;
691 }
Christian Heimes217cfd12007-12-02 14:31:20 +0000692 return PyLong_FromLong((ai.fragstotal * ai.fragsize - ai.bytes) /
Greg Ward04613a92002-11-30 22:47:45 +0000693 (ssize * nchannels));
694}
695
696/* obufcount returns the number of samples that can be played without
697 blocking */
698static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000699oss_obuffree(oss_audio_t *self, PyObject *unused)
Greg Ward04613a92002-11-30 22:47:45 +0000700{
701 audio_buf_info ai;
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000702 int nchannels=0, ssize=0;
Greg Ward04613a92002-11-30 22:47:45 +0000703
Charles-François Natalia5293082011-06-11 18:58:24 +0200704 if (!_is_fd_valid(self->fd))
705 return NULL;
706
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000707 if (_ssize(self, &nchannels, &ssize) < 0 || !nchannels || !ssize) {
Greg Ward97708bc2002-11-30 23:17:10 +0000708 PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000709 return NULL;
710 }
Greg Ward7b43c682002-12-30 02:29:28 +0000711 if (ioctl(self->fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) {
Greg Ward97708bc2002-11-30 23:17:10 +0000712 PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000713 return NULL;
714 }
Christian Heimes217cfd12007-12-02 14:31:20 +0000715 return PyLong_FromLong(ai.bytes / (ssize * nchannels));
Greg Ward04613a92002-11-30 22:47:45 +0000716}
717
Greg Ward04613a92002-11-30 22:47:45 +0000718static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000719oss_getptr(oss_audio_t *self, PyObject *unused)
Greg Ward04613a92002-11-30 22:47:45 +0000720{
721 count_info info;
722 int req;
723
Charles-François Natalia5293082011-06-11 18:58:24 +0200724 if (!_is_fd_valid(self->fd))
725 return NULL;
726
Greg Ward7b43c682002-12-30 02:29:28 +0000727 if (self->mode == O_RDONLY)
Greg Wardad4d9b92002-12-30 03:02:22 +0000728 req = SNDCTL_DSP_GETIPTR;
Greg Ward04613a92002-11-30 22:47:45 +0000729 else
Greg Wardad4d9b92002-12-30 03:02:22 +0000730 req = SNDCTL_DSP_GETOPTR;
Greg Ward7b43c682002-12-30 02:29:28 +0000731 if (ioctl(self->fd, req, &info) == -1) {
Greg Ward97708bc2002-11-30 23:17:10 +0000732 PyErr_SetFromErrno(PyExc_IOError);
Greg Ward04613a92002-11-30 22:47:45 +0000733 return NULL;
734 }
735 return Py_BuildValue("iii", info.bytes, info.blocks, info.ptr);
736}
737
Greg Wardda1cacb2002-12-31 03:02:23 +0000738
739/* ----------------------------------------------------------------------
740 * Methods of mixer objects (OSSMixerType)
741 */
742
Greg Ward3d9994d2002-12-11 15:12:01 +0000743static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000744oss_mixer_close(oss_mixer_t *self, PyObject *unused)
Greg Ward3d9994d2002-12-11 15:12:01 +0000745{
Greg Ward7b43c682002-12-30 02:29:28 +0000746 if (self->fd >= 0) {
747 close(self->fd);
748 self->fd = -1;
Greg Ward3d9994d2002-12-11 15:12:01 +0000749 }
750 Py_INCREF(Py_None);
751 return Py_None;
752}
753
754static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000755oss_mixer_fileno(oss_mixer_t *self, PyObject *unused)
Greg Ward3d9994d2002-12-11 15:12:01 +0000756{
Charles-François Natalia5293082011-06-11 18:58:24 +0200757 if (!_is_fd_valid(self->fd))
758 return NULL;
759
Christian Heimes217cfd12007-12-02 14:31:20 +0000760 return PyLong_FromLong(self->fd);
Greg Ward3d9994d2002-12-11 15:12:01 +0000761}
762
763/* Simple mixer interface methods */
764
765static PyObject *
Greg Ward2d6f9a92002-12-31 02:54:43 +0000766oss_mixer_controls(oss_mixer_t *self, PyObject *args)
Greg Ward3d9994d2002-12-11 15:12:01 +0000767{
Charles-François Natalia5293082011-06-11 18:58:24 +0200768 if (!_is_fd_valid(self->fd))
769 return NULL;
770
Greg Ward2d6f9a92002-12-31 02:54:43 +0000771 return _do_ioctl_1_internal(self->fd, args, "controls",
Greg Ward3d9994d2002-12-11 15:12:01 +0000772 SOUND_MIXER_READ_DEVMASK);
773}
774
775static PyObject *
Greg Ward2d6f9a92002-12-31 02:54:43 +0000776oss_mixer_stereocontrols(oss_mixer_t *self, PyObject *args)
Greg Ward3d9994d2002-12-11 15:12:01 +0000777{
Charles-François Natalia5293082011-06-11 18:58:24 +0200778 if (!_is_fd_valid(self->fd))
779 return NULL;
780
Greg Ward2d6f9a92002-12-31 02:54:43 +0000781 return _do_ioctl_1_internal(self->fd, args, "stereocontrols",
Greg Ward3d9994d2002-12-11 15:12:01 +0000782 SOUND_MIXER_READ_STEREODEVS);
783}
784
785static PyObject *
Greg Ward2d6f9a92002-12-31 02:54:43 +0000786oss_mixer_reccontrols(oss_mixer_t *self, PyObject *args)
Greg Ward3d9994d2002-12-11 15:12:01 +0000787{
Charles-François Natalia5293082011-06-11 18:58:24 +0200788 if (!_is_fd_valid(self->fd))
789 return NULL;
790
Greg Ward2d6f9a92002-12-31 02:54:43 +0000791 return _do_ioctl_1_internal(self->fd, args, "reccontrols",
Greg Wardb69bb3d2002-12-12 17:35:45 +0000792 SOUND_MIXER_READ_RECMASK);
Greg Ward3d9994d2002-12-11 15:12:01 +0000793}
794
795static PyObject *
Greg Warde7037662002-12-30 03:01:48 +0000796oss_mixer_get(oss_mixer_t *self, PyObject *args)
Greg Ward3d9994d2002-12-11 15:12:01 +0000797{
798 int channel, volume;
Guido van Rossum0741f802003-06-02 14:15:34 +0000799
Charles-François Natalia5293082011-06-11 18:58:24 +0200800 if (!_is_fd_valid(self->fd))
801 return NULL;
802
Greg Ward3d9994d2002-12-11 15:12:01 +0000803 /* Can't use _do_ioctl_1 because of encoded arg thingy. */
Greg Warde7037662002-12-30 03:01:48 +0000804 if (!PyArg_ParseTuple(args, "i:get", &channel))
Greg Wardad4d9b92002-12-30 03:02:22 +0000805 return NULL;
Guido van Rossum0741f802003-06-02 14:15:34 +0000806
Greg Ward3d9994d2002-12-11 15:12:01 +0000807 if (channel < 0 || channel > SOUND_MIXER_NRDEVICES) {
Greg Wardad4d9b92002-12-30 03:02:22 +0000808 PyErr_SetString(OSSAudioError, "Invalid mixer channel specified.");
809 return NULL;
Greg Ward3d9994d2002-12-11 15:12:01 +0000810 }
Guido van Rossum0741f802003-06-02 14:15:34 +0000811
Greg Warde7037662002-12-30 03:01:48 +0000812 if (ioctl(self->fd, MIXER_READ(channel), &volume) == -1)
Greg Wardad4d9b92002-12-30 03:02:22 +0000813 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum0741f802003-06-02 14:15:34 +0000814
Greg Warde7037662002-12-30 03:01:48 +0000815 return Py_BuildValue("(ii)", volume & 0xff, (volume & 0xff00) >> 8);
Greg Ward3d9994d2002-12-11 15:12:01 +0000816}
817
818static PyObject *
Greg Warde7037662002-12-30 03:01:48 +0000819oss_mixer_set(oss_mixer_t *self, PyObject *args)
Greg Ward3d9994d2002-12-11 15:12:01 +0000820{
821 int channel, volume, leftVol, rightVol;
Guido van Rossum0741f802003-06-02 14:15:34 +0000822
Charles-François Natalia5293082011-06-11 18:58:24 +0200823 if (!_is_fd_valid(self->fd))
824 return NULL;
825
Greg Ward3d9994d2002-12-11 15:12:01 +0000826 /* Can't use _do_ioctl_1 because of encoded arg thingy. */
Greg Warde7037662002-12-30 03:01:48 +0000827 if (!PyArg_ParseTuple(args, "i(ii):set", &channel, &leftVol, &rightVol))
Greg Wardad4d9b92002-12-30 03:02:22 +0000828 return NULL;
Guido van Rossum0741f802003-06-02 14:15:34 +0000829
Greg Ward3d9994d2002-12-11 15:12:01 +0000830 if (channel < 0 || channel > SOUND_MIXER_NRDEVICES) {
Greg Wardad4d9b92002-12-30 03:02:22 +0000831 PyErr_SetString(OSSAudioError, "Invalid mixer channel specified.");
832 return NULL;
Greg Ward3d9994d2002-12-11 15:12:01 +0000833 }
Guido van Rossum0741f802003-06-02 14:15:34 +0000834
Greg Ward3d9994d2002-12-11 15:12:01 +0000835 if (leftVol < 0 || rightVol < 0 || leftVol > 100 || rightVol > 100) {
Greg Wardad4d9b92002-12-30 03:02:22 +0000836 PyErr_SetString(OSSAudioError, "Volumes must be between 0 and 100.");
837 return NULL;
Greg Ward3d9994d2002-12-11 15:12:01 +0000838 }
839
840 volume = (rightVol << 8) | leftVol;
Guido van Rossum0741f802003-06-02 14:15:34 +0000841
Greg Warde7037662002-12-30 03:01:48 +0000842 if (ioctl(self->fd, MIXER_WRITE(channel), &volume) == -1)
Greg Wardad4d9b92002-12-30 03:02:22 +0000843 return PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossum0741f802003-06-02 14:15:34 +0000844
Greg Warde7037662002-12-30 03:01:48 +0000845 return Py_BuildValue("(ii)", volume & 0xff, (volume & 0xff00) >> 8);
Greg Ward3d9994d2002-12-11 15:12:01 +0000846}
847
848static PyObject *
Greg Wardf05aa102002-12-30 23:19:32 +0000849oss_mixer_get_recsrc(oss_mixer_t *self, PyObject *args)
Greg Ward3d9994d2002-12-11 15:12:01 +0000850{
Charles-François Natalia5293082011-06-11 18:58:24 +0200851 if (!_is_fd_valid(self->fd))
852 return NULL;
853
Greg Wardf05aa102002-12-30 23:19:32 +0000854 return _do_ioctl_1_internal(self->fd, args, "get_recsrc",
Greg Ward3d9994d2002-12-11 15:12:01 +0000855 SOUND_MIXER_READ_RECSRC);
856}
857
858static PyObject *
Greg Wardf05aa102002-12-30 23:19:32 +0000859oss_mixer_set_recsrc(oss_mixer_t *self, PyObject *args)
Greg Ward3d9994d2002-12-11 15:12:01 +0000860{
Charles-François Natalia5293082011-06-11 18:58:24 +0200861 if (!_is_fd_valid(self->fd))
862 return NULL;
863
Greg Wardf05aa102002-12-30 23:19:32 +0000864 return _do_ioctl_1(self->fd, args, "set_recsrc",
Greg Ward3d9994d2002-12-11 15:12:01 +0000865 SOUND_MIXER_WRITE_RECSRC);
866}
867
868
Greg Wardda1cacb2002-12-31 03:02:23 +0000869/* ----------------------------------------------------------------------
870 * Method tables and other bureaucracy
871 */
872
Greg Ward8c6b6a92002-12-11 14:43:13 +0000873static PyMethodDef oss_methods[] = {
Greg Ward131bce02002-11-30 22:56:44 +0000874 /* Regular file methods */
Greg Wardad4d9b92002-12-30 03:02:22 +0000875 { "read", (PyCFunction)oss_read, METH_VARARGS },
876 { "write", (PyCFunction)oss_write, METH_VARARGS },
877 { "writeall", (PyCFunction)oss_writeall, METH_VARARGS },
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000878 { "close", (PyCFunction)oss_close, METH_NOARGS },
879 { "fileno", (PyCFunction)oss_fileno, METH_NOARGS },
Greg Ward131bce02002-11-30 22:56:44 +0000880
881 /* Simple ioctl wrappers */
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000882 { "nonblock", (PyCFunction)oss_nonblock, METH_NOARGS },
Greg Wardad4d9b92002-12-30 03:02:22 +0000883 { "setfmt", (PyCFunction)oss_setfmt, METH_VARARGS },
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000884 { "getfmts", (PyCFunction)oss_getfmts, METH_NOARGS },
Greg Ward8c6b6a92002-12-11 14:43:13 +0000885 { "channels", (PyCFunction)oss_channels, METH_VARARGS },
886 { "speed", (PyCFunction)oss_speed, METH_VARARGS },
Greg Wardad4d9b92002-12-30 03:02:22 +0000887 { "sync", (PyCFunction)oss_sync, METH_VARARGS },
888 { "reset", (PyCFunction)oss_reset, METH_VARARGS },
889 { "post", (PyCFunction)oss_post, METH_VARARGS },
Greg Ward131bce02002-11-30 22:56:44 +0000890
891 /* Convenience methods -- wrap a couple of ioctls together */
Greg Wardad4d9b92002-12-30 03:02:22 +0000892 { "setparameters", (PyCFunction)oss_setparameters, METH_VARARGS },
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000893 { "bufsize", (PyCFunction)oss_bufsize, METH_NOARGS },
894 { "obufcount", (PyCFunction)oss_obufcount, METH_NOARGS },
895 { "obuffree", (PyCFunction)oss_obuffree, METH_NOARGS },
896 { "getptr", (PyCFunction)oss_getptr, METH_NOARGS },
Greg Ward131bce02002-11-30 22:56:44 +0000897
898 /* Aliases for backwards compatibility */
Greg Wardad4d9b92002-12-30 03:02:22 +0000899 { "flush", (PyCFunction)oss_sync, METH_VARARGS },
Greg Ward131bce02002-11-30 22:56:44 +0000900
Georg Brandl1e908af2010-10-23 17:31:52 +0000901 /* Support for the context manager protocol */
Georg Brandl770a2be2010-10-24 20:47:32 +0000902 { "__enter__", oss_self, METH_NOARGS },
903 { "__exit__", oss_exit, METH_VARARGS },
Georg Brandl1e908af2010-10-23 17:31:52 +0000904
Greg Wardad4d9b92002-12-30 03:02:22 +0000905 { NULL, NULL} /* sentinel */
Greg Ward04613a92002-11-30 22:47:45 +0000906};
907
Greg Ward3d9994d2002-12-11 15:12:01 +0000908static PyMethodDef oss_mixer_methods[] = {
909 /* Regular file method - OSS mixers are ioctl-only interface */
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000910 { "close", (PyCFunction)oss_mixer_close, METH_NOARGS },
911 { "fileno", (PyCFunction)oss_mixer_fileno, METH_NOARGS },
Greg Ward3d9994d2002-12-11 15:12:01 +0000912
Georg Brandl1e908af2010-10-23 17:31:52 +0000913 /* Support for the context manager protocol */
Georg Brandl770a2be2010-10-24 20:47:32 +0000914 { "__enter__", oss_self, METH_NOARGS },
915 { "__exit__", oss_exit, METH_VARARGS },
Georg Brandl1e908af2010-10-23 17:31:52 +0000916
Greg Ward3d9994d2002-12-11 15:12:01 +0000917 /* Simple ioctl wrappers */
Guido van Rossum0741f802003-06-02 14:15:34 +0000918 { "controls", (PyCFunction)oss_mixer_controls, METH_VARARGS },
Greg Ward2d6f9a92002-12-31 02:54:43 +0000919 { "stereocontrols", (PyCFunction)oss_mixer_stereocontrols, METH_VARARGS},
Guido van Rossum0741f802003-06-02 14:15:34 +0000920 { "reccontrols", (PyCFunction)oss_mixer_reccontrols, METH_VARARGS},
Greg Wardad4d9b92002-12-30 03:02:22 +0000921 { "get", (PyCFunction)oss_mixer_get, METH_VARARGS },
922 { "set", (PyCFunction)oss_mixer_set, METH_VARARGS },
Greg Wardf05aa102002-12-30 23:19:32 +0000923 { "get_recsrc", (PyCFunction)oss_mixer_get_recsrc, METH_VARARGS },
924 { "set_recsrc", (PyCFunction)oss_mixer_set_recsrc, METH_VARARGS },
Guido van Rossum0741f802003-06-02 14:15:34 +0000925
Greg Wardad4d9b92002-12-30 03:02:22 +0000926 { NULL, NULL}
Greg Ward3d9994d2002-12-11 15:12:01 +0000927};
928
Greg Ward04613a92002-11-30 22:47:45 +0000929static PyObject *
Amaury Forgeot d'Arc1f900f12008-07-02 22:38:47 +0000930oss_getattro(oss_audio_t *self, PyObject *nameobj)
Greg Ward04613a92002-11-30 22:47:45 +0000931{
Amaury Forgeot d'Arc1f900f12008-07-02 22:38:47 +0000932 char *name = "";
Greg Ward50682d02005-03-07 01:41:11 +0000933 PyObject * rval = NULL;
Amaury Forgeot d'Arc1f900f12008-07-02 22:38:47 +0000934
935 if (PyUnicode_Check(nameobj))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000936 name = _PyUnicode_AsString(nameobj);
937
Greg Ward50682d02005-03-07 01:41:11 +0000938 if (strcmp(name, "closed") == 0) {
939 rval = (self->fd == -1) ? Py_True : Py_False;
940 Py_INCREF(rval);
941 }
942 else if (strcmp(name, "name") == 0) {
Neal Norwitz8abd2e62007-08-26 04:57:08 +0000943 rval = PyUnicode_FromString(self->devicename);
Greg Ward50682d02005-03-07 01:41:11 +0000944 }
945 else if (strcmp(name, "mode") == 0) {
946 /* No need for a "default" in this switch: from newossobject(),
947 self->mode can only be one of these three values. */
948 switch(self->mode) {
949 case O_RDONLY:
Neal Norwitz8abd2e62007-08-26 04:57:08 +0000950 rval = PyUnicode_FromString("r");
Greg Ward50682d02005-03-07 01:41:11 +0000951 break;
952 case O_RDWR:
Neal Norwitz8abd2e62007-08-26 04:57:08 +0000953 rval = PyUnicode_FromString("rw");
Greg Ward50682d02005-03-07 01:41:11 +0000954 break;
955 case O_WRONLY:
Neal Norwitz8abd2e62007-08-26 04:57:08 +0000956 rval = PyUnicode_FromString("w");
Greg Ward50682d02005-03-07 01:41:11 +0000957 break;
958 }
959 }
960 else {
Amaury Forgeot d'Arc1f900f12008-07-02 22:38:47 +0000961 rval = PyObject_GenericGetAttr((PyObject *)self, nameobj);
Greg Ward50682d02005-03-07 01:41:11 +0000962 }
963 return rval;
Greg Ward04613a92002-11-30 22:47:45 +0000964}
965
Greg Ward499b73e2002-12-31 03:04:52 +0000966static PyTypeObject OSSAudioType = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000967 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Greg Ward9a568eb2002-11-30 23:20:09 +0000968 "ossaudiodev.oss_audio_device", /*tp_name*/
Greg Ward499b73e2002-12-31 03:04:52 +0000969 sizeof(oss_audio_t), /*tp_size*/
Greg Wardad4d9b92002-12-30 03:02:22 +0000970 0, /*tp_itemsize*/
Greg Ward04613a92002-11-30 22:47:45 +0000971 /* methods */
Greg Wardad4d9b92002-12-30 03:02:22 +0000972 (destructor)oss_dealloc, /*tp_dealloc*/
973 0, /*tp_print*/
Amaury Forgeot d'Arc1f900f12008-07-02 22:38:47 +0000974 0, /*tp_getattr*/
Greg Wardad4d9b92002-12-30 03:02:22 +0000975 0, /*tp_setattr*/
Mark Dickinsone94c6792009-02-02 20:36:42 +0000976 0, /*tp_reserved*/
Greg Wardad4d9b92002-12-30 03:02:22 +0000977 0, /*tp_repr*/
Amaury Forgeot d'Arc1f900f12008-07-02 22:38:47 +0000978 0, /*tp_as_number*/
979 0, /*tp_as_sequence*/
980 0, /*tp_as_mapping*/
981 0, /*tp_hash*/
982 0, /*tp_call*/
983 0, /*tp_str*/
984 (getattrofunc)oss_getattro, /*tp_getattro*/
985 0, /*tp_setattro*/
986 0, /*tp_as_buffer*/
987 Py_TPFLAGS_DEFAULT, /*tp_flags*/
988 0, /*tp_doc*/
989 0, /*tp_traverse*/
990 0, /*tp_clear*/
991 0, /*tp_richcompare*/
992 0, /*tp_weaklistoffset*/
993 0, /*tp_iter*/
994 0, /*tp_iternext*/
995 oss_methods, /*tp_methods*/
Greg Ward04613a92002-11-30 22:47:45 +0000996};
997
Greg Ward3d9994d2002-12-11 15:12:01 +0000998static PyTypeObject OSSMixerType = {
Martin v. Löwis9f2e3462007-07-21 17:22:18 +0000999 PyVarObject_HEAD_INIT(&PyType_Type, 0)
Greg Ward3d9994d2002-12-11 15:12:01 +00001000 "ossaudiodev.oss_mixer_device", /*tp_name*/
Greg Wardad4d9b92002-12-30 03:02:22 +00001001 sizeof(oss_mixer_t), /*tp_size*/
1002 0, /*tp_itemsize*/
Greg Ward3d9994d2002-12-11 15:12:01 +00001003 /* methods */
1004 (destructor)oss_mixer_dealloc, /*tp_dealloc*/
Greg Wardad4d9b92002-12-30 03:02:22 +00001005 0, /*tp_print*/
Amaury Forgeot d'Arc1f900f12008-07-02 22:38:47 +00001006 0, /*tp_getattr*/
Greg Wardad4d9b92002-12-30 03:02:22 +00001007 0, /*tp_setattr*/
Mark Dickinsone94c6792009-02-02 20:36:42 +00001008 0, /*tp_reserved*/
Greg Wardad4d9b92002-12-30 03:02:22 +00001009 0, /*tp_repr*/
Amaury Forgeot d'Arc1f900f12008-07-02 22:38:47 +00001010 0, /*tp_as_number*/
1011 0, /*tp_as_sequence*/
1012 0, /*tp_as_mapping*/
1013 0, /*tp_hash*/
1014 0, /*tp_call*/
1015 0, /*tp_str*/
1016 0, /*tp_getattro*/
1017 0, /*tp_setattro*/
1018 0, /*tp_as_buffer*/
1019 Py_TPFLAGS_DEFAULT, /*tp_flags*/
1020 0, /*tp_doc*/
1021 0, /*tp_traverse*/
1022 0, /*tp_clear*/
1023 0, /*tp_richcompare*/
1024 0, /*tp_weaklistoffset*/
1025 0, /*tp_iter*/
1026 0, /*tp_iternext*/
1027 oss_mixer_methods, /*tp_methods*/
Greg Ward3d9994d2002-12-11 15:12:01 +00001028};
1029
1030
Greg Ward04613a92002-11-30 22:47:45 +00001031static PyObject *
Greg Ward9a568eb2002-11-30 23:20:09 +00001032ossopen(PyObject *self, PyObject *args)
Greg Ward04613a92002-11-30 22:47:45 +00001033{
Greg Ward8c6b6a92002-12-11 14:43:13 +00001034 return (PyObject *)newossobject(args);
Greg Ward04613a92002-11-30 22:47:45 +00001035}
1036
Greg Ward3d9994d2002-12-11 15:12:01 +00001037static PyObject *
1038ossopenmixer(PyObject *self, PyObject *args)
1039{
1040 return (PyObject *)newossmixerobject(args);
1041}
1042
Greg Ward9a568eb2002-11-30 23:20:09 +00001043static PyMethodDef ossaudiodev_methods[] = {
1044 { "open", ossopen, METH_VARARGS },
Greg Ward3d9994d2002-12-11 15:12:01 +00001045 { "openmixer", ossopenmixer, METH_VARARGS },
Greg Ward04613a92002-11-30 22:47:45 +00001046 { 0, 0 },
1047};
1048
Greg Ward1e0f57d2002-11-30 23:05:26 +00001049
1050#define _EXPORT_INT(mod, name) \
Martin v. Löwis1a214512008-06-11 05:26:20 +00001051 if (PyModule_AddIntConstant(mod, #name, (long) (name)) == -1) return NULL;
Greg Ward1e0f57d2002-11-30 23:05:26 +00001052
Greg Ward744f0fd2002-12-31 03:23:59 +00001053
1054static char *control_labels[] = SOUND_DEVICE_LABELS;
1055static char *control_names[] = SOUND_DEVICE_NAMES;
1056
1057
1058static int
1059build_namelists (PyObject *module)
1060{
1061 PyObject *labels;
1062 PyObject *names;
1063 PyObject *s;
1064 int num_controls;
1065 int i;
1066
Victor Stinner63941882011-09-29 00:42:28 +02001067 num_controls = Py_ARRAY_LENGTH(control_labels);
1068 assert(num_controls == Py_ARRAY_LENGTH(control_names));
Greg Ward744f0fd2002-12-31 03:23:59 +00001069
1070 labels = PyList_New(num_controls);
1071 names = PyList_New(num_controls);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001072 if (labels == NULL || names == NULL)
1073 goto error2;
Greg Ward744f0fd2002-12-31 03:23:59 +00001074 for (i = 0; i < num_controls; i++) {
Neal Norwitz8abd2e62007-08-26 04:57:08 +00001075 s = PyUnicode_FromString(control_labels[i]);
Greg Ward744f0fd2002-12-31 03:23:59 +00001076 if (s == NULL)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001077 goto error2;
Greg Ward744f0fd2002-12-31 03:23:59 +00001078 PyList_SET_ITEM(labels, i, s);
Guido van Rossum0741f802003-06-02 14:15:34 +00001079
Neal Norwitz8abd2e62007-08-26 04:57:08 +00001080 s = PyUnicode_FromString(control_names[i]);
Greg Ward744f0fd2002-12-31 03:23:59 +00001081 if (s == NULL)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001082 goto error2;
Greg Ward744f0fd2002-12-31 03:23:59 +00001083 PyList_SET_ITEM(names, i, s);
1084 }
1085
1086 if (PyModule_AddObject(module, "control_labels", labels) == -1)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001087 goto error2;
Greg Ward744f0fd2002-12-31 03:23:59 +00001088 if (PyModule_AddObject(module, "control_names", names) == -1)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001089 goto error1;
Greg Ward744f0fd2002-12-31 03:23:59 +00001090
1091 return 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001092
1093error2:
1094 Py_XDECREF(labels);
1095error1:
1096 Py_XDECREF(names);
1097 return -1;
Guido van Rossum0741f802003-06-02 14:15:34 +00001098}
Greg Ward744f0fd2002-12-31 03:23:59 +00001099
1100
Martin v. Löwis1a214512008-06-11 05:26:20 +00001101static struct PyModuleDef ossaudiodevmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001102 PyModuleDef_HEAD_INIT,
1103 "ossaudiodev",
1104 NULL,
1105 -1,
1106 ossaudiodev_methods,
1107 NULL,
1108 NULL,
1109 NULL,
1110 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +00001111};
1112
Antoine Pitrou39b35432010-03-23 00:25:54 +00001113PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +00001114PyInit_ossaudiodev(void)
Greg Ward04613a92002-11-30 22:47:45 +00001115{
1116 PyObject *m;
Guido van Rossum0741f802003-06-02 14:15:34 +00001117
Antoine Pitrou39b35432010-03-23 00:25:54 +00001118 if (PyType_Ready(&OSSAudioType) < 0)
1119 return NULL;
1120
1121 if (PyType_Ready(&OSSMixerType) < 0)
1122 return NULL;
1123
Martin v. Löwis1a214512008-06-11 05:26:20 +00001124 m = PyModule_Create(&ossaudiodevmodule);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00001125 if (m == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001126 return NULL;
Greg Ward04613a92002-11-30 22:47:45 +00001127
Guido van Rossum0741f802003-06-02 14:15:34 +00001128 OSSAudioError = PyErr_NewException("ossaudiodev.OSSAudioError",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001129 NULL, NULL);
Greg Wardd6769062003-05-29 21:53:06 +00001130 if (OSSAudioError) {
Guido van Rossum0741f802003-06-02 14:15:34 +00001131 /* Each call to PyModule_AddObject decrefs it; compensate: */
1132 Py_INCREF(OSSAudioError);
1133 Py_INCREF(OSSAudioError);
Greg Wardad4d9b92002-12-30 03:02:22 +00001134 PyModule_AddObject(m, "error", OSSAudioError);
Greg Wardd6769062003-05-29 21:53:06 +00001135 PyModule_AddObject(m, "OSSAudioError", OSSAudioError);
1136 }
Greg Ward04613a92002-11-30 22:47:45 +00001137
Greg Ward744f0fd2002-12-31 03:23:59 +00001138 /* Build 'control_labels' and 'control_names' lists and add them
1139 to the module. */
1140 if (build_namelists(m) == -1) /* XXX what to do here? */
Martin v. Löwis1a214512008-06-11 05:26:20 +00001141 return NULL;
Greg Ward744f0fd2002-12-31 03:23:59 +00001142
Greg Ward1e0f57d2002-11-30 23:05:26 +00001143 /* Expose the audio format numbers -- essential! */
1144 _EXPORT_INT(m, AFMT_QUERY);
1145 _EXPORT_INT(m, AFMT_MU_LAW);
1146 _EXPORT_INT(m, AFMT_A_LAW);
1147 _EXPORT_INT(m, AFMT_IMA_ADPCM);
1148 _EXPORT_INT(m, AFMT_U8);
1149 _EXPORT_INT(m, AFMT_S16_LE);
1150 _EXPORT_INT(m, AFMT_S16_BE);
1151 _EXPORT_INT(m, AFMT_S8);
1152 _EXPORT_INT(m, AFMT_U16_LE);
1153 _EXPORT_INT(m, AFMT_U16_BE);
1154 _EXPORT_INT(m, AFMT_MPEG);
Andrew M. Kuchlingfe62bc92003-02-13 13:27:07 +00001155#ifdef AFMT_AC3
Greg Ward1e0f57d2002-11-30 23:05:26 +00001156 _EXPORT_INT(m, AFMT_AC3);
Andrew M. Kuchlingfe62bc92003-02-13 13:27:07 +00001157#endif
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001158#ifdef AFMT_S16_NE
Greg Ward1e0f57d2002-11-30 23:05:26 +00001159 _EXPORT_INT(m, AFMT_S16_NE);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001160#endif
Greg Ward0f260542005-03-28 02:40:46 +00001161#ifdef AFMT_U16_NE
1162 _EXPORT_INT(m, AFMT_U16_NE);
1163#endif
1164#ifdef AFMT_S32_LE
1165 _EXPORT_INT(m, AFMT_S32_LE);
1166#endif
1167#ifdef AFMT_S32_BE
1168 _EXPORT_INT(m, AFMT_S32_BE);
1169#endif
1170#ifdef AFMT_MPEG
1171 _EXPORT_INT(m, AFMT_MPEG);
1172#endif
Guido van Rossum0741f802003-06-02 14:15:34 +00001173
Greg Ward37897c22002-12-30 02:43:36 +00001174 /* Expose the sound mixer device numbers. */
Greg Ward7b43c682002-12-30 02:29:28 +00001175 _EXPORT_INT(m, SOUND_MIXER_NRDEVICES);
Greg Ward3d9994d2002-12-11 15:12:01 +00001176 _EXPORT_INT(m, SOUND_MIXER_VOLUME);
1177 _EXPORT_INT(m, SOUND_MIXER_BASS);
1178 _EXPORT_INT(m, SOUND_MIXER_TREBLE);
1179 _EXPORT_INT(m, SOUND_MIXER_SYNTH);
1180 _EXPORT_INT(m, SOUND_MIXER_PCM);
1181 _EXPORT_INT(m, SOUND_MIXER_SPEAKER);
1182 _EXPORT_INT(m, SOUND_MIXER_LINE);
1183 _EXPORT_INT(m, SOUND_MIXER_MIC);
1184 _EXPORT_INT(m, SOUND_MIXER_CD);
1185 _EXPORT_INT(m, SOUND_MIXER_IMIX);
1186 _EXPORT_INT(m, SOUND_MIXER_ALTPCM);
1187 _EXPORT_INT(m, SOUND_MIXER_RECLEV);
1188 _EXPORT_INT(m, SOUND_MIXER_IGAIN);
1189 _EXPORT_INT(m, SOUND_MIXER_OGAIN);
1190 _EXPORT_INT(m, SOUND_MIXER_LINE1);
1191 _EXPORT_INT(m, SOUND_MIXER_LINE2);
1192 _EXPORT_INT(m, SOUND_MIXER_LINE3);
Greg Wardfd0283e2004-05-11 01:34:55 +00001193#ifdef SOUND_MIXER_DIGITAL1
Greg Ward3d9994d2002-12-11 15:12:01 +00001194 _EXPORT_INT(m, SOUND_MIXER_DIGITAL1);
Greg Wardfd0283e2004-05-11 01:34:55 +00001195#endif
1196#ifdef SOUND_MIXER_DIGITAL2
Greg Ward3d9994d2002-12-11 15:12:01 +00001197 _EXPORT_INT(m, SOUND_MIXER_DIGITAL2);
Greg Wardfd0283e2004-05-11 01:34:55 +00001198#endif
1199#ifdef SOUND_MIXER_DIGITAL3
Greg Ward3d9994d2002-12-11 15:12:01 +00001200 _EXPORT_INT(m, SOUND_MIXER_DIGITAL3);
Greg Wardfd0283e2004-05-11 01:34:55 +00001201#endif
1202#ifdef SOUND_MIXER_PHONEIN
Greg Ward3d9994d2002-12-11 15:12:01 +00001203 _EXPORT_INT(m, SOUND_MIXER_PHONEIN);
Greg Wardfd0283e2004-05-11 01:34:55 +00001204#endif
1205#ifdef SOUND_MIXER_PHONEOUT
Greg Ward3d9994d2002-12-11 15:12:01 +00001206 _EXPORT_INT(m, SOUND_MIXER_PHONEOUT);
Greg Wardfd0283e2004-05-11 01:34:55 +00001207#endif
1208#ifdef SOUND_MIXER_VIDEO
Greg Ward3d9994d2002-12-11 15:12:01 +00001209 _EXPORT_INT(m, SOUND_MIXER_VIDEO);
Greg Wardfd0283e2004-05-11 01:34:55 +00001210#endif
1211#ifdef SOUND_MIXER_RADIO
Greg Ward3d9994d2002-12-11 15:12:01 +00001212 _EXPORT_INT(m, SOUND_MIXER_RADIO);
Greg Wardfd0283e2004-05-11 01:34:55 +00001213#endif
1214#ifdef SOUND_MIXER_MONITOR
Greg Ward3d9994d2002-12-11 15:12:01 +00001215 _EXPORT_INT(m, SOUND_MIXER_MONITOR);
Greg Wardfd0283e2004-05-11 01:34:55 +00001216#endif
Greg Ward04613a92002-11-30 22:47:45 +00001217
Greg Ward1e0f57d2002-11-30 23:05:26 +00001218 /* Expose all the ioctl numbers for masochists who like to do this
1219 stuff directly. */
1220 _EXPORT_INT(m, SNDCTL_COPR_HALT);
1221 _EXPORT_INT(m, SNDCTL_COPR_LOAD);
1222 _EXPORT_INT(m, SNDCTL_COPR_RCODE);
1223 _EXPORT_INT(m, SNDCTL_COPR_RCVMSG);
1224 _EXPORT_INT(m, SNDCTL_COPR_RDATA);
1225 _EXPORT_INT(m, SNDCTL_COPR_RESET);
1226 _EXPORT_INT(m, SNDCTL_COPR_RUN);
1227 _EXPORT_INT(m, SNDCTL_COPR_SENDMSG);
1228 _EXPORT_INT(m, SNDCTL_COPR_WCODE);
1229 _EXPORT_INT(m, SNDCTL_COPR_WDATA);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001230#ifdef SNDCTL_DSP_BIND_CHANNEL
Greg Ward1e0f57d2002-11-30 23:05:26 +00001231 _EXPORT_INT(m, SNDCTL_DSP_BIND_CHANNEL);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001232#endif
Greg Ward1e0f57d2002-11-30 23:05:26 +00001233 _EXPORT_INT(m, SNDCTL_DSP_CHANNELS);
1234 _EXPORT_INT(m, SNDCTL_DSP_GETBLKSIZE);
1235 _EXPORT_INT(m, SNDCTL_DSP_GETCAPS);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001236#ifdef SNDCTL_DSP_GETCHANNELMASK
Greg Ward1e0f57d2002-11-30 23:05:26 +00001237 _EXPORT_INT(m, SNDCTL_DSP_GETCHANNELMASK);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001238#endif
Greg Ward1e0f57d2002-11-30 23:05:26 +00001239 _EXPORT_INT(m, SNDCTL_DSP_GETFMTS);
1240 _EXPORT_INT(m, SNDCTL_DSP_GETIPTR);
1241 _EXPORT_INT(m, SNDCTL_DSP_GETISPACE);
Greg Wardfd0283e2004-05-11 01:34:55 +00001242#ifdef SNDCTL_DSP_GETODELAY
Greg Ward1e0f57d2002-11-30 23:05:26 +00001243 _EXPORT_INT(m, SNDCTL_DSP_GETODELAY);
Greg Wardfd0283e2004-05-11 01:34:55 +00001244#endif
Greg Ward1e0f57d2002-11-30 23:05:26 +00001245 _EXPORT_INT(m, SNDCTL_DSP_GETOPTR);
1246 _EXPORT_INT(m, SNDCTL_DSP_GETOSPACE);
Neal Norwitzfaa7b9b2003-01-10 21:27:54 +00001247#ifdef SNDCTL_DSP_GETSPDIF
Greg Ward1e0f57d2002-11-30 23:05:26 +00001248 _EXPORT_INT(m, SNDCTL_DSP_GETSPDIF);
Neal Norwitzfaa7b9b2003-01-10 21:27:54 +00001249#endif
Greg Ward1e0f57d2002-11-30 23:05:26 +00001250 _EXPORT_INT(m, SNDCTL_DSP_GETTRIGGER);
1251 _EXPORT_INT(m, SNDCTL_DSP_MAPINBUF);
1252 _EXPORT_INT(m, SNDCTL_DSP_MAPOUTBUF);
1253 _EXPORT_INT(m, SNDCTL_DSP_NONBLOCK);
1254 _EXPORT_INT(m, SNDCTL_DSP_POST);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001255#ifdef SNDCTL_DSP_PROFILE
Greg Ward1e0f57d2002-11-30 23:05:26 +00001256 _EXPORT_INT(m, SNDCTL_DSP_PROFILE);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001257#endif
Greg Ward1e0f57d2002-11-30 23:05:26 +00001258 _EXPORT_INT(m, SNDCTL_DSP_RESET);
1259 _EXPORT_INT(m, SNDCTL_DSP_SAMPLESIZE);
1260 _EXPORT_INT(m, SNDCTL_DSP_SETDUPLEX);
1261 _EXPORT_INT(m, SNDCTL_DSP_SETFMT);
1262 _EXPORT_INT(m, SNDCTL_DSP_SETFRAGMENT);
Neal Norwitzfaa7b9b2003-01-10 21:27:54 +00001263#ifdef SNDCTL_DSP_SETSPDIF
Greg Ward1e0f57d2002-11-30 23:05:26 +00001264 _EXPORT_INT(m, SNDCTL_DSP_SETSPDIF);
Neal Norwitzfaa7b9b2003-01-10 21:27:54 +00001265#endif
Greg Ward1e0f57d2002-11-30 23:05:26 +00001266 _EXPORT_INT(m, SNDCTL_DSP_SETSYNCRO);
1267 _EXPORT_INT(m, SNDCTL_DSP_SETTRIGGER);
1268 _EXPORT_INT(m, SNDCTL_DSP_SPEED);
1269 _EXPORT_INT(m, SNDCTL_DSP_STEREO);
1270 _EXPORT_INT(m, SNDCTL_DSP_SUBDIVIDE);
1271 _EXPORT_INT(m, SNDCTL_DSP_SYNC);
1272 _EXPORT_INT(m, SNDCTL_FM_4OP_ENABLE);
1273 _EXPORT_INT(m, SNDCTL_FM_LOAD_INSTR);
1274 _EXPORT_INT(m, SNDCTL_MIDI_INFO);
1275 _EXPORT_INT(m, SNDCTL_MIDI_MPUCMD);
1276 _EXPORT_INT(m, SNDCTL_MIDI_MPUMODE);
1277 _EXPORT_INT(m, SNDCTL_MIDI_PRETIME);
1278 _EXPORT_INT(m, SNDCTL_SEQ_CTRLRATE);
1279 _EXPORT_INT(m, SNDCTL_SEQ_GETINCOUNT);
1280 _EXPORT_INT(m, SNDCTL_SEQ_GETOUTCOUNT);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001281#ifdef SNDCTL_SEQ_GETTIME
Greg Ward1e0f57d2002-11-30 23:05:26 +00001282 _EXPORT_INT(m, SNDCTL_SEQ_GETTIME);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001283#endif
Greg Ward1e0f57d2002-11-30 23:05:26 +00001284 _EXPORT_INT(m, SNDCTL_SEQ_NRMIDIS);
1285 _EXPORT_INT(m, SNDCTL_SEQ_NRSYNTHS);
1286 _EXPORT_INT(m, SNDCTL_SEQ_OUTOFBAND);
1287 _EXPORT_INT(m, SNDCTL_SEQ_PANIC);
1288 _EXPORT_INT(m, SNDCTL_SEQ_PERCMODE);
1289 _EXPORT_INT(m, SNDCTL_SEQ_RESET);
1290 _EXPORT_INT(m, SNDCTL_SEQ_RESETSAMPLES);
1291 _EXPORT_INT(m, SNDCTL_SEQ_SYNC);
1292 _EXPORT_INT(m, SNDCTL_SEQ_TESTMIDI);
1293 _EXPORT_INT(m, SNDCTL_SEQ_THRESHOLD);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001294#ifdef SNDCTL_SYNTH_CONTROL
Greg Ward1e0f57d2002-11-30 23:05:26 +00001295 _EXPORT_INT(m, SNDCTL_SYNTH_CONTROL);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001296#endif
1297#ifdef SNDCTL_SYNTH_ID
Greg Ward1e0f57d2002-11-30 23:05:26 +00001298 _EXPORT_INT(m, SNDCTL_SYNTH_ID);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001299#endif
Greg Ward1e0f57d2002-11-30 23:05:26 +00001300 _EXPORT_INT(m, SNDCTL_SYNTH_INFO);
1301 _EXPORT_INT(m, SNDCTL_SYNTH_MEMAVL);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001302#ifdef SNDCTL_SYNTH_REMOVESAMPLE
Greg Ward1e0f57d2002-11-30 23:05:26 +00001303 _EXPORT_INT(m, SNDCTL_SYNTH_REMOVESAMPLE);
Neal Norwitzd156c2d2003-02-02 17:59:06 +00001304#endif
Greg Ward1e0f57d2002-11-30 23:05:26 +00001305 _EXPORT_INT(m, SNDCTL_TMR_CONTINUE);
1306 _EXPORT_INT(m, SNDCTL_TMR_METRONOME);
1307 _EXPORT_INT(m, SNDCTL_TMR_SELECT);
1308 _EXPORT_INT(m, SNDCTL_TMR_SOURCE);
1309 _EXPORT_INT(m, SNDCTL_TMR_START);
1310 _EXPORT_INT(m, SNDCTL_TMR_STOP);
1311 _EXPORT_INT(m, SNDCTL_TMR_TEMPO);
1312 _EXPORT_INT(m, SNDCTL_TMR_TIMEBASE);
Martin v. Löwis1a214512008-06-11 05:26:20 +00001313 return m;
Greg Ward04613a92002-11-30 22:47:45 +00001314}