]> sigrok.org Git - libsigrok.git/blob - src/backend.c
input/stf: introduce support for Asix' Sigma Test File format
[libsigrok.git] / src / backend.c
1 /*
2  * This file is part of the libsigrok project.
3  *
4  * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5  * Copyright (C) 2012 Peter Stuge <peter@stuge.se>
6  *
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 <config.h>
22 #include <glib.h>
23 #ifdef _WIN32
24 #include <winsock2.h>
25 #endif
26 #include <libsigrok/libsigrok.h>
27 #include "libsigrok-internal.h"
28 #include "minilzo/minilzo.h"
29
30 /** @cond PRIVATE */
31 #define LOG_PREFIX "backend"
32 /** @endcond */
33
34 /**
35  * @mainpage libsigrok API
36  *
37  * @section sec_intro Introduction
38  *
39  * The <a href="http://sigrok.org">sigrok</a> project aims at creating a
40  * portable, cross-platform, Free/Libre/Open-Source signal analysis software
41  * suite that supports various device types (such as logic analyzers,
42  * oscilloscopes, multimeters, and more).
43  *
44  * <a href="http://sigrok.org/wiki/Libsigrok">libsigrok</a> is a shared
45  * library written in C which provides the basic API for talking to
46  * <a href="http://sigrok.org/wiki/Supported_hardware">supported hardware</a>
47  * and reading/writing the acquired data into various
48  * <a href="http://sigrok.org/wiki/Input_output_formats">input/output
49  * file formats</a>.
50  *
51  * @section sec_api API reference
52  *
53  * See the "Modules" page for an introduction to various libsigrok
54  * related topics and the detailed API documentation of the respective
55  * functions.
56  *
57  * You can also browse the API documentation by file, or review all
58  * data structures.
59  *
60  * @section sec_mailinglists Mailing lists
61  *
62  * There is one mailing list for sigrok/libsigrok: <a href="https://lists.sourceforge.net/lists/listinfo/sigrok-devel">sigrok-devel</a>.
63  *
64  * @section sec_irc IRC
65  *
66  * You can find the sigrok developers in the
67  * <a href="ircs://irc.libera.chat/#sigrok">\#sigrok</a>
68  * IRC channel on Libera.Chat.
69  *
70  * @section sec_website Website
71  *
72  * <a href="http://sigrok.org/wiki/Libsigrok">sigrok.org/wiki/Libsigrok</a>
73  */
74
75 /**
76  * @file
77  *
78  * Initializing and shutting down libsigrok.
79  */
80
81 /**
82  * @defgroup grp_init Initialization
83  *
84  * Initializing and shutting down libsigrok.
85  *
86  * Before using any of the libsigrok functionality (except for
87  * sr_log_loglevel_set()), sr_init() must be called to initialize the
88  * library, which will return a struct sr_context when the initialization
89  * was successful.
90  *
91  * When libsigrok functionality is no longer needed, sr_exit() should be
92  * called, which will (among other things) free the struct sr_context.
93  *
94  * Example for a minimal program using libsigrok:
95  *
96  * @code{.c}
97  *   #include <stdio.h>
98  *   #include <libsigrok/libsigrok.h>
99  *
100  *   int main(int argc, char **argv)
101  *   {
102  *      int ret;
103  *      struct sr_context *sr_ctx;
104  *
105  *      if ((ret = sr_init(&sr_ctx)) != SR_OK) {
106  *              printf("Error initializing libsigrok (%s): %s.\n",
107  *                     sr_strerror_name(ret), sr_strerror(ret));
108  *              return 1;
109  *      }
110  *
111  *      // Use libsigrok functions here...
112  *
113  *      if ((ret = sr_exit(sr_ctx)) != SR_OK) {
114  *              printf("Error shutting down libsigrok (%s): %s.\n",
115  *                     sr_strerror_name(ret), sr_strerror(ret));
116  *              return 1;
117  *      }
118  *
119  *      return 0;
120  *   }
121  * @endcode
122  *
123  * @{
124  */
125
126 SR_API GSList *sr_buildinfo_libs_get(void)
127 {
128         GSList *l = NULL, *m = NULL;
129 #if defined(HAVE_LIBUSB_1_0) && !defined(__FreeBSD__)
130         const struct libusb_version *lv;
131 #endif
132
133         m = g_slist_append(NULL, g_strdup("glib"));
134         m = g_slist_append(m, g_strdup_printf("%d.%d.%d (rt: %d.%d.%d/%d:%d)",
135                 GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION,
136                 glib_major_version, glib_minor_version, glib_micro_version,
137                 glib_binary_age, glib_interface_age));
138         l = g_slist_append(l, m);
139
140         m = g_slist_append(NULL, g_strdup("libzip"));
141         m = g_slist_append(m, g_strdup_printf("%s", CONF_LIBZIP_VERSION));
142         l = g_slist_append(l, m);
143
144         m = g_slist_append(NULL, g_strdup("minilzo"));
145         m = g_slist_append(m, g_strdup_printf("%s", lzo_version_string()));
146         l = g_slist_append(l, m);
147
148 #ifdef HAVE_LIBSERIALPORT
149         m = g_slist_append(NULL, g_strdup("libserialport"));
150         m = g_slist_append(m, g_strdup_printf("%s/%s (rt: %s/%s)",
151                 SP_PACKAGE_VERSION_STRING, SP_LIB_VERSION_STRING,
152                 sp_get_package_version_string(), sp_get_lib_version_string()));
153         l = g_slist_append(l, m);
154 #endif
155 #ifdef HAVE_LIBUSB_1_0
156         m = g_slist_append(NULL, g_strdup("libusb-1.0"));
157 #ifdef __FreeBSD__
158         m = g_slist_append(m, g_strdup_printf("%s", CONF_LIBUSB_1_0_VERSION));
159 #else
160         lv = libusb_get_version();
161         m = g_slist_append(m, g_strdup_printf("%d.%d.%d.%d%s API 0x%08x",
162                 lv->major, lv->minor, lv->micro, lv->nano, lv->rc,
163 #if defined(LIBUSB_API_VERSION)
164                 LIBUSB_API_VERSION
165 #elif defined(LIBUSBX_API_VERSION)
166                 LIBUSBX_API_VERSION
167 #endif
168                 ));
169 #endif
170         l = g_slist_append(l, m);
171 #endif
172 #ifdef HAVE_LIBHIDAPI
173         m = g_slist_append(NULL, g_strdup("hidapi"));
174         m = g_slist_append(m, g_strdup_printf("%s", CONF_LIBHIDAPI_VERSION));
175         l = g_slist_append(l, m);
176 #endif
177 #ifdef HAVE_LIBBLUEZ
178         m = g_slist_append(NULL, g_strdup("bluez"));
179         m = g_slist_append(m, g_strdup_printf("%s", CONF_LIBBLUEZ_VERSION));
180         l = g_slist_append(l, m);
181 #endif
182 #ifdef HAVE_LIBFTDI
183         m = g_slist_append(NULL, g_strdup("libftdi"));
184         m = g_slist_append(m, g_strdup_printf("%s", CONF_LIBFTDI_VERSION));
185         l = g_slist_append(l, m);
186 #endif
187 #ifdef HAVE_LIBGPIB
188         m = g_slist_append(NULL, g_strdup("libgpib"));
189         m = g_slist_append(m, g_strdup_printf("%s", CONF_LIBGPIB_VERSION));
190         l = g_slist_append(l, m);
191 #endif
192 #ifdef HAVE_LIBREVISA
193         m = g_slist_append(NULL, g_strdup("librevisa"));
194         m = g_slist_append(m, g_strdup_printf("%s", CONF_LIBREVISA_VERSION));
195         l = g_slist_append(l, m);
196 #endif
197
198         return l;
199 }
200
201 SR_API char *sr_buildinfo_host_get(void)
202 {
203         return g_strdup_printf("%s, %s-endian", CONF_HOST,
204 #ifdef WORDS_BIGENDIAN
205         "big"
206 #else
207         "little"
208 #endif
209         );
210 }
211
212 SR_API char *sr_buildinfo_scpi_backends_get(void)
213 {
214         GString *s;
215         char *str;
216
217         s = g_string_sized_new(200);
218
219         g_string_append_printf(s, "TCP, ");
220 #if HAVE_RPC
221         g_string_append_printf(s, "RPC, ");
222 #endif
223 #ifdef HAVE_SERIAL_COMM
224         g_string_append_printf(s, "serial, ");
225 #endif
226 #ifdef HAVE_LIBREVISA
227         g_string_append_printf(s, "VISA, ");
228 #endif
229 #ifdef HAVE_LIBGPIB
230         g_string_append_printf(s, "GPIB, ");
231 #endif
232 #ifdef HAVE_LIBUSB_1_0
233         g_string_append_printf(s, "USBTMC, ");
234 #endif
235         s->str[s->len - 2] = '\0';
236
237         str = g_strdup(s->str);
238         g_string_free(s, TRUE);
239
240         return str;
241 }
242
243 static void print_versions(void)
244 {
245         GString *s;
246         GSList *l, *l_orig, *m;
247         char *str;
248         const char *lib, *version;
249
250         sr_dbg("libsigrok %s/%s.",
251                 sr_package_version_string_get(), sr_lib_version_string_get());
252
253         s = g_string_sized_new(200);
254         g_string_append(s, "Libs: ");
255         l_orig = sr_buildinfo_libs_get();
256         for (l = l_orig; l; l = l->next) {
257                 m = l->data;
258                 lib = m->data;
259                 version = m->next->data;
260                 g_string_append_printf(s, "%s %s, ", lib, version);
261                 g_slist_free_full(m, g_free);
262         }
263         g_slist_free(l_orig);
264         s->str[s->len - 2] = '.';
265         s->str[s->len - 1] = '\0';
266         sr_dbg("%s", s->str);
267         g_string_free(s, TRUE);
268
269         str = sr_buildinfo_host_get();
270         sr_dbg("Host: %s.", str);
271         g_free(str);
272
273         str = sr_buildinfo_scpi_backends_get();
274         sr_dbg("SCPI backends: %s.", str);
275         g_free(str);
276 }
277
278 static void print_resourcepaths(void)
279 {
280         GSList *l, *l_orig;
281
282         sr_dbg("Firmware search paths:");
283         l_orig = sr_resourcepaths_get(SR_RESOURCE_FIRMWARE);
284         for (l = l_orig; l; l = l->next)
285                 sr_dbg(" - %s", (const char *)l->data);
286         g_slist_free_full(l_orig, g_free);
287 }
288
289 /**
290  * Sanity-check all libsigrok drivers.
291  *
292  * @param[in] ctx Pointer to a libsigrok context struct. Must not be NULL.
293  *
294  * @retval SR_OK All drivers are OK
295  * @retval SR_ERR One or more drivers have issues.
296  * @retval SR_ERR_ARG Invalid argument.
297  */
298 static int sanity_check_all_drivers(const struct sr_context *ctx)
299 {
300         int i, errors, ret = SR_OK;
301         struct sr_dev_driver **drivers;
302         const char *d;
303
304         if (!ctx)
305                 return SR_ERR_ARG;
306
307         sr_spew("Sanity-checking all drivers.");
308
309         drivers = sr_driver_list(ctx);
310         for (i = 0; drivers[i]; i++) {
311                 errors = 0;
312
313                 d = (drivers[i]->name) ? drivers[i]->name : "NULL";
314
315                 if (!drivers[i]->name) {
316                         sr_err("No name in driver %d ('%s').", i, d);
317                         errors++;
318                 }
319                 if (!drivers[i]->longname) {
320                         sr_err("No longname in driver %d ('%s').", i, d);
321                         errors++;
322                 }
323                 if (drivers[i]->api_version < 1) {
324                         sr_err("API version in driver %d ('%s') < 1.", i, d);
325                         errors++;
326                 }
327                 if (!drivers[i]->init) {
328                         sr_err("No init in driver %d ('%s').", i, d);
329                         errors++;
330                 }
331                 if (!drivers[i]->cleanup) {
332                         sr_err("No cleanup in driver %d ('%s').", i, d);
333                         errors++;
334                 }
335                 if (!drivers[i]->scan) {
336                         sr_err("No scan in driver %d ('%s').", i, d);
337                         errors++;
338                 }
339                 if (!drivers[i]->dev_list) {
340                         sr_err("No dev_list in driver %d ('%s').", i, d);
341                         errors++;
342                 }
343                 if (!drivers[i]->dev_clear) {
344                         sr_err("No dev_clear in driver %d ('%s').", i, d);
345                         errors++;
346                 }
347                 /* Note: config_get() is optional. */
348                 if (!drivers[i]->config_set) {
349                         sr_err("No config_set in driver %d ('%s').", i, d);
350                         errors++;
351                 }
352                 /* Note: config_channel_set() is optional. */
353                 /* Note: config_commit() is optional. */
354                 if (!drivers[i]->config_list) {
355                         sr_err("No config_list in driver %d ('%s').", i, d);
356                         errors++;
357                 }
358                 if (!drivers[i]->dev_open) {
359                         sr_err("No dev_open in driver %d ('%s').", i, d);
360                         errors++;
361                 }
362                 if (!drivers[i]->dev_close) {
363                         sr_err("No dev_close in driver %d ('%s').", i, d);
364                         errors++;
365                 }
366                 if (!drivers[i]->dev_acquisition_start) {
367                         sr_err("No dev_acquisition_start in driver %d ('%s').",
368                                i, d);
369                         errors++;
370                 }
371                 if (!drivers[i]->dev_acquisition_stop) {
372                         sr_err("No dev_acquisition_stop in driver %d ('%s').",
373                                i, d);
374                         errors++;
375                 }
376
377                 /* Note: 'priv' is allowed to be NULL. */
378
379                 if (errors == 0)
380                         continue;
381
382                 ret = SR_ERR;
383         }
384
385         return ret;
386 }
387
388 /**
389  * Sanity-check all libsigrok input modules.
390  *
391  * @retval SR_OK All modules are OK
392  * @retval SR_ERR One or more modules have issues.
393  */
394 static int sanity_check_all_input_modules(void)
395 {
396         int i, errors, ret = SR_OK;
397         const struct sr_input_module **inputs;
398         const char *d;
399
400         sr_spew("Sanity-checking all input modules.");
401
402         inputs = sr_input_list();
403         for (i = 0; inputs[i]; i++) {
404                 errors = 0;
405
406                 d = (inputs[i]->id) ? inputs[i]->id : "NULL";
407
408                 if (!inputs[i]->id) {
409                         sr_err("No ID in module %d ('%s').", i, d);
410                         errors++;
411                 }
412                 if (!inputs[i]->name) {
413                         sr_err("No name in module %d ('%s').", i, d);
414                         errors++;
415                 }
416                 if (!inputs[i]->desc) {
417                         sr_err("No description in module %d ('%s').", i, d);
418                         errors++;
419                 }
420                 if (!inputs[i]->init) {
421                         sr_err("No init in module %d ('%s').", i, d);
422                         errors++;
423                 }
424                 if (!inputs[i]->receive) {
425                         sr_err("No receive in module %d ('%s').", i, d);
426                         errors++;
427                 }
428                 if (!inputs[i]->end) {
429                         sr_err("No end in module %d ('%s').", i, d);
430                         errors++;
431                 }
432
433                 if (errors == 0)
434                         continue;
435
436                 ret = SR_ERR;
437         }
438
439         return ret;
440 }
441
442 /**
443  * Sanity-check all libsigrok output modules.
444  *
445  * @retval SR_OK All modules are OK
446  * @retval SR_ERR One or more modules have issues.
447  */
448 static int sanity_check_all_output_modules(void)
449 {
450         int i, errors, ret = SR_OK;
451         const struct sr_output_module **outputs;
452         const char *d;
453
454         sr_spew("Sanity-checking all output modules.");
455
456         outputs = sr_output_list();
457         for (i = 0; outputs[i]; i++) {
458                 errors = 0;
459
460                 d = (outputs[i]->id) ? outputs[i]->id : "NULL";
461
462                 if (!outputs[i]->id) {
463                         sr_err("No ID in module %d ('%s').", i, d);
464                         errors++;
465                 }
466                 if (!outputs[i]->name) {
467                         sr_err("No name in module %d ('%s').", i, d);
468                         errors++;
469                 }
470                 if (!outputs[i]->desc) {
471                         sr_err("No description in module '%s'.", d);
472                         errors++;
473                 }
474                 if (!outputs[i]->receive) {
475                         sr_err("No receive in module '%s'.", d);
476                         errors++;
477                 }
478
479                 if (errors == 0)
480                         continue;
481
482                 ret = SR_ERR;
483         }
484
485         return ret;
486 }
487
488 /**
489  * Sanity-check all libsigrok transform modules.
490  *
491  * @retval SR_OK All modules are OK
492  * @retval SR_ERR One or more modules have issues.
493  */
494 static int sanity_check_all_transform_modules(void)
495 {
496         int i, errors, ret = SR_OK;
497         const struct sr_transform_module **transforms;
498         const char *d;
499
500         sr_spew("Sanity-checking all transform modules.");
501
502         transforms = sr_transform_list();
503         for (i = 0; transforms[i]; i++) {
504                 errors = 0;
505
506                 d = (transforms[i]->id) ? transforms[i]->id : "NULL";
507
508                 if (!transforms[i]->id) {
509                         sr_err("No ID in module %d ('%s').", i, d);
510                         errors++;
511                 }
512                 if (!transforms[i]->name) {
513                         sr_err("No name in module %d ('%s').", i, d);
514                         errors++;
515                 }
516                 if (!transforms[i]->desc) {
517                         sr_err("No description in module '%s'.", d);
518                         errors++;
519                 }
520                 /* Note: options() is optional. */
521                 /* Note: init() is optional. */
522                 if (!transforms[i]->receive) {
523                         sr_err("No receive in module '%s'.", d);
524                         errors++;
525                 }
526                 /* Note: cleanup() is optional. */
527
528                 if (errors == 0)
529                         continue;
530
531                 ret = SR_ERR;
532         }
533
534         return ret;
535 }
536
537 /**
538  * Initialize libsigrok.
539  *
540  * This function must be called before any other libsigrok function.
541  *
542  * @param ctx Pointer to a libsigrok context struct pointer. Must not be NULL.
543  *            This will be a pointer to a newly allocated libsigrok context
544  *            object upon success, and is undefined upon errors.
545  *
546  * @return SR_OK upon success, a (negative) error code otherwise. Upon errors
547  *         the 'ctx' pointer is undefined and should not be used. Upon success,
548  *         the context will be free'd by sr_exit() as part of the libsigrok
549  *         shutdown.
550  *
551  * @since 0.2.0
552  */
553 SR_API int sr_init(struct sr_context **ctx)
554 {
555         int ret = SR_ERR;
556         struct sr_context *context;
557 #ifdef _WIN32
558         WSADATA wsadata;
559 #endif
560
561         print_versions();
562
563         print_resourcepaths();
564
565         if (!ctx) {
566                 sr_err("%s(): libsigrok context was NULL.", __func__);
567                 return SR_ERR;
568         }
569
570         context = g_malloc0(sizeof(struct sr_context));
571
572         sr_drivers_init(context);
573
574         if (sanity_check_all_drivers(context) < 0) {
575                 sr_err("Internal driver error(s), aborting.");
576                 goto done;
577         }
578
579         if (sanity_check_all_input_modules() < 0) {
580                 sr_err("Internal input module error(s), aborting.");
581                 goto done;
582         }
583
584         if (sanity_check_all_output_modules() < 0) {
585                 sr_err("Internal output module error(s), aborting.");
586                 goto done;
587         }
588
589         if (sanity_check_all_transform_modules() < 0) {
590                 sr_err("Internal transform module error(s), aborting.");
591                 goto done;
592         }
593
594 #ifdef _WIN32
595         if ((ret = WSAStartup(MAKEWORD(2, 2), &wsadata)) != 0) {
596                 sr_err("WSAStartup failed with error code %d.", ret);
597                 ret = SR_ERR;
598                 goto done;
599         }
600 #endif
601
602         if ((ret = lzo_init()) != LZO_E_OK) {
603                 sr_err("lzo_init() failed with return code %d.", ret);
604                 sr_err("This usually indicates a compiler bug. Recompile without");
605                 sr_err("optimizations, and enable '-DLZO_DEBUG' for diagnostics.");
606                 ret = SR_ERR;
607                 goto done;
608         }
609
610 #ifdef HAVE_LIBUSB_1_0
611         ret = libusb_init(&context->libusb_ctx);
612         if (LIBUSB_SUCCESS != ret) {
613                 sr_err("libusb_init() returned %s.", libusb_error_name(ret));
614                 ret = SR_ERR;
615                 goto done;
616         }
617 #endif
618 #ifdef HAVE_LIBHIDAPI
619         /*
620          * According to <hidapi.h>, the hid_init() routine just returns
621          * zero or non-zero, and hid_error() appears to relate to calls
622          * for a specific device after hid_open(). Which means that there
623          * is no more detailled information available beyond success/fail
624          * at this point in time.
625          */
626         if (hid_init() != 0) {
627                 sr_err("HIDAPI hid_init() failed.");
628                 ret = SR_ERR;
629                 goto done;
630         }
631 #endif
632         sr_resource_set_hooks(context, NULL, NULL, NULL, NULL);
633
634         *ctx = context;
635         context = NULL;
636         ret = SR_OK;
637
638 done:
639         g_free(context);
640         return ret;
641 }
642
643 /**
644  * Shutdown libsigrok.
645  *
646  * @param ctx Pointer to a libsigrok context struct. Must not be NULL.
647  *
648  * @retval SR_OK Success
649  * @retval other Error code SR_ERR, ...
650  *
651  * @since 0.2.0
652  */
653 SR_API int sr_exit(struct sr_context *ctx)
654 {
655         if (!ctx) {
656                 sr_err("%s(): libsigrok context was NULL.", __func__);
657                 return SR_ERR;
658         }
659
660         sr_hw_cleanup_all(ctx);
661
662 #ifdef _WIN32
663         WSACleanup();
664 #endif
665
666 #ifdef HAVE_LIBHIDAPI
667         hid_exit();
668 #endif
669 #ifdef HAVE_LIBUSB_1_0
670         libusb_exit(ctx->libusb_ctx);
671 #endif
672
673         g_free(sr_driver_list(ctx));
674         g_free(ctx);
675
676         return SR_OK;
677 }
678
679 /** @} */