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 | * |
| 28 | * @return SR_OK upon success, a (negative) error code otherwise. |
| 29 | */ |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame^] | 30 | SR_API int sr_init(struct sr_context **ctx) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 31 | { |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame^] | 32 | int ret = SR_ERR; |
| 33 | struct sr_context *context; |
| 34 | |
| 35 | /* + 1 to handle when struct sr_context has no members. */ |
| 36 | context = g_try_malloc0(sizeof(struct sr_context) + 1); |
| 37 | |
| 38 | if (!context) { |
| 39 | ret = SR_ERR_MALLOC; |
| 40 | goto done; |
| 41 | } |
| 42 | |
| 43 | *ctx = context; |
| 44 | ret = SR_OK; |
| 45 | |
| 46 | done: |
| 47 | return ret; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 48 | } |
| 49 | |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 50 | /** |
| 51 | * Shutdown libsigrok. |
| 52 | * |
| 53 | * @return SR_OK upon success, a (negative) error code otherwise. |
| 54 | */ |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame^] | 55 | SR_API int sr_exit(struct sr_context *ctx) |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 56 | { |
Bert Vermeulen | 93a04e3 | 2012-02-15 03:18:48 +0100 | [diff] [blame] | 57 | sr_hw_cleanup_all(); |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 58 | |
Peter Stuge | b807270 | 2012-10-21 20:23:14 +0200 | [diff] [blame^] | 59 | g_free(ctx); |
| 60 | |
Uwe Hermann | cd009d5 | 2011-02-22 18:13:32 +0100 | [diff] [blame] | 61 | return SR_OK; |
Uwe Hermann | a1bb33a | 2010-04-02 20:18:27 +0200 | [diff] [blame] | 62 | } |