1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
|
/*
* Python binding for the ALSA library - card management
* Copyright (c) 2007 by Jaroslav Kysela <perex@perex.cz>
*
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "common.h"
#include "sys/poll.h"
#include "stdlib.h"
#include "alsa/asoundlib.h"
static PyObject *module;
/*
*
*/
PyDoc_STRVAR(asoundlib_version__doc__,
"asoundlib_version() -- Return asoundlib version string.");
static PyObject *
asoundlib_version(PyObject *self, PyObject *args)
{
return Py_BuildValue("s", snd_asoundlib_version());
}
PyDoc_STRVAR(card_load__doc__,
"card_load([card]) -- Load driver for given card.");
static PyObject *
card_load(PyObject *self, PyObject *args, PyObject *kwds)
{
int card = 0;
static char * kwlist[] = { "card", NULL };
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|i", kwlist, &card))
Py_RETURN_NONE;
return Py_BuildValue("i", snd_card_load(card));
}
PyDoc_STRVAR(card_list__doc__,
"card_list() -- Get a card number list in tuple.");
static PyObject *
card_list(PyObject *self, PyObject *args)
{
PyObject *t;
int size = 0, i = -1, res;
t = PyTuple_New(0);
if (!t)
return NULL;
while (1) {
res = snd_card_next(&i);
if (res) {
Py_DECREF(t);
return PyErr_Format(PyExc_IOError, "Cannot get next card: %s", snd_strerror(res));
}
if (i < 0)
break;
size++;
if (_PyTuple_Resize(&t, size))
return NULL;
PyTuple_SET_ITEM(t, size - 1, PyInt_FromLong(i));
}
return t;
}
PyDoc_STRVAR(card_get_index__doc__,
"card_get_index(name) -- Get card index using ID string.");
static PyObject *
card_get_index(PyObject *self, PyObject *args, PyObject *kwds)
{
char *card;
static char * kwlist[] = { "name", NULL };
if (!PyArg_ParseTupleAndKeywords(args, kwds, "s", kwlist, &card))
Py_RETURN_NONE;
return Py_BuildValue("i", snd_card_get_index(card));
}
PyDoc_STRVAR(card_get_name__doc__,
"card_get_name(card) -- Get card name string using card index.");
static PyObject *
card_get_name(PyObject *self, PyObject *args, PyObject *kwds)
{
int card, res;
char *str;
static char * kwlist[] = { "card", NULL };
PyObject *t;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "i", kwlist, &card))
Py_RETURN_NONE;
res = snd_card_get_name(card, &str);
if (res)
return PyErr_Format(PyExc_IOError, "Cannot get card name: %s", snd_strerror(res));
t = Py_BuildValue("s", str);
free(str);
return t;
}
PyDoc_STRVAR(card_get_longname__doc__,
"card_get_longname(card) -- Get long card name string using card index.");
static PyObject *
card_get_longname(PyObject *self, PyObject *args, PyObject *kwds)
{
int card, res;
char *str;
static char * kwlist[] = { "card", NULL };
PyObject *t;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "i", kwlist, &card))
Py_RETURN_NONE;
res = snd_card_get_longname(card, &str);
if (res)
return PyErr_Format(PyExc_IOError, "Cannot get card longname: %s", snd_strerror(res));
t = Py_BuildValue("s", str);
free(str);
return t;
}
PyDoc_STRVAR(device_name_hint__doc__,
"device_name_hint(card, interface) -- Get device name hints.");
static PyObject *
device_name_hint(PyObject *self, PyObject *args, PyObject *kwds)
{
int card, res;
char *iface, **hint;
void **hints;
static char * kwlist[] = { "card", "interface", NULL };
static char * ids[] = { "NAME", "DESC", "IOID", NULL };
PyObject *l, *d, *v;
char **id, *str;
if (!PyArg_ParseTupleAndKeywords(args, kwds, "is", kwlist, &card, &iface))
Py_RETURN_NONE;
res = snd_device_name_hint(card, iface, &hints);
if (res)
return PyErr_Format(PyExc_IOError, "Cannot get card longname: %s", snd_strerror(res));
l = PyList_New(0);
hint = (char **)hints;
while (*hint) {
d = PyDict_New();
if (d == NULL)
goto err1;
id = ids;
while (*id) {
str = snd_device_name_get_hint(*hint, *id);
if (str == NULL)
break;
v = PyUnicode_FromString(str);
free(str);
if (v == NULL)
goto err1;
if (PyDict_SetItemString(d, *id, v))
goto err1;
id++;
}
if (PyList_Append(l, d))
goto err1;
hint++;
}
snd_device_name_free_hint(hints);
return l;
err1:
Py_XDECREF(d);
Py_XDECREF(l);
snd_device_name_free_hint(hints);
return NULL;
}
/*
*
*/
static PyMethodDef pyalsacardparse_methods[] = {
{"asoundlib_version", (PyCFunction)asoundlib_version, METH_NOARGS, asoundlib_version__doc__},
{"card_load", (PyCFunction)card_load, METH_VARARGS|METH_KEYWORDS, card_load__doc__},
{"card_list", (PyCFunction)card_list, METH_NOARGS, card_list__doc__},
{"card_get_index", (PyCFunction)card_get_index, METH_VARARGS|METH_KEYWORDS, card_get_index__doc__},
{"card_get_name", (PyCFunction)card_get_name, METH_VARARGS|METH_KEYWORDS, card_get_name__doc__},
{"card_get_longname", (PyCFunction)card_get_longname, METH_VARARGS|METH_KEYWORDS, card_get_longname__doc__},
{"device_name_hint", (PyCFunction)device_name_hint, METH_VARARGS|METH_KEYWORDS, device_name_hint__doc__},
{NULL}
};
MOD_INIT(alsacard)
{
MOD_DEF(module, "alsacard", "libasound alsacard wrapper", pyalsacardparse_methods);
if (module == NULL)
return MOD_ERROR_VAL;
if (PyErr_Occurred())
Py_FatalError("Cannot initialize module alsacard");
return MOD_SUCCESS_VAL(module);
}
|