]> sigrok.org Git - libsigrok.git/blame - hardware/demo/demo.c
session: Make sr_session_stop thread-safe
[libsigrok.git] / hardware / demo / demo.c
CommitLineData
6239c175
UH
1/*
2 * This file is part of the sigrok project.
3 *
4 * Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
fc96e6f8 5 * Copyright (C) 2011 Olivier Fauchon <olivier@aixmarseille.com>
c216d623 6 * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
6239c175
UH
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23#include <stdlib.h>
85b5af06 24#include <unistd.h>
6239c175 25#include <string.h>
d35aaf02
UH
26#ifdef _WIN32
27#include <io.h>
28#include <fcntl.h>
29#define pipe(fds) _pipe(fds, 4096, _O_BINARY)
30#endif
45c59c8b
BV
31#include "libsigrok.h"
32#include "libsigrok-internal.h"
6239c175 33
92bcedf6
UH
34/* Message logging helpers with driver-specific prefix string. */
35#define DRIVER_LOG_DOMAIN "demo: "
36#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
37#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
38#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
39#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
40#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
41#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
42
c03ed397 43/* TODO: Number of probes should be configurable. */
e15f48c2 44#define NUM_PROBES 8
c03ed397 45
e15f48c2 46#define DEMONAME "Demo device"
c03ed397
UH
47
48/* The size of chunks to send through the session bus. */
49/* TODO: Should be configurable. */
e15f48c2 50#define BUFSIZE 4096
85b5af06 51
2474d87e
BV
52#define STR_PATTERN_SIGROK "sigrok"
53#define STR_PATTERN_RANDOM "random"
54#define STR_PATTERN_INC "incremental"
55#define STR_PATTERN_ALL_LOW "all-low"
56#define STR_PATTERN_ALL_HIGH "all-high"
57
0d31276b 58/* Supported patterns which we can generate */
e15f48c2 59enum {
0d31276b
UH
60 /**
61 * Pattern which spells "sigrok" using '0's (with '1's as "background")
62 * when displayed using the 'bits' output format.
63 */
c8f4624d 64 PATTERN_SIGROK,
0d31276b 65
c03ed397 66 /** Pattern which consists of (pseudo-)random values on all probes. */
c8f4624d 67 PATTERN_RANDOM,
0d31276b
UH
68
69 /**
70 * Pattern which consists of incrementing numbers.
71 * TODO: Better description.
72 */
c8f4624d 73 PATTERN_INC,
c03ed397
UH
74
75 /** Pattern where all probes have a low logic state. */
76 PATTERN_ALL_LOW,
77
78 /** Pattern where all probes have a high logic state. */
79 PATTERN_ALL_HIGH,
e15f48c2 80};
85b5af06 81
b4750a3a
BV
82/* Private, per-device-instance driver context. */
83struct dev_context {
33ef7573 84 struct sr_dev_inst *sdi;
e15f48c2 85 int pipe_fds[2];
e0532047 86 GIOChannel *channel;
e15f48c2 87 uint8_t sample_generator;
e15f48c2 88 uint64_t samples_counter;
3e9b7f9c 89 void *cb_data;
3b203673 90 int64_t starttime;
e15f48c2 91};
85b5af06 92
915f7cc8 93static const int hwcaps[] = {
1953564a
BV
94 SR_CONF_LOGIC_ANALYZER,
95 SR_CONF_DEMO_DEV,
96 SR_CONF_SAMPLERATE,
97 SR_CONF_PATTERN_MODE,
98 SR_CONF_LIMIT_SAMPLES,
99 SR_CONF_LIMIT_MSEC,
100 SR_CONF_CONTINUOUS,
6239c175
UH
101};
102
d00088ca
BV
103static const uint64_t samplerates[] = {
104 SR_HZ(1),
105 SR_GHZ(1),
106 SR_HZ(1),
4bfbf9fc
BV
107};
108
c8f4624d 109static const char *pattern_strings[] = {
c03ed397 110 "sigrok",
e15f48c2
BV
111 "random",
112 "incremental",
c03ed397
UH
113 "all-low",
114 "all-high",
85b5af06
UH
115};
116
d261dbbf 117/* We name the probes 0-7 on our demo driver. */
464d12c7 118static const char *probe_names[NUM_PROBES + 1] = {
78693401 119 "0", "1", "2", "3", "4", "5", "6", "7",
464d12c7
KS
120 NULL,
121};
122
c8f4624d 123static uint8_t pattern_sigrok[] = {
917e0e71
BV
124 0x4c, 0x92, 0x92, 0x92, 0x64, 0x00, 0x00, 0x00,
125 0x82, 0xfe, 0xfe, 0x82, 0x00, 0x00, 0x00, 0x00,
126 0x7c, 0x82, 0x82, 0x92, 0x74, 0x00, 0x00, 0x00,
127 0xfe, 0x12, 0x12, 0x32, 0xcc, 0x00, 0x00, 0x00,
128 0x7c, 0x82, 0x82, 0x82, 0x7c, 0x00, 0x00, 0x00,
129 0xfe, 0x10, 0x28, 0x44, 0x82, 0x00, 0x00, 0x00,
130 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
131 0xbe, 0xbe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
132};
133
ea9cfed7
UH
134/* Private, per-device-instance driver context. */
135/* TODO: struct context as with the other drivers. */
136
e7eb703f 137/* List of struct sr_dev_inst, maintained by dev_open()/dev_close(). */
dcf03d6d 138SR_PRIV struct sr_dev_driver demo_driver_info;
a873c594 139static struct sr_dev_driver *di = &demo_driver_info;
59df0c77 140static uint64_t cur_samplerate = SR_KHZ(200);
b9cc3629
BV
141static uint64_t limit_samples = 0;
142static uint64_t limit_msec = 0;
c8f4624d 143static int default_pattern = PATTERN_SIGROK;
6239c175 144
69b07d14 145static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data);
6239c175 146
eebb6067
UH
147static int clear_instances(void)
148{
149 /* Nothing needed so far. */
150
151 return SR_OK;
152}
153
34f06b90 154static int hw_init(struct sr_context *sr_ctx)
61136ea6 155{
063e7aef 156 return std_hw_init(sr_ctx, di, DRIVER_LOG_DOMAIN);
61136ea6
BV
157}
158
067d0716 159static GSList *hw_scan(GSList *options)
6239c175 160{
d68e2d1a 161 struct sr_dev_inst *sdi;
87ca93c5 162 struct sr_probe *probe;
b4750a3a 163 struct drv_context *drvc;
33ef7573 164 struct dev_context *devc;
067d0716 165 GSList *devices;
87ca93c5 166 int i;
067d0716
BV
167
168 (void)options;
64d33dc2 169
a873c594 170 drvc = di->priv;
4b97c74e 171
067d0716 172 devices = NULL;
85b5af06 173
d3683c42 174 sdi = sr_dev_inst_new(0, SR_ST_ACTIVE, DEMONAME, NULL, NULL);
c03ed397 175 if (!sdi) {
92bcedf6 176 sr_err("%s: sr_dev_inst_new failed", __func__);
85b5af06 177 return 0;
c03ed397 178 }
a873c594 179 sdi->driver = di;
e15f48c2 180
87ca93c5 181 for (i = 0; probe_names[i]; i++) {
de6e0eca 182 if (!(probe = sr_probe_new(i, SR_PROBE_LOGIC, TRUE,
87ca93c5
BV
183 probe_names[i])))
184 return NULL;
185 sdi->probes = g_slist_append(sdi->probes, probe);
186 }
187
067d0716 188 devices = g_slist_append(devices, sdi);
b4750a3a 189 drvc->instances = g_slist_append(drvc->instances, sdi);
85b5af06 190
33ef7573
JH
191 /* TODO: 'devc' is never g_free()'d? */
192 if (!(devc = g_try_malloc(sizeof(struct dev_context)))) {
193 sr_err("%s: devc malloc failed", __func__);
194 return SR_ERR_MALLOC;
195 }
196
197 devc->sdi = sdi;
198
199 sdi->priv = devc;
200
067d0716 201 return devices;
6239c175
UH
202}
203
811deee4
BV
204static GSList *hw_dev_list(void)
205{
0e94d524 206 return ((struct drv_context *)(di->priv))->instances;
811deee4
BV
207}
208
25a0f108 209static int hw_dev_open(struct sr_dev_inst *sdi)
6239c175 210{
25a0f108 211 (void)sdi;
6239c175
UH
212
213 /* Nothing needed so far. */
697785d1 214
e46b8fb1 215 return SR_OK;
6239c175
UH
216}
217
25a0f108 218static int hw_dev_close(struct sr_dev_inst *sdi)
6239c175 219{
25a0f108 220 (void)sdi;
6239c175
UH
221
222 /* Nothing needed so far. */
697785d1
UH
223
224 return SR_OK;
6239c175
UH
225}
226
57ab7d9f 227static int hw_cleanup(void)
6239c175
UH
228{
229 /* Nothing needed so far. */
57ab7d9f 230 return SR_OK;
6239c175
UH
231}
232
d00088ca 233static int config_get(int id, GVariant **data, const struct sr_dev_inst *sdi)
6239c175 234{
6f57fd96
BV
235 (void)sdi;
236
035a1078 237 switch (id) {
123e1313 238 case SR_CONF_SAMPLERATE:
d00088ca 239 *data = g_variant_new_uint64(cur_samplerate);
6239c175 240 break;
2474d87e 241 case SR_CONF_LIMIT_SAMPLES:
d00088ca 242 *data = g_variant_new_uint64(limit_samples);
2474d87e
BV
243 break;
244 case SR_CONF_LIMIT_MSEC:
d00088ca 245 *data = g_variant_new_uint64(limit_msec);
2474d87e
BV
246 break;
247 case SR_CONF_PATTERN_MODE:
248 switch (default_pattern) {
249 case PATTERN_SIGROK:
d00088ca 250 *data = g_variant_new_string(STR_PATTERN_SIGROK);
2474d87e
BV
251 break;
252 case PATTERN_RANDOM:
d00088ca 253 *data = g_variant_new_string(STR_PATTERN_RANDOM);
2474d87e
BV
254 break;
255 case PATTERN_INC:
d00088ca 256 *data = g_variant_new_string(STR_PATTERN_INC);
2474d87e
BV
257 break;
258 case PATTERN_ALL_LOW:
d00088ca 259 *data = g_variant_new_string(STR_PATTERN_ALL_LOW);
2474d87e
BV
260 break;
261 case PATTERN_ALL_HIGH:
d00088ca 262 *data = g_variant_new_string(STR_PATTERN_ALL_HIGH);
2474d87e
BV
263 break;
264 }
265 break;
7dfcf010
BV
266 default:
267 return SR_ERR_ARG;
6239c175
UH
268 }
269
dfb0fa1a 270 return SR_OK;
6239c175
UH
271}
272
d00088ca 273static int config_set(int id, GVariant *data, const struct sr_dev_inst *sdi)
6239c175
UH
274{
275 int ret;
1b79df2f 276 const char *stropt;
6239c175 277
6f4b1868 278 (void)sdi;
6239c175 279
035a1078 280 if (id == SR_CONF_SAMPLERATE) {
d00088ca 281 cur_samplerate = g_variant_get_uint64(data);
92bcedf6 282 sr_dbg("%s: setting samplerate to %" PRIu64, __func__,
6f422264 283 cur_samplerate);
e46b8fb1 284 ret = SR_OK;
035a1078 285 } else if (id == SR_CONF_LIMIT_SAMPLES) {
8489264f 286 limit_msec = 0;
d00088ca 287 limit_samples = g_variant_get_uint64(data);
92bcedf6 288 sr_dbg("%s: setting limit_samples to %" PRIu64, __func__,
6f422264 289 limit_samples);
e46b8fb1 290 ret = SR_OK;
035a1078 291 } else if (id == SR_CONF_LIMIT_MSEC) {
d00088ca 292 limit_msec = g_variant_get_uint64(data);
8489264f 293 limit_samples = 0;
92bcedf6 294 sr_dbg("%s: setting limit_msec to %" PRIu64, __func__,
6f422264 295 limit_msec);
e46b8fb1 296 ret = SR_OK;
035a1078 297 } else if (id == SR_CONF_PATTERN_MODE) {
d00088ca 298 stropt = g_variant_get_string(data, NULL);
c03ed397 299 ret = SR_OK;
2474d87e 300 if (!strcmp(stropt, STR_PATTERN_SIGROK)) {
c03ed397 301 default_pattern = PATTERN_SIGROK;
2474d87e 302 } else if (!strcmp(stropt, STR_PATTERN_RANDOM)) {
c8f4624d 303 default_pattern = PATTERN_RANDOM;
2474d87e 304 } else if (!strcmp(stropt, STR_PATTERN_INC)) {
c8f4624d 305 default_pattern = PATTERN_INC;
2474d87e 306 } else if (!strcmp(stropt, STR_PATTERN_ALL_LOW)) {
c03ed397 307 default_pattern = PATTERN_ALL_LOW;
2474d87e 308 } else if (!strcmp(stropt, STR_PATTERN_ALL_HIGH)) {
c03ed397 309 default_pattern = PATTERN_ALL_HIGH;
e15f48c2 310 } else {
e46b8fb1 311 ret = SR_ERR;
e15f48c2 312 }
92bcedf6 313 sr_dbg("%s: setting pattern to %d", __func__, default_pattern);
6239c175 314 } else {
e46b8fb1 315 ret = SR_ERR;
6239c175
UH
316 }
317
318 return ret;
319}
320
d00088ca 321static int config_list(int key, GVariant **data, const struct sr_dev_inst *sdi)
a1c743fc 322{
d00088ca
BV
323 GVariant *gvar;
324 GVariantBuilder gvb;
a1c743fc
BV
325
326 (void)sdi;
327
328 switch (key) {
9a6517d1 329 case SR_CONF_DEVICE_OPTIONS:
d00088ca
BV
330 *data = g_variant_new_fixed_array(G_VARIANT_TYPE_INT32,
331 hwcaps, ARRAY_SIZE(hwcaps), sizeof(int32_t));
9a6517d1 332 break;
a1c743fc 333 case SR_CONF_SAMPLERATE:
d00088ca
BV
334 g_variant_builder_init(&gvb, G_VARIANT_TYPE("a{sv}"));
335 gvar = g_variant_new_fixed_array(G_VARIANT_TYPE("t"), samplerates,
336 ARRAY_SIZE(samplerates), sizeof(uint64_t));
337 g_variant_builder_add(&gvb, "{sv}", "samplerate-steps", gvar);
338 *data = g_variant_builder_end(&gvb);
a1c743fc 339 break;
dd96ea98 340 case SR_CONF_PATTERN_MODE:
d00088ca 341 *data = g_variant_new_strv(pattern_strings, ARRAY_SIZE(pattern_strings));
dd96ea98 342 break;
a1c743fc
BV
343 default:
344 return SR_ERR_ARG;
345 }
346
347 return SR_OK;
348}
349
3b203673
AG
350static void samples_generator(uint8_t *buf, uint64_t size,
351 struct dev_context *devc)
85b5af06 352{
cddd1c5f 353 static uint64_t p = 0;
cddd1c5f 354 uint64_t i;
85b5af06 355
c03ed397 356 /* TODO: Needed? */
5096c6a6 357 memset(buf, 0, size);
85b5af06 358
b4750a3a 359 switch (devc->sample_generator) {
c03ed397 360 case PATTERN_SIGROK: /* sigrok pattern */
917e0e71 361 for (i = 0; i < size; i++) {
bbd7ef0f
JH
362 *(buf + i) = ~(pattern_sigrok[
363 p++ % sizeof(pattern_sigrok)] >> 1);
917e0e71
BV
364 }
365 break;
c8f4624d 366 case PATTERN_RANDOM: /* Random */
5096c6a6
UH
367 for (i = 0; i < size; i++)
368 *(buf + i) = (uint8_t)(rand() & 0xff);
85b5af06 369 break;
c8f4624d 370 case PATTERN_INC: /* Simple increment */
5096c6a6 371 for (i = 0; i < size; i++)
bbd7ef0f 372 *(buf + i) = p++;
85b5af06 373 break;
c03ed397 374 case PATTERN_ALL_LOW: /* All probes are low */
5a9660dd 375 memset(buf, 0x00, size);
c03ed397
UH
376 break;
377 case PATTERN_ALL_HIGH: /* All probes are high */
5a9660dd 378 memset(buf, 0xff, size);
c03ed397
UH
379 break;
380 default:
92bcedf6 381 sr_err("Unknown pattern: %d.", devc->sample_generator);
c03ed397 382 break;
85b5af06
UH
383 }
384}
385
85b5af06 386/* Callback handling data */
1f9813eb 387static int receive_data(int fd, int revents, void *cb_data)
85b5af06 388{
b4750a3a 389 struct dev_context *devc = cb_data;
b9c735a2 390 struct sr_datafeed_packet packet;
9c939c51 391 struct sr_datafeed_logic logic;
3b203673
AG
392 uint8_t buf[BUFSIZE];
393 static uint64_t samples_to_send, expected_samplenum, sending_now;
394 int64_t time, elapsed;
1924f59f 395
cb93f8a9
UH
396 (void)fd;
397 (void)revents;
1924f59f 398
3b203673
AG
399 /* How many "virtual" samples should we have collected by now? */
400 time = g_get_monotonic_time();
401 elapsed = time - devc->starttime;
402 expected_samplenum = elapsed * cur_samplerate / 1000000;
403 /* Of those, how many do we still have to send? */
404 samples_to_send = expected_samplenum - devc->samples_counter;
405
406 if (limit_samples) {
407 samples_to_send = MIN(samples_to_send,
408 limit_samples - devc->samples_counter);
409 }
85b5af06 410
3b203673
AG
411 while (samples_to_send > 0) {
412 sending_now = MIN(samples_to_send, sizeof(buf));
413 samples_to_send -= sending_now;
414 samples_generator(buf, sending_now, devc);
415
416 packet.type = SR_DF_LOGIC;
417 packet.payload = &logic;
418 logic.length = sending_now;
419 logic.unitsize = 1;
420 logic.data = buf;
3e9b7f9c 421 sr_session_send(devc->cb_data, &packet);
3b203673
AG
422 devc->samples_counter += sending_now;
423 }
424
35e199da
UH
425 if (limit_samples && devc->samples_counter >= limit_samples) {
426 sr_info("Requested number of samples reached.");
33ef7573 427 hw_dev_acquisition_stop(devc->sdi, cb_data);
c216d623 428 return TRUE;
85b5af06 429 }
1924f59f 430
85b5af06
UH
431 return TRUE;
432}
433
3ffb6964
BV
434static int hw_dev_acquisition_start(const struct sr_dev_inst *sdi,
435 void *cb_data)
6239c175 436{
33ef7573 437 struct dev_context *const devc = sdi->priv;
85b5af06 438
b4750a3a 439 devc->sample_generator = default_pattern;
3e9b7f9c 440 devc->cb_data = cb_data;
b4750a3a 441 devc->samples_counter = 0;
85b5af06 442
3b203673
AG
443 /*
444 * Setting two channels connected by a pipe is a remnant from when the
445 * demo driver generated data in a thread, and collected and sent the
446 * data in the main program loop.
447 * They are kept here because it provides a convenient way of setting
448 * up a timeout-based polling mechanism.
449 */
b4750a3a 450 if (pipe(devc->pipe_fds)) {
c03ed397 451 /* TODO: Better error message. */
92bcedf6 452 sr_err("%s: pipe() failed", __func__);
e46b8fb1 453 return SR_ERR;
c03ed397 454 }
85b5af06 455
e0532047 456 devc->channel = g_io_channel_unix_new(devc->pipe_fds[0]);
d35aaf02 457
e0532047 458 g_io_channel_set_flags(devc->channel, G_IO_FLAG_NONBLOCK, NULL);
e6e8f8e0 459
d35aaf02 460 /* Set channel encoding to binary (default is UTF-8). */
e0532047 461 g_io_channel_set_encoding(devc->channel, NULL, NULL);
d35aaf02
UH
462
463 /* Make channels to unbuffered. */
e0532047 464 g_io_channel_set_buffered(devc->channel, FALSE);
d35aaf02 465
e0532047 466 sr_session_source_add_channel(devc->channel, G_IO_IN | G_IO_ERR,
b4750a3a 467 40, receive_data, devc);
85b5af06 468
4afdfd46
UH
469 /* Send header packet to the session bus. */
470 std_session_send_df_header(cb_data, DRIVER_LOG_DOMAIN);
f366e86c 471
3b203673
AG
472 /* We use this timestamp to decide how many more samples to send. */
473 devc->starttime = g_get_monotonic_time();
474
e46b8fb1 475 return SR_OK;
6239c175
UH
476}
477
69b07d14 478static int hw_dev_acquisition_stop(struct sr_dev_inst *sdi, void *cb_data)
6239c175 479{
33ef7573 480 struct dev_context *const devc = sdi->priv;
c216d623 481 struct sr_datafeed_packet packet;
7fd3e859 482
33ef7573 483 (void)cb_data;
7fd3e859 484
49145a63
AG
485 sr_dbg("Stopping aquisition.");
486
e0532047
JH
487 sr_session_source_remove_channel(devc->channel);
488 g_io_channel_shutdown(devc->channel, FALSE, NULL);
c216d623
AG
489
490 /* Send last packet. */
491 packet.type = SR_DF_END;
3e9b7f9c 492 sr_session_send(devc->cb_data, &packet);
7fd3e859 493
3010f21c 494 return SR_OK;
6239c175
UH
495}
496
c09f0b57 497SR_PRIV struct sr_dev_driver demo_driver_info = {
e519ba86
UH
498 .name = "demo",
499 .longname = "Demo driver and pattern generator",
500 .api_version = 1,
501 .init = hw_init,
502 .cleanup = hw_cleanup,
61136ea6 503 .scan = hw_scan,
811deee4 504 .dev_list = hw_dev_list,
eebb6067 505 .dev_clear = clear_instances,
035a1078
BV
506 .config_get = config_get,
507 .config_set = config_set,
a1c743fc 508 .config_list = config_list,
e7eb703f
UH
509 .dev_open = hw_dev_open,
510 .dev_close = hw_dev_close,
69040b7c
UH
511 .dev_acquisition_start = hw_dev_acquisition_start,
512 .dev_acquisition_stop = hw_dev_acquisition_stop,
b4750a3a 513 .priv = NULL,
6239c175 514};