]> sigrok.org Git - libsigrok.git/blame - src/scpi/scpi_serial.c
scpi: Do not block when reading header of definite length blocks
[libsigrok.git] / src / scpi / scpi_serial.c
CommitLineData
23f43dff
ML
1/*
2 * This file is part of the libsigrok project.
3 *
4 * Copyright (C) 2013 poljar (Damir Jelić) <poljarinho@gmail.com>
5 * Copyright (C) 2013 Martin Ling <martin-sigrok@earth.li>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
6ec6c43b 21#include <config.h>
23f43dff 22#include <glib.h>
b541f837 23#include <stdlib.h>
23f43dff 24#include <string.h>
c1aae900 25#include <libsigrok/libsigrok.h>
515ab088 26#include "libsigrok-internal.h"
5a1afc09 27#include "scpi.h"
23f43dff 28
3544f848 29#define LOG_PREFIX "scpi_serial"
23f43dff 30
05c644ea
ML
31struct scpi_serial {
32 struct sr_serial_dev_inst *serial;
9ea4018f 33 char got_newline;
05c644ea
ML
34};
35
329733d9 36static const struct {
b541f837
AJ
37 uint16_t vendor_id;
38 uint16_t product_id;
39 const char *serialcomm;
40} scpi_serial_usb_ids[] = {
41 { 0x0403, 0xed72, "115200/8n1/flow=1" }, /* Hameg HO720 */
42 { 0x0403, 0xed73, "115200/8n1/flow=1" }, /* Hameg HO730 */
d38f4e7a 43 { 0x0aad, 0x0118, "115200/8n1" }, /* R&S HMO1002 */
b541f837
AJ
44};
45
46static GSList *scpi_serial_scan(struct drv_context *drvc)
47{
48 GSList *l, *r, *resources = NULL;
49 gchar *res;
50 unsigned i;
51
52 (void)drvc;
53
54 for (i = 0; i < ARRAY_SIZE(scpi_serial_usb_ids); i++) {
98fec29e
UH
55 if (!(l = sr_serial_find_usb(scpi_serial_usb_ids[i].vendor_id,
56 scpi_serial_usb_ids[i].product_id)))
b541f837
AJ
57 continue;
58 for (r = l; r; r = r->next) {
59 if (scpi_serial_usb_ids[i].serialcomm)
60 res = g_strdup_printf("%s:%s", (char *) r->data,
61 scpi_serial_usb_ids[i].serialcomm);
62 else
63 res = g_strdup(r->data);
64 resources = g_slist_append(resources, res);
65 }
66 g_slist_free_full(l, g_free);
67 }
68
69 return resources;
70}
71
17bdda58
AJ
72static int scpi_serial_dev_inst_new(void *priv, struct drv_context *drvc,
73 const char *resource, char **params, const char *serialcomm)
f754c146
AJ
74{
75 struct scpi_serial *sscpi = priv;
76
17bdda58 77 (void)drvc;
f754c146
AJ
78 (void)params;
79
91219afc 80 sscpi->serial = sr_serial_dev_inst_new(resource, serialcomm);
f754c146
AJ
81
82 return SR_OK;
83}
84
04229f7b 85static int scpi_serial_open(struct sr_scpi_dev_inst *scpi)
23f43dff 86{
04229f7b 87 struct scpi_serial *sscpi = scpi->priv;
05c644ea 88 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 89
406e0c79 90 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
9dfeb81b
ML
91 return SR_ERR;
92
93 if (serial_flush(serial) != SR_OK)
94 return SR_ERR;
95
9ea4018f 96 sscpi->got_newline = 0;
8943049c 97
9dfeb81b 98 return SR_OK;
23f43dff
ML
99}
100
102f1239
BV
101static int scpi_serial_source_add(struct sr_session *session, void *priv,
102 int events, int timeout, sr_receive_data_callback cb, void *cb_data)
23f43dff 103{
05c644ea
ML
104 struct scpi_serial *sscpi = priv;
105 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 106
102f1239 107 return serial_source_add(session, serial, events, timeout, cb, cb_data);
23f43dff
ML
108}
109
102f1239 110static int scpi_serial_source_remove(struct sr_session *session, void *priv)
23f43dff 111{
05c644ea
ML
112 struct scpi_serial *sscpi = priv;
113 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 114
102f1239 115 return serial_source_remove(session, serial);
23f43dff
ML
116}
117
d87c1766 118static int scpi_serial_send(void *priv, const char *command)
23f43dff 119{
721fc227 120 int len, result, written;
05c644ea
ML
121 struct scpi_serial *sscpi = priv;
122 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 123
055804e8 124 len = strlen(command);
721fc227
ML
125 written = 0;
126 while (written < len) {
406e0c79 127 result = serial_write_nonblocking(serial,
055804e8 128 command + written, len - written);
721fc227
ML
129 if (result < 0) {
130 sr_err("Error while sending SCPI command: '%s'.", command);
721fc227
ML
131 return SR_ERR;
132 }
133 written += result;
23f43dff
ML
134 }
135
136 sr_spew("Successfully sent SCPI command: '%s'.", command);
137
138 return SR_OK;
139}
140
d87c1766 141static int scpi_serial_read_begin(void *priv)
05c644ea 142{
9ea4018f
SB
143 struct scpi_serial *sscpi = priv;
144 sscpi->got_newline = 0;
05c644ea
ML
145
146 return SR_OK;
147}
148
d87c1766 149static int scpi_serial_read_data(void *priv, char *buf, int maxlen)
bc03a7cc 150{
05c644ea 151 struct scpi_serial *sscpi = priv;
9ea4018f 152 int ret;
8943049c 153
9ea4018f
SB
154 /* Try to read new data into the buffer. */
155 ret = serial_read_nonblocking(sscpi->serial, buf, maxlen);
05c644ea 156
9ea4018f
SB
157 if (ret < 0)
158 return ret;
05c644ea 159
9ea4018f
SB
160 if (ret > 0) {
161 sr_spew("Read %d bytes into buffer.", ret);
05c644ea 162
9ea4018f
SB
163 if (buf[ret - 1] == '\n') {
164 sscpi->got_newline = 1;
165 sr_spew("Received terminator");
166 } else {
167 sscpi->got_newline = 0;
8943049c 168 }
8943049c
ML
169 }
170
9ea4018f 171 return ret;
bc03a7cc 172}
05c644ea 173
d87c1766 174static int scpi_serial_read_complete(void *priv)
05c644ea
ML
175{
176 struct scpi_serial *sscpi = priv;
177
9ea4018f 178 return sscpi->got_newline;
05c644ea
ML
179}
180
04229f7b 181static int scpi_serial_close(struct sr_scpi_dev_inst *scpi)
bc03a7cc 182{
04229f7b 183 struct scpi_serial *sscpi = scpi->priv;
05c644ea 184
f754c146 185 return serial_close(sscpi->serial);
bc03a7cc 186}
05c644ea 187
bc03a7cc
BV
188static void scpi_serial_free(void *priv)
189{
05c644ea 190 struct scpi_serial *sscpi = priv;
05c644ea 191
f754c146 192 sr_serial_dev_inst_free(sscpi->serial);
bc03a7cc
BV
193}
194
f754c146
AJ
195SR_PRIV const struct sr_scpi_dev_inst scpi_serial_dev = {
196 .name = "serial",
197 .prefix = "",
198 .priv_size = sizeof(struct scpi_serial),
b541f837 199 .scan = scpi_serial_scan,
f754c146
AJ
200 .dev_inst_new = scpi_serial_dev_inst_new,
201 .open = scpi_serial_open,
202 .source_add = scpi_serial_source_add,
203 .source_remove = scpi_serial_source_remove,
204 .send = scpi_serial_send,
205 .read_begin = scpi_serial_read_begin,
206 .read_data = scpi_serial_read_data,
207 .read_complete = scpi_serial_read_complete,
208 .close = scpi_serial_close,
209 .free = scpi_serial_free,
210};