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