topology: add tplg_get_unsigned() function

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
Jaroslav Kysela 2019-12-14 14:05:49 +01:00
parent 1047a5f3c0
commit 14e43a1187
4 changed files with 55 additions and 25 deletions

View file

@ -556,7 +556,7 @@ static int parse_tuple_set(snd_config_t *cfg,
struct tplg_tuple_set *set; struct tplg_tuple_set *set;
unsigned int type, num_tuples = 0; unsigned int type, num_tuples = 0;
struct tplg_tuple *tuple; struct tplg_tuple *tuple;
unsigned long int tuple_val; unsigned int tuple_val;
int ival; int ival;
snd_config_get_id(cfg, &id); snd_config_get_id(cfg, &id);
@ -598,10 +598,6 @@ static int parse_tuple_set(snd_config_t *cfg,
if (snd_config_get_id(n, &id) < 0) if (snd_config_get_id(n, &id) < 0)
continue; continue;
/* get value */
if (snd_config_get_string(n, &value) < 0)
continue;
tuple = &set->tuple[set->num_tuples]; tuple = &set->tuple[set->num_tuples];
snd_strlcpy(tuple->token, id, snd_strlcpy(tuple->token, id,
SNDRV_CTL_ELEM_ID_NAME_MAXLEN); SNDRV_CTL_ELEM_ID_NAME_MAXLEN);
@ -633,14 +629,9 @@ static int parse_tuple_set(snd_config_t *cfg,
case SND_SOC_TPLG_TUPLE_TYPE_BYTE: case SND_SOC_TPLG_TUPLE_TYPE_BYTE:
case SND_SOC_TPLG_TUPLE_TYPE_SHORT: case SND_SOC_TPLG_TUPLE_TYPE_SHORT:
case SND_SOC_TPLG_TUPLE_TYPE_WORD: case SND_SOC_TPLG_TUPLE_TYPE_WORD:
if (snd_config_get_string(n, &value) < 0) ival = tplg_get_unsigned(n, &tuple_val, 0);
continue; if (ival < 0) {
errno = 0; SNDERR("error: tuple %s: %s\n", id, snd_strerror(ival));
/* no support for negative value */
tuple_val = strtoul(value, NULL, 0);
if ((errno == ERANGE && tuple_val == ULONG_MAX)
|| (errno != 0 && tuple_val == 0)) {
SNDERR("error: tuple %s:strtoul fail\n", id);
goto err; goto err;
} }
@ -654,7 +645,7 @@ static int parse_tuple_set(snd_config_t *cfg,
goto err; goto err;
} }
tuple->value = (unsigned int) tuple_val; tuple->value = tuple_val;
tplg_dbg("\t\t%s = 0x%x\n", tuple->token, tuple->value); tplg_dbg("\t\t%s = 0x%x\n", tuple->token, tuple->value);
break; break;

View file

@ -55,6 +55,53 @@ int tplg_get_integer(snd_config_t *n, int *val, int base)
} }
} }
/*
* Get unsigned integer value
*/
int tplg_get_unsigned(snd_config_t *n, unsigned *val, int base)
{
const char *str;
long lval;
long long llval;
unsigned long uval;
int err;
switch (snd_config_get_type(n)) {
case SND_CONFIG_TYPE_INTEGER:
err = snd_config_get_integer(n, &lval);
if (err < 0)
return err;
if (lval < 0 || lval > UINT_MAX)
return -ERANGE;
*val = lval;
return err;
case SND_CONFIG_TYPE_INTEGER64:
err = snd_config_get_integer64(n, &llval);
if (err < 0)
return err;
if (llval < 0 || llval > UINT_MAX)
return -ERANGE;
*val = llval;
return err;
case SND_CONFIG_TYPE_STRING:
err = snd_config_get_string(n, &str);
if (err < 0)
return err;
errno = 0;
uval = strtoul(str, NULL, base);
if (errno == ERANGE && uval == ULONG_MAX)
return -ERANGE;
if (errno && uval == 0)
return -EINVAL;
if (uval > UINT_MAX)
return -ERANGE;
*val = uval;
return 0;
default:
return -EINVAL;
}
}
/* /*
* Parse compound * Parse compound
*/ */

View file

@ -606,8 +606,7 @@ static int tplg_parse_fe_dai(snd_tplg_t *tplg ATTRIBUTE_UNUSED,
struct snd_soc_tplg_pcm *pcm = elem->pcm; struct snd_soc_tplg_pcm *pcm = elem->pcm;
snd_config_iterator_t i, next; snd_config_iterator_t i, next;
snd_config_t *n; snd_config_t *n;
const char *id, *value = NULL; const char *id;
unsigned long int id_val;
snd_config_get_id(cfg, &id); snd_config_get_id(cfg, &id);
tplg_dbg("\t\tFE DAI %s:\n", id); tplg_dbg("\t\tFE DAI %s:\n", id);
@ -622,19 +621,11 @@ static int tplg_parse_fe_dai(snd_tplg_t *tplg ATTRIBUTE_UNUSED,
continue; continue;
if (strcmp(id, "id") == 0) { if (strcmp(id, "id") == 0) {
if (snd_config_get_string(n, &value) < 0) if (tplg_get_unsigned(n, &pcm->dai_id, 0)) {
continue;
errno = 0;
/* no support for negative value */
id_val = strtoul(value, NULL, 0);
if ((errno == ERANGE && id_val == ULONG_MAX)
|| (errno != 0 && id_val == 0)
|| id_val > UINT_MAX) {
SNDERR("error: invalid fe dai ID\n"); SNDERR("error: invalid fe dai ID\n");
return -EINVAL; return -EINVAL;
} }
pcm->dai_id = (int) id_val;
tplg_dbg("\t\t\tindex: %d\n", pcm->dai_id); tplg_dbg("\t\t\tindex: %d\n", pcm->dai_id);
} }
} }

View file

@ -281,6 +281,7 @@ struct tplg_elem* tplg_elem_new_common(snd_tplg_t *tplg,
snd_config_t *cfg, const char *name, enum snd_tplg_type type); snd_config_t *cfg, const char *name, enum snd_tplg_type type);
int tplg_get_integer(snd_config_t *n, int *val, int base); int tplg_get_integer(snd_config_t *n, int *val, int base);
int tplg_get_unsigned(snd_config_t *n, unsigned *val, int base);
int tplg_parse_channel(snd_tplg_t *tplg ATTRIBUTE_UNUSED, int tplg_parse_channel(snd_tplg_t *tplg ATTRIBUTE_UNUSED,
snd_config_t *cfg, void *private); snd_config_t *cfg, void *private);