1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
|
/*
* Copyright (C) 2013 by Miroslav Slugen <thunder.m@email.cz
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "async.h"
/* uložení dat */
static int mirisdr_feed_async (mirisdr_dev_t *p, unsigned char *samples, uint32_t bytes) {
uint32_t i;
if (!p) goto failed;
if (!p->cb) goto failed;
/* automatická velikost */
if (!p->xfer_out_len) {
/* přímé zaslání */
p->cb(samples, bytes, p->cb_ctx);
/* fixní velikost bufferu bez předchozích dat */
} else if (p->xfer_out_pos == 0) {
/* buffer přesně odpovídá - málo časté, přímé zaslání */
if (bytes == p->xfer_out_len) {
p->cb(samples, bytes, p->cb_ctx);
/* buffer je kratší */
} else if (bytes < p->xfer_out_len) {
memcpy(p->xfer_out, samples, bytes);
p->xfer_out_pos = bytes;
/* buffer je delší */
} else {
/* muže být i x násobkem délky */
for (i = 0;; i+= p->xfer_out_len) {
if (i + p->xfer_out_len > bytes) {
if (bytes > i) {
memcpy(p->xfer_out, samples + i, bytes - i);
p->xfer_out_pos = bytes - i;
}
break;
}
p->cb(samples + i, p->xfer_out_len, p->cb_ctx);
}
}
/* data jsou přesně, využije se interní buffer */
} else if (p->xfer_out_pos + bytes == p->xfer_out_len) {
memcpy(p->xfer_out + p->xfer_out_pos, samples, bytes);
p->cb(p->xfer_out, p->xfer_out_len, p->cb_ctx);
p->xfer_out_pos = 0;
/* není dostatek dat */
} else if (p->xfer_out_pos + bytes < p->xfer_out_len) {
memcpy(p->xfer_out + p->xfer_out_pos, samples, bytes);
p->xfer_out_pos+= bytes;
/* dat je více než potřebujeme, nejsložitější případ */
} else {
memcpy(p->xfer_out + p->xfer_out_pos, samples, p->xfer_out_len - p->xfer_out_pos);
p->cb(p->xfer_out, p->xfer_out_len, p->cb_ctx);
for (i = p->xfer_out_len - p->xfer_out_pos;; i+= p->xfer_out_len) {
if (i + p->xfer_out_len > bytes) {
if (bytes > i) {
memcpy(p->xfer_out, samples + i, bytes - i);
p->xfer_out_pos = bytes - i;
} else {
p->xfer_out_pos = 0;
}
break;
}
p->cb(samples + i, p->xfer_out_len, p->cb_ctx);
}
}
return 0;
failed:
return -1;
}
/* volání pro zasílání dat */
static void LIBUSB_CALL _libusb_callback (struct libusb_transfer *xfer) {
size_t i;
int len, bytes = 0;
static unsigned char *iso_packet_buf;
mirisdr_dev_t *p = (mirisdr_dev_t*) xfer->user_data;
uint8_t *samples = NULL;
if (!p) goto failed;
/* zpracujeme pouze kompletní přenos */
if (xfer->status == LIBUSB_TRANSFER_COMPLETED) {
/*
* Určení správné velikosti bufferu, tato část musí být provedena
* v jednom kroku, jinak může dojít ke změně formátu uprostřed procesu,
* druhá možnost je používat lock.
*/
switch (xfer->type) {
case LIBUSB_TRANSFER_TYPE_ISOCHRONOUS:
switch (p->format) {
case MIRISDR_FORMAT_252_S16:
samples = malloc(504 * DEFAULT_ISO_BUFFERS * DEFAULT_ISO_PACKETS * 2);
for (i = 0; i < DEFAULT_ISO_PACKETS; i++) {
struct libusb_iso_packet_descriptor *packet = &xfer->iso_packet_desc[i];
/* buffer_simple je pouze pro stejně velké pakety */
if ((packet->actual_length > 0) &&
(iso_packet_buf = libusb_get_iso_packet_buffer_simple(xfer, i))) {
/* menší velikost než 3072 nevadí, je běžný násobek 1024, cokoliv jiného je chyba */
len = mirisdr_samples_convert_252_s16(p, iso_packet_buf, samples + bytes, packet->actual_length);
bytes+= len;
}
}
break;
case MIRISDR_FORMAT_336_S16:
samples = malloc(672 * DEFAULT_ISO_BUFFERS * DEFAULT_ISO_PACKETS * 2);
for (i = 0; i < DEFAULT_ISO_PACKETS; i++) {
struct libusb_iso_packet_descriptor *packet = &xfer->iso_packet_desc[i];
if ((packet->actual_length > 0) &&
(iso_packet_buf = libusb_get_iso_packet_buffer_simple(xfer, i))) {
len = mirisdr_samples_convert_336_s16(p, iso_packet_buf, samples + bytes, packet->actual_length);
bytes+= len;
}
}
break;
case MIRISDR_FORMAT_384_S16:
samples = malloc(768 * DEFAULT_ISO_BUFFERS * DEFAULT_ISO_PACKETS * 2);
for (i = 0; i < DEFAULT_ISO_PACKETS; i++) {
struct libusb_iso_packet_descriptor *packet = &xfer->iso_packet_desc[i];
if ((packet->actual_length > 0) &&
(iso_packet_buf = libusb_get_iso_packet_buffer_simple(xfer, i))) {
len = mirisdr_samples_convert_384_s16(p, iso_packet_buf, samples + bytes, packet->actual_length);
bytes+= len;
}
}
break;
case MIRISDR_FORMAT_504_S16:
samples = malloc(1008 * DEFAULT_ISO_BUFFERS * DEFAULT_ISO_PACKETS * 2);
for (i = 0; i < DEFAULT_ISO_PACKETS; i++) {
struct libusb_iso_packet_descriptor *packet = &xfer->iso_packet_desc[i];
if ((packet->actual_length > 0) &&
(iso_packet_buf = libusb_get_iso_packet_buffer_simple(xfer, i))) {
len = mirisdr_samples_convert_504_s16(p, iso_packet_buf, samples + bytes, packet->actual_length);
bytes+= len;
}
}
break;
case MIRISDR_FORMAT_504_S8:
samples = malloc(1008 * DEFAULT_ISO_BUFFERS * DEFAULT_ISO_PACKETS);
for (i = 0; i < DEFAULT_ISO_PACKETS; i++) {
struct libusb_iso_packet_descriptor *packet = &xfer->iso_packet_desc[i];
if ((packet->actual_length > 0) &&
(iso_packet_buf = libusb_get_iso_packet_buffer_simple(xfer, i))) {
len = mirisdr_samples_convert_504_s8(p, iso_packet_buf, samples + bytes, packet->actual_length);
bytes+= len;
}
}
break;
}
break;
case LIBUSB_TRANSFER_TYPE_BULK:
switch (p->format) {
case MIRISDR_FORMAT_252_S16:
samples = malloc((DEFAULT_BULK_BUFFER / 1024) * 1008);
bytes = mirisdr_samples_convert_252_s16(p, xfer->buffer, samples, xfer->actual_length);
break;
case MIRISDR_FORMAT_336_S16:
samples = malloc((DEFAULT_BULK_BUFFER / 1024) * 1344);
bytes = mirisdr_samples_convert_336_s16(p, xfer->buffer, samples, xfer->actual_length);
break;
case MIRISDR_FORMAT_384_S16:
samples = malloc((DEFAULT_BULK_BUFFER / 1024) * 1536);
bytes = mirisdr_samples_convert_384_s16(p, xfer->buffer, samples, xfer->actual_length);
break;
case MIRISDR_FORMAT_504_S16:
samples = malloc((DEFAULT_BULK_BUFFER / 1024) * 2016);
bytes = mirisdr_samples_convert_504_s16(p, xfer->buffer, samples, xfer->actual_length);
break;
case MIRISDR_FORMAT_504_S8:
samples = malloc((DEFAULT_BULK_BUFFER / 1024) * 1008);
bytes = mirisdr_samples_convert_504_s8(p, xfer->buffer, samples, xfer->actual_length);
break;
}
break;
default:
fprintf( stderr, "not isoc or bulk transfer type on usb device: %u\n", p->index);
goto failed;
}
if (bytes > 0) mirisdr_feed_async(p, samples, bytes);
if (samples) free(samples);
/* pokračujeme dalším přenosem */
if (libusb_submit_transfer(xfer) < 0) {
fprintf( stderr, "error re-submitting URB on device %u\n", p->index);
goto failed;
}
} else if (xfer->status != LIBUSB_TRANSFER_CANCELLED) {
fprintf( stderr, "error async transfer status %d on device %u\n", xfer->status, p->index);
goto failed;
}
return;
failed:
mirisdr_cancel_async(p);
/* stav failed má absolutní přednost */
p->async_status = MIRISDR_ASYNC_FAILED;
}
/* ukončení async části */
int mirisdr_cancel_async (mirisdr_dev_t *p) {
if (!p) goto failed;
switch (p->async_status) {
case MIRISDR_ASYNC_INACTIVE:
case MIRISDR_ASYNC_CANCELING:
goto canceled;
case MIRISDR_ASYNC_RUNNING:
case MIRISDR_ASYNC_PAUSED:
p->async_status = MIRISDR_ASYNC_CANCELING;
break;
case MIRISDR_ASYNC_FAILED:
goto failed;
}
return 0;
failed:
return -1;
canceled:
return -2;
}
/* ukončení async části včetně čekání */
int mirisdr_cancel_async_now (mirisdr_dev_t *p) {
if (!p) goto failed;
switch (p->async_status) {
case MIRISDR_ASYNC_INACTIVE:
goto done;
case MIRISDR_ASYNC_CANCELING:
break;
case MIRISDR_ASYNC_RUNNING:
case MIRISDR_ASYNC_PAUSED:
p->async_status = MIRISDR_ASYNC_CANCELING;
break;
case MIRISDR_ASYNC_FAILED:
goto failed;
}
/* cyklujeme dokud není vše ukončeno */
while ((p->async_status != MIRISDR_ASYNC_INACTIVE) &&
(p->async_status != MIRISDR_ASYNC_FAILED))
#if defined (_WIN32) && !defined(__MINGW32__)
Sleep(20);
#else
usleep(20000);
#endif
done:
return 0;
failed:
return -1;
}
/* alokace asynchronních bufferů */
static int mirisdr_async_alloc (mirisdr_dev_t *p) {
size_t i;
if (!p->xfer) {
p->xfer = malloc(p->xfer_buf_num * sizeof(*p->xfer));
for (i = 0; i < p->xfer_buf_num; i++) {
switch (p->transfer) {
case MIRISDR_TRANSFER_BULK:
p->xfer[i] = libusb_alloc_transfer(0);
break;
case MIRISDR_TRANSFER_ISOC:
p->xfer[i] = libusb_alloc_transfer(DEFAULT_ISO_PACKETS);
break;
}
}
}
if (!p->xfer_buf) {
p->xfer_buf = malloc(p->xfer_buf_num * sizeof(*p->xfer_buf));
for (i = 0; i < p->xfer_buf_num; i++) {
switch (p->transfer) {
case MIRISDR_TRANSFER_BULK:
p->xfer_buf[i] = malloc(DEFAULT_BULK_BUFFER);
break;
case MIRISDR_TRANSFER_ISOC:
p->xfer_buf[i] = malloc(DEFAULT_ISO_BUFFER * DEFAULT_ISO_BUFFERS * DEFAULT_ISO_PACKETS);
break;
}
}
}
if ((!p->xfer_out) &&
(p->xfer_out_len)) {
p->xfer_out = malloc(p->xfer_out_len * sizeof(*p->xfer_out));
}
return 0;
}
/* uvolnění asynchronních bufferů */
static int mirisdr_async_free (mirisdr_dev_t *p) {
size_t i;
if (p->xfer) {
for (i = 0; i < p->xfer_buf_num; i++) {
if (p->xfer[i]) libusb_free_transfer(p->xfer[i]);
}
free(p->xfer);
p->xfer = NULL;
}
if (p->xfer_buf) {
for (i = 0; i < p->xfer_buf_num; i++) {
if (p->xfer_buf[i]) free(p->xfer_buf[i]);
}
free(p->xfer_buf);
p->xfer_buf = NULL;
}
if (p->xfer_out) {
free(p->xfer_out);
p->xfer_out = NULL;
}
return 0;
}
/* spuštění async části */
int mirisdr_read_async (mirisdr_dev_t *p, mirisdr_read_async_cb_t cb, void *ctx, uint32_t num, uint32_t len) {
size_t i;
int r, semafor;
struct timeval tv = {1, 0};
if (!p) goto failed;
if (!p->dh) goto failed;
/* nedovolíme spustit jiný stav než neaktivní */
if (p->async_status != MIRISDR_ASYNC_INACTIVE) goto failed;
p->cb = cb;
p->cb_ctx = ctx;
p->xfer_buf_num = (num == 0) ? DEFAULT_BUF_NUMBER : num;
/* jde o fixní velikost výstupního bufferu */
p->xfer_out_len = (len == 0) ? 0 : len;
p->xfer_out_pos = 0;
#if MIRISDR_DEBUG >= 1
fprintf( stderr, "async read on device %u, buffers: %lu, output size: ",
p->index, (long)p->xfer_buf_num);
if (p->xfer_out_len) {
fprintf( stderr, "%lu", (long)p->xfer_out_len);
} else {
fprintf( stderr, "auto");
}
#endif
/* použití správného rozhraní které zasílá data - není kritické */
switch (p->transfer) {
case MIRISDR_TRANSFER_BULK:
#if MIRISDR_DEBUG >= 1
fprintf( stderr, ", transfer: bulk\n");
#endif
if ((r = libusb_set_interface_alt_setting(p->dh, 0, 3)) < 0) {
fprintf( stderr, "failed to use alternate setting for Bulk mode on miri usb device %u with code %d\n", p->index, r);
}
break;
case MIRISDR_TRANSFER_ISOC:
#if MIRISDR_DEBUG >= 1
fprintf( stderr, ", transfer: isochronous\n");
#endif
if ((r = libusb_set_interface_alt_setting(p->dh, 0, 1)) < 0) {
fprintf( stderr, "failed to use alternate setting for Isochronous mode on miri usb device %u with code %d\n", p->index, r);
}
break;
default:
fprintf( stderr, "\nunsupported transfer type on miri usb device %u\n", p->index);
goto failed;
}
mirisdr_async_alloc(p);
/* spustíme přenosy */
for (i = 0; i < p->xfer_buf_num; i++) {
switch (p->transfer) {
case MIRISDR_TRANSFER_BULK:
libusb_fill_bulk_transfer(p->xfer[i],
p->dh,
0x81,
p->xfer_buf[i],
DEFAULT_BULK_BUFFER,
_libusb_callback,
(void*) p,
DEFAULT_BULK_TIMEOUT);
break;
case MIRISDR_TRANSFER_ISOC:
libusb_fill_iso_transfer(p->xfer[i],
p->dh,
0x81,
p->xfer_buf[i],
DEFAULT_ISO_BUFFER * DEFAULT_ISO_BUFFERS * DEFAULT_ISO_PACKETS,
DEFAULT_ISO_PACKETS,
_libusb_callback,
(void*) p,
DEFAULT_ISO_TIMEOUT);
libusb_set_iso_packet_lengths(p->xfer[i], DEFAULT_ISO_BUFFER * DEFAULT_ISO_BUFFERS);
break;
default:
fprintf( stderr, "unsupported transfer type\n");
goto failed_free;
}
r = libusb_submit_transfer(p->xfer[i]);
if (r < 0) {
fprintf(stderr, "Failed to submit transfer %lu reason: %d\n", i, r);
goto failed_free;
}
}
/* spustíme streamování dat */
mirisdr_streaming_start(p);
p->async_status = MIRISDR_ASYNC_RUNNING;
while (p->async_status != MIRISDR_ASYNC_INACTIVE) {
/* počkáme na další událost */
if ((r = libusb_handle_events_timeout(p->ctx, &tv)) < 0) {
fprintf( stderr, "libusb_handle_events returned: %d\n", r);
if (r == LIBUSB_ERROR_INTERRUPTED) continue; /* stray */
goto failed_free;
}
/* dochází k ukončení */
if (p->async_status == MIRISDR_ASYNC_CANCELING) {
if (!p->xfer) {
p->async_status = MIRISDR_ASYNC_INACTIVE;
break;
}
/* ukončíme všechny přenosy */
semafor = 1;
for (i = 0; i < p->xfer_buf_num; i++) {
if (!p->xfer[i]) continue;
/* pro isoc režim je completed i v případě chyb */
if (p->xfer[i]->status != LIBUSB_TRANSFER_CANCELLED) {
libusb_cancel_transfer(p->xfer[i]);
semafor = 0;
}
}
/* nedošlo k žádnému vynuceném ukončení přenosu, skončíme */
if (semafor) {
p->async_status = MIRISDR_ASYNC_INACTIVE;
/* počkáme na dokončení všech procesů */
libusb_handle_events_timeout(p->ctx, &tv);
break;
}
} else if (p->async_status == MIRISDR_ASYNC_FAILED) {
goto failed_free;
}
}
/* dealokujeme buffer */
mirisdr_async_free(p);
/* ukončíme streamování dat */
#if defined (_WIN32) && !defined(__MINGW32__)
Sleep(20);
#else
usleep(20000);
#endif
mirisdr_streaming_stop(p);
/* je vhodné ukončit i adc, jenže pak by při dalším otevření bylo nutné provést inicializaci */
return 0;
failed_free:
mirisdr_async_free(p);
failed:
return -1;
}
/* spuštění streamování */
int mirisdr_start_async (mirisdr_dev_t *p) {
size_t i;
/* nedovolíme jiný stav než pozastavený */
if (p->async_status != MIRISDR_ASYNC_PAUSED) goto failed;
/* reset interního bufferu */
p->xfer_out_pos = 0;
for (i = 0; i < p->xfer_buf_num; i++) {
if (!p->xfer[i]) continue;
if (libusb_submit_transfer(p->xfer[i])< 0) {
goto failed;
}
}
if (p->async_status != MIRISDR_ASYNC_PAUSED) goto failed;
mirisdr_streaming_start(p);
p->async_status = MIRISDR_ASYNC_RUNNING;
return 0;
failed:
return -1;
}
/* zastavení streamování */
int mirisdr_stop_async (mirisdr_dev_t *p) {
size_t i;
int r, semafor;
struct timeval tv = {1, 0};
/* nedovolíme jiný stav než spuštěný */
if (p->async_status != MIRISDR_ASYNC_RUNNING) goto failed;
while (p->async_status == MIRISDR_ASYNC_RUNNING) {
semafor = 1;
for (i = 0; i < p->xfer_buf_num; i++) {
if (!p->xfer[i]) continue;
/* pro isoc režim je completed i v případě chyb */
if (p->xfer[i]->status != LIBUSB_TRANSFER_CANCELLED) {
libusb_cancel_transfer(p->xfer[i]);
semafor = 0;
}
}
if (semafor) break;
/* počkáme na další událost */
if ((r = libusb_handle_events_timeout(p->ctx, &tv)) < 0) {
fprintf( stderr, "libusb_handle_events returned: %d\n", r);
if (r == LIBUSB_ERROR_INTERRUPTED) continue; /* stray */
goto failed;
}
}
if (p->async_status != MIRISDR_ASYNC_RUNNING) goto failed;
#if defined (_WIN32) && !defined(__MINGW32__)
Sleep(20);
#else
usleep(20000);
#endif
mirisdr_streaming_stop(p);
p->async_status = MIRISDR_ASYNC_PAUSED;
return 0;
failed:
return -1;
}
|