blob: c1c7363c83b9c210335c33474f40375fdc1e70e1 [file] [log] [blame]
Guido van Rossumb130dc72000-03-30 23:25:49 +00001/* Hey Emacs, this is -*-C-*-
2 ******************************************************************************
3 * linuxaudiodev.c -- Linux audio device for python.
4 *
5 * Author : Peter Bosch
6 * Created On : Thu Mar 2 21:10:33 2000
Guido van Rossumb130dc72000-03-30 23:25:49 +00007 * Status : Unknown, Use with caution!
8 *
9 * Unless other notices are present in any part of this file
10 * explicitly claiming copyrights for other people and/or
11 * organizations, the contents of this file is fully copyright
12 * (C) 2000 Peter Bosch, all rights reserved.
13 ******************************************************************************
14 */
15
16#include "Python.h"
17#include "structmember.h"
18
Guido van Rossumb130dc72000-03-30 23:25:49 +000019#ifdef HAVE_FCNTL_H
20#include <fcntl.h>
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000021#else
22#define O_RDONLY 00
23#define O_WRONLY 01
Guido van Rossumb130dc72000-03-30 23:25:49 +000024#endif
25
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000026
Guido van Rossumb130dc72000-03-30 23:25:49 +000027#include <sys/ioctl.h>
Jeremy Hyltona3895c02000-08-31 18:11:07 +000028#if defined(linux)
Guido van Rossumb130dc72000-03-30 23:25:49 +000029#include <linux/soundcard.h>
30
31typedef unsigned long uint32_t;
32
Jeremy Hyltona3895c02000-08-31 18:11:07 +000033#elif defined(__FreeBSD__)
34#include <machine/soundcard.h>
35
36#ifndef SNDCTL_DSP_CHANNELS
37#define SNDCTL_DSP_CHANNELS SOUND_PCM_WRITE_CHANNELS
38#endif
39
40#endif
41
Guido van Rossumb130dc72000-03-30 23:25:49 +000042typedef struct {
Neal Norwitz3f046482006-01-07 21:19:49 +000043 PyObject_HEAD
Fred Drakeda940d82000-07-08 06:05:58 +000044 int x_fd; /* The open file */
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000045 int x_mode; /* file mode */
Fred Drakeda940d82000-07-08 06:05:58 +000046 int x_icount; /* Input count */
47 int x_ocount; /* Output count */
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000048 uint32_t x_afmts; /* Audio formats supported by hardware*/
Guido van Rossumb130dc72000-03-30 23:25:49 +000049} lad_t;
50
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000051/* XXX several format defined in soundcard.h are not supported,
52 including _NE (native endian) options and S32 options
53*/
54
Guido van Rossumb130dc72000-03-30 23:25:49 +000055static struct {
Fred Drakeda940d82000-07-08 06:05:58 +000056 int a_bps;
57 uint32_t a_fmt;
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000058 char *a_name;
Guido van Rossumb130dc72000-03-30 23:25:49 +000059} audio_types[] = {
Ka-Ping Yee27ac0d12001-01-15 22:21:39 +000060 { 8, AFMT_MU_LAW, "logarithmic mu-law 8-bit audio" },
61 { 8, AFMT_A_LAW, "logarithmic A-law 8-bit audio" },
62 { 8, AFMT_U8, "linear unsigned 8-bit audio" },
63 { 8, AFMT_S8, "linear signed 8-bit audio" },
64 { 16, AFMT_U16_BE, "linear unsigned 16-bit big-endian audio" },
65 { 16, AFMT_U16_LE, "linear unsigned 16-bit little-endian audio" },
66 { 16, AFMT_S16_BE, "linear signed 16-bit big-endian audio" },
67 { 16, AFMT_S16_LE, "linear signed 16-bit little-endian audio" },
Ka-Ping Yee7dfe6e32001-01-17 19:31:29 +000068 { 16, AFMT_S16_NE, "linear signed 16-bit native-endian audio" },
Guido van Rossumb130dc72000-03-30 23:25:49 +000069};
70
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000071static int n_audio_types = sizeof(audio_types) / sizeof(audio_types[0]);
Guido van Rossumb130dc72000-03-30 23:25:49 +000072
Jeremy Hylton938ace62002-07-17 16:30:39 +000073static PyTypeObject Ladtype;
Guido van Rossumb130dc72000-03-30 23:25:49 +000074
75static PyObject *LinuxAudioError;
76
77static lad_t *
78newladobject(PyObject *arg)
79{
Fred Drakeda940d82000-07-08 06:05:58 +000080 lad_t *xp;
81 int fd, afmts, imode;
Greg Warda34b1a02002-11-27 22:19:15 +000082 char *basedev = NULL;
83 char *mode = NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +000084
Greg Warda34b1a02002-11-27 22:19:15 +000085 /* Two ways to call linuxaudiodev.open():
86 open(device, mode) (for consistency with builtin open())
87 open(mode) (for backwards compatibility)
88 because the *first* argument is optional, parsing args is
89 a wee bit tricky. */
90 if (!PyArg_ParseTuple(arg, "s|s:open", &basedev, &mode))
91 return NULL;
92 if (mode == NULL) { /* only one arg supplied */
93 mode = basedev;
94 basedev = NULL;
95 }
96
Fred Drakeda940d82000-07-08 06:05:58 +000097 if (strcmp(mode, "r") == 0)
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000098 imode = O_RDONLY;
Fred Drakeda940d82000-07-08 06:05:58 +000099 else if (strcmp(mode, "w") == 0)
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000100 imode = O_WRONLY;
Fred Drakeda940d82000-07-08 06:05:58 +0000101 else {
Ka-Ping Yee27ac0d12001-01-15 22:21:39 +0000102 PyErr_SetString(LinuxAudioError, "mode should be 'r' or 'w'");
Fred Drakeda940d82000-07-08 06:05:58 +0000103 return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000104 }
Guido van Rossumb130dc72000-03-30 23:25:49 +0000105
Fred Drakeda940d82000-07-08 06:05:58 +0000106 /* Open the correct device. The base device name comes from the
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000107 * AUDIODEV environment variable first, then /dev/dsp. The
Fred Drakeda940d82000-07-08 06:05:58 +0000108 * control device tacks "ctl" onto the base device name.
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000109 *
110 * Note that the only difference between /dev/audio and /dev/dsp
111 * is that the former uses logarithmic mu-law encoding and the
112 * latter uses 8-bit unsigned encoding.
Fred Drakeda940d82000-07-08 06:05:58 +0000113 */
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000114
Greg Warda34b1a02002-11-27 22:19:15 +0000115 if (basedev == NULL) { /* called with one arg */
116 basedev = getenv("AUDIODEV");
117 if (basedev == NULL) /* $AUDIODEV not set */
118 basedev = "/dev/dsp";
119 }
Guido van Rossumb130dc72000-03-30 23:25:49 +0000120
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000121 if ((fd = open(basedev, imode)) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000122 PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev);
123 return NULL;
124 }
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000125 if (imode == O_WRONLY && ioctl(fd, SNDCTL_DSP_NONBLOCK, NULL) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000126 PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev);
127 return NULL;
128 }
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000129 if (ioctl(fd, SNDCTL_DSP_GETFMTS, &afmts) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000130 PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev);
131 return NULL;
132 }
133 /* Create and initialize the object */
134 if ((xp = PyObject_New(lad_t, &Ladtype)) == NULL) {
135 close(fd);
136 return NULL;
137 }
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000138 xp->x_fd = fd;
139 xp->x_mode = imode;
Fred Drakeda940d82000-07-08 06:05:58 +0000140 xp->x_icount = xp->x_ocount = 0;
141 xp->x_afmts = afmts;
142 return xp;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000143}
144
145static void
146lad_dealloc(lad_t *xp)
147{
Barry Warsaw4ddd8202000-08-18 05:10:45 +0000148 /* if already closed, don't reclose it */
149 if (xp->x_fd != -1)
150 close(xp->x_fd);
Fred Drakeda940d82000-07-08 06:05:58 +0000151 PyObject_Del(xp);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000152}
153
154static PyObject *
155lad_read(lad_t *self, PyObject *args)
156{
Fred Drakeda940d82000-07-08 06:05:58 +0000157 int size, count;
158 char *cp;
159 PyObject *rv;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000160
Fred Drakeda940d82000-07-08 06:05:58 +0000161 if (!PyArg_ParseTuple(args, "i:read", &size))
162 return NULL;
163 rv = PyString_FromStringAndSize(NULL, size);
164 if (rv == NULL)
165 return NULL;
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000166 cp = PyString_AS_STRING(rv);
Fred Drakeda940d82000-07-08 06:05:58 +0000167 if ((count = read(self->x_fd, cp, size)) < 0) {
168 PyErr_SetFromErrno(LinuxAudioError);
169 Py_DECREF(rv);
170 return NULL;
171 }
172 self->x_icount += count;
Tim Peters5de98422002-04-27 18:44:32 +0000173 _PyString_Resize(&rv, count);
Fred Drakeda940d82000-07-08 06:05:58 +0000174 return rv;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000175}
176
177static PyObject *
178lad_write(lad_t *self, PyObject *args)
179{
Fred Drakeda940d82000-07-08 06:05:58 +0000180 char *cp;
181 int rv, size;
Guido van Rossumf5bd6842001-04-02 17:59:02 +0000182 fd_set write_set_fds;
183 struct timeval tv;
184 int select_retval;
185
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000186 if (!PyArg_ParseTuple(args, "s#:write", &cp, &size))
187 return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000188
Guido van Rossumf5bd6842001-04-02 17:59:02 +0000189 /* use select to wait for audio device to be available */
190 FD_ZERO(&write_set_fds);
191 FD_SET(self->x_fd, &write_set_fds);
192 tv.tv_sec = 4; /* timeout values */
193 tv.tv_usec = 0;
194
Fred Drakeda940d82000-07-08 06:05:58 +0000195 while (size > 0) {
Guido van Rossumf5bd6842001-04-02 17:59:02 +0000196 select_retval = select(self->x_fd+1, NULL, &write_set_fds, NULL, &tv);
197 tv.tv_sec = 1; tv.tv_usec = 0; /* willing to wait this long next time*/
198 if (select_retval) {
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000199 if ((rv = write(self->x_fd, cp, size)) == -1) {
Guido van Rossumf5bd6842001-04-02 17:59:02 +0000200 if (errno != EAGAIN) {
201 PyErr_SetFromErrno(LinuxAudioError);
202 return NULL;
203 } else {
204 errno = 0; /* EAGAIN: buffer is full, try again */
205 }
206 } else {
207 self->x_ocount += rv;
208 size -= rv;
209 cp += rv;
210 }
211 } else {
212 /* printf("Not able to write to linux audio device within %ld seconds\n", tv.tv_sec); */
213 PyErr_SetFromErrno(LinuxAudioError);
214 return NULL;
215 }
Guido van Rossumb130dc72000-03-30 23:25:49 +0000216 }
Fred Drakeda940d82000-07-08 06:05:58 +0000217 Py_INCREF(Py_None);
218 return Py_None;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000219}
220
221static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +0000222lad_close(lad_t *self, PyObject *unused)
Guido van Rossumb130dc72000-03-30 23:25:49 +0000223{
Fred Drakeda940d82000-07-08 06:05:58 +0000224 if (self->x_fd >= 0) {
225 close(self->x_fd);
226 self->x_fd = -1;
227 }
Georg Brandl96a8c392006-05-29 21:04:52 +0000228 Py_RETURN_NONE;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000229}
230
231static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +0000232lad_fileno(lad_t *self, PyObject *unused)
Guido van Rossumb130dc72000-03-30 23:25:49 +0000233{
Fred Drakeda940d82000-07-08 06:05:58 +0000234 return PyInt_FromLong(self->x_fd);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000235}
236
237static PyObject *
238lad_setparameters(lad_t *self, PyObject *args)
239{
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000240 int rate, ssize, nchannels, n, fmt, emulate=0;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000241
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000242 if (!PyArg_ParseTuple(args, "iiii|i:setparameters",
243 &rate, &ssize, &nchannels, &fmt, &emulate))
Fred Drakeda940d82000-07-08 06:05:58 +0000244 return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000245
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000246 if (rate < 0) {
247 PyErr_Format(PyExc_ValueError, "expected rate >= 0, not %d",
248 rate);
249 return NULL;
250 }
251 if (ssize < 0) {
252 PyErr_Format(PyExc_ValueError, "expected sample size >= 0, not %d",
253 ssize);
254 return NULL;
255 }
256 if (nchannels != 1 && nchannels != 2) {
257 PyErr_Format(PyExc_ValueError, "nchannels must be 1 or 2, not %d",
258 nchannels);
259 return NULL;
260 }
261
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000262 for (n = 0; n < n_audio_types; n++)
Fred Drakeda940d82000-07-08 06:05:58 +0000263 if (fmt == audio_types[n].a_fmt)
264 break;
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000265 if (n == n_audio_types) {
266 PyErr_Format(PyExc_ValueError, "unknown audio encoding: %d", fmt);
267 return NULL;
268 }
269 if (audio_types[n].a_bps != ssize) {
270 PyErr_Format(PyExc_ValueError,
Ka-Ping Yee27ac0d12001-01-15 22:21:39 +0000271 "for %s, expected sample size %d, not %d",
272 audio_types[n].a_name, audio_types[n].a_bps, ssize);
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000273 return NULL;
274 }
Guido van Rossumb130dc72000-03-30 23:25:49 +0000275
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000276 if (emulate == 0) {
277 if ((self->x_afmts & audio_types[n].a_fmt) == 0) {
278 PyErr_Format(PyExc_ValueError,
Ka-Ping Yee27ac0d12001-01-15 22:21:39 +0000279 "%s format not supported by device",
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000280 audio_types[n].a_name);
281 return NULL;
282 }
283 }
284 if (ioctl(self->x_fd, SNDCTL_DSP_SETFMT,
285 &audio_types[n].a_fmt) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000286 PyErr_SetFromErrno(LinuxAudioError);
287 return NULL;
288 }
Guido van Rossum77452182001-12-08 17:13:45 +0000289 if (ioctl(self->x_fd, SNDCTL_DSP_CHANNELS, &nchannels) == -1) {
290 PyErr_SetFromErrno(LinuxAudioError);
291 return NULL;
292 }
293 if (ioctl(self->x_fd, SNDCTL_DSP_SPEED, &rate) == -1) {
294 PyErr_SetFromErrno(LinuxAudioError);
295 return NULL;
296 }
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000297
Fred Drakeda940d82000-07-08 06:05:58 +0000298 Py_INCREF(Py_None);
299 return Py_None;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000300}
301
302static int
303_ssize(lad_t *self, int *nchannels, int *ssize)
304{
Fred Drakeda940d82000-07-08 06:05:58 +0000305 int fmt;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000306
Fred Drakeda940d82000-07-08 06:05:58 +0000307 fmt = 0;
308 if (ioctl(self->x_fd, SNDCTL_DSP_SETFMT, &fmt) < 0)
309 return -errno;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000310
Fred Drakeda940d82000-07-08 06:05:58 +0000311 switch (fmt) {
312 case AFMT_MU_LAW:
313 case AFMT_A_LAW:
314 case AFMT_U8:
315 case AFMT_S8:
316 *ssize = sizeof(char);
317 break;
318 case AFMT_S16_LE:
319 case AFMT_S16_BE:
320 case AFMT_U16_LE:
321 case AFMT_U16_BE:
322 *ssize = sizeof(short);
323 break;
324 case AFMT_MPEG:
325 case AFMT_IMA_ADPCM:
326 default:
327 return -EOPNOTSUPP;
328 }
Fred Drakeda940d82000-07-08 06:05:58 +0000329 if (ioctl(self->x_fd, SNDCTL_DSP_CHANNELS, nchannels) < 0)
330 return -errno;
331 return 0;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000332}
333
334
335/* bufsize returns the size of the hardware audio buffer in number
Fred Drakeda940d82000-07-08 06:05:58 +0000336 of samples */
Guido van Rossumb130dc72000-03-30 23:25:49 +0000337static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +0000338lad_bufsize(lad_t *self, PyObject *unused)
Guido van Rossumb130dc72000-03-30 23:25:49 +0000339{
Fred Drakeda940d82000-07-08 06:05:58 +0000340 audio_buf_info ai;
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000341 int nchannels=0, ssize=0;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000342
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000343 if (_ssize(self, &nchannels, &ssize) < 0 || !ssize || !nchannels) {
Fred Drakeda940d82000-07-08 06:05:58 +0000344 PyErr_SetFromErrno(LinuxAudioError);
345 return NULL;
346 }
347 if (ioctl(self->x_fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) {
348 PyErr_SetFromErrno(LinuxAudioError);
349 return NULL;
350 }
351 return PyInt_FromLong((ai.fragstotal * ai.fragsize) / (nchannels * ssize));
Guido van Rossumb130dc72000-03-30 23:25:49 +0000352}
353
354/* obufcount returns the number of samples that are available in the
355 hardware for playing */
356static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +0000357lad_obufcount(lad_t *self, PyObject *unused)
Guido van Rossumb130dc72000-03-30 23:25:49 +0000358{
Fred Drakeda940d82000-07-08 06:05:58 +0000359 audio_buf_info ai;
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000360 int nchannels=0, ssize=0;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000361
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000362 if (_ssize(self, &nchannels, &ssize) < 0 || !ssize || !nchannels) {
Fred Drakeda940d82000-07-08 06:05:58 +0000363 PyErr_SetFromErrno(LinuxAudioError);
364 return NULL;
365 }
366 if (ioctl(self->x_fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) {
367 PyErr_SetFromErrno(LinuxAudioError);
368 return NULL;
369 }
370 return PyInt_FromLong((ai.fragstotal * ai.fragsize - ai.bytes) /
371 (ssize * nchannels));
Guido van Rossumb130dc72000-03-30 23:25:49 +0000372}
373
374/* obufcount returns the number of samples that can be played without
Fred Drakeda940d82000-07-08 06:05:58 +0000375 blocking */
Guido van Rossumb130dc72000-03-30 23:25:49 +0000376static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +0000377lad_obuffree(lad_t *self, PyObject *unused)
Guido van Rossumb130dc72000-03-30 23:25:49 +0000378{
Fred Drakeda940d82000-07-08 06:05:58 +0000379 audio_buf_info ai;
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000380 int nchannels=0, ssize=0;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000381
Thomas Wouters3ffa59b2006-03-01 22:45:36 +0000382 if (_ssize(self, &nchannels, &ssize) < 0 || !ssize || !nchannels) {
Fred Drakeda940d82000-07-08 06:05:58 +0000383 PyErr_SetFromErrno(LinuxAudioError);
384 return NULL;
385 }
386 if (ioctl(self->x_fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) {
387 PyErr_SetFromErrno(LinuxAudioError);
388 return NULL;
389 }
390 return PyInt_FromLong(ai.bytes / (ssize * nchannels));
Guido van Rossumb130dc72000-03-30 23:25:49 +0000391}
392
393/* Flush the device */
394static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +0000395lad_flush(lad_t *self, PyObject *unused)
Guido van Rossumb130dc72000-03-30 23:25:49 +0000396{
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000397 if (ioctl(self->x_fd, SNDCTL_DSP_SYNC, NULL) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000398 PyErr_SetFromErrno(LinuxAudioError);
399 return NULL;
400 }
Georg Brandl96a8c392006-05-29 21:04:52 +0000401 Py_RETURN_NONE;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000402}
403
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000404static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +0000405lad_getptr(lad_t *self, PyObject *unused)
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000406{
407 count_info info;
408 int req;
409
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000410 if (self->x_mode == O_RDONLY)
411 req = SNDCTL_DSP_GETIPTR;
412 else
413 req = SNDCTL_DSP_GETOPTR;
414 if (ioctl(self->x_fd, req, &info) == -1) {
415 PyErr_SetFromErrno(LinuxAudioError);
416 return NULL;
417 }
418 return Py_BuildValue("iii", info.bytes, info.blocks, info.ptr);
419}
420
Guido van Rossumb130dc72000-03-30 23:25:49 +0000421static PyMethodDef lad_methods[] = {
Fred Drakeda940d82000-07-08 06:05:58 +0000422 { "read", (PyCFunction)lad_read, METH_VARARGS },
423 { "write", (PyCFunction)lad_write, METH_VARARGS },
424 { "setparameters", (PyCFunction)lad_setparameters, METH_VARARGS },
425 { "bufsize", (PyCFunction)lad_bufsize, METH_VARARGS },
Georg Brandl96a8c392006-05-29 21:04:52 +0000426 { "obufcount", (PyCFunction)lad_obufcount, METH_NOARGS },
427 { "obuffree", (PyCFunction)lad_obuffree, METH_NOARGS },
428 { "flush", (PyCFunction)lad_flush, METH_NOARGS },
429 { "close", (PyCFunction)lad_close, METH_NOARGS },
430 { "fileno", (PyCFunction)lad_fileno, METH_NOARGS },
431 { "getptr", (PyCFunction)lad_getptr, METH_NOARGS },
Fred Drakeda940d82000-07-08 06:05:58 +0000432 { NULL, NULL} /* sentinel */
Guido van Rossumb130dc72000-03-30 23:25:49 +0000433};
434
435static PyObject *
436lad_getattr(lad_t *xp, char *name)
437{
Fred Drakeda940d82000-07-08 06:05:58 +0000438 return Py_FindMethod(lad_methods, (PyObject *)xp, name);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000439}
440
441static PyTypeObject Ladtype = {
Fred Drakeda940d82000-07-08 06:05:58 +0000442 PyObject_HEAD_INIT(&PyType_Type)
443 0, /*ob_size*/
Guido van Rossum14648392001-12-08 18:02:58 +0000444 "linuxaudiodev.linux_audio_device", /*tp_name*/
Fred Drakeda940d82000-07-08 06:05:58 +0000445 sizeof(lad_t), /*tp_size*/
446 0, /*tp_itemsize*/
447 /* methods */
448 (destructor)lad_dealloc, /*tp_dealloc*/
449 0, /*tp_print*/
450 (getattrfunc)lad_getattr, /*tp_getattr*/
451 0, /*tp_setattr*/
452 0, /*tp_compare*/
453 0, /*tp_repr*/
Guido van Rossumb130dc72000-03-30 23:25:49 +0000454};
455
456static PyObject *
457ladopen(PyObject *self, PyObject *args)
458{
Fred Drakeda940d82000-07-08 06:05:58 +0000459 return (PyObject *)newladobject(args);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000460}
461
462static PyMethodDef linuxaudiodev_methods[] = {
Fred Drakeda940d82000-07-08 06:05:58 +0000463 { "open", ladopen, METH_VARARGS },
464 { 0, 0 },
Guido van Rossumb130dc72000-03-30 23:25:49 +0000465};
466
Guido van Rossumb130dc72000-03-30 23:25:49 +0000467void
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000468initlinuxaudiodev(void)
Guido van Rossumb130dc72000-03-30 23:25:49 +0000469{
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000470 PyObject *m;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000471
Fred Drakeda940d82000-07-08 06:05:58 +0000472 m = Py_InitModule("linuxaudiodev", linuxaudiodev_methods);
Neal Norwitz1ac754f2006-01-19 06:09:39 +0000473 if (m == NULL)
474 return;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000475
Fred Drakeda940d82000-07-08 06:05:58 +0000476 LinuxAudioError = PyErr_NewException("linuxaudiodev.error", NULL, NULL);
477 if (LinuxAudioError)
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000478 PyModule_AddObject(m, "error", LinuxAudioError);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000479
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000480 if (PyModule_AddIntConstant(m, "AFMT_MU_LAW", (long)AFMT_MU_LAW) == -1)
481 return;
482 if (PyModule_AddIntConstant(m, "AFMT_A_LAW", (long)AFMT_A_LAW) == -1)
483 return;
484 if (PyModule_AddIntConstant(m, "AFMT_U8", (long)AFMT_U8) == -1)
485 return;
486 if (PyModule_AddIntConstant(m, "AFMT_S8", (long)AFMT_S8) == -1)
487 return;
488 if (PyModule_AddIntConstant(m, "AFMT_U16_BE", (long)AFMT_U16_BE) == -1)
489 return;
490 if (PyModule_AddIntConstant(m, "AFMT_U16_LE", (long)AFMT_U16_LE) == -1)
491 return;
492 if (PyModule_AddIntConstant(m, "AFMT_S16_BE", (long)AFMT_S16_BE) == -1)
493 return;
494 if (PyModule_AddIntConstant(m, "AFMT_S16_LE", (long)AFMT_S16_LE) == -1)
495 return;
Guido van Rossum59316672000-10-08 19:47:47 +0000496 if (PyModule_AddIntConstant(m, "AFMT_S16_NE", (long)AFMT_S16_NE) == -1)
497 return;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000498
Barry Warsaw9bfd2bf2000-09-01 09:01:32 +0000499 return;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000500}