blob: 6500bf54d484446582a6be9b6366d85d9be909f4 [file] [log] [blame]
Uwe Hermanna1bb33a2010-04-02 20:18:27 +02001/*
Uwe Hermann50985c22013-04-23 22:24:30 +02002 * This file is part of the libsigrok project.
Uwe Hermanna1bb33a2010-04-02 20:18:27 +02003 *
Bert Vermeulenc73d2ea2012-02-13 14:31:51 +01004 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
Peter Stugeb8072702012-10-21 20:23:14 +02005 * Copyright (C) 2012 Peter Stuge <peter@stuge.se>
Uwe Hermanna1bb33a2010-04-02 20:18:27 +02006 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#include <glib.h>
Uwe Hermann545f9782012-10-24 00:41:21 +020022#include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */
Bert Vermeulen45c59c82012-07-05 00:55:07 +020023#include "libsigrok.h"
24#include "libsigrok-internal.h"
Uwe Hermanna1bb33a2010-04-02 20:18:27 +020025
Uwe Hermann2ad1deb2014-04-25 18:40:59 +020026/** @cond PRIVATE */
Martin Ling3544f842013-12-23 03:38:35 +000027#define LOG_PREFIX "backend"
Uwe Hermann2ad1deb2014-04-25 18:40:59 +020028/** @endcond */
Martin Ling3544f842013-12-23 03:38:35 +000029
Uwe Hermanncd009d52011-02-22 18:13:32 +010030/**
Uwe Hermann5b30cca2012-10-19 10:06:45 +020031 * @mainpage libsigrok API
32 *
33 * @section sec_intro Introduction
34 *
35 * The <a href="http://sigrok.org">sigrok</a> project aims at creating a
36 * portable, cross-platform, Free/Libre/Open-Source signal analysis software
37 * suite that supports various device types (such as logic analyzers,
38 * oscilloscopes, multimeters, and more).
39 *
40 * <a href="http://sigrok.org/wiki/Libsigrok">libsigrok</a> is a shared
41 * library written in C which provides the basic API for talking to
42 * <a href="http://sigrok.org/wiki/Supported_hardware">supported hardware</a>
43 * and reading/writing the acquired data into various
44 * <a href="http://sigrok.org/wiki/Input_output_formats">input/output
45 * file formats</a>.
46 *
Uwe Hermannf21193f2012-10-21 16:36:23 +020047 * @section sec_api API reference
Uwe Hermann5b30cca2012-10-19 10:06:45 +020048 *
Uwe Hermannf21193f2012-10-21 16:36:23 +020049 * See the "Modules" page for an introduction to various libsigrok
50 * related topics and the detailed API documentation of the respective
51 * functions.
52 *
53 * You can also browse the API documentation by file, or review all
54 * data structures.
Uwe Hermann5b30cca2012-10-19 10:06:45 +020055 *
56 * @section sec_mailinglists Mailing lists
57 *
Uwe Hermannb88c3e42014-07-22 23:54:18 +020058 * There is one mailing list for sigrok/libsigrok: <a href="https://lists.sourceforge.net/lists/listinfo/sigrok-devel">sigrok-devel</a>.
Uwe Hermann5b30cca2012-10-19 10:06:45 +020059 *
60 * @section sec_irc IRC
61 *
62 * You can find the sigrok developers in the
63 * <a href="irc://chat.freenode.net/sigrok">\#sigrok</a>
64 * IRC channel on Freenode.
65 *
66 * @section sec_website Website
67 *
68 * <a href="http://sigrok.org/wiki/Libsigrok">sigrok.org/wiki/Libsigrok</a>
69 */
70
71/**
Uwe Hermann393fb9c2012-10-22 00:30:12 +020072 * @file
73 *
74 * Initializing and shutting down libsigrok.
75 */
76
77/**
Uwe Hermann7b870c32012-10-21 16:13:36 +020078 * @defgroup grp_init Initialization
79 *
80 * Initializing and shutting down libsigrok.
81 *
Matthias Heidbrinkd0a92ab2014-05-19 19:44:04 +020082 * Before using any of the libsigrok functionality (except
83 * sr_log_loglevel_set() and sr_log_opts_set()), sr_init() must
Uwe Hermannafe2f282012-10-22 02:32:53 +020084 * be called to initialize the library, which will return a struct sr_context
85 * when the initialization was successful.
86 *
87 * When libsigrok functionality is no longer needed, sr_exit() should be
88 * called, which will (among other things) free the struct sr_context.
89 *
90 * Example for a minimal program using libsigrok:
91 *
92 * @code{.c}
93 * #include <stdio.h>
94 * #include <libsigrok/libsigrok.h>
95 *
96 * int main(int argc, char **argv)
97 * {
98 * int ret;
99 * struct sr_context *sr_ctx;
100 *
101 * if ((ret = sr_init(&sr_ctx)) != SR_OK) {
Uwe Hermanndf823ac2013-12-27 16:18:28 +0100102 * printf("Error initializing libsigrok (%s): %s.\n",
Uwe Hermannafe2f282012-10-22 02:32:53 +0200103 * sr_strerror_name(ret), sr_strerror(ret));
104 * return 1;
105 * }
106 *
107 * // Use libsigrok functions here...
108 *
109 * if ((ret = sr_exit(sr_ctx)) != SR_OK) {
Uwe Hermanndf823ac2013-12-27 16:18:28 +0100110 * printf("Error shutting down libsigrok (%s): %s.\n",
Uwe Hermannafe2f282012-10-22 02:32:53 +0200111 * sr_strerror_name(ret), sr_strerror(ret));
112 * return 1;
113 * }
114 *
115 * return 0;
116 * }
117 * @endcode
118 *
Uwe Hermann7b870c32012-10-21 16:13:36 +0200119 * @{
120 */
121
122/**
Uwe Hermann55a6daf2012-11-11 23:54:49 +0100123 * Sanity-check all libsigrok drivers.
124 *
Matthias Heidbrink04cb9152013-11-22 20:40:52 +0100125 * @retval SR_OK All drivers are OK
126 * @retval SR_ERR One or more drivers have issues.
Uwe Hermann55a6daf2012-11-11 23:54:49 +0100127 */
128static int sanity_check_all_drivers(void)
129{
130 int i, errors, ret = SR_OK;
131 struct sr_dev_driver **drivers;
132 const char *d;
133
134 sr_spew("Sanity-checking all drivers.");
135
136 drivers = sr_driver_list();
137 for (i = 0; drivers[i]; i++) {
138 errors = 0;
139
140 d = (drivers[i]->name) ? drivers[i]->name : "NULL";
141
142 if (!drivers[i]->name) {
143 sr_err("No name in driver %d ('%s').", i, d);
144 errors++;
145 }
146 if (!drivers[i]->longname) {
147 sr_err("No longname in driver %d ('%s').", i, d);
148 errors++;
149 }
150 if (drivers[i]->api_version < 1) {
151 sr_err("API version in driver %d ('%s') < 1.", i, d);
152 errors++;
153 }
154 if (!drivers[i]->init) {
155 sr_err("No init in driver %d ('%s').", i, d);
156 errors++;
157 }
158 if (!drivers[i]->cleanup) {
159 sr_err("No cleanup in driver %d ('%s').", i, d);
160 errors++;
161 }
162 if (!drivers[i]->scan) {
163 sr_err("No scan in driver %d ('%s').", i, d);
164 errors++;
165 }
166 if (!drivers[i]->dev_list) {
167 sr_err("No dev_list in driver %d ('%s').", i, d);
168 errors++;
169 }
Uwe Hermann6fab7b82013-02-06 22:35:24 +0100170 /* Note: config_get() is optional. */
171 if (!drivers[i]->config_set) {
172 sr_err("No config_set in driver %d ('%s').", i, d);
173 errors++;
174 }
175 if (!drivers[i]->config_list) {
176 sr_err("No config_list in driver %d ('%s').", i, d);
177 errors++;
178 }
Uwe Hermann55a6daf2012-11-11 23:54:49 +0100179 if (!drivers[i]->dev_open) {
180 sr_err("No dev_open in driver %d ('%s').", i, d);
181 errors++;
182 }
183 if (!drivers[i]->dev_close) {
184 sr_err("No dev_close in driver %d ('%s').", i, d);
185 errors++;
186 }
Uwe Hermann55a6daf2012-11-11 23:54:49 +0100187 if (!drivers[i]->dev_acquisition_start) {
188 sr_err("No dev_acquisition_start in driver %d ('%s').",
189 i, d);
190 errors++;
191 }
192 if (!drivers[i]->dev_acquisition_stop) {
193 sr_err("No dev_acquisition_stop in driver %d ('%s').",
194 i, d);
195 errors++;
196 }
197
198 /* Note: 'priv' is allowed to be NULL. */
199
200 if (errors == 0)
201 continue;
202
203 ret = SR_ERR;
204 }
205
206 return ret;
207}
208
209/**
Uwe Hermann218e6292013-03-10 17:13:15 +0100210 * Sanity-check all libsigrok input modules.
211 *
Matthias Heidbrink04cb9152013-11-22 20:40:52 +0100212 * @retval SR_OK All modules are OK
213 * @retval SR_ERR One or more modules have issues.
Uwe Hermann218e6292013-03-10 17:13:15 +0100214 */
215static int sanity_check_all_input_modules(void)
216{
217 int i, errors, ret = SR_OK;
Bert Vermeulen17bfaca2014-08-10 16:57:04 +0200218 const struct sr_input_module **inputs;
Uwe Hermann218e6292013-03-10 17:13:15 +0100219 const char *d;
220
221 sr_spew("Sanity-checking all input modules.");
222
223 inputs = sr_input_list();
224 for (i = 0; inputs[i]; i++) {
225 errors = 0;
226
227 d = (inputs[i]->id) ? inputs[i]->id : "NULL";
228
229 if (!inputs[i]->id) {
230 sr_err("No ID in module %d ('%s').", i, d);
231 errors++;
232 }
Bert Vermeulen17bfaca2014-08-10 16:57:04 +0200233 if (!inputs[i]->name) {
234 sr_err("No name in module %d ('%s').", i, d);
235 errors++;
236 }
237 if (!inputs[i]->desc) {
Uwe Hermann218e6292013-03-10 17:13:15 +0100238 sr_err("No description in module %d ('%s').", i, d);
239 errors++;
240 }
Uwe Hermann218e6292013-03-10 17:13:15 +0100241 if (!inputs[i]->init) {
242 sr_err("No init in module %d ('%s').", i, d);
243 errors++;
244 }
Bert Vermeulen17bfaca2014-08-10 16:57:04 +0200245 if (!inputs[i]->receive) {
246 sr_err("No receive in module %d ('%s').", i, d);
Uwe Hermann218e6292013-03-10 17:13:15 +0100247 errors++;
248 }
Bert Vermeulen7066fd42014-09-23 11:12:33 +0200249 if (!inputs[i]->end) {
250 sr_err("No end in module %d ('%s').", i, d);
251 errors++;
252 }
Uwe Hermann218e6292013-03-10 17:13:15 +0100253
254 if (errors == 0)
255 continue;
256
257 ret = SR_ERR;
258 }
259
260 return ret;
261}
262
263/**
264 * Sanity-check all libsigrok output modules.
265 *
Matthias Heidbrink04cb9152013-11-22 20:40:52 +0100266 * @retval SR_OK All modules are OK
267 * @retval SR_ERR One or more modules have issues.
Uwe Hermann218e6292013-03-10 17:13:15 +0100268 */
269static int sanity_check_all_output_modules(void)
270{
271 int i, errors, ret = SR_OK;
Bert Vermeulena755b0e2014-07-25 05:56:52 +0200272 const struct sr_output_module **outputs;
Uwe Hermann218e6292013-03-10 17:13:15 +0100273 const char *d;
274
275 sr_spew("Sanity-checking all output modules.");
276
277 outputs = sr_output_list();
278 for (i = 0; outputs[i]; i++) {
279 errors = 0;
280
281 d = (outputs[i]->id) ? outputs[i]->id : "NULL";
282
283 if (!outputs[i]->id) {
284 sr_err("No ID in module %d ('%s').", i, d);
285 errors++;
286 }
Bert Vermeulena755b0e2014-07-25 05:56:52 +0200287 if (!outputs[i]->name) {
288 sr_err("No name in module %d ('%s').", i, d);
289 errors++;
290 }
291 if (!outputs[i]->desc) {
Bert Vermeulen44559b22014-04-19 13:28:17 +0200292 sr_err("No description in module '%s'.", d);
Uwe Hermann218e6292013-03-10 17:13:15 +0100293 errors++;
294 }
Bert Vermeulen44559b22014-04-19 13:28:17 +0200295 if (!outputs[i]->receive) {
296 sr_err("No receive in module '%s'.", d);
Uwe Hermann218e6292013-03-10 17:13:15 +0100297 errors++;
298 }
299
Uwe Hermann218e6292013-03-10 17:13:15 +0100300 if (errors == 0)
301 continue;
302
303 ret = SR_ERR;
304 }
305
306 return ret;
307}
308
309/**
Uwe Hermanncd009d52011-02-22 18:13:32 +0100310 * Initialize libsigrok.
311 *
Uwe Hermannc46762a2012-10-21 22:40:43 +0200312 * This function must be called before any other libsigrok function.
313 *
314 * @param ctx Pointer to a libsigrok context struct pointer. Must not be NULL.
315 * This will be a pointer to a newly allocated libsigrok context
316 * object upon success, and is undefined upon errors.
317 *
318 * @return SR_OK upon success, a (negative) error code otherwise. Upon errors
319 * the 'ctx' pointer is undefined and should not be used. Upon success,
320 * the context will be free'd by sr_exit() as part of the libsigrok
321 * shutdown.
Uwe Hermann9fb5f2d2013-04-13 18:58:11 +0200322 *
Uwe Hermann53f05fa2013-11-03 16:08:38 +0100323 * @since 0.2.0
Uwe Hermanncd009d52011-02-22 18:13:32 +0100324 */
Peter Stugeb8072702012-10-21 20:23:14 +0200325SR_API int sr_init(struct sr_context **ctx)
Uwe Hermanna1bb33a2010-04-02 20:18:27 +0200326{
Peter Stugeb8072702012-10-21 20:23:14 +0200327 int ret = SR_ERR;
328 struct sr_context *context;
329
Uwe Hermannc46762a2012-10-21 22:40:43 +0200330 if (!ctx) {
331 sr_err("%s(): libsigrok context was NULL.", __func__);
332 return SR_ERR;
333 }
334
Uwe Hermann55a6daf2012-11-11 23:54:49 +0100335 if (sanity_check_all_drivers() < 0) {
336 sr_err("Internal driver error(s), aborting.");
337 return ret;
338 }
339
Uwe Hermann218e6292013-03-10 17:13:15 +0100340 if (sanity_check_all_input_modules() < 0) {
341 sr_err("Internal input module error(s), aborting.");
342 return ret;
343 }
344
345 if (sanity_check_all_output_modules() < 0) {
346 sr_err("Internal output module error(s), aborting.");
347 return ret;
348 }
349
Peter Stugeb8072702012-10-21 20:23:14 +0200350 /* + 1 to handle when struct sr_context has no members. */
351 context = g_try_malloc0(sizeof(struct sr_context) + 1);
352
353 if (!context) {
354 ret = SR_ERR_MALLOC;
355 goto done;
356 }
357
Peter Stuge785b9ff2012-10-21 20:23:36 +0200358#ifdef HAVE_LIBUSB_1_0
359 ret = libusb_init(&context->libusb_ctx);
Uwe Hermann8e2d43c2012-10-22 10:17:38 +0200360 if (LIBUSB_SUCCESS != ret) {
Uwe Hermann9d122af2013-12-10 18:18:58 +0100361 sr_err("libusb_init() returned %s.", libusb_error_name(ret));
Peter Stuge63c07e42012-11-03 08:29:26 +0100362 ret = SR_ERR;
Peter Stuge785b9ff2012-10-21 20:23:36 +0200363 goto done;
364 }
365#endif
366
Peter Stugeb8072702012-10-21 20:23:14 +0200367 *ctx = context;
Peter Stuge123d97b2012-11-03 08:27:48 +0100368 context = NULL;
Peter Stugeb8072702012-10-21 20:23:14 +0200369 ret = SR_OK;
370
371done:
Peter Stuge123d97b2012-11-03 08:27:48 +0100372 if (context)
373 g_free(context);
Peter Stugeb8072702012-10-21 20:23:14 +0200374 return ret;
Uwe Hermanna1bb33a2010-04-02 20:18:27 +0200375}
376
Uwe Hermanncd009d52011-02-22 18:13:32 +0100377/**
378 * Shutdown libsigrok.
379 *
Uwe Hermannc46762a2012-10-21 22:40:43 +0200380 * @param ctx Pointer to a libsigrok context struct. Must not be NULL.
381 *
Matthias Heidbrink04cb9152013-11-22 20:40:52 +0100382 * @retval SR_OK Success
383 * @retval other Error code SR_ERR, ...
Uwe Hermann9fb5f2d2013-04-13 18:58:11 +0200384 *
Uwe Hermann53f05fa2013-11-03 16:08:38 +0100385 * @since 0.2.0
Uwe Hermanncd009d52011-02-22 18:13:32 +0100386 */
Peter Stugeb8072702012-10-21 20:23:14 +0200387SR_API int sr_exit(struct sr_context *ctx)
Uwe Hermanna1bb33a2010-04-02 20:18:27 +0200388{
Uwe Hermannc46762a2012-10-21 22:40:43 +0200389 if (!ctx) {
390 sr_err("%s(): libsigrok context was NULL.", __func__);
391 return SR_ERR;
392 }
393
Bert Vermeulen93a04e32012-02-15 03:18:48 +0100394 sr_hw_cleanup_all();
Uwe Hermanncd009d52011-02-22 18:13:32 +0100395
Peter Stuge785b9ff2012-10-21 20:23:36 +0200396#ifdef HAVE_LIBUSB_1_0
397 libusb_exit(ctx->libusb_ctx);
398#endif
399
Peter Stugeb8072702012-10-21 20:23:14 +0200400 g_free(ctx);
401
Uwe Hermanncd009d52011-02-22 18:13:32 +0100402 return SR_OK;
Uwe Hermanna1bb33a2010-04-02 20:18:27 +0200403}
Uwe Hermann7b870c32012-10-21 16:13:36 +0200404
405/** @} */