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> |
Bert Vermeulen | 45c59c8 | 2012-07-05 00:55:07 +0200 | [diff] [blame] | 22 | #include "libsigrok.h" |
| 23 | #include "libsigrok-internal.h" |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 24 | |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 25 | /** |
| 26 | * Initialize libsigrok. |
| 27 | * |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 28 | * This function must be called before any other libsigrok function. |
| 29 | * |
| 30 | * @param ctx Pointer to a libsigrok context struct pointer. Must not be NULL. |
| 31 | * This will be a pointer to a newly allocated libsigrok context |
| 32 | * object upon success, and is undefined upon errors. |
| 33 | * |
| 34 | * @return SR_OK upon success, a (negative) error code otherwise. Upon errors |
| 35 | * the 'ctx' pointer is undefined and should not be used. Upon success, |
| 36 | * the context will be free'd by sr_exit() as part of the libsigrok |
| 37 | * shutdown. |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 38 | */ |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 39 | SR_API int sr_init(struct sr_context **ctx) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 40 | { |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 41 | int ret = SR_ERR; |
| 42 | struct sr_context *context; |
| 43 | |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 44 | if (!ctx) { |
| 45 | sr_err("%s(): libsigrok context was NULL.", __func__); |
| 46 | return SR_ERR; |
| 47 | } |
| 48 | |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 49 | /* + 1 to handle when struct sr_context has no members. */ |
| 50 | context = g_try_malloc0(sizeof(struct sr_context) + 1); |
| 51 | |
| 52 | if (!context) { |
| 53 | ret = SR_ERR_MALLOC; |
| 54 | goto done; |
| 55 | } |
| 56 | |
Peter Stuge | 785b9ff | 2012-10-21 20:23:36 +0200 | [diff] [blame] | 57 | #ifdef HAVE_LIBUSB_1_0 |
| 58 | ret = libusb_init(&context->libusb_ctx); |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 59 | if (LIBUSB_SUCCESS == ret) { |
| 60 | sr_err("libusb_init() returned %s.\n", libusb_error_name(ret)); |
Peter Stuge | 785b9ff | 2012-10-21 20:23:36 +0200 | [diff] [blame] | 61 | goto done; |
| 62 | } |
| 63 | #endif |
| 64 | |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 65 | *ctx = context; |
| 66 | ret = SR_OK; |
| 67 | |
| 68 | done: |
| 69 | return ret; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 70 | } |
| 71 | |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 72 | /** |
| 73 | * Shutdown libsigrok. |
| 74 | * |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 75 | * @param ctx Pointer to a libsigrok context struct. Must not be NULL. |
| 76 | * |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 77 | * @return SR_OK upon success, a (negative) error code otherwise. |
| 78 | */ |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 79 | SR_API int sr_exit(struct sr_context *ctx) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 80 | { |
Uwe Hermann | c46762a | 2012-10-21 22:40:43 +0200 | [diff] [blame] | 81 | if (!ctx) { |
| 82 | sr_err("%s(): libsigrok context was NULL.", __func__); |
| 83 | return SR_ERR; |
| 84 | } |
| 85 | |
Bert Vermeulen | 93a04e3 | 2012-02-15 03:18:48 +0100 | [diff] [blame] | 86 | sr_hw_cleanup_all(); |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 87 | |
Peter Stuge | 785b9ff | 2012-10-21 20:23:36 +0200 | [diff] [blame] | 88 | #ifdef HAVE_LIBUSB_1_0 |
| 89 | libusb_exit(ctx->libusb_ctx); |
| 90 | #endif |
| 91 | |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame] | 92 | g_free(ctx); |
| 93 | |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 94 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 95 | } |