]> sigrok.org Git - libsigrok.git/blame - src/scpi/scpi.c
Doxygen: Add a few missing @param lines for sessions.
[libsigrok.git] / src / scpi / scpi.c
CommitLineData
7b9d7320
DJ
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 poljar (Damir Jelić) <poljarinho@gmail.com>
5 *
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.
10 *
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.
15 *
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/>.
18 */
19
20#include "libsigrok.h"
21#include "libsigrok-internal.h"
22
23#include <glib.h>
24#include <string.h>
25
3544f848 26#define LOG_PREFIX "scpi"
7b9d7320
DJ
27
28#define SCPI_READ_RETRIES 100
29#define SCPI_READ_RETRY_TIMEOUT 10000
30
aa1e3b40
DJ
31/**
32 * Parse a string representation of a boolean-like value into a gboolean.
33 * Similar to sr_parse_boolstring but rejects strings which do not represent
34 * a boolean-like value.
35 *
36 * @param str String to convert.
37 * @param ret Pointer to a gboolean where the result of the conversion will be
38 * stored.
39 *
40 * @return SR_OK on success, SR_ERR on failure.
41 */
d5976d8b 42static int parse_strict_bool(const char *str, gboolean *ret)
aa1e3b40
DJ
43{
44 if (!str)
45 return SR_ERR_ARG;
46
47 if (!g_strcmp0(str, "1") ||
48 !g_ascii_strncasecmp(str, "y", 1) ||
49 !g_ascii_strncasecmp(str, "t", 1) ||
50 !g_ascii_strncasecmp(str, "yes", 3) ||
51 !g_ascii_strncasecmp(str, "true", 4) ||
52 !g_ascii_strncasecmp(str, "on", 2)) {
aa1e3b40
DJ
53 *ret = TRUE;
54 return SR_OK;
aa1e3b40
DJ
55 } else if (!g_strcmp0(str, "0") ||
56 !g_ascii_strncasecmp(str, "n", 1) ||
57 !g_ascii_strncasecmp(str, "f", 1) ||
58 !g_ascii_strncasecmp(str, "no", 2) ||
59 !g_ascii_strncasecmp(str, "false", 5) ||
60 !g_ascii_strncasecmp(str, "off", 3)) {
aa1e3b40
DJ
61 *ret = FALSE;
62 return SR_OK;
63 }
64
65 return SR_ERR;
66}
67
f754c146 68SR_PRIV extern const struct sr_scpi_dev_inst scpi_serial_dev;
104ed125
AJ
69SR_PRIV extern const struct sr_scpi_dev_inst scpi_tcp_raw_dev;
70SR_PRIV extern const struct sr_scpi_dev_inst scpi_tcp_rigol_dev;
20ed3cee 71SR_PRIV extern const struct sr_scpi_dev_inst scpi_usbtmc_libusb_dev;
f754c146 72SR_PRIV extern const struct sr_scpi_dev_inst scpi_vxi_dev;
1fb2312f 73SR_PRIV extern const struct sr_scpi_dev_inst scpi_visa_dev;
f754c146
AJ
74
75static const struct sr_scpi_dev_inst *scpi_devs[] = {
104ed125
AJ
76 &scpi_tcp_raw_dev,
77 &scpi_tcp_rigol_dev,
20ed3cee
AJ
78#ifdef HAVE_LIBUSB_1_0
79 &scpi_usbtmc_libusb_dev,
80#endif
613c1108 81#if HAVE_RPC
f754c146
AJ
82 &scpi_vxi_dev,
83#endif
1fb2312f
ML
84#ifdef HAVE_LIBREVISA
85 &scpi_visa_dev,
86#endif
f754c146
AJ
87#ifdef HAVE_LIBSERIALPORT
88 &scpi_serial_dev, /* must be last as it matches any resource */
89#endif
90};
91
85b69c2b 92static struct sr_dev_inst *sr_scpi_scan_resource(struct drv_context *drvc,
b541f837
AJ
93 const char *resource, const char *serialcomm,
94 struct sr_dev_inst *(*probe_device)(struct sr_scpi_dev_inst *scpi))
95{
96 struct sr_scpi_dev_inst *scpi;
97 struct sr_dev_inst *sdi;
98
99 if (!(scpi = scpi_dev_inst_new(drvc, resource, serialcomm)))
100 return NULL;
101
102 if (sr_scpi_open(scpi) != SR_OK) {
103 sr_info("Couldn't open SCPI device.");
104 sr_scpi_free(scpi);
105 return NULL;
106 };
107
108 if ((sdi = probe_device(scpi)))
85b69c2b 109 return sdi;
b541f837
AJ
110
111 sr_scpi_close(scpi);
112 sr_scpi_free(scpi);
113 return NULL;
114}
115
116SR_PRIV GSList *sr_scpi_scan(struct drv_context *drvc, GSList *options,
117 struct sr_dev_inst *(*probe_device)(struct sr_scpi_dev_inst *scpi))
118{
85b69c2b
BV
119 GSList *resources, *l, *devices;
120 struct sr_dev_inst *sdi;
b541f837
AJ
121 const char *resource = NULL;
122 const char *serialcomm = NULL;
123 gchar **res;
124 unsigned i;
125
126 for (l = options; l; l = l->next) {
127 struct sr_config *src = l->data;
128 switch (src->key) {
129 case SR_CONF_CONN:
130 resource = g_variant_get_string(src->data, NULL);
131 break;
132 case SR_CONF_SERIALCOMM:
133 serialcomm = g_variant_get_string(src->data, NULL);
134 break;
135 }
136 }
137
85b69c2b 138 devices = NULL;
b541f837
AJ
139 for (i = 0; i < ARRAY_SIZE(scpi_devs); i++) {
140 if ((resource && strcmp(resource, scpi_devs[i]->prefix))
141 || !scpi_devs[i]->scan)
142 continue;
143 resources = scpi_devs[i]->scan(drvc);
144 for (l = resources; l; l = l->next) {
145 res = g_strsplit(l->data, ":", 2);
85b69c2b 146 if (res[0] && (sdi = sr_scpi_scan_resource(drvc, res[0],
b541f837 147 serialcomm ? serialcomm : res[1], probe_device)))
85b69c2b 148 devices = g_slist_append(devices, sdi);
b541f837
AJ
149 g_strfreev(res);
150 }
151 g_slist_free_full(resources, g_free);
152 }
153
85b69c2b
BV
154 if (!devices && resource) {
155 sdi = sr_scpi_scan_resource(drvc, resource, serialcomm, probe_device);
156 devices = g_slist_append(NULL, sdi);
157 }
b541f837
AJ
158
159 /* Tack a copy of the newly found devices onto the driver list. */
160 if (devices)
85b69c2b 161 drvc->instances = g_slist_concat(drvc->instances, g_slist_copy(devices));
b541f837
AJ
162
163 return devices;
164}
165
17bdda58
AJ
166SR_PRIV struct sr_scpi_dev_inst *scpi_dev_inst_new(struct drv_context *drvc,
167 const char *resource, const char *serialcomm)
c3515cea
AJ
168{
169 struct sr_scpi_dev_inst *scpi = NULL;
f754c146
AJ
170 const struct sr_scpi_dev_inst *scpi_dev;
171 gchar **params;
172 unsigned i;
c3515cea 173
f754c146
AJ
174 for (i = 0; i < ARRAY_SIZE(scpi_devs); i++) {
175 scpi_dev = scpi_devs[i];
176 if (!strncmp(resource, scpi_dev->prefix, strlen(scpi_dev->prefix))) {
177 sr_dbg("Opening %s device %s.", scpi_dev->name, resource);
178 scpi = g_malloc(sizeof(*scpi));
179 *scpi = *scpi_dev;
180 scpi->priv = g_malloc0(scpi->priv_size);
181 params = g_strsplit(resource, "/", 0);
17bdda58 182 if (scpi->dev_inst_new(scpi->priv, drvc, resource,
f754c146
AJ
183 params, serialcomm) != SR_OK) {
184 sr_scpi_free(scpi);
185 scpi = NULL;
186 }
187 g_strfreev(params);
188 break;
189 }
c3515cea 190 }
f754c146 191
c3515cea
AJ
192 return scpi;
193}
194
23f43dff
ML
195/**
196 * Open SCPI device.
197 *
198 * @param scpi Previously initialized SCPI device structure.
199 *
200 * @return SR_OK on success, SR_ERR on failure.
201 */
202SR_PRIV int sr_scpi_open(struct sr_scpi_dev_inst *scpi)
203{
204 return scpi->open(scpi->priv);
205}
206
207/**
208 * Add an event source for an SCPI device.
209 *
7efe889e 210 * @param session The session to add the event source to.
23f43dff
ML
211 * @param scpi Previously initialized SCPI device structure.
212 * @param events Events to check for.
213 * @param timeout Max time to wait before the callback is called, ignored if 0.
214 * @param cb Callback function to add. Must not be NULL.
215 * @param cb_data Data for the callback function. Can be NULL.
216 *
217 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
218 * SR_ERR_MALLOC upon memory allocation errors.
219 */
102f1239
BV
220SR_PRIV int sr_scpi_source_add(struct sr_session *session,
221 struct sr_scpi_dev_inst *scpi, int events, int timeout,
222 sr_receive_data_callback cb, void *cb_data)
23f43dff 223{
102f1239 224 return scpi->source_add(session, scpi->priv, events, timeout, cb, cb_data);
23f43dff
ML
225}
226
227/**
228 * Remove event source for an SCPI device.
229 *
7efe889e 230 * @param session The session to remove the event source from.
23f43dff
ML
231 * @param scpi Previously initialized SCPI device structure.
232 *
233 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
234 * SR_ERR_MALLOC upon memory allocation errors, SR_ERR_BUG upon
235 * internal errors.
236 */
102f1239
BV
237SR_PRIV int sr_scpi_source_remove(struct sr_session *session,
238 struct sr_scpi_dev_inst *scpi)
23f43dff 239{
102f1239 240 return scpi->source_remove(session, scpi->priv);
23f43dff
ML
241}
242
7b9d7320
DJ
243/**
244 * Send a SCPI command.
245 *
23f43dff 246 * @param scpi Previously initialized SCPI device structure.
504f40a5 247 * @param format Format string, to be followed by any necessary arguments.
7b9d7320
DJ
248 *
249 * @return SR_OK on success, SR_ERR on failure.
250 */
23f43dff 251SR_PRIV int sr_scpi_send(struct sr_scpi_dev_inst *scpi,
504f40a5 252 const char *format, ...)
7b9d7320 253{
87c41083
ML
254 va_list args;
255 int ret;
256
257 va_start(args, format);
258 ret = sr_scpi_send_variadic(scpi, format, args);
259 va_end(args);
260
261 return ret;
262}
263
264/**
265 * Send a SCPI command with a variadic argument list.
266 *
267 * @param scpi Previously initialized SCPI device structure.
268 * @param format Format string.
269 * @param args Argument list.
270 *
271 * @return SR_OK on success, SR_ERR on failure.
272 */
273SR_PRIV int sr_scpi_send_variadic(struct sr_scpi_dev_inst *scpi,
274 const char *format, va_list args)
275{
276 va_list args_copy;
504f40a5
ML
277 char *buf;
278 int len, ret;
279
504f40a5 280 /* Get length of buffer required. */
87c41083
ML
281 va_copy(args_copy, args);
282 len = vsnprintf(NULL, 0, format, args_copy);
283 va_end(args_copy);
504f40a5
ML
284
285 /* Allocate buffer and write out command. */
286 buf = g_malloc(len + 1);
87c41083 287 vsprintf(buf, format, args);
504f40a5
ML
288
289 /* Send command. */
290 ret = scpi->send(scpi->priv, buf);
291
292 /* Free command buffer. */
293 g_free(buf);
294
295 return ret;
23f43dff 296}
7b9d7320 297
23f43dff 298/**
05c644ea 299 * Begin receiving an SCPI reply.
23f43dff
ML
300 *
301 * @param scpi Previously initialised SCPI device structure.
23f43dff 302 *
05c644ea 303 * @return SR_OK on success, SR_ERR on failure.
23f43dff 304 */
05c644ea 305SR_PRIV int sr_scpi_read_begin(struct sr_scpi_dev_inst *scpi)
23f43dff 306{
05c644ea 307 return scpi->read_begin(scpi->priv);
23f43dff 308}
7b9d7320 309
a1ff9c18
ML
310/**
311 * Read part of a response from SCPI device.
312 *
313 * @param scpi Previously initialised SCPI device structure.
314 * @param buf Buffer to store result.
315 * @param maxlen Maximum number of bytes to read.
316 *
317 * @return Number of bytes read, or SR_ERR upon failure.
318 */
05c644ea 319SR_PRIV int sr_scpi_read_data(struct sr_scpi_dev_inst *scpi,
a1ff9c18
ML
320 char *buf, int maxlen)
321{
05c644ea
ML
322 return scpi->read_data(scpi->priv, buf, maxlen);
323}
324
325/**
326 * Check whether a complete SCPI response has been received.
327 *
328 * @param scpi Previously initialised SCPI device structure.
329 *
330 * @return 1 if complete, 0 otherwise.
331 */
332SR_PRIV int sr_scpi_read_complete(struct sr_scpi_dev_inst *scpi)
333{
334 return scpi->read_complete(scpi->priv);
a1ff9c18
ML
335}
336
23f43dff
ML
337/**
338 * Close SCPI device.
339 *
340 * @param scpi Previously initialized SCPI device structure.
341 *
342 * @return SR_OK on success, SR_ERR on failure.
343 */
344SR_PRIV int sr_scpi_close(struct sr_scpi_dev_inst *scpi)
345{
346 return scpi->close(scpi->priv);
347}
7b9d7320 348
23f43dff
ML
349/**
350 * Free SCPI device.
351 *
352 * @param scpi Previously initialized SCPI device structure.
353 *
354 * @return SR_OK on success, SR_ERR on failure.
355 */
356SR_PRIV void sr_scpi_free(struct sr_scpi_dev_inst *scpi)
357{
358 scpi->free(scpi->priv);
f754c146 359 g_free(scpi->priv);
23f43dff 360 g_free(scpi);
7b9d7320
DJ
361}
362
363/**
364 * Send a SCPI command, receive the reply and store the reply in scpi_response.
365 *
23f43dff 366 * @param scpi Previously initialised SCPI device structure.
7b9d7320 367 * @param command The SCPI command to send to the device (can be NULL).
d5976d8b 368 * @param scpi_response Pointer where to store the SCPI response.
7b9d7320 369 *
05c644ea 370 * @return SR_OK on success, SR_ERR on failure.
7b9d7320 371 */
23f43dff 372SR_PRIV int sr_scpi_get_string(struct sr_scpi_dev_inst *scpi,
d5976d8b 373 const char *command, char **scpi_response)
7b9d7320 374{
05c644ea
ML
375 char buf[256];
376 int len;
377 GString *response;
378
7b9d7320 379 if (command)
23f43dff 380 if (sr_scpi_send(scpi, command) != SR_OK)
7b9d7320
DJ
381 return SR_ERR;
382
05c644ea
ML
383 if (sr_scpi_read_begin(scpi) != SR_OK)
384 return SR_ERR;
385
386 response = g_string_new("");
387
388 *scpi_response = NULL;
389
390 while (!sr_scpi_read_complete(scpi)) {
391 len = sr_scpi_read_data(scpi, buf, sizeof(buf));
392 if (len < 0) {
393 g_string_free(response, TRUE);
394 return SR_ERR;
395 }
396 g_string_append_len(response, buf, len);
397 }
398
d03dfac6
ML
399 /* Get rid of trailing linefeed if present */
400 if (response->len >= 1 && response->str[response->len - 1] == '\n')
401 g_string_truncate(response, response->len - 1);
402
05c644ea
ML
403 *scpi_response = response->str;
404 g_string_free(response, FALSE);
405
1c873c11 406 sr_spew("Got response: '%.70s'.", *scpi_response);
cf9f4bc5 407
05c644ea 408 return SR_OK;
d730f70e
DJ
409}
410
411/**
412 * Send a SCPI command, read the reply, parse it as a bool value and store the
413 * result in scpi_response.
414 *
23f43dff 415 * @param scpi Previously initialised SCPI device structure.
d730f70e
DJ
416 * @param command The SCPI command to send to the device (can be NULL).
417 * @param scpi_response Pointer where to store the parsed result.
418 *
419 * @return SR_OK on success, SR_ERR on failure.
420 */
23f43dff 421SR_PRIV int sr_scpi_get_bool(struct sr_scpi_dev_inst *scpi,
d730f70e
DJ
422 const char *command, gboolean *scpi_response)
423{
424 int ret;
425 char *response;
426
427 response = NULL;
428
23f43dff 429 if (sr_scpi_get_string(scpi, command, &response) != SR_OK)
d730f70e
DJ
430 if (!response)
431 return SR_ERR;
432
d5976d8b 433 if (parse_strict_bool(response, scpi_response) == SR_OK)
d730f70e
DJ
434 ret = SR_OK;
435 else
436 ret = SR_ERR;
437
438 g_free(response);
439
440 return ret;
441}
442
443/**
444 * Send a SCPI command, read the reply, parse it as an integer and store the
445 * result in scpi_response.
446 *
23f43dff 447 * @param scpi Previously initialised SCPI device structure.
d730f70e
DJ
448 * @param command The SCPI command to send to the device (can be NULL).
449 * @param scpi_response Pointer where to store the parsed result.
450 *
451 * @return SR_OK on success, SR_ERR on failure.
452 */
23f43dff 453SR_PRIV int sr_scpi_get_int(struct sr_scpi_dev_inst *scpi,
d5976d8b 454 const char *command, int *scpi_response)
d730f70e
DJ
455{
456 int ret;
457 char *response;
458
459 response = NULL;
460
23f43dff 461 if (sr_scpi_get_string(scpi, command, &response) != SR_OK)
d730f70e
DJ
462 if (!response)
463 return SR_ERR;
464
465 if (sr_atoi(response, scpi_response) == SR_OK)
466 ret = SR_OK;
467 else
468 ret = SR_ERR;
469
470 g_free(response);
471
472 return ret;
473}
474
475/**
476 * Send a SCPI command, read the reply, parse it as a float and store the
477 * result in scpi_response.
478 *
23f43dff 479 * @param scpi Previously initialised SCPI device structure.
d730f70e
DJ
480 * @param command The SCPI command to send to the device (can be NULL).
481 * @param scpi_response Pointer where to store the parsed result.
482 *
483 * @return SR_OK on success, SR_ERR on failure.
484 */
23f43dff 485SR_PRIV int sr_scpi_get_float(struct sr_scpi_dev_inst *scpi,
d730f70e
DJ
486 const char *command, float *scpi_response)
487{
488 int ret;
489 char *response;
490
491 response = NULL;
492
23f43dff 493 if (sr_scpi_get_string(scpi, command, &response) != SR_OK)
d730f70e
DJ
494 if (!response)
495 return SR_ERR;
496
13dbd151 497 if (sr_atof_ascii(response, scpi_response) == SR_OK)
d730f70e
DJ
498 ret = SR_OK;
499 else
500 ret = SR_ERR;
501
502 g_free(response);
503
504 return ret;
505}
506
507/**
508 * Send a SCPI command, read the reply, parse it as a double and store the
509 * result in scpi_response.
510 *
23f43dff 511 * @param scpi Previously initialised SCPI device structure.
d730f70e
DJ
512 * @param command The SCPI command to send to the device (can be NULL).
513 * @param scpi_response Pointer where to store the parsed result.
514 *
515 * @return SR_OK on success, SR_ERR on failure.
516 */
23f43dff 517SR_PRIV int sr_scpi_get_double(struct sr_scpi_dev_inst *scpi,
d5976d8b 518 const char *command, double *scpi_response)
d730f70e
DJ
519{
520 int ret;
521 char *response;
522
523 response = NULL;
524
23f43dff 525 if (sr_scpi_get_string(scpi, command, &response) != SR_OK)
d730f70e
DJ
526 if (!response)
527 return SR_ERR;
528
529 if (sr_atod(response, scpi_response) == SR_OK)
530 ret = SR_OK;
531 else
532 ret = SR_ERR;
533
534 g_free(response);
535
7b9d7320
DJ
536 return ret;
537}
538
f5922ade
DJ
539/**
540 * Send a SCPI *OPC? command, read the reply and return the result of the
541 * command.
542 *
23f43dff 543 * @param scpi Previously initialised SCPI device structure.
f5922ade
DJ
544 *
545 * @return SR_OK on success, SR_ERR on failure.
546 */
23f43dff 547SR_PRIV int sr_scpi_get_opc(struct sr_scpi_dev_inst *scpi)
f5922ade
DJ
548{
549 unsigned int i;
550 gboolean opc;
551
552 for (i = 0; i < SCPI_READ_RETRIES; ++i) {
23f43dff 553 sr_scpi_get_bool(scpi, SCPI_CMD_OPC, &opc);
f5922ade
DJ
554 if (opc)
555 return SR_OK;
f5922ade
DJ
556 g_usleep(SCPI_READ_RETRY_TIMEOUT);
557 }
558
559 return SR_ERR;
560}
561
8acbb89a
DJ
562/**
563 * Send a SCPI command, read the reply, parse it as comma separated list of
564 * floats and store the as an result in scpi_response.
565 *
23f43dff 566 * @param scpi Previously initialised SCPI device structure.
8acbb89a
DJ
567 * @param command The SCPI command to send to the device (can be NULL).
568 * @param scpi_response Pointer where to store the parsed result.
569 *
570 * @return SR_OK upon successfully parsing all values, SR_ERR upon a parsing
d5976d8b
UH
571 * error or upon no response. The allocated response must be freed by
572 * the caller in the case of an SR_OK as well as in the case of
573 * parsing error.
8acbb89a 574 */
23f43dff 575SR_PRIV int sr_scpi_get_floatv(struct sr_scpi_dev_inst *scpi,
d5976d8b 576 const char *command, GArray **scpi_response)
8acbb89a
DJ
577{
578 int ret;
579 float tmp;
580 char *response;
d5976d8b 581 gchar **ptr, **tokens;
8acbb89a
DJ
582 GArray *response_array;
583
584 ret = SR_OK;
585 response = NULL;
586 tokens = NULL;
587
23f43dff 588 if (sr_scpi_get_string(scpi, command, &response) != SR_OK)
8acbb89a
DJ
589 if (!response)
590 return SR_ERR;
591
592 tokens = g_strsplit(response, ",", 0);
593 ptr = tokens;
594
595 response_array = g_array_sized_new(TRUE, FALSE, sizeof(float), 256);
596
d5976d8b 597 while (*ptr) {
13dbd151 598 if (sr_atof_ascii(*ptr, &tmp) == SR_OK)
8acbb89a
DJ
599 response_array = g_array_append_val(response_array,
600 tmp);
601 else
602 ret = SR_ERR;
603
604 ptr++;
605 }
606 g_strfreev(tokens);
607 g_free(response);
608
609 if (ret == SR_ERR && response_array->len == 0) {
610 g_array_free(response_array, TRUE);
611 *scpi_response = NULL;
612 return SR_ERR;
613 }
614
615 *scpi_response = response_array;
616
1a323dd8
DJ
617 return ret;
618}
619
620/**
621 * Send a SCPI command, read the reply, parse it as comma separated list of
622 * unsigned 8 bit integers and store the as an result in scpi_response.
623 *
23f43dff 624 * @param scpi Previously initialised SCPI device structure.
1a323dd8
DJ
625 * @param command The SCPI command to send to the device (can be NULL).
626 * @param scpi_response Pointer where to store the parsed result.
627 *
628 * @return SR_OK upon successfully parsing all values, SR_ERR upon a parsing
d5976d8b
UH
629 * error or upon no response. The allocated response must be freed by
630 * the caller in the case of an SR_OK as well as in the case of
631 * parsing error.
1a323dd8 632 */
23f43dff 633SR_PRIV int sr_scpi_get_uint8v(struct sr_scpi_dev_inst *scpi,
d5976d8b 634 const char *command, GArray **scpi_response)
1a323dd8 635{
d5976d8b 636 int tmp, ret;
1a323dd8 637 char *response;
d5976d8b 638 gchar **ptr, **tokens;
1a323dd8
DJ
639 GArray *response_array;
640
641 ret = SR_OK;
642 response = NULL;
643 tokens = NULL;
644
23f43dff 645 if (sr_scpi_get_string(scpi, command, &response) != SR_OK)
1a323dd8
DJ
646 if (!response)
647 return SR_ERR;
648
649 tokens = g_strsplit(response, ",", 0);
650 ptr = tokens;
651
652 response_array = g_array_sized_new(TRUE, FALSE, sizeof(uint8_t), 256);
653
d5976d8b 654 while (*ptr) {
1a323dd8
DJ
655 if (sr_atoi(*ptr, &tmp) == SR_OK)
656 response_array = g_array_append_val(response_array,
657 tmp);
658 else
659 ret = SR_ERR;
660
661 ptr++;
662 }
663 g_strfreev(tokens);
664 g_free(response);
665
666 if (response_array->len == 0) {
667 g_array_free(response_array, TRUE);
668 *scpi_response = NULL;
669 return SR_ERR;
670 }
671
672 *scpi_response = response_array;
673
8acbb89a
DJ
674 return ret;
675}
676
7b9d7320
DJ
677/**
678 * Send the *IDN? SCPI command, receive the reply, parse it and store the
679 * reply as a sr_scpi_hw_info structure in the supplied scpi_response pointer.
680 *
d5976d8b
UH
681 * The hw_info structure must be freed by the caller via sr_scpi_hw_info_free().
682 *
23f43dff 683 * @param scpi Previously initialised SCPI device structure.
7b9d7320
DJ
684 * @param scpi_response Pointer where to store the hw_info structure.
685 *
686 * @return SR_OK upon success, SR_ERR on failure.
7b9d7320 687 */
23f43dff 688SR_PRIV int sr_scpi_get_hw_id(struct sr_scpi_dev_inst *scpi,
7b9d7320
DJ
689 struct sr_scpi_hw_info **scpi_response)
690{
691 int num_tokens;
692 char *response;
693 gchar **tokens;
7b9d7320
DJ
694 struct sr_scpi_hw_info *hw_info;
695
696 response = NULL;
697 tokens = NULL;
698
23f43dff 699 if (sr_scpi_get_string(scpi, SCPI_CMD_IDN, &response) != SR_OK)
7b9d7320
DJ
700 if (!response)
701 return SR_ERR;
702
77c16c04
ML
703 sr_info("Got IDN string: '%s'", response);
704
7b9d7320
DJ
705 /*
706 * The response to a '*IDN?' is specified by the SCPI spec. It contains
707 * a comma-separated list containing the manufacturer name, instrument
708 * model, serial number of the instrument and the firmware version.
709 */
710 tokens = g_strsplit(response, ",", 0);
711
712 for (num_tokens = 0; tokens[num_tokens] != NULL; num_tokens++);
713
714 if (num_tokens != 4) {
d5976d8b 715 sr_dbg("IDN response not according to spec: %80.s.", response);
7b9d7320
DJ
716 g_strfreev(tokens);
717 g_free(response);
718 return SR_ERR;
719 }
720 g_free(response);
721
722 hw_info = g_try_malloc(sizeof(struct sr_scpi_hw_info));
723 if (!hw_info) {
724 g_strfreev(tokens);
725 return SR_ERR_MALLOC;
726 }
727
728 hw_info->manufacturer = g_strdup(tokens[0]);
729 hw_info->model = g_strdup(tokens[1]);
730 hw_info->serial_number = g_strdup(tokens[2]);
731 hw_info->firmware_version = g_strdup(tokens[3]);
732
733 g_strfreev(tokens);
734
735 *scpi_response = hw_info;
736
737 return SR_OK;
738}
739
740/**
741 * Free a sr_scpi_hw_info struct.
742 *
743 * @param hw_info Pointer to the struct to free.
744 *
745 * This function is safe to call with a NULL pointer.
746 */
747SR_PRIV void sr_scpi_hw_info_free(struct sr_scpi_hw_info *hw_info)
748{
749 if (hw_info) {
750 g_free(hw_info->manufacturer);
751 g_free(hw_info->model);
752 g_free(hw_info->serial_number);
753 g_free(hw_info->firmware_version);
754 g_free(hw_info);
755 }
756}