]> sigrok.org Git - libsigrok.git/blobdiff - device.c
Use glib's g_fopen() instead of fopen().
[libsigrok.git] / device.c
index 1f46573b01f5202e635ede2d14b1a9d447a48a2e..f5674b4ca426a1b29bc5699259185becdbc6cb92 100644 (file)
--- a/device.c
+++ b/device.c
 #include <glib.h>
 #include <sigrok.h>
 
-extern struct sigrok_global *global;
+extern struct sr_global *global;
 
 GSList *devices = NULL;
 
 void device_scan(void)
 {
        GSList *plugins, *l;
-       struct device_plugin *plugin;
-       int num_devices, num_probes, i;
+       struct sr_device_plugin *plugin;
 
        plugins = list_hwplugins();
 
@@ -40,23 +39,32 @@ void device_scan(void)
         */
        for (l = plugins; l; l = l->next) {
                plugin = l->data;
-               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,
-                                                       DI_NUM_PROBES);
-                       device_new(plugin, i, num_probes);
-               }
+               device_plugin_init(plugin);
+       }
+
+}
+
+int 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);
+               device_new(plugin, i, num_probes);
        }
+
+       return num_devices;
 }
 
 void device_close_all(void)
 {
-       struct device *device;
+       struct sr_device *device;
 
        while (devices) {
                device = devices->data;
-               if (device->plugin)
+               if (device->plugin && device->plugin->close)
                        device->plugin->close(device->plugin_index);
                device_destroy(device);
        }
@@ -64,30 +72,31 @@ void device_close_all(void)
 
 GSList *device_list(void)
 {
+
+       if (!devices)
+               device_scan();
+
        return devices;
 }
 
-struct device *device_new(struct device_plugin *plugin, int plugin_index,
-                         int num_probes)
+struct sr_device *device_new(struct sr_device_plugin *plugin, int plugin_index,
+                            int num_probes)
 {
-       struct device *device;
+       struct sr_device *device;
        int i;
-       char probename[16];
 
-       device = g_malloc0(sizeof(struct device));
+       device = g_malloc0(sizeof(struct sr_device));
        device->plugin = plugin;
        device->plugin_index = plugin_index;
        devices = g_slist_append(devices, device);
 
-       for (i = 0; i < num_probes; i++) {
-               snprintf(probename, 16, "%d", i + 1);
-               device_probe_add(device, probename);
-       }
+       for (i = 0; i < num_probes; i++)
+               device_probe_add(device, NULL);
 
        return device;
 }
 
-void device_clear(struct device *device)
+void device_clear(struct sr_device *device)
 {
        unsigned int pnum;
 
@@ -100,7 +109,7 @@ void device_clear(struct device *device)
                device_probe_clear(device, pnum);
 }
 
-void device_destroy(struct device *device)
+void device_destroy(struct sr_device *device)
 {
        unsigned int pnum;
 
@@ -118,7 +127,7 @@ void device_destroy(struct device *device)
        g_free(device);
 }
 
-void device_probe_clear(struct device *device, int probenum)
+void device_probe_clear(struct sr_device *device, int probenum)
 {
        struct probe *p;
 
@@ -137,19 +146,27 @@ void device_probe_clear(struct device *device, int probenum)
        }
 }
 
-void device_probe_add(struct device *device, char *name)
+void device_probe_add(struct sr_device *device, char *name)
 {
        struct probe *p;
+       char probename[16];
+       int probenum;
 
+       probenum = g_slist_length(device->probes) + 1;
        p = g_malloc0(sizeof(struct probe));
-       p->index = g_slist_length(device->probes) + 1;
+       p->index = probenum;
        p->enabled = TRUE;
-       p->name = g_strdup(name);
+       if (name) {
+               p->name = g_strdup(name);
+       } else {
+               snprintf(probename, 16, "%d", probenum);
+               p->name = g_strdup(probename);
+       }
        p->trigger = NULL;
        device->probes = g_slist_append(device->probes, p);
 }
 
-struct probe *probe_find(struct device *device, int probenum)
+struct probe *probe_find(struct sr_device *device, int probenum)
 {
        GSList *l;
        struct probe *p, *found_probe;
@@ -166,7 +183,8 @@ struct probe *probe_find(struct device *device, int probenum)
        return found_probe;
 }
 
-void device_probe_name(struct device *device, int probenum, char *name)
+/* TODO: return SIGROK_ERR if probenum not found */
+void device_probe_name(struct sr_device *device, int probenum, char *name)
 {
        struct probe *p;
 
@@ -179,7 +197,8 @@ void device_probe_name(struct device *device, int probenum, char *name)
        p->name = g_strdup(name);
 }
 
-void device_trigger_clear(struct device *device)
+/* TODO: return SIGROK_ERR if probenum not found */
+void device_trigger_clear(struct sr_device *device)
 {
        struct probe *p;
        unsigned int pnum;
@@ -196,7 +215,8 @@ void device_trigger_clear(struct device *device)
        }
 }
 
-void device_trigger_set(struct device *device, int probenum, char *trigger)
+/* TODO: return SIGROK_ERR if probenum not found */
+void device_trigger_set(struct sr_device *device, int probenum, char *trigger)
 {
        struct probe *p;
 
@@ -208,4 +228,17 @@ void device_trigger_set(struct device *device, int probenum, char *trigger)
                g_free(p->trigger);
 
        p->trigger = g_strdup(trigger);
+
+}
+
+gboolean device_has_hwcap(struct sr_device *device, int hwcap)
+{
+       int *capabilities, i;
+
+       if ((capabilities = device->plugin->get_capabilities()))
+               for (i = 0; capabilities[i]; i++)
+                       if (capabilities[i] == hwcap)
+                               return TRUE;
+
+       return FALSE;
 }