forked from analogdevicesinc/libiio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscan.c
165 lines (135 loc) · 3.46 KB
/
scan.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
* libiio - Library for interfacing industrial I/O (IIO) devices
*
* Copyright (C) 2016 Analog Devices, Inc.
* Author: Paul Cercueil <paul.cercueil@analog.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
#include "iio-config.h"
#include "iio-private.h"
#include <errno.h>
#include <stdbool.h>
#include <string.h>
struct iio_scan_context {
#ifdef WITH_USB_BACKEND
struct iio_scan_backend_context *usb_ctx;
#endif
bool scan_local;
};
const char * iio_context_info_get_description(
const struct iio_context_info *info)
{
return info->description;
}
const char * iio_context_info_get_uri(
const struct iio_context_info *info)
{
return info->uri;
}
ssize_t iio_scan_context_get_info_list(struct iio_scan_context *ctx,
struct iio_context_info ***info)
{
struct iio_scan_result scan_result = { 0, NULL };
#ifdef WITH_LOCAL_BACKEND
if (ctx->scan_local) {
int ret = local_context_scan(&scan_result);
if (ret < 0) {
if (scan_result.info)
iio_context_info_list_free(scan_result.info);
return ret;
}
}
#endif
#ifdef WITH_USB_BACKEND
if (ctx->usb_ctx) {
int ret = usb_context_scan(ctx->usb_ctx, &scan_result);
if (ret < 0) {
if (scan_result.info)
iio_context_info_list_free(scan_result.info);
return ret;
}
}
#endif
*info = scan_result.info;
return (ssize_t) scan_result.size;
}
void iio_context_info_list_free(struct iio_context_info **list)
{
struct iio_context_info **it;
if (!list)
return;
for (it = list; *it; it++) {
struct iio_context_info *info = *it;
if (info->description)
free(info->description);
if (info->uri)
free(info->uri);
free(info);
}
free(list);
}
struct iio_context_info ** iio_scan_result_add(
struct iio_scan_result *scan_result, size_t num)
{
struct iio_context_info **info;
size_t old_size, new_size;
size_t i;
old_size = scan_result->size;
new_size = old_size + num;
info = realloc(scan_result->info, (new_size + 1) * sizeof(*info));
if (!info)
goto err_free_info_list;
for (i = old_size; i < new_size; i++) {
/* Make sure iio_context_info_list_free won't overflow */
info[i + 1] = NULL;
info[i] = zalloc(sizeof(**info));
if (!info[i])
goto err_free_info_list;
}
scan_result->info = info;
scan_result->size = new_size;
return &info[old_size];
err_free_info_list:
scan_result->size = 0;
iio_context_info_list_free(scan_result->info);
return NULL;
}
struct iio_scan_context * iio_create_scan_context(
const char *backend, unsigned int flags)
{
struct iio_scan_context *ctx;
/* "flags" must be zero for now */
if (flags != 0) {
errno = EINVAL;
return NULL;
}
ctx = calloc(1, sizeof(*ctx));
if (!ctx) {
errno = ENOMEM;
return NULL;
}
if (!backend || !strcmp(backend, "local"))
ctx->scan_local = true;
#ifdef WITH_USB_BACKEND
if (!backend || !strcmp(backend, "usb"))
ctx->usb_ctx = usb_context_scan_init();
#endif
return ctx;
}
void iio_scan_context_destroy(struct iio_scan_context *ctx)
{
#ifdef WITH_USB_BACKEND
if (ctx->usb_ctx)
usb_context_scan_free(ctx->usb_ctx);
#endif
free(ctx);
}