Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the sigrok project. |
| 3 | * |
Bert Vermeulen | c73d2ea | 2012-02-13 14:31:51 +0100 | [diff] [blame] | 4 | * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com> |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 5 | * Copyright (C) 2012 Peter Stuge <peter@stuge.se> |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 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> |
Uwe Hermann | 545f978 | 2012-10-24 00:41:21 +0200 | [diff] [blame] | 22 | #include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */ |
Bert Vermeulen | 45c59c8 | 2012-07-05 00:55:07 +0200 | [diff] [blame] | 23 | #include "libsigrok.h" |
| 24 | #include "libsigrok-internal.h" |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 25 | |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 26 | /** |
Uwe Hermann | 5b30cca | 2012-10-19 10:06:45 +0200 | [diff] [blame] | 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 | * |
Uwe Hermann | f21193f | 2012-10-21 16:36:23 +0200 | [diff] [blame] | 43 | * @section sec_api API reference |
Uwe Hermann | 5b30cca | 2012-10-19 10:06:45 +0200 | [diff] [blame] | 44 | * |
Uwe Hermann | f21193f | 2012-10-21 16:36:23 +0200 | [diff] [blame] | 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. |
Uwe Hermann | 5b30cca | 2012-10-19 10:06:45 +0200 | [diff] [blame] | 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 | |
| 67 | /** |
Uwe Hermann | 393fb9c | 2012-10-22 00:30:12 +0200 | [diff] [blame] | 68 | * @file |
| 69 | * |
| 70 | * Initializing and shutting down libsigrok. |
| 71 | */ |
| 72 | |
| 73 | /** |
Uwe Hermann | 7b870c3 | 2012-10-21 16:13:36 +0200 | [diff] [blame] | 74 | * @defgroup grp_init Initialization |
| 75 | * |
| 76 | * Initializing and shutting down libsigrok. |
| 77 | * |
Uwe Hermann | afe2f28 | 2012-10-22 02:32:53 +0200 | [diff] [blame] | 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 | * |
Uwe Hermann | 7b870c3 | 2012-10-21 16:13:36 +0200 | [diff] [blame] | 114 | * @{ |
| 115 | */ |
| 116 | |
| 117 | /** |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 118 | * Initialize libsigrok. |
| 119 | * |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 120 | * This function must be called before any other libsigrok function. |
| 121 | * |
| 122 | * @param ctx Pointer to a libsigrok context struct pointer. Must not be NULL. |
| 123 | * This will be a pointer to a newly allocated libsigrok context |
| 124 | * object upon success, and is undefined upon errors. |
| 125 | * |
| 126 | * @return SR_OK upon success, a (negative) error code otherwise. Upon errors |
| 127 | * the 'ctx' pointer is undefined and should not be used. Upon success, |
| 128 | * the context will be free'd by sr_exit() as part of the libsigrok |
| 129 | * shutdown. |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 130 | */ |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 131 | SR_API int sr_init(struct sr_context **ctx) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 132 | { |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 133 | int ret = SR_ERR; |
| 134 | struct sr_context *context; |
| 135 | |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 136 | if (!ctx) { |
| 137 | sr_err("%s(): libsigrok context was NULL.", __func__); |
| 138 | return SR_ERR; |
| 139 | } |
| 140 | |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 141 | /* + 1 to handle when struct sr_context has no members. */ |
| 142 | context = g_try_malloc0(sizeof(struct sr_context) + 1); |
| 143 | |
| 144 | if (!context) { |
| 145 | ret = SR_ERR_MALLOC; |
| 146 | goto done; |
| 147 | } |
| 148 | |
Peter Stuge | 785b9ff | 2012-10-21 20:23:36 +0200 | [diff] [blame] | 149 | #ifdef HAVE_LIBUSB_1_0 |
| 150 | ret = libusb_init(&context->libusb_ctx); |
Uwe Hermann | 8e2d43c | 2012-10-22 10:17:38 +0200 | [diff] [blame] | 151 | if (LIBUSB_SUCCESS != ret) { |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 152 | sr_err("libusb_init() returned %s.\n", libusb_error_name(ret)); |
Peter Stuge | 785b9ff | 2012-10-21 20:23:36 +0200 | [diff] [blame] | 153 | goto done; |
| 154 | } |
| 155 | #endif |
| 156 | |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 157 | *ctx = context; |
| 158 | ret = SR_OK; |
| 159 | |
| 160 | done: |
| 161 | return ret; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 162 | } |
| 163 | |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 164 | /** |
| 165 | * Shutdown libsigrok. |
| 166 | * |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 167 | * @param ctx Pointer to a libsigrok context struct. Must not be NULL. |
| 168 | * |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 169 | * @return SR_OK upon success, a (negative) error code otherwise. |
| 170 | */ |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 171 | SR_API int sr_exit(struct sr_context *ctx) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 172 | { |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 173 | if (!ctx) { |
| 174 | sr_err("%s(): libsigrok context was NULL.", __func__); |
| 175 | return SR_ERR; |
| 176 | } |
| 177 | |
Bert Vermeulen | 93a04e3 | 2012-02-15 03:18:48 +0100 | [diff] [blame] | 178 | sr_hw_cleanup_all(); |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 179 | |
Peter Stuge | 785b9ff | 2012-10-21 20:23:36 +0200 | [diff] [blame] | 180 | #ifdef HAVE_LIBUSB_1_0 |
| 181 | libusb_exit(ctx->libusb_ctx); |
| 182 | #endif |
| 183 | |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 184 | g_free(ctx); |
| 185 | |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 186 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 187 | } |
Uwe Hermann | 7b870c3 | 2012-10-21 16:13:36 +0200 | [diff] [blame] | 188 | |
| 189 | /** @} */ |