Add build support for OSX.
[libjaylink.git] / libjaylink / core.c
blobd6732213c38566ab05b81764562c877bced9a1ce
1 /*
2 * This file is part of the libjaylink project.
4 * Copyright (C) 2014-2015 Marc Schink <jaylink-dev@marcschink.de>
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <stdlib.h>
21 #include <libusb.h>
23 #include "libjaylink.h"
24 #include "libjaylink-internal.h"
26 /**
27 * @file
29 * Core library functions.
32 /**
33 * Initialize libjaylink.
35 * This function must be called before any other libjaylink function is called.
37 * @param[out] ctx Newly allocated libjaylink context on success, and undefined
38 * on failure.
40 * @retval JAYLINK_OK Success.
41 * @retval JAYLINK_ERR_ARG Invalid arguments.
42 * @retval JAYLINK_ERR Other error conditions.
44 JAYLINK_API int jaylink_init(struct jaylink_context **ctx)
46 struct jaylink_context *context;
48 if (!ctx)
49 return JAYLINK_ERR_ARG;
51 context = malloc(sizeof(struct jaylink_context));
53 if (!context)
54 return JAYLINK_ERR_MALLOC;
56 if (libusb_init(&context->usb_ctx) < 0) {
57 free(context);
58 return JAYLINK_ERR;
61 context->devs = NULL;
63 /* Show error and warning messages by default. */
64 context->log_level = JAYLINK_LOG_LEVEL_WARNING;
66 *ctx = context;
68 return JAYLINK_OK;
71 /**
72 * Shutdown libjaylink.
74 * @param[in,out] ctx libjaylink context.
76 JAYLINK_API void jaylink_exit(struct jaylink_context *ctx)
78 if (!ctx)
79 return;
81 list_free(ctx->devs);
82 libusb_exit(ctx->usb_ctx);
83 free(ctx);