2001-07-11 15:48:27 +00:00
|
|
|
/**
|
|
|
|
|
* \file control/cards.c
|
2001-07-18 12:17:11 +00:00
|
|
|
* \brief Basic Soundcard Operations
|
2001-07-11 15:48:27 +00:00
|
|
|
* \author Jaroslav Kysela <perex@suse.cz>
|
|
|
|
|
* \date 1998-2001
|
|
|
|
|
*/
|
1998-08-13 15:42:56 +00:00
|
|
|
/*
|
2001-07-18 12:17:11 +00:00
|
|
|
* Soundcard Operations - main file
|
1999-05-11 22:15:16 +00:00
|
|
|
* Copyright (c) 1998 by Jaroslav Kysela <perex@suse.cz>
|
1998-08-13 15:42:56 +00:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or modify
|
2001-12-30 09:22:54 +00:00
|
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
|
|
|
* published by the Free Software Foundation; either version 2.1 of
|
1998-08-13 15:42:56 +00:00
|
|
|
* 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
|
2001-12-30 09:22:54 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
1998-08-13 15:42:56 +00:00
|
|
|
*
|
2001-12-30 09:22:54 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-08-13 15:42:56 +00:00
|
|
|
* License along with this library; if not, write to the Free Software
|
2001-12-30 09:22:54 +00:00
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1998-08-13 15:42:56 +00:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
1999-12-11 10:50:39 +00:00
|
|
|
#include <string.h>
|
1998-08-13 15:42:56 +00:00
|
|
|
#include <ctype.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#include <sys/ioctl.h>
|
2000-11-20 20:10:46 +00:00
|
|
|
#include "control_local.h"
|
1998-08-13 15:42:56 +00:00
|
|
|
|
2001-07-11 15:48:27 +00:00
|
|
|
#ifndef DOC_HIDDEN
|
2006-02-27 10:03:19 +00:00
|
|
|
#define SND_FILE_CONTROL ALSA_DEVICE_DIRECTORY "controlC%i"
|
|
|
|
|
#define SND_FILE_LOAD ALOAD_DEVICE_DIRECTORY "aloadC%i"
|
2001-07-11 15:48:27 +00:00
|
|
|
#endif
|
1998-08-13 15:42:56 +00:00
|
|
|
|
2001-07-11 15:48:27 +00:00
|
|
|
/**
|
|
|
|
|
* \brief Try to load the driver for a card.
|
|
|
|
|
* \param card Card number.
|
|
|
|
|
* \return 1 if driver is present, zero if driver is not present
|
|
|
|
|
*/
|
1999-01-30 18:35:52 +00:00
|
|
|
int snd_card_load(int card)
|
|
|
|
|
{
|
|
|
|
|
int open_dev;
|
2006-02-27 10:03:19 +00:00
|
|
|
char control[sizeof(SND_FILE_CONTROL) + 10];
|
1999-01-30 18:35:52 +00:00
|
|
|
|
1999-03-08 16:51:36 +00:00
|
|
|
sprintf(control, SND_FILE_CONTROL, card);
|
1999-01-30 18:35:52 +00:00
|
|
|
|
2005-02-11 16:35:24 +00:00
|
|
|
open_dev = snd_open_device(control, O_RDONLY);
|
2005-02-14 13:31:53 +00:00
|
|
|
#ifdef SUPPORT_ALOAD
|
2005-01-26 10:50:28 +00:00
|
|
|
if (open_dev < 0) {
|
2006-02-27 10:03:19 +00:00
|
|
|
char aload[sizeof(SND_FILE_LOAD) + 10];
|
2000-08-25 14:33:53 +00:00
|
|
|
sprintf(aload, SND_FILE_LOAD, card);
|
2005-02-11 16:35:24 +00:00
|
|
|
open_dev = snd_open_device(aload, O_RDONLY);
|
2000-08-25 14:33:53 +00:00
|
|
|
}
|
2005-02-14 13:31:53 +00:00
|
|
|
#endif
|
2000-08-25 14:33:53 +00:00
|
|
|
if (open_dev >= 0) {
|
1999-01-30 18:35:52 +00:00
|
|
|
close (open_dev);
|
2005-06-28 09:58:48 +00:00
|
|
|
return 1;
|
1999-01-30 18:35:52 +00:00
|
|
|
}
|
2005-06-28 09:58:48 +00:00
|
|
|
return 0;
|
1999-01-30 18:35:52 +00:00
|
|
|
}
|
|
|
|
|
|
2001-07-11 15:48:27 +00:00
|
|
|
/**
|
|
|
|
|
* \brief Try to determine the next card.
|
|
|
|
|
* \param rcard pointer to card number
|
|
|
|
|
* \result zero if success, otherwise a negative error code
|
|
|
|
|
*
|
|
|
|
|
* Tries to determine the next card from given card number.
|
|
|
|
|
* If card number is -1, then the first available card is
|
|
|
|
|
* returned. If the result card number is -1, no more cards
|
|
|
|
|
* are available.
|
|
|
|
|
*/
|
2000-11-30 19:17:55 +00:00
|
|
|
int snd_card_next(int *rcard)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-11-30 19:17:55 +00:00
|
|
|
int card;
|
|
|
|
|
|
|
|
|
|
if (rcard == NULL)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
card = *rcard;
|
|
|
|
|
card = card < 0 ? 0 : card + 1;
|
|
|
|
|
for (; card < 32; card++) {
|
2005-06-28 09:58:48 +00:00
|
|
|
if (snd_card_load(card)) {
|
2000-11-30 19:17:55 +00:00
|
|
|
*rcard = card;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
1998-11-27 14:53:44 +00:00
|
|
|
}
|
2000-11-30 19:17:55 +00:00
|
|
|
*rcard = -1;
|
|
|
|
|
return 0;
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
|
|
|
|
|
2001-07-11 15:48:27 +00:00
|
|
|
/**
|
|
|
|
|
* \brief Convert card string to an integer value.
|
|
|
|
|
* \param string String containing card identifier
|
|
|
|
|
* \return zero if success, otherwise a negative error code
|
|
|
|
|
*
|
|
|
|
|
* The accepted format is an integer value in ASCII representation
|
2003-02-19 09:37:01 +00:00
|
|
|
* or the card identifier (the id parameter for sound-card drivers).
|
2001-07-11 15:48:27 +00:00
|
|
|
*/
|
2000-08-25 14:33:53 +00:00
|
|
|
int snd_card_get_index(const char *string)
|
1998-08-13 15:42:56 +00:00
|
|
|
{
|
2000-08-25 14:33:53 +00:00
|
|
|
int card;
|
1999-06-02 00:40:30 +00:00
|
|
|
snd_ctl_t *handle;
|
2001-02-07 15:13:15 +00:00
|
|
|
snd_ctl_card_info_t info;
|
1998-08-13 15:42:56 +00:00
|
|
|
|
1999-03-08 16:51:36 +00:00
|
|
|
if (!string || *string == '\0')
|
1998-12-27 01:01:47 +00:00
|
|
|
return -EINVAL;
|
1998-11-27 14:53:44 +00:00
|
|
|
if ((isdigit(*string) && *(string + 1) == 0) ||
|
|
|
|
|
(isdigit(*string) && isdigit(*(string + 1)) && *(string + 2) == 0)) {
|
2005-06-28 09:58:48 +00:00
|
|
|
if (sscanf(string, "%i", &card) != 1)
|
|
|
|
|
return -EINVAL;
|
1998-11-27 14:53:44 +00:00
|
|
|
if (card < 0 || card > 31)
|
|
|
|
|
return -EINVAL;
|
2005-06-28 09:58:48 +00:00
|
|
|
if (snd_card_load(card))
|
2000-08-25 14:33:53 +00:00
|
|
|
return card;
|
2005-06-28 09:58:48 +00:00
|
|
|
return -ENODEV;
|
1998-11-27 14:53:44 +00:00
|
|
|
}
|
|
|
|
|
for (card = 0; card < 32; card++) {
|
2005-06-28 09:58:48 +00:00
|
|
|
if (! snd_card_load(card))
|
1998-11-27 14:53:44 +00:00
|
|
|
continue;
|
2001-03-26 12:45:48 +00:00
|
|
|
if (snd_ctl_hw_open(&handle, NULL, card, 0) < 0)
|
1998-11-27 14:53:44 +00:00
|
|
|
continue;
|
2001-02-07 15:13:15 +00:00
|
|
|
if (snd_ctl_card_info(handle, &info) < 0) {
|
1998-11-27 14:53:44 +00:00
|
|
|
snd_ctl_close(handle);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
snd_ctl_close(handle);
|
2005-06-28 10:24:44 +00:00
|
|
|
if (!strcmp((const char *)info.id, string))
|
1998-11-27 14:53:44 +00:00
|
|
|
return card;
|
|
|
|
|
}
|
|
|
|
|
return -ENODEV;
|
1998-08-13 15:42:56 +00:00
|
|
|
}
|
1999-12-11 10:50:39 +00:00
|
|
|
|
2001-07-11 15:48:27 +00:00
|
|
|
/**
|
|
|
|
|
* \brief Obtain the card name.
|
|
|
|
|
* \param card Card number
|
|
|
|
|
* \param name Result - card name corresponding to card number
|
|
|
|
|
* \result zero if success, otherwise a negative error code
|
|
|
|
|
*/
|
1999-12-11 10:50:39 +00:00
|
|
|
int snd_card_get_name(int card, char **name)
|
|
|
|
|
{
|
|
|
|
|
snd_ctl_t *handle;
|
2001-02-07 15:13:15 +00:00
|
|
|
snd_ctl_card_info_t info;
|
1999-12-11 10:50:39 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
return -EINVAL;
|
2001-03-26 12:45:48 +00:00
|
|
|
if ((err = snd_ctl_hw_open(&handle, NULL, card, 0)) < 0)
|
1999-12-11 10:50:39 +00:00
|
|
|
return err;
|
2001-02-07 15:13:15 +00:00
|
|
|
if ((err = snd_ctl_card_info(handle, &info)) < 0) {
|
1999-12-11 10:50:39 +00:00
|
|
|
snd_ctl_close(handle);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
snd_ctl_close(handle);
|
2005-06-28 10:24:44 +00:00
|
|
|
*name = strdup((const char *)info.name);
|
1999-12-11 10:50:39 +00:00
|
|
|
if (*name == NULL)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-11 15:48:27 +00:00
|
|
|
/**
|
|
|
|
|
* \brief Obtain the card long name.
|
|
|
|
|
* \param card Card number
|
|
|
|
|
* \param name Result - card long name corresponding to card number
|
|
|
|
|
* \result zero if success, otherwise a negative error code
|
|
|
|
|
*/
|
1999-12-11 10:50:39 +00:00
|
|
|
int snd_card_get_longname(int card, char **name)
|
|
|
|
|
{
|
|
|
|
|
snd_ctl_t *handle;
|
2001-02-07 15:13:15 +00:00
|
|
|
snd_ctl_card_info_t info;
|
1999-12-11 10:50:39 +00:00
|
|
|
int err;
|
|
|
|
|
|
|
|
|
|
if (name == NULL)
|
|
|
|
|
return -EINVAL;
|
2001-03-26 12:45:48 +00:00
|
|
|
if ((err = snd_ctl_hw_open(&handle, NULL, card, 0)) < 0)
|
1999-12-11 10:50:39 +00:00
|
|
|
return err;
|
2001-02-07 15:13:15 +00:00
|
|
|
if ((err = snd_ctl_card_info(handle, &info)) < 0) {
|
1999-12-11 10:50:39 +00:00
|
|
|
snd_ctl_close(handle);
|
|
|
|
|
return err;
|
|
|
|
|
}
|
|
|
|
|
snd_ctl_close(handle);
|
2005-06-28 10:24:44 +00:00
|
|
|
*name = strdup((const char *)info.longname);
|
1999-12-11 10:50:39 +00:00
|
|
|
if (*name == NULL)
|
|
|
|
|
return -ENOMEM;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|