blob: dd38f66e287a4fb5c53332ac84aacb7a0f672922 [file] [log] [blame]
Uwe Hermanna1bb33a2010-04-02 20:18:27 +02001/*
2 * This file is part of the sigrok project.
3 *
Bert Vermeulenc73d2ea2012-02-13 14:31:51 +01004 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
Peter Stugeb8072702012-10-21 20:23:14 +02005 * Copyright (C) 2012 Peter Stuge <peter@stuge.se>
Uwe Hermanna1bb33a2010-04-02 20:18:27 +02006 *
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 Vermeulen45c59c82012-07-05 00:55:07 +020022#include "libsigrok.h"
23#include "libsigrok-internal.h"
Uwe Hermanna1bb33a2010-04-02 20:18:27 +020024
Uwe Hermanncd009d52011-02-22 18:13:32 +010025/**
26 * Initialize libsigrok.
27 *
28 * @return SR_OK upon success, a (negative) error code otherwise.
29 */
Peter Stugeb8072702012-10-21 20:23:14 +020030SR_API int sr_init(struct sr_context **ctx)
Uwe Hermanna1bb33a2010-04-02 20:18:27 +020031{
Peter Stugeb8072702012-10-21 20:23:14 +020032 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
Peter Stuge785b9ff2012-10-21 20:23:36 +020043#ifdef HAVE_LIBUSB_1_0
44 ret = libusb_init(&context->libusb_ctx);
45 if (LIBUSB_SUCCESS != ret) {
46 sr_err("libusb_init() returned %s\n", libusb_error_name(ret));
47 goto done;
48 }
49#endif
50
Peter Stugeb8072702012-10-21 20:23:14 +020051 *ctx = context;
52 ret = SR_OK;
53
54done:
55 return ret;
Uwe Hermanna1bb33a2010-04-02 20:18:27 +020056}
57
Uwe Hermanncd009d52011-02-22 18:13:32 +010058/**
59 * Shutdown libsigrok.
60 *
61 * @return SR_OK upon success, a (negative) error code otherwise.
62 */
Peter Stugeb8072702012-10-21 20:23:14 +020063SR_API int sr_exit(struct sr_context *ctx)
Uwe Hermanna1bb33a2010-04-02 20:18:27 +020064{
Bert Vermeulen93a04e32012-02-15 03:18:48 +010065 sr_hw_cleanup_all();
Uwe Hermanncd009d52011-02-22 18:13:32 +010066
Peter Stuge785b9ff2012-10-21 20:23:36 +020067#ifdef HAVE_LIBUSB_1_0
68 libusb_exit(ctx->libusb_ctx);
69#endif
70
Peter Stugeb8072702012-10-21 20:23:14 +020071 g_free(ctx);
72
Uwe Hermanncd009d52011-02-22 18:13:32 +010073 return SR_OK;
Uwe Hermanna1bb33a2010-04-02 20:18:27 +020074}