demo: Adjust to GVariant-based sr_config_* functions

This commit is contained in:
Bert Vermeulen 2013-03-26 22:02:45 +01:00
parent f627afd65b
commit d00088ca6d
1 changed files with 29 additions and 24 deletions

View File

@ -99,11 +99,10 @@ static const int hwcaps[] = {
SR_CONF_CONTINUOUS, SR_CONF_CONTINUOUS,
}; };
static const struct sr_samplerates samplerates = { static const uint64_t samplerates[] = {
.low = SR_HZ(1), SR_HZ(1),
.high = SR_GHZ(1), SR_GHZ(1),
.step = SR_HZ(1), SR_HZ(1),
.list = NULL,
}; };
static const char *pattern_strings[] = { static const char *pattern_strings[] = {
@ -112,7 +111,6 @@ static const char *pattern_strings[] = {
"incremental", "incremental",
"all-low", "all-low",
"all-high", "all-high",
NULL,
}; };
/* We name the probes 0-7 on our demo driver. */ /* We name the probes 0-7 on our demo driver. */
@ -220,36 +218,36 @@ static int hw_cleanup(void)
return SR_OK; return SR_OK;
} }
static int config_get(int id, const void **data, const struct sr_dev_inst *sdi) static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi)
{ {
(void)sdi; (void)sdi;
switch (id) { switch (id) {
case SR_CONF_SAMPLERATE: case SR_CONF_SAMPLERATE:
*data = &cur_samplerate; *data = g_variant_new_uint64(cur_samplerate);
break; break;
case SR_CONF_LIMIT_SAMPLES: case SR_CONF_LIMIT_SAMPLES:
*data = &limit_samples; *data = g_variant_new_uint64(limit_samples);
break; break;
case SR_CONF_LIMIT_MSEC: case SR_CONF_LIMIT_MSEC:
*data = &limit_msec; *data = g_variant_new_uint64(limit_msec);
break; break;
case SR_CONF_PATTERN_MODE: case SR_CONF_PATTERN_MODE:
switch (default_pattern) { switch (default_pattern) {
case PATTERN_SIGROK: case PATTERN_SIGROK:
*data = STR_PATTERN_SIGROK; *data = g_variant_new_string(STR_PATTERN_SIGROK);
break; break;
case PATTERN_RANDOM: case PATTERN_RANDOM:
*data = STR_PATTERN_RANDOM; *data = g_variant_new_string(STR_PATTERN_RANDOM);
break; break;
case PATTERN_INC: case PATTERN_INC:
*data = STR_PATTERN_INC; *data = g_variant_new_string(STR_PATTERN_INC);
break; break;
case PATTERN_ALL_LOW: case PATTERN_ALL_LOW:
*data = STR_PATTERN_ALL_LOW; *data = g_variant_new_string(STR_PATTERN_ALL_LOW);
break; break;
case PATTERN_ALL_HIGH: case PATTERN_ALL_HIGH:
*data = STR_PATTERN_ALL_HIGH; *data = g_variant_new_string(STR_PATTERN_ALL_HIGH);
break; break;
} }
break; break;
@ -260,7 +258,7 @@ static int config_get(int id, const void **data, const struct sr_dev_inst *sdi)
return SR_OK; return SR_OK;
} }
static int config_set(int id, const void *value, const struct sr_dev_inst *sdi) static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
{ {
int ret; int ret;
const char *stropt; const char *stropt;
@ -268,24 +266,24 @@ static int config_set(int id, const void *value, const struct sr_dev_inst *sdi)
(void)sdi; (void)sdi;
if (id == SR_CONF_SAMPLERATE) { if (id == SR_CONF_SAMPLERATE) {
cur_samplerate = *(const uint64_t *)value; cur_samplerate = g_variant_get_uint64(data);
sr_dbg("%s: setting samplerate to %" PRIu64, __func__, sr_dbg("%s: setting samplerate to %" PRIu64, __func__,
cur_samplerate); cur_samplerate);
ret = SR_OK; ret = SR_OK;
} else if (id == SR_CONF_LIMIT_SAMPLES) { } else if (id == SR_CONF_LIMIT_SAMPLES) {
limit_msec = 0; limit_msec = 0;
limit_samples = *(const uint64_t *)value; limit_samples = g_variant_get_uint64(data);
sr_dbg("%s: setting limit_samples to %" PRIu64, __func__, sr_dbg("%s: setting limit_samples to %" PRIu64, __func__,
limit_samples); limit_samples);
ret = SR_OK; ret = SR_OK;
} else if (id == SR_CONF_LIMIT_MSEC) { } else if (id == SR_CONF_LIMIT_MSEC) {
limit_msec = *(const uint64_t *)value; limit_msec = g_variant_get_uint64(data);
limit_samples = 0; limit_samples = 0;
sr_dbg("%s: setting limit_msec to %" PRIu64, __func__, sr_dbg("%s: setting limit_msec to %" PRIu64, __func__,
limit_msec); limit_msec);
ret = SR_OK; ret = SR_OK;
} else if (id == SR_CONF_PATTERN_MODE) { } else if (id == SR_CONF_PATTERN_MODE) {
stropt = value; stropt = g_variant_get_string(data, NULL);
ret = SR_OK; ret = SR_OK;
if (!strcmp(stropt, STR_PATTERN_SIGROK)) { if (!strcmp(stropt, STR_PATTERN_SIGROK)) {
default_pattern = PATTERN_SIGROK; default_pattern = PATTERN_SIGROK;
@ -308,20 +306,27 @@ static int config_set(int id, const void *value, const struct sr_dev_inst *sdi)
return ret; return ret;
} }
static int config_list(int key, const void **data, const struct sr_dev_inst *sdi) static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
{ {
GVariant *gvar;
GVariantBuilder gvb;
(void)sdi; (void)sdi;
switch (key) { switch (key) {
case SR_CONF_DEVICE_OPTIONS: case SR_CONF_DEVICE_OPTIONS:
*data = hwcaps; *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
break; break;
case SR_CONF_SAMPLERATE: case SR_CONF_SAMPLERATE:
*data = &samplerates; g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), samplerates,
ARRAY_SIZE(samplerates), sizeof(uint64_t));
g_variant_builder_add(&gvb, "{sv}", "samplerate-steps", gvar);
*data = g_variant_builder_end(&gvb);
break; break;
case SR_CONF_PATTERN_MODE: case SR_CONF_PATTERN_MODE:
*data = &pattern_strings; *data = g_variant_new_strv(pattern_strings, ARRAY_SIZE(pattern_strings));
break; break;
default: default:
return SR_ERR_ARG; return SR_ERR_ARG;