]> sigrok.org Git - sigrok-cli.git/blame - session.c
Check for config key availability before using it.
[sigrok-cli.git] / session.c
CommitLineData
2be182e6
BV
1/*
2 * This file is part of the sigrok-cli project.
3 *
4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.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
20fb52e0 20#include "sigrok-cli.h"
2be182e6
BV
21#include <glib.h>
22#include <glib/gstdio.h>
55de58a2
UH
23#include <string.h>
24#include <stdlib.h>
2be182e6 25
2be182e6
BV
26static uint64_t limit_samples = 0;
27static uint64_t limit_frames = 0;
fea5acab 28static char *srzip_and_filename = NULL;
2be182e6 29
2be182e6
BV
30#ifdef HAVE_SRD
31extern struct srd_session *srd_sess;
32#endif
33
2be182e6
BV
34static int set_limit_time(const struct sr_dev_inst *sdi)
35{
36 GVariant *gvar;
37 uint64_t time_msec;
38 uint64_t samplerate;
c6fa2b2e
UH
39 struct sr_dev_driver *driver;
40
41 driver = sr_dev_inst_driver_get(sdi);
2be182e6
BV
42
43 if (!(time_msec = sr_parse_timestring(opt_time))) {
44 g_critical("Invalid time '%s'", opt_time);
45 return SR_ERR;
46 }
47
48 if (sr_dev_has_option(sdi, SR_CONF_LIMIT_MSEC)) {
49 gvar = g_variant_new_uint64(time_msec);
50 if (sr_config_set(sdi, NULL, SR_CONF_LIMIT_MSEC, gvar) != SR_OK) {
51 g_critical("Failed to configure time limit.");
52 return SR_ERR;
53 }
54 } else if (sr_dev_has_option(sdi, SR_CONF_SAMPLERATE)) {
55 /* Convert to samples based on the samplerate. */
c6fa2b2e 56 sr_config_get(driver, sdi, NULL, SR_CONF_SAMPLERATE, &gvar);
2be182e6
BV
57 samplerate = g_variant_get_uint64(gvar);
58 g_variant_unref(gvar);
59 limit_samples = (samplerate) * time_msec / (uint64_t)1000;
60 if (limit_samples == 0) {
61 g_critical("Not enough time at this samplerate.");
62 return SR_ERR;
63 }
64 gvar = g_variant_new_uint64(limit_samples);
65 if (sr_config_set(sdi, NULL, SR_CONF_LIMIT_SAMPLES, gvar) != SR_OK) {
66 g_critical("Failed to configure time-based sample limit.");
67 return SR_ERR;
68 }
69 } else {
70 g_critical("This device does not support time limits.");
71 return SR_ERR;
72 }
73
74 return SR_OK;
75}
76
ad6520c4 77const struct sr_output *setup_output_format(const struct sr_dev_inst *sdi)
2be182e6 78{
ad6520c4 79 const struct sr_output_module *omod;
7c6a0420 80 const struct sr_option **options;
ad6520c4
BV
81 const struct sr_output *o;
82 GHashTable *fmtargs, *fmtopts;
fea5acab 83 int size;
2be182e6
BV
84 char *fmtspec;
85
2be182e6 86 if (!opt_output_format) {
fea5acab
BV
87 if (opt_output_file) {
88 size = strlen(opt_output_file) + 32;
89 srzip_and_filename = g_malloc(size);
90 snprintf(srzip_and_filename, size, "srzip:filename=%s", opt_output_file);
91 opt_output_format = srzip_and_filename;
92 } else {
93 opt_output_format = DEFAULT_OUTPUT_FORMAT;
94 }
2be182e6
BV
95 }
96
97 fmtargs = parse_generic_arg(opt_output_format, TRUE);
98 fmtspec = g_hash_table_lookup(fmtargs, "sigrok_key");
6709a694 99 if (!fmtspec)
2be182e6 100 g_critical("Invalid output format.");
ad6520c4 101 if (!(omod = sr_output_find(fmtspec)))
7c6a0420 102 g_critical("Unknown output module '%s'.", fmtspec);
9216694f 103 g_hash_table_remove(fmtargs, "sigrok_key");
7c6a0420
BV
104 if ((options = sr_output_options_get(omod))) {
105 fmtopts = generic_arg_to_opt(options, fmtargs);
106 sr_output_options_free(options);
ad6520c4
BV
107 } else
108 fmtopts = NULL;
109 o = sr_output_new(omod, fmtopts, sdi);
110 if (fmtopts)
111 g_hash_table_destroy(fmtopts);
2be182e6
BV
112 g_hash_table_destroy(fmtargs);
113
6709a694 114 return o;
2be182e6
BV
115}
116
117void datafeed_in(const struct sr_dev_inst *sdi,
118 const struct sr_datafeed_packet *packet, void *cb_data)
119{
120 const struct sr_datafeed_meta *meta;
121 const struct sr_datafeed_logic *logic;
122 const struct sr_datafeed_analog *analog;
4bf77ec6 123 struct sr_session *session;
2be182e6 124 struct sr_config *src;
ad6520c4
BV
125 static const struct sr_output *o = NULL;
126 static const struct sr_output *oa = NULL;
6ea663a7
BV
127 static uint64_t rcvd_samples_logic = 0;
128 static uint64_t rcvd_samples_analog = 0;
129 static uint64_t samplerate = 0;
2be182e6
BV
130 static int triggered = 0;
131 static FILE *outfile = NULL;
fea5acab 132 GSList *l;
2be182e6 133 GString *out;
8b65cdcc 134 GVariant *gvar;
55de58a2 135 uint64_t end_sample;
667d4a18 136 uint64_t input_len;
c6fa2b2e
UH
137 struct sr_dev_driver *driver;
138
139 driver = sr_dev_inst_driver_get(sdi);
2be182e6 140
2be182e6
BV
141 /* If the first packet to come in isn't a header, don't even try. */
142 if (packet->type != SR_DF_HEADER && o == NULL)
143 return;
144
4bf77ec6 145 session = cb_data;
2be182e6
BV
146 switch (packet->type) {
147 case SR_DF_HEADER:
4ed1cdea 148 g_debug("cli: Received SR_DF_HEADER.");
e786e625
BV
149 if (!(o = setup_output_format(sdi)))
150 g_critical("Failed to initialize output module.");
2be182e6 151
9216694f 152 /* Set up backup analog output module. */
ad6520c4 153 oa = sr_output_new(sr_output_find("analog"), NULL, sdi);
9216694f 154
fea5acab
BV
155 if (opt_output_file)
156 outfile = g_fopen(opt_output_file, "wb");
157 else
158 outfile = stdout;
159
6ea663a7 160 rcvd_samples_logic = rcvd_samples_analog = 0;
2be182e6 161
c6fa2b2e 162 if (sr_config_get(driver, sdi, NULL, SR_CONF_SAMPLERATE,
8b65cdcc
BV
163 &gvar) == SR_OK) {
164 samplerate = g_variant_get_uint64(gvar);
165 g_variant_unref(gvar);
166 }
167
2be182e6 168#ifdef HAVE_SRD
ea6d6dec 169 if (opt_pds) {
8b65cdcc 170 if (samplerate) {
2be182e6
BV
171 if (srd_session_metadata_set(srd_sess, SRD_CONF_SAMPLERATE,
172 g_variant_new_uint64(samplerate)) != SRD_OK) {
173 g_critical("Failed to configure decode session.");
174 break;
175 }
176 }
177 if (srd_session_start(srd_sess) != SRD_OK) {
178 g_critical("Failed to start decode session.");
179 break;
180 }
181 }
182#endif
183 break;
184
185 case SR_DF_META:
4ed1cdea 186 g_debug("cli: Received SR_DF_META.");
2be182e6
BV
187 meta = packet->payload;
188 for (l = meta->config; l; l = l->next) {
189 src = l->data;
190 switch (src->key) {
191 case SR_CONF_SAMPLERATE:
192 samplerate = g_variant_get_uint64(src->data);
4ed1cdea 193 g_debug("cli: Got samplerate %"PRIu64" Hz.", samplerate);
2be182e6
BV
194#ifdef HAVE_SRD
195 if (opt_pds) {
196 if (srd_session_metadata_set(srd_sess, SRD_CONF_SAMPLERATE,
197 g_variant_new_uint64(samplerate)) != SRD_OK) {
198 g_critical("Failed to pass samplerate to decoder.");
199 }
200 }
201#endif
202 break;
203 case SR_CONF_SAMPLE_INTERVAL:
204 samplerate = g_variant_get_uint64(src->data);
4ed1cdea 205 g_debug("cli: Got sample interval %"PRIu64" ms.", samplerate);
2be182e6
BV
206 break;
207 default:
208 /* Unknown metadata is not an error. */
209 break;
210 }
211 }
212 break;
213
214 case SR_DF_TRIGGER:
4ed1cdea 215 g_debug("cli: Received SR_DF_TRIGGER.");
2be182e6
BV
216 triggered = 1;
217 break;
218
219 case SR_DF_LOGIC:
220 logic = packet->payload;
4ed1cdea
UH
221 g_message("cli: Received SR_DF_LOGIC (%"PRIu64" bytes, unitsize = %d).",
222 logic->length, logic->unitsize);
2be182e6
BV
223 if (logic->length == 0)
224 break;
225
226 /* Don't store any samples until triggered. */
227 if (opt_wait_trigger && !triggered)
228 break;
229
6ea663a7 230 if (limit_samples && rcvd_samples_logic >= limit_samples)
2be182e6
BV
231 break;
232
6ea663a7 233 end_sample = rcvd_samples_logic + logic->length / logic->unitsize;
8667d3c2
DE
234 /* Cut off last packet according to the sample limit. */
235 if (limit_samples && end_sample > limit_samples)
236 end_sample = limit_samples;
6ea663a7 237 input_len = (end_sample - rcvd_samples_logic) * logic->unitsize;
2be182e6 238
fea5acab 239 if (opt_pds) {
2be182e6 240#ifdef HAVE_SRD
fea5acab
BV
241 if (srd_session_send(srd_sess, rcvd_samples_logic, end_sample,
242 logic->data, input_len) != SRD_OK)
243 sr_session_stop(session);
2be182e6 244#endif
2be182e6 245 }
2be182e6 246
6ea663a7 247 rcvd_samples_logic = end_sample;
2be182e6
BV
248 break;
249
250 case SR_DF_ANALOG:
251 analog = packet->payload;
4ed1cdea 252 g_message("cli: Received SR_DF_ANALOG (%d samples).", analog->num_samples);
2be182e6
BV
253 if (analog->num_samples == 0)
254 break;
255
6ea663a7 256 if (limit_samples && rcvd_samples_analog >= limit_samples)
2be182e6
BV
257 break;
258
6ea663a7 259 rcvd_samples_analog += analog->num_samples;
2be182e6
BV
260 break;
261
262 case SR_DF_FRAME_BEGIN:
4ed1cdea 263 g_debug("cli: Received SR_DF_FRAME_BEGIN.");
2be182e6
BV
264 break;
265
266 case SR_DF_FRAME_END:
4ed1cdea 267 g_debug("cli: Received SR_DF_FRAME_END.");
2be182e6
BV
268 break;
269
270 default:
271 break;
272 }
273
f4ffd032 274 if (o && outfile && !opt_pds) {
9216694f 275 if (sr_output_send(o, packet, &out) == SR_OK) {
fea5acab
BV
276 if (!out || (out->len == 0
277 && !opt_output_format
9216694f
BV
278 && packet->type == SR_DF_ANALOG)) {
279 /* The user didn't specify an output module,
280 * but needs to see this analog data. */
281 sr_output_send(oa, packet, &out);
282 }
283 if (out && out->len > 0) {
284 fwrite(out->str, 1, out->len, outfile);
285 fflush(outfile);
286 }
287 if (out)
288 g_string_free(out, TRUE);
2be182e6
BV
289 }
290 }
291
292 /* SR_DF_END needs to be handled after the output module's receive()
6ea663a7 293 * is called, so it can properly clean up that module. */
2be182e6 294 if (packet->type == SR_DF_END) {
4ed1cdea 295 g_debug("cli: Received SR_DF_END.");
2be182e6 296
fea5acab 297 if (o) {
6709a694 298 sr_output_free(o);
fea5acab
BV
299 if (srzip_and_filename)
300 g_free(srzip_and_filename);
301 }
2be182e6
BV
302 o = NULL;
303
9216694f
BV
304 sr_output_free(oa);
305 oa = NULL;
306
2be182e6
BV
307 if (outfile && outfile != stdout)
308 fclose(outfile);
309
6ea663a7
BV
310 if (limit_samples) {
311 if (rcvd_samples_logic > 0 && rcvd_samples_logic < limit_samples)
312 g_warning("Device only sent %" PRIu64 " samples.",
313 rcvd_samples_logic);
314 else if (rcvd_samples_analog > 0 && rcvd_samples_analog < limit_samples)
315 g_warning("Device only sent %" PRIu64 " samples.",
316 rcvd_samples_analog);
2be182e6
BV
317 }
318 }
319
320}
321
ad54a1a6 322int opt_to_gvar(char *key, char *value, struct sr_config *src)
2be182e6
BV
323{
324 const struct sr_config_info *srci;
426d0cda 325 double tmp_double, dlow, dhigh;
2be182e6 326 uint64_t tmp_u64, p, q, low, high;
ad54a1a6 327 GVariant *rational[2], *range[2];
2be182e6 328 gboolean tmp_bool;
ad54a1a6 329 int ret;
2be182e6 330
ad54a1a6
BV
331 if (!(srci = sr_config_info_name_get(key))) {
332 g_critical("Unknown device option '%s'.", (char *) key);
333 return -1;
334 }
335 src->key = srci->key;
2be182e6 336
ad54a1a6
BV
337 if ((value == NULL) &&
338 (srci->datatype != SR_T_BOOL)) {
339 g_critical("Option '%s' needs a value.", (char *)key);
340 return -1;
341 }
342
343 ret = 0;
344 switch (srci->datatype) {
345 case SR_T_UINT64:
346 ret = sr_parse_sizestring(value, &tmp_u64);
347 if (ret != 0)
2be182e6 348 break;
ad54a1a6
BV
349 src->data = g_variant_new_uint64(tmp_u64);
350 break;
351 case SR_T_INT32:
352 ret = sr_parse_sizestring(value, &tmp_u64);
353 if (ret != 0)
2be182e6 354 break;
ad54a1a6
BV
355 src->data = g_variant_new_int32(tmp_u64);
356 break;
9db40e9f 357 case SR_T_STRING:
ad54a1a6
BV
358 src->data = g_variant_new_string(value);
359 break;
360 case SR_T_BOOL:
361 if (!value)
362 tmp_bool = TRUE;
363 else
364 tmp_bool = sr_parse_boolstring(value);
365 src->data = g_variant_new_boolean(tmp_bool);
366 break;
367 case SR_T_FLOAT:
368 tmp_double = strtof(value, NULL);
369 src->data = g_variant_new_double(tmp_double);
370 break;
371 case SR_T_RATIONAL_PERIOD:
372 if ((ret = sr_parse_period(value, &p, &q)) != SR_OK)
2be182e6 373 break;
ad54a1a6
BV
374 rational[0] = g_variant_new_uint64(p);
375 rational[1] = g_variant_new_uint64(q);
376 src->data = g_variant_new_tuple(rational, 2);
377 break;
378 case SR_T_RATIONAL_VOLT:
379 if ((ret = sr_parse_voltage(value, &p, &q)) != SR_OK)
2be182e6 380 break;
ad54a1a6
BV
381 rational[0] = g_variant_new_uint64(p);
382 rational[1] = g_variant_new_uint64(q);
383 src->data = g_variant_new_tuple(rational, 2);
384 break;
385 case SR_T_UINT64_RANGE:
386 if (sscanf(value, "%"PRIu64"-%"PRIu64, &low, &high) != 2) {
387 ret = -1;
2be182e6 388 break;
ad54a1a6
BV
389 } else {
390 range[0] = g_variant_new_uint64(low);
391 range[1] = g_variant_new_uint64(high);
392 src->data = g_variant_new_tuple(range, 2);
2be182e6 393 }
ad54a1a6 394 break;
426d0cda
BV
395 case SR_T_DOUBLE_RANGE:
396 if (sscanf(value, "%lf-%lf", &dlow, &dhigh) != 2) {
397 ret = -1;
398 break;
399 } else {
400 range[0] = g_variant_new_double(dlow);
401 range[1] = g_variant_new_double(dhigh);
402 src->data = g_variant_new_tuple(range, 2);
403 }
404 break;
ad54a1a6
BV
405 default:
406 ret = -1;
407 }
408
409 return ret;
410}
411
412int set_dev_options(struct sr_dev_inst *sdi, GHashTable *args)
413{
414 struct sr_config src;
ca50f4b3 415 struct sr_channel_group *cg;
ad54a1a6
BV
416 GHashTableIter iter;
417 gpointer key, value;
418 int ret;
419
420 g_hash_table_iter_init(&iter, args);
421 while (g_hash_table_iter_next(&iter, &key, &value)) {
422 if ((ret = opt_to_gvar(key, value, &src)) != 0)
423 return ret;
ca50f4b3
UH
424 cg = select_channel_group(sdi);
425 ret = sr_config_set(sdi, cg, src.key, src.data);
2be182e6
BV
426 if (ret != SR_OK) {
427 g_critical("Failed to set device option '%s'.", (char *)key);
428 return ret;
429 }
430 }
431
432 return SR_OK;
433}
434
435void run_session(void)
436{
ac3dcd3e 437 GSList *devices, *real_devices, *sd;
2be182e6
BV
438 GHashTable *devargs;
439 GVariant *gvar;
4bf77ec6
BV
440 struct sr_session *session;
441 struct sr_trigger *trigger;
2be182e6 442 struct sr_dev_inst *sdi;
02c65935 443 uint64_t min_samples, max_samples;
ac3dcd3e
PZ
444 gsize n_elements, i;
445 const uint32_t *dev_opts;
446 int is_demo_dev;
c6fa2b2e 447 struct sr_dev_driver *driver;
2be182e6
BV
448
449 devices = device_scan();
450 if (!devices) {
451 g_critical("No devices found.");
452 return;
453 }
ac3dcd3e
PZ
454
455 real_devices = NULL;
456 for (sd = devices; sd; sd = sd->next) {
457 sdi = sd->data;
458
c6fa2b2e
UH
459 driver = sr_dev_inst_driver_get(sdi);
460
461 if (sr_config_list(driver, sdi, NULL, SR_CONF_DEVICE_OPTIONS, &gvar) != SR_OK) {
ac3dcd3e
PZ
462 g_critical("Failed to query sr_config_list(SR_CONF_DEVICE_OPTIONS).");
463 return;
464 }
465
466 dev_opts = g_variant_get_fixed_array(gvar, &n_elements, sizeof(uint32_t));
467
468 is_demo_dev = 0;
469 for (i = 0; i < n_elements; i++) {
470 if (dev_opts[i] == SR_CONF_DEMO_DEV)
471 is_demo_dev = 1;
472 }
473
474 g_variant_unref(gvar);
475
476 if (!is_demo_dev)
477 real_devices = g_slist_append(real_devices, sdi);
478 }
479
2be182e6 480 if (g_slist_length(devices) > 1) {
ac3dcd3e
PZ
481 if (g_slist_length(real_devices) != 1) {
482 g_critical("sigrok-cli only supports one device for capturing.");
483 return;
484 } else {
485 /* We only have one non-demo device. */
486 g_slist_free(devices);
487 devices = real_devices;
488 real_devices = NULL;
489 }
2be182e6 490 }
ac3dcd3e 491
2be182e6 492 sdi = devices->data;
b4eece7c 493 g_slist_free(devices);
ac3dcd3e 494 g_slist_free(real_devices);
2be182e6 495
4bf77ec6
BV
496 sr_session_new(&session);
497 sr_session_datafeed_callback_add(session, datafeed_in, NULL);
2be182e6
BV
498
499 if (sr_dev_open(sdi) != SR_OK) {
500 g_critical("Failed to open device.");
501 return;
502 }
503
4bf77ec6 504 if (sr_session_dev_add(session, sdi) != SR_OK) {
2be182e6 505 g_critical("Failed to add device to session.");
4bf77ec6 506 sr_session_destroy(session);
2be182e6
BV
507 return;
508 }
509
510 if (opt_config) {
511 if ((devargs = parse_generic_arg(opt_config, FALSE))) {
512 if (set_dev_options(sdi, devargs) != SR_OK)
513 return;
514 g_hash_table_destroy(devargs);
515 }
516 }
517
029d73fe
UH
518 if (select_channels(sdi) != SR_OK) {
519 g_critical("Failed to set channels.");
4bf77ec6 520 sr_session_destroy(session);
2be182e6
BV
521 return;
522 }
523
524 if (opt_triggers) {
4bf77ec6
BV
525 if (!parse_triggerstring(sdi, opt_triggers, &trigger)) {
526 sr_session_destroy(session);
527 return;
528 }
529 if (sr_session_trigger_set(session, trigger) != SR_OK) {
530 sr_session_destroy(session);
2be182e6
BV
531 return;
532 }
2be182e6
BV
533 }
534
535 if (opt_continuous) {
536 if (!sr_dev_has_option(sdi, SR_CONF_CONTINUOUS)) {
537 g_critical("This device does not support continuous sampling.");
4bf77ec6 538 sr_session_destroy(session);
2be182e6
BV
539 return;
540 }
541 }
542
543 if (opt_time) {
544 if (set_limit_time(sdi) != SR_OK) {
4bf77ec6 545 sr_session_destroy(session);
2be182e6
BV
546 return;
547 }
548 }
549
550 if (opt_samples) {
551 if ((sr_parse_sizestring(opt_samples, &limit_samples) != SR_OK)) {
552 g_critical("Invalid sample limit '%s'.", opt_samples);
4bf77ec6 553 sr_session_destroy(session);
2be182e6
BV
554 return;
555 }
c6fa2b2e 556 if (sr_config_list(driver, sdi, NULL,
02c65935 557 SR_CONF_LIMIT_SAMPLES, &gvar) == SR_OK) {
c7a5cb12
BV
558 /* The device has no compression, or compression is turned
559 * off, and publishes its sample memory size. */
02c65935 560 g_variant_get(gvar, "(tt)", &min_samples, &max_samples);
be781321 561 g_variant_unref(gvar);
02c65935
BV
562 if (limit_samples < min_samples) {
563 g_critical("The device stores at least %"PRIu64
564 " samples with the current settings.", min_samples);
565 }
c7a5cb12
BV
566 if (limit_samples > max_samples) {
567 g_critical("The device can store only %"PRIu64
568 " samples with the current settings.", max_samples);
569 }
570 }
2be182e6
BV
571 gvar = g_variant_new_uint64(limit_samples);
572 if (sr_config_set(sdi, NULL, SR_CONF_LIMIT_SAMPLES, gvar) != SR_OK) {
573 g_critical("Failed to configure sample limit.");
4bf77ec6 574 sr_session_destroy(session);
2be182e6
BV
575 return;
576 }
577 }
578
579 if (opt_frames) {
580 if ((sr_parse_sizestring(opt_frames, &limit_frames) != SR_OK)) {
581 g_critical("Invalid sample limit '%s'.", opt_samples);
4bf77ec6 582 sr_session_destroy(session);
2be182e6
BV
583 return;
584 }
585 gvar = g_variant_new_uint64(limit_frames);
586 if (sr_config_set(sdi, NULL, SR_CONF_LIMIT_FRAMES, gvar) != SR_OK) {
587 g_critical("Failed to configure frame limit.");
4bf77ec6 588 sr_session_destroy(session);
2be182e6
BV
589 return;
590 }
591 }
592
4bf77ec6 593 if (sr_session_start(session) != SR_OK) {
2be182e6 594 g_critical("Failed to start session.");
4bf77ec6 595 sr_session_destroy(session);
2be182e6
BV
596 return;
597 }
598
599 if (opt_continuous)
4bf77ec6 600 add_anykey(session);
2be182e6 601
4bf77ec6 602 sr_session_run(session);
2be182e6
BV
603
604 if (opt_continuous)
605 clear_anykey();
606
4bf77ec6
BV
607 sr_session_datafeed_callback_remove_all(session);
608 sr_session_destroy(session);
2be182e6
BV
609
610}
611