blob: 7d4abc99cb77b5eb311051a7dff8d82e85f28b67 [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 {
Fred Drakeda940d82000-07-08 06:05:58 +000043 PyObject_HEAD;
44 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
73staticforward PyTypeObject Ladtype;
74
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;
82 char *mode;
83 char *basedev;
Guido van Rossumb130dc72000-03-30 23:25:49 +000084
Fred Drakeda940d82000-07-08 06:05:58 +000085 /* Check arg for r/w/rw */
86 if (!PyArg_ParseTuple(arg, "s:open", &mode)) return NULL;
87 if (strcmp(mode, "r") == 0)
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000088 imode = O_RDONLY;
Fred Drakeda940d82000-07-08 06:05:58 +000089 else if (strcmp(mode, "w") == 0)
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000090 imode = O_WRONLY;
Fred Drakeda940d82000-07-08 06:05:58 +000091 else {
Ka-Ping Yee27ac0d12001-01-15 22:21:39 +000092 PyErr_SetString(LinuxAudioError, "mode should be 'r' or 'w'");
Fred Drakeda940d82000-07-08 06:05:58 +000093 return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +000094 }
Guido van Rossumb130dc72000-03-30 23:25:49 +000095
Fred Drakeda940d82000-07-08 06:05:58 +000096 /* Open the correct device. The base device name comes from the
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000097 * AUDIODEV environment variable first, then /dev/dsp. The
Fred Drakeda940d82000-07-08 06:05:58 +000098 * control device tacks "ctl" onto the base device name.
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +000099 *
100 * Note that the only difference between /dev/audio and /dev/dsp
101 * is that the former uses logarithmic mu-law encoding and the
102 * latter uses 8-bit unsigned encoding.
Fred Drakeda940d82000-07-08 06:05:58 +0000103 */
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000104
Fred Drakeda940d82000-07-08 06:05:58 +0000105 basedev = getenv("AUDIODEV");
106 if (!basedev)
107 basedev = "/dev/dsp";
Guido van Rossumb130dc72000-03-30 23:25:49 +0000108
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000109 if ((fd = open(basedev, imode)) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000110 PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev);
111 return NULL;
112 }
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000113 if (imode == O_WRONLY && ioctl(fd, SNDCTL_DSP_NONBLOCK, NULL) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000114 PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev);
115 return NULL;
116 }
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000117 if (ioctl(fd, SNDCTL_DSP_GETFMTS, &afmts) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000118 PyErr_SetFromErrnoWithFilename(LinuxAudioError, basedev);
119 return NULL;
120 }
121 /* Create and initialize the object */
122 if ((xp = PyObject_New(lad_t, &Ladtype)) == NULL) {
123 close(fd);
124 return NULL;
125 }
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000126 xp->x_fd = fd;
127 xp->x_mode = imode;
Fred Drakeda940d82000-07-08 06:05:58 +0000128 xp->x_icount = xp->x_ocount = 0;
129 xp->x_afmts = afmts;
130 return xp;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000131}
132
133static void
134lad_dealloc(lad_t *xp)
135{
Barry Warsaw4ddd8202000-08-18 05:10:45 +0000136 /* if already closed, don't reclose it */
137 if (xp->x_fd != -1)
138 close(xp->x_fd);
Fred Drakeda940d82000-07-08 06:05:58 +0000139 PyObject_Del(xp);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000140}
141
142static PyObject *
143lad_read(lad_t *self, PyObject *args)
144{
Fred Drakeda940d82000-07-08 06:05:58 +0000145 int size, count;
146 char *cp;
147 PyObject *rv;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000148
Fred Drakeda940d82000-07-08 06:05:58 +0000149 if (!PyArg_ParseTuple(args, "i:read", &size))
150 return NULL;
151 rv = PyString_FromStringAndSize(NULL, size);
152 if (rv == NULL)
153 return NULL;
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000154 cp = PyString_AS_STRING(rv);
Fred Drakeda940d82000-07-08 06:05:58 +0000155 if ((count = read(self->x_fd, cp, size)) < 0) {
156 PyErr_SetFromErrno(LinuxAudioError);
157 Py_DECREF(rv);
158 return NULL;
159 }
160 self->x_icount += count;
Tim Peters5de98422002-04-27 18:44:32 +0000161 _PyString_Resize(&rv, count);
Fred Drakeda940d82000-07-08 06:05:58 +0000162 return rv;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000163}
164
165static PyObject *
166lad_write(lad_t *self, PyObject *args)
167{
Fred Drakeda940d82000-07-08 06:05:58 +0000168 char *cp;
169 int rv, size;
Guido van Rossumf5bd6842001-04-02 17:59:02 +0000170 fd_set write_set_fds;
171 struct timeval tv;
172 int select_retval;
173
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000174 if (!PyArg_ParseTuple(args, "s#:write", &cp, &size))
175 return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000176
Guido van Rossumf5bd6842001-04-02 17:59:02 +0000177 /* use select to wait for audio device to be available */
178 FD_ZERO(&write_set_fds);
179 FD_SET(self->x_fd, &write_set_fds);
180 tv.tv_sec = 4; /* timeout values */
181 tv.tv_usec = 0;
182
Fred Drakeda940d82000-07-08 06:05:58 +0000183 while (size > 0) {
Guido van Rossumf5bd6842001-04-02 17:59:02 +0000184 select_retval = select(self->x_fd+1, NULL, &write_set_fds, NULL, &tv);
185 tv.tv_sec = 1; tv.tv_usec = 0; /* willing to wait this long next time*/
186 if (select_retval) {
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000187 if ((rv = write(self->x_fd, cp, size)) == -1) {
Guido van Rossumf5bd6842001-04-02 17:59:02 +0000188 if (errno != EAGAIN) {
189 PyErr_SetFromErrno(LinuxAudioError);
190 return NULL;
191 } else {
192 errno = 0; /* EAGAIN: buffer is full, try again */
193 }
194 } else {
195 self->x_ocount += rv;
196 size -= rv;
197 cp += rv;
198 }
199 } else {
200 /* printf("Not able to write to linux audio device within %ld seconds\n", tv.tv_sec); */
201 PyErr_SetFromErrno(LinuxAudioError);
202 return NULL;
203 }
Guido van Rossumb130dc72000-03-30 23:25:49 +0000204 }
Fred Drakeda940d82000-07-08 06:05:58 +0000205 Py_INCREF(Py_None);
206 return Py_None;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000207}
208
209static PyObject *
210lad_close(lad_t *self, PyObject *args)
211{
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000212 if (!PyArg_ParseTuple(args, ":close"))
213 return NULL;
214
Fred Drakeda940d82000-07-08 06:05:58 +0000215 if (self->x_fd >= 0) {
216 close(self->x_fd);
217 self->x_fd = -1;
218 }
219 Py_INCREF(Py_None);
220 return Py_None;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000221}
222
223static PyObject *
224lad_fileno(lad_t *self, PyObject *args)
225{
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000226 if (!PyArg_ParseTuple(args, ":fileno"))
227 return NULL;
Fred Drakeda940d82000-07-08 06:05:58 +0000228 return PyInt_FromLong(self->x_fd);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000229}
230
231static PyObject *
232lad_setparameters(lad_t *self, PyObject *args)
233{
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000234 int rate, ssize, nchannels, n, fmt, emulate=0;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000235
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000236 if (!PyArg_ParseTuple(args, "iiii|i:setparameters",
237 &rate, &ssize, &nchannels, &fmt, &emulate))
Fred Drakeda940d82000-07-08 06:05:58 +0000238 return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000239
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000240 if (rate < 0) {
241 PyErr_Format(PyExc_ValueError, "expected rate >= 0, not %d",
242 rate);
243 return NULL;
244 }
245 if (ssize < 0) {
246 PyErr_Format(PyExc_ValueError, "expected sample size >= 0, not %d",
247 ssize);
248 return NULL;
249 }
250 if (nchannels != 1 && nchannels != 2) {
251 PyErr_Format(PyExc_ValueError, "nchannels must be 1 or 2, not %d",
252 nchannels);
253 return NULL;
254 }
255
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000256 for (n = 0; n < n_audio_types; n++)
Fred Drakeda940d82000-07-08 06:05:58 +0000257 if (fmt == audio_types[n].a_fmt)
258 break;
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000259 if (n == n_audio_types) {
260 PyErr_Format(PyExc_ValueError, "unknown audio encoding: %d", fmt);
261 return NULL;
262 }
263 if (audio_types[n].a_bps != ssize) {
264 PyErr_Format(PyExc_ValueError,
Ka-Ping Yee27ac0d12001-01-15 22:21:39 +0000265 "for %s, expected sample size %d, not %d",
266 audio_types[n].a_name, audio_types[n].a_bps, ssize);
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000267 return NULL;
268 }
Guido van Rossumb130dc72000-03-30 23:25:49 +0000269
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000270 if (emulate == 0) {
271 if ((self->x_afmts & audio_types[n].a_fmt) == 0) {
272 PyErr_Format(PyExc_ValueError,
Ka-Ping Yee27ac0d12001-01-15 22:21:39 +0000273 "%s format not supported by device",
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000274 audio_types[n].a_name);
275 return NULL;
276 }
277 }
278 if (ioctl(self->x_fd, SNDCTL_DSP_SETFMT,
279 &audio_types[n].a_fmt) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000280 PyErr_SetFromErrno(LinuxAudioError);
281 return NULL;
282 }
Guido van Rossum77452182001-12-08 17:13:45 +0000283 if (ioctl(self->x_fd, SNDCTL_DSP_CHANNELS, &nchannels) == -1) {
284 PyErr_SetFromErrno(LinuxAudioError);
285 return NULL;
286 }
287 if (ioctl(self->x_fd, SNDCTL_DSP_SPEED, &rate) == -1) {
288 PyErr_SetFromErrno(LinuxAudioError);
289 return NULL;
290 }
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000291
Fred Drakeda940d82000-07-08 06:05:58 +0000292 Py_INCREF(Py_None);
293 return Py_None;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000294}
295
296static int
297_ssize(lad_t *self, int *nchannels, int *ssize)
298{
Fred Drakeda940d82000-07-08 06:05:58 +0000299 int fmt;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000300
Fred Drakeda940d82000-07-08 06:05:58 +0000301 fmt = 0;
302 if (ioctl(self->x_fd, SNDCTL_DSP_SETFMT, &fmt) < 0)
303 return -errno;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000304
Fred Drakeda940d82000-07-08 06:05:58 +0000305 switch (fmt) {
306 case AFMT_MU_LAW:
307 case AFMT_A_LAW:
308 case AFMT_U8:
309 case AFMT_S8:
310 *ssize = sizeof(char);
311 break;
312 case AFMT_S16_LE:
313 case AFMT_S16_BE:
314 case AFMT_U16_LE:
315 case AFMT_U16_BE:
316 *ssize = sizeof(short);
317 break;
318 case AFMT_MPEG:
319 case AFMT_IMA_ADPCM:
320 default:
321 return -EOPNOTSUPP;
322 }
323 *nchannels = 0;
324 if (ioctl(self->x_fd, SNDCTL_DSP_CHANNELS, nchannels) < 0)
325 return -errno;
326 return 0;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000327}
328
329
330/* bufsize returns the size of the hardware audio buffer in number
Fred Drakeda940d82000-07-08 06:05:58 +0000331 of samples */
Guido van Rossumb130dc72000-03-30 23:25:49 +0000332static PyObject *
333lad_bufsize(lad_t *self, PyObject *args)
334{
Fred Drakeda940d82000-07-08 06:05:58 +0000335 audio_buf_info ai;
336 int nchannels, ssize;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000337
Fred Drakeda940d82000-07-08 06:05:58 +0000338 if (!PyArg_ParseTuple(args, ":bufsize")) return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000339
Fred Drakeda940d82000-07-08 06:05:58 +0000340 if (_ssize(self, &nchannels, &ssize) < 0) {
341 PyErr_SetFromErrno(LinuxAudioError);
342 return NULL;
343 }
344 if (ioctl(self->x_fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) {
345 PyErr_SetFromErrno(LinuxAudioError);
346 return NULL;
347 }
348 return PyInt_FromLong((ai.fragstotal * ai.fragsize) / (nchannels * ssize));
Guido van Rossumb130dc72000-03-30 23:25:49 +0000349}
350
351/* obufcount returns the number of samples that are available in the
352 hardware for playing */
353static PyObject *
354lad_obufcount(lad_t *self, PyObject *args)
355{
Fred Drakeda940d82000-07-08 06:05:58 +0000356 audio_buf_info ai;
357 int nchannels, ssize;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000358
Fred Drakeda940d82000-07-08 06:05:58 +0000359 if (!PyArg_ParseTuple(args, ":obufcount"))
360 return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000361
Fred Drakeda940d82000-07-08 06:05:58 +0000362 if (_ssize(self, &nchannels, &ssize) < 0) {
363 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 *
377lad_obuffree(lad_t *self, PyObject *args)
378{
Fred Drakeda940d82000-07-08 06:05:58 +0000379 audio_buf_info ai;
380 int nchannels, ssize;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000381
Fred Drakeda940d82000-07-08 06:05:58 +0000382 if (!PyArg_ParseTuple(args, ":obuffree"))
383 return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000384
Fred Drakeda940d82000-07-08 06:05:58 +0000385 if (_ssize(self, &nchannels, &ssize) < 0) {
386 PyErr_SetFromErrno(LinuxAudioError);
387 return NULL;
388 }
389 if (ioctl(self->x_fd, SNDCTL_DSP_GETOSPACE, &ai) < 0) {
390 PyErr_SetFromErrno(LinuxAudioError);
391 return NULL;
392 }
393 return PyInt_FromLong(ai.bytes / (ssize * nchannels));
Guido van Rossumb130dc72000-03-30 23:25:49 +0000394}
395
396/* Flush the device */
397static PyObject *
398lad_flush(lad_t *self, PyObject *args)
399{
Fred Drakeda940d82000-07-08 06:05:58 +0000400 if (!PyArg_ParseTuple(args, ":flush")) return NULL;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000401
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000402 if (ioctl(self->x_fd, SNDCTL_DSP_SYNC, NULL) == -1) {
Fred Drakeda940d82000-07-08 06:05:58 +0000403 PyErr_SetFromErrno(LinuxAudioError);
404 return NULL;
405 }
406 Py_INCREF(Py_None);
407 return Py_None;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000408}
409
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000410static PyObject *
411lad_getptr(lad_t *self, PyObject *args)
412{
413 count_info info;
414 int req;
415
416 if (!PyArg_ParseTuple(args, ":getptr"))
417 return NULL;
418
419 if (self->x_mode == O_RDONLY)
420 req = SNDCTL_DSP_GETIPTR;
421 else
422 req = SNDCTL_DSP_GETOPTR;
423 if (ioctl(self->x_fd, req, &info) == -1) {
424 PyErr_SetFromErrno(LinuxAudioError);
425 return NULL;
426 }
427 return Py_BuildValue("iii", info.bytes, info.blocks, info.ptr);
428}
429
Guido van Rossumb130dc72000-03-30 23:25:49 +0000430static PyMethodDef lad_methods[] = {
Fred Drakeda940d82000-07-08 06:05:58 +0000431 { "read", (PyCFunction)lad_read, METH_VARARGS },
432 { "write", (PyCFunction)lad_write, METH_VARARGS },
433 { "setparameters", (PyCFunction)lad_setparameters, METH_VARARGS },
434 { "bufsize", (PyCFunction)lad_bufsize, METH_VARARGS },
435 { "obufcount", (PyCFunction)lad_obufcount, METH_VARARGS },
436 { "obuffree", (PyCFunction)lad_obuffree, METH_VARARGS },
437 { "flush", (PyCFunction)lad_flush, METH_VARARGS },
438 { "close", (PyCFunction)lad_close, METH_VARARGS },
439 { "fileno", (PyCFunction)lad_fileno, METH_VARARGS },
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000440 { "getptr", (PyCFunction)lad_getptr, METH_VARARGS },
Fred Drakeda940d82000-07-08 06:05:58 +0000441 { NULL, NULL} /* sentinel */
Guido van Rossumb130dc72000-03-30 23:25:49 +0000442};
443
444static PyObject *
445lad_getattr(lad_t *xp, char *name)
446{
Fred Drakeda940d82000-07-08 06:05:58 +0000447 return Py_FindMethod(lad_methods, (PyObject *)xp, name);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000448}
449
450static PyTypeObject Ladtype = {
Fred Drakeda940d82000-07-08 06:05:58 +0000451 PyObject_HEAD_INIT(&PyType_Type)
452 0, /*ob_size*/
Guido van Rossum14648392001-12-08 18:02:58 +0000453 "linuxaudiodev.linux_audio_device", /*tp_name*/
Fred Drakeda940d82000-07-08 06:05:58 +0000454 sizeof(lad_t), /*tp_size*/
455 0, /*tp_itemsize*/
456 /* methods */
457 (destructor)lad_dealloc, /*tp_dealloc*/
458 0, /*tp_print*/
459 (getattrfunc)lad_getattr, /*tp_getattr*/
460 0, /*tp_setattr*/
461 0, /*tp_compare*/
462 0, /*tp_repr*/
Guido van Rossumb130dc72000-03-30 23:25:49 +0000463};
464
465static PyObject *
466ladopen(PyObject *self, PyObject *args)
467{
Fred Drakeda940d82000-07-08 06:05:58 +0000468 return (PyObject *)newladobject(args);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000469}
470
471static PyMethodDef linuxaudiodev_methods[] = {
Fred Drakeda940d82000-07-08 06:05:58 +0000472 { "open", ladopen, METH_VARARGS },
473 { 0, 0 },
Guido van Rossumb130dc72000-03-30 23:25:49 +0000474};
475
Guido van Rossumb130dc72000-03-30 23:25:49 +0000476void
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000477initlinuxaudiodev(void)
Guido van Rossumb130dc72000-03-30 23:25:49 +0000478{
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000479 PyObject *m;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000480
Fred Drakeda940d82000-07-08 06:05:58 +0000481 m = Py_InitModule("linuxaudiodev", linuxaudiodev_methods);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000482
Fred Drakeda940d82000-07-08 06:05:58 +0000483 LinuxAudioError = PyErr_NewException("linuxaudiodev.error", NULL, NULL);
484 if (LinuxAudioError)
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000485 PyModule_AddObject(m, "error", LinuxAudioError);
Guido van Rossumb130dc72000-03-30 23:25:49 +0000486
Jeremy Hyltone2b7c4d2000-10-06 19:39:55 +0000487 if (PyModule_AddIntConstant(m, "AFMT_MU_LAW", (long)AFMT_MU_LAW) == -1)
488 return;
489 if (PyModule_AddIntConstant(m, "AFMT_A_LAW", (long)AFMT_A_LAW) == -1)
490 return;
491 if (PyModule_AddIntConstant(m, "AFMT_U8", (long)AFMT_U8) == -1)
492 return;
493 if (PyModule_AddIntConstant(m, "AFMT_S8", (long)AFMT_S8) == -1)
494 return;
495 if (PyModule_AddIntConstant(m, "AFMT_U16_BE", (long)AFMT_U16_BE) == -1)
496 return;
497 if (PyModule_AddIntConstant(m, "AFMT_U16_LE", (long)AFMT_U16_LE) == -1)
498 return;
499 if (PyModule_AddIntConstant(m, "AFMT_S16_BE", (long)AFMT_S16_BE) == -1)
500 return;
501 if (PyModule_AddIntConstant(m, "AFMT_S16_LE", (long)AFMT_S16_LE) == -1)
502 return;
Guido van Rossum59316672000-10-08 19:47:47 +0000503 if (PyModule_AddIntConstant(m, "AFMT_S16_NE", (long)AFMT_S16_NE) == -1)
504 return;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000505
Barry Warsaw9bfd2bf2000-09-01 09:01:32 +0000506 return;
Guido van Rossumb130dc72000-03-30 23:25:49 +0000507}