X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=device.c;h=6921ceb0fad60243a8eae13e06adfc2434af4167;hb=300007323ec5963e211b75d2e0d957721dea35fa;hp=aa1ec7828a36e5228094b2ad0c13a2edfe09b093;hpb=f437ea3fe2cada77634eb3a06d34abf680b9c092;p=libsigrok.git diff --git a/device.c b/device.c index aa1ec782..6921ceb0 100644 --- a/device.c +++ b/device.c @@ -20,11 +20,13 @@ #include #include #include +#include extern struct sr_global *global; GSList *devices = NULL; + void sr_device_scan(void) { GSList *plugins, *l; @@ -39,35 +41,9 @@ void sr_device_scan(void) */ for (l = plugins; l; l = l->next) { plugin = l->data; - sr_device_plugin_init(plugin); - } - -} - -int sr_device_plugin_init(struct sr_device_plugin *plugin) -{ - int num_devices, num_probes, i; - - g_message("initializing %s plugin", plugin->name); - num_devices = plugin->init(NULL); - for (i = 0; i < num_devices; i++) { - num_probes = (int)plugin->get_device_info(i, SR_DI_NUM_PROBES); - sr_device_new(plugin, i, num_probes); + sr_init_hwplugins(plugin); } - return num_devices; -} - -void sr_device_close_all(void) -{ - struct sr_device *device; - - while (devices) { - device = devices->data; - if (device->plugin && device->plugin->close) - device->plugin->close(device->plugin_index); - sr_device_destroy(device); - } } GSList *sr_device_list(void) @@ -85,7 +61,11 @@ struct sr_device *sr_device_new(struct sr_device_plugin *plugin, int plugin_inde struct sr_device *device; int i; - device = g_malloc0(sizeof(struct sr_device)); + if (!(device = g_try_malloc0(sizeof(struct sr_device)))) { + sr_err("dev: %s: device malloc failed", __func__); + return NULL; + } + device->plugin = plugin; device->plugin_index = plugin_index; devices = g_slist_append(devices, device); @@ -100,8 +80,6 @@ void sr_device_clear(struct sr_device *device) { unsigned int pnum; - /* TODO: Plugin-specific clear call? */ - if (!device->probes) return; @@ -109,24 +87,6 @@ void sr_device_clear(struct sr_device *device) sr_device_probe_clear(device, pnum); } -void sr_device_destroy(struct sr_device *device) -{ - unsigned int pnum; - - /* - * TODO: Plugin-specific destroy call, need to decrease refcount - * in plugin. - */ - - devices = g_slist_remove(devices, device); - if (device->probes) { - for (pnum = 1; pnum <= g_slist_length(device->probes); pnum++) - sr_device_probe_clear(device, pnum); - g_slist_free(device->probes); - } - g_free(device); -} - void sr_device_probe_clear(struct sr_device *device, int probenum) { struct sr_probe *p; @@ -153,7 +113,13 @@ void sr_device_probe_add(struct sr_device *device, const char *name) int probenum; probenum = g_slist_length(device->probes) + 1; - p = g_malloc0(sizeof(struct sr_probe)); + + if (!(p = g_try_malloc0(sizeof(struct sr_probe)))) { + sr_err("dev: %s: p malloc failed", __func__); + // return SR_ERR_MALLOC; + return; /* FIXME: should return int. */ + } + p->index = probenum; p->enabled = TRUE; if (name) { @@ -183,7 +149,7 @@ struct sr_probe *sr_device_probe_find(struct sr_device *device, int probenum) return found_probe; } -/* TODO: return SIGROK_ERR if probenum not found */ +/* TODO: return SR_ERR if probenum not found */ void sr_device_probe_name(struct sr_device *device, int probenum, const char *name) { @@ -198,7 +164,7 @@ void sr_device_probe_name(struct sr_device *device, int probenum, p->name = g_strdup(name); } -/* TODO: return SIGROK_ERR if probenum not found */ +/* TODO: return SR_ERR if probenum not found */ void sr_device_trigger_clear(struct sr_device *device) { struct sr_probe *p; @@ -216,7 +182,7 @@ void sr_device_trigger_clear(struct sr_device *device) } } -/* TODO: return SIGROK_ERR if probenum not found */ +/* TODO: return SR_ERR if probenum not found */ void sr_device_trigger_set(struct sr_device *device, int probenum, const char *trigger) {