]> sigrok.org Git - libsigrok.git/blame - hwplugin.c
Use g_try_malloc/g_free/g_strdup consistently.
[libsigrok.git] / hwplugin.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Bert Vermeulen <bert@biot.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <stdlib.h>
21#include <stdio.h>
22#include <sys/types.h>
23#include <dirent.h>
24#include <string.h>
25#include <glib.h>
b7f09cf8
UH
26#include "sigrok.h"
27#include "sigrok-internal.h"
a1bb33af 28
62c82025 29/* The list of loaded plugins lives here. */
a0ecd83b 30static GSList *plugins;
a1bb33af 31
62c82025
UH
32/*
33 * This enumerates which plugin capabilities correspond to user-settable
34 * options.
35 */
a65de030 36/* TODO: This shouldn't be a global. */
1a081ca6 37SR_API struct sr_hwcap_option sr_hwcap_options[] = {
5a2326a7
UH
38 {SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"},
39 {SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"},
40 {SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "patternmode"},
4d436e71 41 {SR_HWCAP_RLE, SR_T_BOOL, "Run Length Encoding", "rle"},
49d0ce50 42 {0, 0, NULL, NULL},
a1bb33af
UH
43};
44
a61b0e6a 45#ifdef HAVE_LA_DEMO
5c2d46d1 46extern struct sr_device_plugin demo_plugin_info;
a61b0e6a 47#endif
960a75e4 48#ifdef HAVE_LA_SALEAE_LOGIC
5c2d46d1 49extern struct sr_device_plugin saleae_logic_plugin_info;
960a75e4
UH
50#endif
51#ifdef HAVE_LA_OLS
5c2d46d1 52extern struct sr_device_plugin ols_plugin_info;
960a75e4
UH
53#endif
54#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
5c2d46d1 55extern struct sr_device_plugin zeroplus_logic_cube_plugin_info;
960a75e4 56#endif
5b907f9b 57#ifdef HAVE_LA_ASIX_SIGMA
5c2d46d1 58extern struct sr_device_plugin asix_sigma_plugin_info;
5b907f9b 59#endif
f4314d7e 60#ifdef HAVE_LA_CHRONOVU_LA8
ca070ed9 61extern SR_PRIV struct device_plugin chronovu_la8_plugin_info;
f4314d7e 62#endif
bffed4fc 63#ifdef HAVE_LA_LINK_MSO19
5c2d46d1 64extern struct sr_device_plugin link_mso19_plugin_info;
bffed4fc 65#endif
6ed4f044 66#ifdef HAVE_LA_ALSA
5c2d46d1 67extern struct sr_device_plugin alsa_plugin_info;
6ed4f044
DR
68#endif
69
49d0ce50 70/* TODO: No linked list needed, this can be a simple array. */
1a081ca6 71SR_PRIV int load_hwplugins(void)
a1bb33af 72{
a61b0e6a 73#ifdef HAVE_LA_DEMO
6239c175 74 plugins = g_slist_append(plugins, (gpointer *)&demo_plugin_info);
a61b0e6a 75#endif
960a75e4 76#ifdef HAVE_LA_SALEAE_LOGIC
62c82025 77 plugins =
49d0ce50 78 g_slist_append(plugins, (gpointer *)&saleae_logic_plugin_info);
960a75e4
UH
79#endif
80#ifdef HAVE_LA_OLS
49d0ce50 81 plugins = g_slist_append(plugins, (gpointer *)&ols_plugin_info);
960a75e4
UH
82#endif
83#ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE
62c82025 84 plugins = g_slist_append(plugins,
49d0ce50 85 (gpointer *)&zeroplus_logic_cube_plugin_info);
960a75e4 86#endif
5b907f9b 87#ifdef HAVE_LA_ASIX_SIGMA
28a35d8a 88 plugins = g_slist_append(plugins, (gpointer *)&asix_sigma_plugin_info);
5b907f9b 89#endif
f4314d7e
UH
90#ifdef HAVE_LA_CHRONOVU_LA8
91 plugins = g_slist_append(plugins, (gpointer *)&chronovu_la8_plugin_info);
92#endif
bffed4fc
UH
93#ifdef HAVE_LA_LINK_MSO19
94 plugins = g_slist_append(plugins, (gpointer *)&link_mso19_plugin_info);
95#endif
6ed4f044
DR
96#ifdef HAVE_LA_ALSA
97 plugins = g_slist_append(plugins, (gpointer *)&alsa_plugin_info);
98#endif
99
e46b8fb1 100 return SR_OK;
a1bb33af
UH
101}
102
1a081ca6 103SR_API GSList *sr_list_hwplugins(void)
a1bb33af 104{
a1bb33af
UH
105 return plugins;
106}
107
1a081ca6 108SR_API int sr_init_hwplugins(struct sr_device_plugin *plugin)
8722c31e 109{
464d12c7
KS
110 int num_devices, num_probes, i, j;
111 int num_initialized_devices = 0;
112 struct sr_device *device;
113 char **probe_names;
8722c31e 114
8f81fe87 115 sr_dbg("initializing %s plugin", plugin->name);
8722c31e
BV
116 num_devices = plugin->init(NULL);
117 for (i = 0; i < num_devices; i++) {
4d436e71
GM
118 num_probes = GPOINTER_TO_INT(
119 plugin->get_device_info(i, SR_DI_NUM_PROBES));
c37d2b1b
UH
120 probe_names = (char **)plugin->get_device_info(i,
121 SR_DI_PROBE_NAMES);
464d12c7
KS
122
123 if (!probe_names) {
c37d2b1b
UH
124 sr_warn("hwplugin: %s: plugin %s does not return a "
125 "list of probe names", __func__, plugin->name);
464d12c7
KS
126 continue;
127 }
128
129 device = sr_device_new(plugin, i);
c37d2b1b 130 for (j = 0; j < num_probes; j++)
464d12c7 131 sr_device_probe_add(device, probe_names[j]);
464d12c7 132 num_initialized_devices++;
8722c31e
BV
133 }
134
464d12c7 135 return num_initialized_devices;
8722c31e
BV
136}
137
1a081ca6 138SR_API void sr_cleanup_hwplugins(void)
8722c31e
BV
139{
140 struct sr_device_plugin *plugin;
141 GSList *l;
142
143 for (l = plugins; l; l = l->next) {
144 plugin = l->data;
145 if (plugin->cleanup)
146 plugin->cleanup();
147 }
8722c31e
BV
148}
149
1a081ca6 150SR_API struct sr_device_instance *sr_device_instance_new(int index, int status,
49d0ce50 151 const char *vendor, const char *model, const char *version)
a1bb33af 152{
a00ba012 153 struct sr_device_instance *sdi;
a1bb33af 154
133a37bf
UH
155 if (!(sdi = g_try_malloc(sizeof(struct sr_device_instance)))) {
156 sr_err("hwplugin: %s: sdi malloc failed", __func__);
a1bb33af 157 return NULL;
133a37bf 158 }
a1bb33af
UH
159
160 sdi->index = index;
161 sdi->status = status;
162 sdi->instance_type = -1;
8722c31e
BV
163 sdi->vendor = vendor ? g_strdup(vendor) : NULL;
164 sdi->model = model ? g_strdup(model) : NULL;
165 sdi->version = version ? g_strdup(version) : NULL;
01cf8814 166 sdi->priv = NULL;
a1bb33af
UH
167
168 return sdi;
169}
170
1a081ca6
UH
171SR_API struct sr_device_instance *sr_get_device_instance(
172 GSList *device_instances, int device_index)
a1bb33af 173{
a00ba012 174 struct sr_device_instance *sdi;
a1bb33af
UH
175 GSList *l;
176
62c82025 177 for (l = device_instances; l; l = l->next) {
a00ba012 178 sdi = (struct sr_device_instance *)(l->data);
62c82025 179 if (sdi->index == device_index)
a1bb33af
UH
180 return sdi;
181 }
b08024a8 182 sr_warn("could not find device index %d instance", device_index);
a1bb33af
UH
183
184 return NULL;
185}
186
1a081ca6 187SR_API void sr_device_instance_free(struct sr_device_instance *sdi)
a1bb33af 188{
66410a86 189 g_free(sdi->priv);
8722c31e
BV
190 g_free(sdi->vendor);
191 g_free(sdi->model);
192 g_free(sdi->version);
193 g_free(sdi);
a1bb33af
UH
194}
195
22b02383
UH
196#ifdef HAVE_LIBUSB_1_0
197
1a081ca6 198SR_PRIV struct sr_usb_device_instance *sr_usb_device_instance_new(uint8_t bus,
62c82025 199 uint8_t address, struct libusb_device_handle *hdl)
a1bb33af 200{
6c290072 201 struct sr_usb_device_instance *udi;
a1bb33af 202
133a37bf
UH
203 if (!(udi = g_try_malloc(sizeof(struct sr_usb_device_instance)))) {
204 sr_err("hwplugin: %s: udi malloc failed", __func__);
a1bb33af 205 return NULL;
133a37bf 206 }
a1bb33af
UH
207
208 udi->bus = bus;
209 udi->address = address;
49d0ce50 210 udi->devhdl = hdl; /* TODO: Check if this is NULL? */
a1bb33af
UH
211
212 return udi;
213}
214
1a081ca6 215SR_PRIV void sr_usb_device_instance_free(struct sr_usb_device_instance *usb)
a1bb33af 216{
17e1afcb 217 /* Avoid compiler warnings. */
cb93f8a9 218 (void)usb;
a1bb33af 219
62c82025 220 /* Nothing to do for this device instance type. */
a1bb33af
UH
221}
222
22b02383
UH
223#endif
224
1a081ca6 225SR_PRIV struct sr_serial_device_instance *sr_serial_device_instance_new(
49d0ce50 226 const char *port, int fd)
a1bb33af 227{
6c290072 228 struct sr_serial_device_instance *serial;
a1bb33af 229
133a37bf
UH
230 if (!(serial = g_try_malloc(sizeof(struct sr_serial_device_instance)))) {
231 sr_err("hwplugin: %s: serial malloc failed", __func__);
a1bb33af 232 return NULL;
133a37bf 233 }
a1bb33af 234
133a37bf 235 serial->port = g_strdup(port);
a1bb33af
UH
236 serial->fd = fd;
237
238 return serial;
239}
240
1a081ca6
UH
241SR_PRIV void sr_serial_device_instance_free(
242 struct sr_serial_device_instance *serial)
a1bb33af 243{
133a37bf 244 g_free(serial->port);
a1bb33af
UH
245}
246
1a081ca6 247SR_API int sr_find_hwcap(int *capabilities, int hwcap)
a1bb33af
UH
248{
249 int i;
250
49d0ce50 251 for (i = 0; capabilities[i]; i++) {
62c82025 252 if (capabilities[i] == hwcap)
a1bb33af 253 return TRUE;
49d0ce50 254 }
a1bb33af
UH
255
256 return FALSE;
257}
258
1a081ca6 259SR_API struct sr_hwcap_option *sr_find_hwcap_option(int hwcap)
a1bb33af 260{
a1bb33af
UH
261 int i;
262
a65de030
UH
263 for (i = 0; sr_hwcap_options[i].capability; i++) {
264 if (sr_hwcap_options[i].capability == hwcap)
265 return &sr_hwcap_options[i];
a1bb33af
UH
266 }
267
49d0ce50 268 return NULL;
a1bb33af
UH
269}
270
544a4582
BV
271/* unnecessary level of indirection follows. */
272
6f1be0a2 273void sr_source_remove(int fd)
a1bb33af 274{
8a2efef2 275 sr_session_source_remove(fd);
a1bb33af
UH
276}
277
6f1be0a2 278void sr_source_add(int fd, int events, int timeout,
a887e3da 279 sr_receive_data_callback rcv_cb, void *user_data)
a1bb33af 280{
8a2efef2 281 sr_session_source_add(fd, events, timeout, rcv_cb, user_data);
a1bb33af 282}