sr: replace published static option data with API calls

To find a driver or device option by name,  the sr_drvopt_name_get() and
sr_devopt_name_get() calls are now available. This was the only reason the
driver and device struct sr_hwcap_option arrays were published.
This commit is contained in:
Bert Vermeulen 2012-08-05 03:18:07 +02:00
parent 3cf91809a5
commit 15cb43d67c
2 changed files with 58 additions and 16 deletions

View File

@ -28,7 +28,7 @@
/* Driver scanning options. */ /* Driver scanning options. */
SR_API struct sr_hwcap_option sr_drvopts[] = { static struct sr_hwcap_option sr_drvopts[] = {
{SR_HWOPT_MODEL, SR_T_KEYVALUE, "Model", "model"}, {SR_HWOPT_MODEL, SR_T_KEYVALUE, "Model", "model"},
{SR_HWOPT_CONN, SR_T_CHAR, "Connection", "conn"}, {SR_HWOPT_CONN, SR_T_CHAR, "Connection", "conn"},
{SR_HWOPT_SERIALCOMM, SR_T_CHAR, "Serial communication", "serialcomm"}, {SR_HWOPT_SERIALCOMM, SR_T_CHAR, "Serial communication", "serialcomm"},
@ -36,7 +36,7 @@ SR_API struct sr_hwcap_option sr_drvopts[] = {
}; };
/* Device instance options. */ /* Device instance options. */
SR_API struct sr_hwcap_option sr_hwcap_options[] = { static struct sr_hwcap_option sr_devopts[] = {
{SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"}, {SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"},
{SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"}, {SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"},
{SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "pattern"}, {SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "pattern"},
@ -244,17 +244,37 @@ SR_API gboolean sr_driver_hwcap_exists(struct sr_dev_driver *driver, int hwcap)
/** /**
* Get information about a hardware driver option. * Get information about a hardware driver option.
* *
* @param hwopt The option to get. * @param opt The option to get.
* *
* @return A pointer to a struct with information about the parameter, or NULL * @return A pointer to a struct sr_hwcap_option, or NULL if the option
* if the option was not found. * was not found.
*/ */
SR_API const struct sr_hwcap_option *sr_drvopt_get(int hwopt) SR_API const struct sr_hwcap_option *sr_drvopt_get(int opt)
{ {
int i; int i;
for (i = 0; sr_drvopts[i].hwcap; i++) { for (i = 0; sr_drvopts[i].hwcap; i++) {
if (sr_drvopts[i].hwcap == hwopt) if (sr_drvopts[i].hwcap == opt)
return &sr_drvopts[i];
}
return NULL;
}
/**
* Get information about a hardware driver option, by name.
*
* @param optname The name of the option to get.
*
* @return A pointer to a struct sr_hwcap_option, or NULL if the option
* was not found.
*/
SR_API const struct sr_hwcap_option *sr_drvopt_name_get(const char *optname)
{
int i;
for (i = 0; sr_drvopts[i].hwcap; i++) {
if (!strcmp(sr_drvopts[i].shortname, optname))
return &sr_drvopts[i]; return &sr_drvopts[i];
} }
@ -264,18 +284,38 @@ SR_API const struct sr_hwcap_option *sr_drvopt_get(int hwopt)
/** /**
* Get information about a device option. * Get information about a device option.
* *
* @param hwopt The option to get. * @param opt The option to get.
* *
* @return A pointer to a struct with information about the parameter, or NULL * @return A pointer to a struct sr_hwcap_option, or NULL if the option
* if the capability was not found. * was not found.
*/ */
SR_API const struct sr_hwcap_option *sr_devopt_get(int hwopt) SR_API const struct sr_hwcap_option *sr_devopt_get(int opt)
{ {
int i; int i;
for (i = 0; sr_hwcap_options[i].hwcap; i++) { for (i = 0; sr_devopts[i].hwcap; i++) {
if (sr_hwcap_options[i].hwcap == hwopt) if (sr_devopts[i].hwcap == opt)
return &sr_hwcap_options[i]; return &sr_devopts[i];
}
return NULL;
}
/**
* Get information about a device option, by name.
*
* @param optname The name of the option to get.
*
* @return A pointer to a struct sr_hwcap_option, or NULL if the option
* was not found.
*/
SR_API const struct sr_hwcap_option *sr_devopt_name_get(const char *optname)
{
int i;
for (i = 0; sr_devopts[i].hwcap; i++) {
if (!strcmp(sr_devopts[i].shortname, optname))
return &sr_devopts[i];
} }
return NULL; return NULL;

View File

@ -70,8 +70,10 @@ SR_API GSList *sr_driver_scan(struct sr_dev_driver *driver, GSList *options);
SR_API int sr_info_get(struct sr_dev_driver *driver, int id, SR_API int sr_info_get(struct sr_dev_driver *driver, int id,
const void **data, const struct sr_dev_inst *sdi); const void **data, const struct sr_dev_inst *sdi);
SR_API gboolean sr_driver_hwcap_exists(struct sr_dev_driver *driver, int hwcap); SR_API gboolean sr_driver_hwcap_exists(struct sr_dev_driver *driver, int hwcap);
SR_API const struct sr_hwcap_option *sr_drvopt_get(int hwopt); SR_API const struct sr_hwcap_option *sr_drvopt_get(int opt);
SR_API const struct sr_hwcap_option *sr_devopt_get(int hwcap); SR_API const struct sr_hwcap_option *sr_drvopt_name_get(const char *optname);
SR_API const struct sr_hwcap_option *sr_devopt_get(int opt);
SR_API const struct sr_hwcap_option *sr_devopt_name_get(const char *optname);
/*--- session.c -------------------------------------------------------------*/ /*--- session.c -------------------------------------------------------------*/