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 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
|
/*
* BRLTTY - A background process providing access to the console screen (when in
* text mode) for a blind person using a refreshable braille display.
*
* Copyright (C) 1995-2010 by The BRLTTY Developers.
*
* BRLTTY comes with ABSOLUTELY NO WARRANTY.
*
* This is free software, placed 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. Please see the file LICENSE-GPL for details.
*
* Web Page: http://mielke.cc/brltty/
*
* This software is maintained by Dave Mielke <dave@mielke.cc>.
*/
#include "prologue.h"
#include <string.h>
#include <errno.h>
#include <sys/time.h>
#ifdef __MSDOS__
#include "sys_msdos.h"
#endif /* __MSDOS__ */
#if defined(__MINGW32__)
typedef HANDLE MonitorEntry;
#elif defined(HAVE_SYS_POLL_H)
#include <sys/poll.h>
typedef struct pollfd MonitorEntry;
#else /* monitor definitions */
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif /* HAVE_SYS_SELECT_H */
typedef struct {
int size;
fd_set set;
} SelectDescriptor;
static SelectDescriptor selectDescriptor_read;
static SelectDescriptor selectDescriptor_write;
typedef struct {
fd_set *selectSet;
FileDescriptor fileDescriptor;
} MonitorEntry;
#endif /* monitor definitions */
#include "log.h"
#include "timing.h"
#include "queue.h"
#include "async.h"
typedef struct FunctionEntryStruct FunctionEntry;
typedef union {
struct {
AsyncInputCallback callback;
unsigned end:1;
} input;
struct {
AsyncOutputCallback callback;
} output;
} TransferDirectionUnion;
typedef struct {
TransferDirectionUnion direction;
size_t size;
size_t length;
unsigned char buffer[];
} TransferExtension;
typedef struct {
FunctionEntry *function;
void *extension;
void *data;
unsigned finished:1;
int error;
} OperationEntry;
typedef struct {
void (*beginFunction) (FunctionEntry *function);
void (*endFunction) (FunctionEntry *function);
void (*startOperation) (OperationEntry *operation);
void (*finishOperation) (OperationEntry *operation);
int (*invokeCallback) (OperationEntry *operation);
} FunctionMethods;
struct FunctionEntryStruct {
FileDescriptor fileDescriptor;
const FunctionMethods *methods;
Queue *operations;
#if defined(__MINGW32__)
OVERLAPPED ol;
#elif defined(HAVE_SYS_POLL_H)
short pollEvents;
#else /* monitor definitions */
SelectDescriptor *selectDescriptor;
#endif /* monitor definitions */
};
typedef struct {
FileDescriptor fileDescriptor;
const FunctionMethods *methods;
} FunctionKey;
#ifdef __MINGW32__
static void
prepareMonitors (void) {
}
static int
awaitOperation (MonitorEntry *monitors, int count, int timeout) {
if (count) {
DWORD result = WaitForMultipleObjects(count, monitors, FALSE, timeout);
if ((result >= WAIT_OBJECT_0) && (result < (WAIT_OBJECT_0 + count))) return 1;
if (result == WAIT_FAILED) {
LogWindowsError("WaitForMultipleObjects");
}
} else {
approximateDelay(timeout);
}
return 0;
}
static void
initializeMonitor (MonitorEntry *monitor, const FunctionEntry *function, const OperationEntry *operation) {
*monitor = function->ol.hEvent;
}
static int
testMonitor (const MonitorEntry *monitor) {
DWORD result = WaitForSingleObject(*monitor, 0);
if (result == WAIT_OBJECT_0) return 1;
if (result == WAIT_FAILED) {
LogWindowsError("WaitForSingleObject");
}
return 0;
}
static int
allocateWindowsEvent (HANDLE *event) {
if (*event == INVALID_HANDLE_VALUE) {
HANDLE handle = CreateEvent(NULL, TRUE, FALSE, NULL);
if (!handle) return 0;
*event = handle;
}
return ResetEvent(*event);
}
static void
deallocateWindowsEvent (HANDLE *event) {
if (*event != INVALID_HANDLE_VALUE) {
CloseHandle(*event);
*event = INVALID_HANDLE_VALUE;
}
}
static int
allocateWindowsResources (OperationEntry *operation) {
FunctionEntry *function = operation->function;
if (allocateWindowsEvent(&function->ol.hEvent)) {
return 1;
}
operation->finished = 1;
operation->error = GetLastError();
return 0;
}
static void
setWindowsTransferResult (OperationEntry *operation, DWORD success, DWORD count) {
TransferExtension *extension = operation->extension;
if (success) {
extension->length += count;
} else {
DWORD error = GetLastError();
if (error == ERROR_IO_PENDING) return;
if ((error == ERROR_HANDLE_EOF) || (error == ERROR_BROKEN_PIPE)) {
extension->direction.input.end = 1;
} else {
operation->error = error;
}
}
operation->finished = 1;
}
static void
beginWindowsFunction (FunctionEntry *function) {
ZeroMemory(&function->ol, sizeof(function->ol));
function->ol.hEvent = INVALID_HANDLE_VALUE;
}
static void
endWindowsFunction (FunctionEntry *function) {
deallocateWindowsEvent(&function->ol.hEvent);
}
static void
startWindowsRead (OperationEntry *operation) {
FunctionEntry *function = operation->function;
TransferExtension *extension = operation->extension;
if (allocateWindowsResources(operation)) {
DWORD count;
DWORD success = ReadFile(function->fileDescriptor,
&extension->buffer[extension->length],
extension->size - extension->length,
&count, &function->ol);
setWindowsTransferResult(operation, success, count);
}
}
static void
startWindowsWrite (OperationEntry *operation) {
FunctionEntry *function = operation->function;
TransferExtension *extension = operation->extension;
if (allocateWindowsResources(operation)) {
DWORD count;
DWORD success = WriteFile(function->fileDescriptor,
&extension->buffer[extension->length],
extension->size - extension->length,
&count, &function->ol);
setWindowsTransferResult(operation, success, count);
}
}
static void
finishWindowsTransferOperation (OperationEntry *operation) {
FunctionEntry *function = operation->function;
DWORD count;
DWORD success = GetOverlappedResult(function->fileDescriptor, &function->ol, &count, FALSE);
setWindowsTransferResult(operation, success, count);
}
#else /* __MINGW32__ */
#ifdef HAVE_SYS_POLL_H
static void
prepareMonitors (void) {
}
static int
awaitOperation (MonitorEntry *monitors, int count, int timeout) {
int result = poll(monitors, count, timeout);
if (result > 0) return 1;
if (result == -1) {
if (errno != EINTR) LogError("poll");
}
return 0;
}
static void
initializeMonitor (MonitorEntry *monitor, const FunctionEntry *function, const OperationEntry *operation) {
monitor->fd = function->fileDescriptor;
monitor->events = function->pollEvents;
monitor->revents = 0;
}
static int
testMonitor (const MonitorEntry *monitor) {
return monitor->revents != 0;
}
static void
beginUnixInputFunction (FunctionEntry *function) {
function->pollEvents = POLLIN;
}
static void
beginUnixOutputFunction (FunctionEntry *function) {
function->pollEvents = POLLOUT;
}
#else /* HAVE_SYS_POLL_H */
static void
prepareSelectDescriptor (SelectDescriptor *descriptor) {
FD_ZERO(&descriptor->set);
descriptor->size = 0;
}
static void
prepareMonitors (void) {
prepareSelectDescriptor(&selectDescriptor_read);
prepareSelectDescriptor(&selectDescriptor_write);
}
static fd_set *
getSelectSet (SelectDescriptor *descriptor) {
return descriptor->size? &descriptor->set: NULL;
}
static int
doSelect (int setSize, fd_set *readSet, fd_set *writeSet, int timeout) {
struct timeval time;
time.tv_sec = timeout / 1000;
time.tv_usec = timeout % 1000 * 1000;
{
int result = select(setSize, readSet, writeSet, NULL, &time);
if (result > 0) return 1;
if (result == -1) {
if (errno != EINTR) LogError("select");
}
return 0;
}
}
static int
awaitOperation (MonitorEntry *monitors, int count, int timeout) {
int setSize = MAX(selectDescriptor_read.size, selectDescriptor_write.size);
fd_set *readSet = getSelectSet(&selectDescriptor_read);
fd_set *writeSet = getSelectSet(&selectDescriptor_write);
#ifdef __MSDOS__
int elapsed = 0;
do {
fd_set readSet1, writeSet1;
if (readSet) readSet1 = *readSet;
if (writeSet) writeSet1 = *writeSet;
if (doSelect(setSize, (readSet? &readSet1: NULL), (writeSet? &writeSet1: NULL), 0)) {
if (readSet) *readSet = readSet1;
if (writeSet) *writeSet = writeSet1;
return 1;
}
} while ((elapsed += tsr_usleep(1000)) < timeout);
#else /* __MSDOS__ */
if (doSelect(setSize, readSet, writeSet, timeout)) return 1;
#endif /* __MSDOS__ */
return 0;
}
static void
initializeMonitor (MonitorEntry *monitor, const FunctionEntry *function, const OperationEntry *operation) {
monitor->selectSet = &function->selectDescriptor->set;
monitor->fileDescriptor = function->fileDescriptor;
FD_SET(function->fileDescriptor, &function->selectDescriptor->set);
if (function->fileDescriptor >= function->selectDescriptor->size) function->selectDescriptor->size = function->fileDescriptor + 1;
}
static int
testMonitor (const MonitorEntry *monitor) {
return FD_ISSET(monitor->fileDescriptor, monitor->selectSet);
}
static void
beginUnixInputFunction (FunctionEntry *function) {
function->selectDescriptor = &selectDescriptor_read;
}
static void
beginUnixOutputFunction (FunctionEntry *function) {
function->selectDescriptor = &selectDescriptor_write;
}
#endif /* HAVE_SYS_POLL_H */
static void
setUnixTransferResult (OperationEntry *operation, ssize_t count) {
TransferExtension *extension = operation->extension;
if (count == -1) {
operation->error = errno;
} else if (count == 0) {
extension->direction.input.end = 1;
} else {
extension->length += count;
}
operation->finished = 1;
}
static void
finishUnixRead (OperationEntry *operation) {
FunctionEntry *function = operation->function;
TransferExtension *extension = operation->extension;
int result = read(function->fileDescriptor,
&extension->buffer[extension->length],
extension->size - extension->length);
setUnixTransferResult(operation, result);
}
static void
finishUnixWrite (OperationEntry *operation) {
FunctionEntry *function = operation->function;
TransferExtension *extension = operation->extension;
int result = write(function->fileDescriptor,
&extension->buffer[extension->length],
extension->size - extension->length);
setUnixTransferResult(operation, result);
}
#endif /* __MINGW32__ */
static int
invokeInputCallback (OperationEntry *operation) {
TransferExtension *extension = operation->extension;
size_t count;
if (!extension->direction.input.callback) return 0;
{
AsyncInputResult result;
result.data = operation->data;
result.buffer = extension->buffer;
result.size = extension->size;
result.length = extension->length;
result.error = operation->error;
result.end = extension->direction.input.end;
count = extension->direction.input.callback(&result);
}
if (operation->error) return 0;
if (extension->direction.input.end) return 0;
operation->finished = 0;
if (count) {
memmove(extension->buffer, &extension->buffer[count],
extension->length -= count);
if (extension->length > 0) operation->finished = 1;
}
return 1;
}
static int
invokeOutputCallback (OperationEntry *operation) {
TransferExtension *extension = operation->extension;
if (!operation->error && (extension->length < extension->size)) {
operation->finished = 0;
return 1;
}
if (extension->direction.output.callback) {
AsyncOutputResult result;
result.data = operation->data;
result.buffer = extension->buffer;
result.size = extension->size;
result.error = operation->error;
extension->direction.output.callback(&result);
}
return 0;
}
static void
deallocateFunctionEntry (void *item, void *data) {
FunctionEntry *function = item;
if (function->operations) deallocateQueue(function->operations);
if (function->methods->endFunction) function->methods->endFunction(function);
free(function);
}
static int
testFunctionEntry (const void *item, const void *data) {
const FunctionEntry *function = item;
const FunctionKey *key = data;
return (function->fileDescriptor == key->fileDescriptor) &&
(function->methods == key->methods);
}
static void
deallocateOperationEntry (void *item, void *data) {
OperationEntry *operation = item;
if (operation->extension) free(operation->extension);
free(operation);
}
static Queue *
getFunctionQueue (int create) {
static Queue *functions = NULL;
if (!functions) {
if (create) {
if ((functions = newQueue(deallocateFunctionEntry, NULL))) {
}
}
}
return functions;
}
static Element *
getFunctionElement (FileDescriptor fileDescriptor, const FunctionMethods *methods, int create) {
Queue *functions = getFunctionQueue(create);
if (functions) {
{
FunctionKey key;
key.fileDescriptor = fileDescriptor;
key.methods = methods;
{
Element *element = findElement(functions, testFunctionEntry, &key);
if (element) return element;
}
}
if (create) {
FunctionEntry *function;
if ((function = malloc(sizeof(*function)))) {
function->fileDescriptor = fileDescriptor;
function->methods = methods;
if ((function->operations = newQueue(deallocateOperationEntry, NULL))) {
if (methods->beginFunction) methods->beginFunction(function);
{
Element *element = enqueueItem(functions, function);
if (element) return element;
}
deallocateQueue(function->operations);
}
free(function);
}
}
}
return NULL;
}
static void
startOperation (OperationEntry *operation) {
if (operation->function->methods->startOperation) operation->function->methods->startOperation(operation);
}
static void
finishOperation (OperationEntry *operation) {
if (operation->function->methods->finishOperation) operation->function->methods->finishOperation(operation);
}
static int
createOperation (
FileDescriptor fileDescriptor,
const FunctionMethods *methods,
void *extension,
void *data
) {
OperationEntry *operation;
if ((operation = malloc(sizeof(*operation)))) {
Element *functionElement;
if ((functionElement = getFunctionElement(fileDescriptor, methods, 1))) {
FunctionEntry *function = getElementItem(functionElement);
int new = !getQueueSize(function->operations);
if (enqueueItem(function->operations, operation)) {
operation->function = function;
operation->extension = extension;
operation->data = data;
operation->finished = 0;
operation->error = 0;
if (new) startOperation(operation);
return 1;
}
if (new) deleteElement(functionElement);
}
free(operation);
}
return 0;
}
static int
createTransferOperation (
FileDescriptor fileDescriptor,
const FunctionMethods *methods,
const TransferDirectionUnion *direction,
size_t size, const void *buffer,
void *data
) {
TransferExtension *extension;
if ((extension = malloc(sizeof(*extension) + size))) {
extension->direction = *direction;
extension->size = size;
extension->length = 0;
if (buffer) memcpy(extension->buffer, buffer, size);
if (createOperation(fileDescriptor, methods, extension, data)) return 1;
free(extension);
}
return 0;
}
static int
createInputOperation (
FileDescriptor fileDescriptor,
const FunctionMethods *methods,
AsyncInputCallback callback,
size_t size,
void *data
) {
TransferDirectionUnion direction;
direction.input.callback = callback;
direction.input.end = 0;
return createTransferOperation(fileDescriptor, methods, &direction, size, NULL, data);
}
static int
createOutputOperation (
FileDescriptor fileDescriptor,
const FunctionMethods *methods,
AsyncOutputCallback callback,
size_t size, const void *buffer,
void *data
) {
TransferDirectionUnion direction;
direction.output.callback = callback;
return createTransferOperation(fileDescriptor, methods, &direction, size, buffer, data);
}
static OperationEntry *
getFirstOperation (const FunctionEntry *function) {
return getElementItem(getQueueHead(function->operations));
}
int
asyncRead (
FileDescriptor fileDescriptor,
size_t size,
AsyncInputCallback callback, void *data
) {
static const FunctionMethods methods = {
#ifdef __MINGW32__
.beginFunction = beginWindowsFunction,
.endFunction = endWindowsFunction,
.startOperation = startWindowsRead,
.finishOperation = finishWindowsTransferOperation,
#else /* __MINGW32__ */
.beginFunction = beginUnixInputFunction,
.finishOperation = finishUnixRead,
#endif /* __MINGW32__ */
.invokeCallback = invokeInputCallback
};
return createInputOperation(fileDescriptor, &methods, callback, size, data);
}
int
asyncWrite (
FileDescriptor fileDescriptor,
const void *buffer, size_t size,
AsyncOutputCallback callback, void *data
) {
static const FunctionMethods methods = {
#ifdef __MINGW32__
.beginFunction = beginWindowsFunction,
.endFunction = endWindowsFunction,
.startOperation = startWindowsWrite,
.finishOperation = finishWindowsTransferOperation,
#else /* __MINGW32__ */
.beginFunction = beginUnixOutputFunction,
.finishOperation = finishUnixWrite,
#endif /* __MINGW32__ */
.invokeCallback = invokeOutputCallback
};
return createOutputOperation(fileDescriptor, &methods, callback, size, buffer, data);
}
typedef struct {
struct timeval time;
AsyncAlarmCallback callback;
void *data;
} AlarmEntry;
static void
deallocateAlarmEntry (void *item, void *data) {
AlarmEntry *alarm = item;
free(alarm);
}
static int
compareAlarmEntries (const void *item1, const void *item2, void *data) {
const AlarmEntry *alarm1 = item1;
const AlarmEntry *alarm2 = item2;
if (alarm2->time.tv_sec < alarm1->time.tv_sec) return 0;
if (alarm2->time.tv_sec > alarm1->time.tv_sec) return 1;
return alarm2->time.tv_usec > alarm1->time.tv_usec;
}
static Queue *
getAlarmQueue (int create) {
static Queue *alarms = NULL;
if (!alarms) {
if (create) {
if ((alarms = newQueue(deallocateAlarmEntry, compareAlarmEntries))) {
}
}
}
return alarms;
}
static void
normalizeTime (struct timeval *time) {
time->tv_sec += time->tv_usec / 1000000;
time->tv_usec = time->tv_usec % 1000000;
}
static void
adjustTime (struct timeval *time, int amount) {
int quotient = amount / 1000;
int remainder = amount % 1000;
if (remainder < 0) remainder += 1000, --quotient;
time->tv_sec += quotient;
time->tv_usec += remainder * 1000;
normalizeTime(time);
}
int
asyncAbsoluteAlarm (
const struct timeval *time,
AsyncAlarmCallback callback,
void *data
) {
Queue *alarms;
if ((alarms = getAlarmQueue(1))) {
AlarmEntry *alarm;
if ((alarm = malloc(sizeof(*alarm)))) {
alarm->time = *time;
alarm->callback = callback;
alarm->data = data;
if (enqueueItem(alarms, alarm)) return 1;
free(alarm);
}
}
return 0;
}
int
asyncRelativeAlarm (
int interval,
AsyncAlarmCallback callback,
void *data
) {
struct timeval time;
gettimeofday(&time, NULL);
adjustTime(&time, interval);
return asyncAbsoluteAlarm(&time, callback, data);
}
typedef struct {
MonitorEntry *monitor;
} AddMonitorData;
static int
addMonitor (void *item, void *data) {
const FunctionEntry *function = item;
AddMonitorData *add = data;
OperationEntry *operation = getFirstOperation(function);
if (operation->finished) return 1;
initializeMonitor(add->monitor++, function, operation);
return 0;
}
typedef struct {
const MonitorEntry *monitor;
} FindMonitorData;
static int
findMonitor (void *item, void *data) {
/*FunctionEntry *function = item;*/
FindMonitorData *find = data;
if (testMonitor(find->monitor)) return 1;
find->monitor++;
return 0;
}
void
asyncWait (int duration) {
long int elapsed = -1;
struct timeval start;
do {
long int timeout = duration;
Queue *functions = getFunctionQueue(0);
int monitorCount = functions? getQueueSize(functions): 0;
MonitorEntry *monitorArray = NULL;
Element *functionElement = NULL;
if (elapsed < 0) {
elapsed = 0;
gettimeofday(&start, NULL);
}
{
Queue *alarms = getAlarmQueue(0);
if (alarms) {
Element *element = getQueueHead(alarms);
if (element) {
AlarmEntry *alarm = getElementItem(element);
long int milliseconds = millisecondsBetween(&start, &alarm->time);
if (milliseconds <= elapsed) {
AsyncAlarmCallback callback = alarm->callback;
void *data = alarm->data;
deleteElement(element);
callback(data);
continue;
}
if (milliseconds < timeout) timeout = milliseconds;
}
}
}
prepareMonitors();
if (monitorCount) {
if ((monitorArray = malloc(ARRAY_SIZE(monitorArray, monitorCount)))) {
AddMonitorData add;
add.monitor = monitorArray;
functionElement = processQueue(functions, addMonitor, &add);
if (!(monitorCount = add.monitor - monitorArray)) {
free(monitorArray);
monitorArray = NULL;
}
} else {
monitorCount = 0;
}
}
if (!functionElement) {
if (awaitOperation(monitorArray, monitorCount, timeout-elapsed)) {
FindMonitorData find;
find.monitor = monitorArray;
functionElement = processQueue(functions, findMonitor, &find);
}
}
if (functionElement) {
FunctionEntry *function = getElementItem(functionElement);
Element *operationElement = getQueueHead(function->operations);
OperationEntry *operation = getElementItem(operationElement);
if (!operation->finished) finishOperation(operation);
if (function->methods->invokeCallback(operation)) {
operation->error = 0;
} else {
deleteElement(operationElement);
}
if ((operationElement = getQueueHead(function->operations))) {
operation = getElementItem(operationElement);
if (!operation->finished) startOperation(operation);
requeueElement(functionElement);
} else {
deleteElement(functionElement);
}
}
if (monitorArray) free(monitorArray);
} while ((elapsed = millisecondsSince(&start)) < duration);
}
|