]> sigrok.org Git - libsigrok.git/blob - hardware/common/scpi.c
scpi: Add a function to read and wait on a *OPC? reply.
[libsigrok.git] / hardware / common / 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 /* Message logging helpers with subsystem-specific prefix string. */
27 #define LOG_PREFIX "scpi: "
28 #define sr_log(l, s, args...) sr_log(l, LOG_PREFIX s, ## args)
29 #define sr_spew(s, args...) sr_spew(LOG_PREFIX s, ## args)
30 #define sr_dbg(s, args...) sr_dbg(LOG_PREFIX s, ## args)
31 #define sr_info(s, args...) sr_info(LOG_PREFIX s, ## args)
32 #define sr_warn(s, args...) sr_warn(LOG_PREFIX s, ## args)
33
34 #define SCPI_READ_RETRIES 100
35 #define SCPI_READ_RETRY_TIMEOUT 10000
36
37 /**
38  * Parse a string representation of a boolean-like value into a gboolean.
39  * Similar to sr_parse_boolstring but rejects strings which do not represent
40  * a boolean-like value.
41  *
42  * @param str String to convert.
43  * @param ret Pointer to a gboolean where the result of the conversion will be
44  * stored.
45  *
46  * @return SR_OK on success, SR_ERR on failure.
47  */
48 static int sr_parse_strict_bool(const char *str, gboolean *ret)
49 {
50         if (!str)
51                 return SR_ERR_ARG;
52
53         if (!g_strcmp0(str, "1") ||
54             !g_ascii_strncasecmp(str, "y", 1) ||
55             !g_ascii_strncasecmp(str, "t", 1) ||
56             !g_ascii_strncasecmp(str, "yes", 3) ||
57             !g_ascii_strncasecmp(str, "true", 4) ||
58             !g_ascii_strncasecmp(str, "on", 2)) {
59
60                 *ret = TRUE;
61                 return SR_OK;
62
63         } else if (!g_strcmp0(str, "0") ||
64                    !g_ascii_strncasecmp(str, "n", 1) ||
65                    !g_ascii_strncasecmp(str, "f", 1) ||
66                    !g_ascii_strncasecmp(str, "no", 2) ||
67                    !g_ascii_strncasecmp(str, "false", 5) ||
68                    !g_ascii_strncasecmp(str, "off", 3)) {
69
70                 *ret = FALSE;
71                 return SR_OK;
72         }
73
74         return SR_ERR;
75 }
76
77 /**
78  * Send a SCPI command.
79  *
80  * @param serial Previously initialized serial port structure.
81  * @param command The SCPI command to send to the device.
82  *
83  * @return SR_OK on success, SR_ERR on failure.
84  */
85 SR_PRIV int sr_scpi_send(struct sr_serial_dev_inst *serial,
86                          const char *command)
87 {
88         int len;
89         int out;
90         gchar *terminated_command;
91
92         terminated_command = g_strconcat(command, "\n", NULL);
93         len = strlen(terminated_command);
94
95         out = serial_write(serial, terminated_command,
96                            strlen(terminated_command));
97
98         g_free(terminated_command);
99
100         if (out != len) {
101                 sr_dbg("Only sent %d/%d bytes of SCPI command: '%s'.", out,
102                        len, command);
103                 return SR_ERR;
104         }
105
106         sr_spew("Successfully sent SCPI command: '%s'.", command);
107
108         return SR_OK;
109 }
110
111 /**
112  * Send a SCPI command, receive the reply and store the reply in scpi_response.
113  *
114  * @param serial Previously initialized serial port structure.
115  * @param command The SCPI command to send to the device (can be NULL).
116  * @param scpi_response Pointer where to store the scpi response.
117  *
118  * @return SR_OK upon fetching a full SCPI response, SR_ERR upon fetching a
119  * incomplete or no response. The allocated response must be freed by the caller
120  * in the case of a full response as well in the case of an incomplete.
121  */
122 SR_PRIV int sr_scpi_get_string(struct sr_serial_dev_inst *serial,
123                                  const char *command, char **scpi_response)
124 {
125         int len;
126         int ret;
127         char buf[256];
128         unsigned int i;
129         GString *response;
130
131         if (command)
132                 if (sr_scpi_send(serial, command) != SR_OK)
133                         return SR_ERR;
134
135         response = g_string_sized_new(1024);
136
137         for (i = 0; i <= SCPI_READ_RETRIES; i++) {
138                 while ((len = serial_read(serial, buf, sizeof(buf))) > 0)
139                         response = g_string_append_len(response, buf, len);
140
141                 if (response->len > 0 &&
142                     response->str[response->len-1] == '\n') {
143                         sr_spew("Fetched full SCPI response");
144                         break;
145                 }
146
147                 g_usleep(SCPI_READ_RETRY_TIMEOUT);
148         }
149
150         if (response->len == 0) {
151                 sr_dbg("No SCPI response received");
152                 g_string_free(response, TRUE);
153                 *scpi_response = NULL;
154                 return SR_ERR;
155
156         } else if (response->str[response->len-1] == '\n') {
157                 /*
158                  * The SCPI response contains a LF ('\n') at the end and we
159                  * don't need this so replace it with a '\0' and decrement
160                  * the length.
161                  */
162                 response->str[--response->len] = '\0';
163                 ret = SR_OK;
164
165         } else {
166                 sr_warn("Incomplete SCPI response received!");
167                 ret = SR_ERR;
168         }
169
170         /* Minor optimization: steal the string instead of copying. */
171         *scpi_response = response->str;
172
173         /* A SCPI response can be quite large, print at most 50 characters */
174         sr_dbg("SCPI response for command %s received (length %d): '%.50s'",
175                command, response->len, response->str);
176
177         g_string_free(response, FALSE);
178
179         return ret;
180 }
181
182 /**
183  * Send a SCPI command, read the reply, parse it as a bool value and store the
184  * result in scpi_response.
185  *
186  * @param serial Previously initialized serial port structure.
187  * @param command The SCPI command to send to the device (can be NULL).
188  * @param scpi_response Pointer where to store the parsed result.
189  *
190  * @return SR_OK on success, SR_ERR on failure.
191  */
192 SR_PRIV int sr_scpi_get_bool(struct sr_serial_dev_inst *serial,
193                              const char *command, gboolean *scpi_response)
194 {
195         int ret;
196         char *response;
197
198         response = NULL;
199
200         if (sr_scpi_get_string(serial, command, &response) != SR_OK)
201                 if (!response)
202                         return SR_ERR;
203
204         if (sr_parse_strict_bool(response, scpi_response) == SR_OK)
205                 ret = SR_OK;
206         else
207                 ret = SR_ERR;
208
209         g_free(response);
210
211         return ret;
212 }
213
214 /**
215  * Send a SCPI command, read the reply, parse it as an integer and store the
216  * result in scpi_response.
217  *
218  * @param serial Previously initialized serial port structure.
219  * @param command The SCPI command to send to the device (can be NULL).
220  * @param scpi_response Pointer where to store the parsed result.
221  *
222  * @return SR_OK on success, SR_ERR on failure.
223  */
224 SR_PRIV int sr_scpi_get_int(struct sr_serial_dev_inst *serial,
225                                   const char *command, int *scpi_response)
226 {
227         int ret;
228         char *response;
229
230         response = NULL;
231
232         if (sr_scpi_get_string(serial, command, &response) != SR_OK)
233                 if (!response)
234                         return SR_ERR;
235
236         if (sr_atoi(response, scpi_response) == SR_OK)
237                 ret = SR_OK;
238         else
239                 ret = SR_ERR;
240
241         g_free(response);
242
243         return ret;
244 }
245
246 /**
247  * Send a SCPI command, read the reply, parse it as a float and store the
248  * result in scpi_response.
249  *
250  * @param serial Previously initialized serial port structure.
251  * @param command The SCPI command to send to the device (can be NULL).
252  * @param scpi_response Pointer where to store the parsed result.
253  *
254  * @return SR_OK on success, SR_ERR on failure.
255  */
256 SR_PRIV int sr_scpi_get_float(struct sr_serial_dev_inst *serial,
257                               const char *command, float *scpi_response)
258 {
259         int ret;
260         char *response;
261
262         response = NULL;
263
264         if (sr_scpi_get_string(serial, command, &response) != SR_OK)
265                 if (!response)
266                         return SR_ERR;
267
268         if (sr_atof(response, scpi_response) == SR_OK)
269                 ret = SR_OK;
270         else
271                 ret = SR_ERR;
272
273         g_free(response);
274
275         return ret;
276 }
277
278 /**
279  * Send a SCPI command, read the reply, parse it as a double and store the
280  * result in scpi_response.
281  *
282  * @param serial Previously initialized serial port structure.
283  * @param command The SCPI command to send to the device (can be NULL).
284  * @param scpi_response Pointer where to store the parsed result.
285  *
286  * @return SR_OK on success, SR_ERR on failure.
287  */
288 SR_PRIV int sr_scpi_get_double(struct sr_serial_dev_inst *serial,
289                               const char *command, double *scpi_response)
290 {
291         int ret;
292         char *response;
293
294         response = NULL;
295
296         if (sr_scpi_get_string(serial, command, &response) != SR_OK)
297                 if (!response)
298                         return SR_ERR;
299
300         if (sr_atod(response, scpi_response) == SR_OK)
301                 ret = SR_OK;
302         else
303                 ret = SR_ERR;
304
305         g_free(response);
306
307         return ret;
308 }
309
310 /**
311  * Send a SCPI *OPC? command, read the reply and return the result of the
312  * command.
313  *
314  * @param serial Previously initialized serial port structure.
315  *
316  * @return SR_OK on success, SR_ERR on failure.
317  */
318 SR_PRIV int sr_scpi_get_opc(struct sr_serial_dev_inst *serial)
319 {
320         unsigned int i;
321         gboolean opc;
322
323         for (i = 0; i < SCPI_READ_RETRIES; ++i) {
324                 sr_scpi_get_bool(serial, SCPI_CMD_OPC, &opc);
325
326                 if (opc)
327                         return SR_OK;
328
329                 g_usleep(SCPI_READ_RETRY_TIMEOUT);
330         }
331
332         return SR_ERR;
333 }
334
335 /**
336  * Send the *IDN? SCPI command, receive the reply, parse it and store the
337  * reply as a sr_scpi_hw_info structure in the supplied scpi_response pointer.
338  *
339  * @param serial Previously initialized serial port structure.
340  * @param scpi_response Pointer where to store the hw_info structure.
341  *
342  * @return SR_OK upon success, SR_ERR on failure.
343  * The hw_info structure must be freed by the caller with sr_scpi_hw_info_free().
344  */
345 SR_PRIV int sr_scpi_get_hw_id(struct sr_serial_dev_inst *serial,
346                               struct sr_scpi_hw_info **scpi_response)
347 {
348         int num_tokens;
349         char *response;
350         gchar **tokens;
351
352         struct sr_scpi_hw_info *hw_info;
353
354         response = NULL;
355         tokens = NULL;
356
357         if (sr_scpi_get_string(serial, SCPI_CMD_IDN, &response) != SR_OK)
358                 if (!response)
359                         return SR_ERR;
360
361         /*
362          * The response to a '*IDN?' is specified by the SCPI spec. It contains
363          * a comma-separated list containing the manufacturer name, instrument
364          * model, serial number of the instrument and the firmware version.
365          */
366         tokens = g_strsplit(response, ",", 0);
367
368         for (num_tokens = 0; tokens[num_tokens] != NULL; num_tokens++);
369
370         if (num_tokens != 4) {
371                 sr_dbg("IDN response not according to spec: %80.s", response);
372                 g_strfreev(tokens);
373                 g_free(response);
374                 return SR_ERR;
375         }
376         g_free(response);
377
378         hw_info = g_try_malloc(sizeof(struct sr_scpi_hw_info));
379         if (!hw_info) {
380                 g_strfreev(tokens);
381                 return SR_ERR_MALLOC;
382         }
383
384         hw_info->manufacturer = g_strdup(tokens[0]);
385         hw_info->model = g_strdup(tokens[1]);
386         hw_info->serial_number = g_strdup(tokens[2]);
387         hw_info->firmware_version = g_strdup(tokens[3]);
388
389         g_strfreev(tokens);
390
391         *scpi_response = hw_info;
392
393         return SR_OK;
394 }
395
396 /**
397  * Free a sr_scpi_hw_info struct.
398  *
399  * @param hw_info Pointer to the struct to free.
400  *
401  * This function is safe to call with a NULL pointer.
402  */
403 SR_PRIV void sr_scpi_hw_info_free(struct sr_scpi_hw_info *hw_info)
404 {
405         if (hw_info) {
406                 g_free(hw_info->manufacturer);
407                 g_free(hw_info->model);
408                 g_free(hw_info->serial_number);
409                 g_free(hw_info->firmware_version);
410                 g_free(hw_info);
411         }
412 }