]> sigrok.org Git - libsigrok.git/blame - backend.c
hardware: A few further USB error message fixups
[libsigrok.git] / backend.c
CommitLineData
a1bb33af
UH
1/*
2 * This file is part of the sigrok project.
3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
b8072700 5 * Copyright (C) 2012 Peter Stuge <peter@stuge.se>
a1bb33af
UH
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 <glib.h>
545f9786 22#include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */
45c59c8b
BV
23#include "libsigrok.h"
24#include "libsigrok-internal.h"
a1bb33af 25
5b30cca7
UH
26/**
27 * @mainpage libsigrok API
28 *
29 * @section sec_intro Introduction
30 *
31 * The <a href="http://sigrok.org">sigrok</a> project aims at creating a
32 * portable, cross-platform, Free/Libre/Open-Source signal analysis software
33 * suite that supports various device types (such as logic analyzers,
34 * oscilloscopes, multimeters, and more).
35 *
36 * <a href="http://sigrok.org/wiki/Libsigrok">libsigrok</a> is a shared
37 * library written in C which provides the basic API for talking to
38 * <a href="http://sigrok.org/wiki/Supported_hardware">supported hardware</a>
39 * and reading/writing the acquired data into various
40 * <a href="http://sigrok.org/wiki/Input_output_formats">input/output
41 * file formats</a>.
42 *
f21193fa 43 * @section sec_api API reference
5b30cca7 44 *
f21193fa
UH
45 * See the "Modules" page for an introduction to various libsigrok
46 * related topics and the detailed API documentation of the respective
47 * functions.
48 *
49 * You can also browse the API documentation by file, or review all
50 * data structures.
5b30cca7
UH
51 *
52 * @section sec_mailinglists Mailing lists
53 *
54 * There are two mailing lists for sigrok/libsigrok: <a href="https://lists.sourceforge.net/lists/listinfo/sigrok-devel">sigrok-devel</a> and <a href="https://lists.sourceforge.net/lists/listinfo/sigrok-commits">sigrok-commits</a>.
55 *
56 * @section sec_irc IRC
57 *
58 * You can find the sigrok developers in the
59 * <a href="irc://chat.freenode.net/sigrok">\#sigrok</a>
60 * IRC channel on Freenode.
61 *
62 * @section sec_website Website
63 *
64 * <a href="http://sigrok.org/wiki/Libsigrok">sigrok.org/wiki/Libsigrok</a>
65 */
66
393fb9cb
UH
67/**
68 * @file
69 *
70 * Initializing and shutting down libsigrok.
71 */
72
7b870c38
UH
73/**
74 * @defgroup grp_init Initialization
75 *
76 * Initializing and shutting down libsigrok.
77 *
afe2f28e
UH
78 * Before using any of the libsigrok functionality, sr_init() must
79 * be called to initialize the library, which will return a struct sr_context
80 * when the initialization was successful.
81 *
82 * When libsigrok functionality is no longer needed, sr_exit() should be
83 * called, which will (among other things) free the struct sr_context.
84 *
85 * Example for a minimal program using libsigrok:
86 *
87 * @code{.c}
88 * #include <stdio.h>
89 * #include <libsigrok/libsigrok.h>
90 *
91 * int main(int argc, char **argv)
92 * {
93 * int ret;
94 * struct sr_context *sr_ctx;
95 *
96 * if ((ret = sr_init(&sr_ctx)) != SR_OK) {
97 * printf("Error initializing libsigrok (%s): %s.",
98 * sr_strerror_name(ret), sr_strerror(ret));
99 * return 1;
100 * }
101 *
102 * // Use libsigrok functions here...
103 *
104 * if ((ret = sr_exit(sr_ctx)) != SR_OK) {
105 * printf("Error shutting down libsigrok (%s): %s.",
106 * sr_strerror_name(ret), sr_strerror(ret));
107 * return 1;
108 * }
109 *
110 * return 0;
111 * }
112 * @endcode
113 *
7b870c38
UH
114 * @{
115 */
116
55a6daf5
UH
117/**
118 * Sanity-check all libsigrok drivers.
119 *
120 * @return SR_OK if all drivers are OK, SR_ERR if one or more have issues.
121 */
122static int sanity_check_all_drivers(void)
123{
124 int i, errors, ret = SR_OK;
125 struct sr_dev_driver **drivers;
126 const char *d;
127
128 sr_spew("Sanity-checking all drivers.");
129
130 drivers = sr_driver_list();
131 for (i = 0; drivers[i]; i++) {
132 errors = 0;
133
134 d = (drivers[i]->name) ? drivers[i]->name : "NULL";
135
136 if (!drivers[i]->name) {
137 sr_err("No name in driver %d ('%s').", i, d);
138 errors++;
139 }
140 if (!drivers[i]->longname) {
141 sr_err("No longname in driver %d ('%s').", i, d);
142 errors++;
143 }
144 if (drivers[i]->api_version < 1) {
145 sr_err("API version in driver %d ('%s') < 1.", i, d);
146 errors++;
147 }
148 if (!drivers[i]->init) {
149 sr_err("No init in driver %d ('%s').", i, d);
150 errors++;
151 }
152 if (!drivers[i]->cleanup) {
153 sr_err("No cleanup in driver %d ('%s').", i, d);
154 errors++;
155 }
156 if (!drivers[i]->scan) {
157 sr_err("No scan in driver %d ('%s').", i, d);
158 errors++;
159 }
160 if (!drivers[i]->dev_list) {
161 sr_err("No dev_list in driver %d ('%s').", i, d);
162 errors++;
163 }
164 if (!drivers[i]->dev_clear) {
165 sr_err("No dev_clear in driver %d ('%s').", i, d);
166 errors++;
167 }
168 if (!drivers[i]->dev_open) {
169 sr_err("No dev_open in driver %d ('%s').", i, d);
170 errors++;
171 }
172 if (!drivers[i]->dev_close) {
173 sr_err("No dev_close in driver %d ('%s').", i, d);
174 errors++;
175 }
176 if (!drivers[i]->info_get) {
177 sr_err("No info_get in driver %d ('%s').", i, d);
178 errors++;
179 }
180 if (!drivers[i]->dev_config_set) {
181 sr_err("No dev_config_set in driver %d ('%s').", i, d);
182 errors++;
183 }
184 if (!drivers[i]->dev_acquisition_start) {
185 sr_err("No dev_acquisition_start in driver %d ('%s').",
186 i, d);
187 errors++;
188 }
189 if (!drivers[i]->dev_acquisition_stop) {
190 sr_err("No dev_acquisition_stop in driver %d ('%s').",
191 i, d);
192 errors++;
193 }
194
195 /* Note: 'priv' is allowed to be NULL. */
196
197 if (errors == 0)
198 continue;
199
200 ret = SR_ERR;
201 }
202
203 return ret;
204}
205
cd009d55
UH
206/**
207 * Initialize libsigrok.
208 *
c46762a2
UH
209 * This function must be called before any other libsigrok function.
210 *
211 * @param ctx Pointer to a libsigrok context struct pointer. Must not be NULL.
212 * This will be a pointer to a newly allocated libsigrok context
213 * object upon success, and is undefined upon errors.
214 *
215 * @return SR_OK upon success, a (negative) error code otherwise. Upon errors
216 * the 'ctx' pointer is undefined and should not be used. Upon success,
217 * the context will be free'd by sr_exit() as part of the libsigrok
218 * shutdown.
cd009d55 219 */
b8072700 220SR_API int sr_init(struct sr_context **ctx)
a1bb33af 221{
b8072700
PS
222 int ret = SR_ERR;
223 struct sr_context *context;
224
c46762a2
UH
225 if (!ctx) {
226 sr_err("%s(): libsigrok context was NULL.", __func__);
227 return SR_ERR;
228 }
229
55a6daf5
UH
230 if (sanity_check_all_drivers() < 0) {
231 sr_err("Internal driver error(s), aborting.");
232 return ret;
233 }
234
b8072700
PS
235 /* + 1 to handle when struct sr_context has no members. */
236 context = g_try_malloc0(sizeof(struct sr_context) + 1);
237
238 if (!context) {
239 ret = SR_ERR_MALLOC;
240 goto done;
241 }
242
785b9ff2
PS
243#ifdef HAVE_LIBUSB_1_0
244 ret = libusb_init(&context->libusb_ctx);
8e2d43cc 245 if (LIBUSB_SUCCESS != ret) {
c46762a2 246 sr_err("libusb_init() returned %s.\n", libusb_error_name(ret));
785b9ff2
PS
247 goto done;
248 }
249#endif
250
b8072700
PS
251 *ctx = context;
252 ret = SR_OK;
253
254done:
255 return ret;
a1bb33af
UH
256}
257
cd009d55
UH
258/**
259 * Shutdown libsigrok.
260 *
c46762a2
UH
261 * @param ctx Pointer to a libsigrok context struct. Must not be NULL.
262 *
cd009d55
UH
263 * @return SR_OK upon success, a (negative) error code otherwise.
264 */
b8072700 265SR_API int sr_exit(struct sr_context *ctx)
a1bb33af 266{
c46762a2
UH
267 if (!ctx) {
268 sr_err("%s(): libsigrok context was NULL.", __func__);
269 return SR_ERR;
270 }
271
93a04e3b 272 sr_hw_cleanup_all();
cd009d55 273
785b9ff2
PS
274#ifdef HAVE_LIBUSB_1_0
275 libusb_exit(ctx->libusb_ctx);
276#endif
277
b8072700
PS
278 g_free(ctx);
279
cd009d55 280 return SR_OK;
a1bb33af 281}
7b870c38
UH
282
283/** @} */