]> sigrok.org Git - libsigrok.git/blame - src/scpi/scpi_serial.c
scpi: Rephrase buffer resize for free space during SCPI read, add comments
[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
8943049c 31#define BUFFER_SIZE 1024
23f43dff 32
05c644ea
ML
33struct scpi_serial {
34 struct sr_serial_dev_inst *serial;
8943049c
ML
35 char buffer[BUFFER_SIZE];
36 size_t count;
37 size_t read;
05c644ea
ML
38};
39
329733d9 40static const struct {
b541f837
AJ
41 uint16_t vendor_id;
42 uint16_t product_id;
43 const char *serialcomm;
44} scpi_serial_usb_ids[] = {
45 { 0x0403, 0xed72, "115200/8n1/flow=1" }, /* Hameg HO720 */
46 { 0x0403, 0xed73, "115200/8n1/flow=1" }, /* Hameg HO730 */
d38f4e7a 47 { 0x0aad, 0x0118, "115200/8n1" }, /* R&S HMO1002 */
b541f837
AJ
48};
49
50static GSList *scpi_serial_scan(struct drv_context *drvc)
51{
52 GSList *l, *r, *resources = NULL;
53 gchar *res;
54 unsigned i;
55
56 (void)drvc;
57
58 for (i = 0; i < ARRAY_SIZE(scpi_serial_usb_ids); i++) {
98fec29e
UH
59 if (!(l = sr_serial_find_usb(scpi_serial_usb_ids[i].vendor_id,
60 scpi_serial_usb_ids[i].product_id)))
b541f837
AJ
61 continue;
62 for (r = l; r; r = r->next) {
63 if (scpi_serial_usb_ids[i].serialcomm)
64 res = g_strdup_printf("%s:%s", (char *) r->data,
65 scpi_serial_usb_ids[i].serialcomm);
66 else
67 res = g_strdup(r->data);
68 resources = g_slist_append(resources, res);
69 }
70 g_slist_free_full(l, g_free);
71 }
72
73 return resources;
74}
75
17bdda58
AJ
76static int scpi_serial_dev_inst_new(void *priv, struct drv_context *drvc,
77 const char *resource, char **params, const char *serialcomm)
f754c146
AJ
78{
79 struct scpi_serial *sscpi = priv;
80
17bdda58 81 (void)drvc;
f754c146
AJ
82 (void)params;
83
91219afc 84 sscpi->serial = sr_serial_dev_inst_new(resource, serialcomm);
f754c146
AJ
85
86 return SR_OK;
87}
88
04229f7b 89static int scpi_serial_open(struct sr_scpi_dev_inst *scpi)
23f43dff 90{
04229f7b 91 struct scpi_serial *sscpi = scpi->priv;
05c644ea 92 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 93
406e0c79 94 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
9dfeb81b
ML
95 return SR_ERR;
96
97 if (serial_flush(serial) != SR_OK)
98 return SR_ERR;
99
8943049c
ML
100 sscpi->count = 0;
101 sscpi->read = 0;
102
9dfeb81b 103 return SR_OK;
23f43dff
ML
104}
105
102f1239
BV
106static int scpi_serial_source_add(struct sr_session *session, void *priv,
107 int events, int timeout, sr_receive_data_callback cb, void *cb_data)
23f43dff 108{
05c644ea
ML
109 struct scpi_serial *sscpi = priv;
110 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 111
102f1239 112 return serial_source_add(session, serial, events, timeout, cb, cb_data);
23f43dff
ML
113}
114
102f1239 115static int scpi_serial_source_remove(struct sr_session *session, void *priv)
23f43dff 116{
05c644ea
ML
117 struct scpi_serial *sscpi = priv;
118 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 119
102f1239 120 return serial_source_remove(session, serial);
23f43dff
ML
121}
122
d87c1766 123static int scpi_serial_send(void *priv, const char *command)
23f43dff 124{
721fc227 125 int len, result, written;
05c644ea
ML
126 struct scpi_serial *sscpi = priv;
127 struct sr_serial_dev_inst *serial = sscpi->serial;
23f43dff 128
055804e8 129 len = strlen(command);
721fc227
ML
130 written = 0;
131 while (written < len) {
406e0c79 132 result = serial_write_nonblocking(serial,
055804e8 133 command + written, len - written);
721fc227
ML
134 if (result < 0) {
135 sr_err("Error while sending SCPI command: '%s'.", command);
721fc227
ML
136 return SR_ERR;
137 }
138 written += result;
23f43dff
ML
139 }
140
141 sr_spew("Successfully sent SCPI command: '%s'.", command);
142
143 return SR_OK;
144}
145
d87c1766 146static int scpi_serial_read_begin(void *priv)
05c644ea 147{
8943049c 148 (void) priv;
05c644ea
ML
149
150 return SR_OK;
151}
152
d87c1766 153static int scpi_serial_read_data(void *priv, char *buf, int maxlen)
bc03a7cc 154{
05c644ea 155 struct scpi_serial *sscpi = priv;
8943049c
ML
156 int len, ret;
157
158 len = BUFFER_SIZE - sscpi->count;
159
160 /* Try to read new data into the buffer if there is space. */
161 if (len > 0) {
aff94d06 162 ret = serial_read_nonblocking(sscpi->serial, sscpi->buffer + sscpi->count,
8943049c 163 BUFFER_SIZE - sscpi->count);
05c644ea 164
8943049c
ML
165 if (ret < 0)
166 return ret;
05c644ea 167
8943049c 168 sscpi->count += ret;
05c644ea 169
8943049c
ML
170 if (ret > 0)
171 sr_spew("Read %d bytes into buffer.", ret);
05c644ea
ML
172 }
173
8943049c
ML
174 /* Return as many bytes as possible from buffer, excluding any trailing newline. */
175 if (sscpi->read < sscpi->count) {
176 len = sscpi->count - sscpi->read;
177 if (len > maxlen)
178 len = maxlen;
179 if (sscpi->buffer[sscpi->read + len - 1] == '\n')
180 len--;
181 sr_spew("Returning %d bytes from buffer.", len);
182 memcpy(buf, sscpi->buffer + sscpi->read, len);
183 sscpi->read += len;
184 if (sscpi->read == BUFFER_SIZE) {
185 sr_spew("Resetting buffer.");
186 sscpi->count = 0;
187 sscpi->read = 0;
188 }
189 return len;
190 }
191
192 return 0;
bc03a7cc 193}
05c644ea 194
d87c1766 195static int scpi_serial_read_complete(void *priv)
05c644ea
ML
196{
197 struct scpi_serial *sscpi = priv;
198
8943049c
ML
199 /* If the next character is a newline, discard it and report complete. */
200 if (sscpi->read < sscpi->count && sscpi->buffer[sscpi->read] == '\n') {
201 sscpi->read++;
202 return 1;
203 } else {
204 return 0;
205 }
05c644ea
ML
206}
207
04229f7b 208static int scpi_serial_close(struct sr_scpi_dev_inst *scpi)
bc03a7cc 209{
04229f7b 210 struct scpi_serial *sscpi = scpi->priv;
05c644ea 211
f754c146 212 return serial_close(sscpi->serial);
bc03a7cc 213}
05c644ea 214
bc03a7cc
BV
215static void scpi_serial_free(void *priv)
216{
05c644ea 217 struct scpi_serial *sscpi = priv;
05c644ea 218
f754c146 219 sr_serial_dev_inst_free(sscpi->serial);
bc03a7cc
BV
220}
221
f754c146
AJ
222SR_PRIV const struct sr_scpi_dev_inst scpi_serial_dev = {
223 .name = "serial",
224 .prefix = "",
225 .priv_size = sizeof(struct scpi_serial),
b541f837 226 .scan = scpi_serial_scan,
f754c146
AJ
227 .dev_inst_new = scpi_serial_dev_inst_new,
228 .open = scpi_serial_open,
229 .source_add = scpi_serial_source_add,
230 .source_remove = scpi_serial_source_remove,
231 .send = scpi_serial_send,
232 .read_begin = scpi_serial_read_begin,
233 .read_data = scpi_serial_read_data,
234 .read_complete = scpi_serial_read_complete,
235 .close = scpi_serial_close,
236 .free = scpi_serial_free,
237};