mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-26 01:40:07 -05:00
ucm: Set default include path
Many UCM profiles include the UCM profile components under ucm/* subdirectories and thusly put <searchdir:ucm> at each place. This is rather cumbersome. This patch makes the UCM parser to set the default include path, so that each profile no longer needs to set searchdir. All the <searchdir:ucm> lines currently found in the profiles are removed gracefully, too. For the needed implementation, a new helper, _snd_config_load_with_include() is introduced. It's not exported, only for the use inside alsa-lib. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
d48adc2a20
commit
c9fcf98369
23 changed files with 41 additions and 25 deletions
|
|
@ -354,6 +354,9 @@ int snd_config_search_alias_hooks(snd_config_t *config,
|
||||||
|
|
||||||
int _snd_conf_generic_id(const char *id);
|
int _snd_conf_generic_id(const char *id);
|
||||||
|
|
||||||
|
int _snd_config_load_with_include(snd_config_t *config, snd_input_t *in,
|
||||||
|
const char *default_include_path);
|
||||||
|
|
||||||
/* convenience macros */
|
/* convenience macros */
|
||||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
|
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
|
||||||
|
|
||||||
|
|
|
||||||
32
src/conf.c
32
src/conf.c
|
|
@ -1832,7 +1832,8 @@ int snd_config_top(snd_config_t **config)
|
||||||
return _snd_config_make(config, 0, SND_CONFIG_TYPE_COMPOUND);
|
return _snd_config_make(config, 0, SND_CONFIG_TYPE_COMPOUND);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int snd_config_load1(snd_config_t *config, snd_input_t *in, int override)
|
static int snd_config_load1(snd_config_t *config, snd_input_t *in, int override,
|
||||||
|
char *default_include_path)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
input_t input;
|
input_t input;
|
||||||
|
|
@ -1847,6 +1848,11 @@ static int snd_config_load1(snd_config_t *config, snd_input_t *in, int override)
|
||||||
fd->column = 0;
|
fd->column = 0;
|
||||||
fd->next = NULL;
|
fd->next = NULL;
|
||||||
INIT_LIST_HEAD(&fd->include_paths);
|
INIT_LIST_HEAD(&fd->include_paths);
|
||||||
|
if (default_include_path) {
|
||||||
|
err = add_include_path(fd, default_include_path);
|
||||||
|
if (err < 0)
|
||||||
|
goto _end;
|
||||||
|
}
|
||||||
input.current = fd;
|
input.current = fd;
|
||||||
input.unget = 0;
|
input.unget = 0;
|
||||||
err = parse_defs(config, &input, 0, override);
|
err = parse_defs(config, &input, 0, override);
|
||||||
|
|
@ -1915,9 +1921,29 @@ static int snd_config_load1(snd_config_t *config, snd_input_t *in, int override)
|
||||||
*/
|
*/
|
||||||
int snd_config_load(snd_config_t *config, snd_input_t *in)
|
int snd_config_load(snd_config_t *config, snd_input_t *in)
|
||||||
{
|
{
|
||||||
return snd_config_load1(config, in, 0);
|
return snd_config_load1(config, in, 0, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef DOC_HIDDEN
|
||||||
|
/* load config with the default include path; used internally for UCM parser */
|
||||||
|
int _snd_config_load_with_include(snd_config_t *config, snd_input_t *in,
|
||||||
|
const char *default_include_path)
|
||||||
|
{
|
||||||
|
int err;
|
||||||
|
char *s = NULL;
|
||||||
|
|
||||||
|
if (default_include_path) {
|
||||||
|
s = strdup(default_include_path);
|
||||||
|
if (!s)
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
err = snd_config_load1(config, in, 0, s);
|
||||||
|
if (err < 0)
|
||||||
|
free(s);
|
||||||
|
return err;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Loads a configuration tree and overrides existing configuration nodes.
|
* \brief Loads a configuration tree and overrides existing configuration nodes.
|
||||||
* \param config Handle to a top level configuration node.
|
* \param config Handle to a top level configuration node.
|
||||||
|
|
@ -1930,7 +1956,7 @@ int snd_config_load(snd_config_t *config, snd_input_t *in)
|
||||||
*/
|
*/
|
||||||
int snd_config_load_override(snd_config_t *config, snd_input_t *in)
|
int snd_config_load_override(snd_config_t *config, snd_input_t *in)
|
||||||
{
|
{
|
||||||
return snd_config_load1(config, in, 1);
|
return snd_config_load1(config, in, 1, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Use case Configuration for bytcr-rt5640
|
# Use case Configuration for bytcr-rt5640
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Use case Configuration for bytcr-rt5640
|
# Use case Configuration for bytcr-rt5640
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Use case Configuration for bytcr-rt5640
|
# Use case Configuration for bytcr-rt5640
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Use case Configuration for bytcr-rt5640
|
# Use case Configuration for bytcr-rt5640
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Use case Configuration for bytcr-rt5640
|
# Use case Configuration for bytcr-rt5640
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Use case Configuration for bytcr-rt5640
|
# Use case Configuration for bytcr-rt5640
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Use case Configuration for bytcr-rt5640
|
# Use case Configuration for bytcr-rt5640
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
# Adapted from https://github.com/plbossart/UCM/tree/master/bytcr-rt5651
|
||||||
|
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
EnableSequence [
|
EnableSequence [
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
# ALSA PCM
|
# ALSA PCM
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,3 @@
|
||||||
<searchdir:ucm>
|
|
||||||
|
|
||||||
SectionVerb {
|
SectionVerb {
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,9 +34,6 @@
|
||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
||||||
/** The name of the environment variable containing the UCM directory */
|
|
||||||
#define ALSA_CONFIG_UCM_VAR "ALSA_CONFIG_UCM"
|
|
||||||
|
|
||||||
/* Directories to store UCM configuration files for components, like
|
/* Directories to store UCM configuration files for components, like
|
||||||
* off-soc codecs or embedded DSPs. Components can define their own
|
* off-soc codecs or embedded DSPs. Components can define their own
|
||||||
* devices and sequences, to be reused by sound cards/machines. UCM
|
* devices and sequences, to be reused by sound cards/machines. UCM
|
||||||
|
|
|
||||||
|
|
@ -243,3 +243,6 @@ void uc_mgr_free_sequence_element(struct sequence_element *seq);
|
||||||
void uc_mgr_free_transition_element(struct transition_sequence *seq);
|
void uc_mgr_free_transition_element(struct transition_sequence *seq);
|
||||||
void uc_mgr_free_verb(snd_use_case_mgr_t *uc_mgr);
|
void uc_mgr_free_verb(snd_use_case_mgr_t *uc_mgr);
|
||||||
void uc_mgr_free(snd_use_case_mgr_t *uc_mgr);
|
void uc_mgr_free(snd_use_case_mgr_t *uc_mgr);
|
||||||
|
|
||||||
|
/** The name of the environment variable containing the UCM directory */
|
||||||
|
#define ALSA_CONFIG_UCM_VAR "ALSA_CONFIG_UCM"
|
||||||
|
|
|
||||||
|
|
@ -54,6 +54,7 @@ int uc_mgr_config_load(const char *file, snd_config_t **cfg)
|
||||||
FILE *fp;
|
FILE *fp;
|
||||||
snd_input_t *in;
|
snd_input_t *in;
|
||||||
snd_config_t *top;
|
snd_config_t *top;
|
||||||
|
const char *default_path;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
fp = fopen(file, "r");
|
fp = fopen(file, "r");
|
||||||
|
|
@ -70,7 +71,11 @@ int uc_mgr_config_load(const char *file, snd_config_t **cfg)
|
||||||
err = snd_config_top(&top);
|
err = snd_config_top(&top);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
err = snd_config_load(top, in);
|
|
||||||
|
default_path = getenv(ALSA_CONFIG_UCM_VAR);
|
||||||
|
if (!default_path || !*default_path)
|
||||||
|
default_path = ALSA_CONFIG_DIR "/ucm";
|
||||||
|
err = _snd_config_load_with_include(top, in, default_path);
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
uc_error("could not load configuration file %s", file);
|
uc_error("could not load configuration file %s", file);
|
||||||
snd_config_delete(top);
|
snd_config_delete(top);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue