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