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 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110
|
/* Copyright (C) 2010-2020 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (task_queue.c).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <queues/task_queue.h>
#include <features/features_cpu.h>
#if defined(HAVE_GCD) && !defined(HAVE_THREADS)
#error "gcd uses threads, what are you doing"
#endif
#ifdef HAVE_THREADS
#include <rthreads/rthreads.h>
#endif
#ifdef HAVE_GCD
#include <dispatch/dispatch.h>
#endif
typedef struct
{
retro_task_t *front;
retro_task_t *back;
} task_queue_t;
struct retro_task_impl
{
retro_task_queue_msg_t msg_push;
void (*push_running)(retro_task_t *);
void (*cancel)(void *);
void (*reset)(void);
void (*wait)(retro_task_condition_fn_t, void *);
void (*gather)(void);
bool (*find)(retro_task_finder_t, void*);
void (*retrieve)(task_retriever_data_t *data);
void (*init)(void);
void (*deinit)(void);
};
/* TODO/FIXME - static globals */
static retro_task_queue_msg_t msg_push_bak = NULL;
static task_queue_t tasks_running = {NULL, NULL};
static task_queue_t tasks_finished = {NULL, NULL};
static struct retro_task_impl *impl_current = NULL;
static bool task_threaded_enable = false;
#ifdef HAVE_THREADS
static uintptr_t main_thread_id = 0;
static slock_t *running_lock = NULL;
static slock_t *finished_lock = NULL;
static slock_t *property_lock = NULL;
static slock_t *queue_lock = NULL;
static scond_t *worker_cond = NULL;
static sthread_t *worker_thread = NULL;
static bool worker_continue = true;
/* use running_lock when touching it */
#endif
#ifdef HAVE_GCD
static unsigned gcd_queue_count = 0;
#endif
static void task_queue_msg_push(retro_task_t *task,
unsigned prio, unsigned duration,
bool flush, const char *fmt, ...)
{
char buf[1024];
va_list ap;
buf[0] = '\0';
va_start(ap, fmt);
vsnprintf(buf, sizeof(buf), fmt, ap);
va_end(ap);
if (impl_current->msg_push)
impl_current->msg_push(task, buf, prio, duration, flush);
}
static void task_queue_push_progress(retro_task_t *task)
{
#ifdef HAVE_THREADS
/* msg_push callback interacts directly with the task properties (particularly title).
* make sure another thread doesn't modify them while rendering
*/
slock_lock(property_lock);
#endif
if (task->title && (!((task->flags & RETRO_TASK_FLG_MUTE) > 0)))
{
if ((task->flags & RETRO_TASK_FLG_FINISHED) > 0)
{
if (task->error)
task_queue_msg_push(task, 1, 60, true, "%s: %s",
"Task failed", task->title);
else
task_queue_msg_push(task, 1, 60, false, "100%%: %s", task->title);
}
else
{
if (task->progress >= 0 && task->progress <= 100)
task_queue_msg_push(task, 1, 60, true, "%i%%: %s",
task->progress, task->title);
else
task_queue_msg_push(task, 1, 60, false, "%s...", task->title);
}
if (task->progress_cb)
task->progress_cb(task);
}
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
}
static void task_queue_put(task_queue_t *queue, retro_task_t *task)
{
task->next = NULL;
if (queue->front)
{
/* Make sure to insert in order - the queue is
* sorted by 'when' so items that aren't scheduled
* to run immediately are at the back of the queue.
* Items with the same 'when' are inserted after
* all the other items with the same 'when'.
* This primarily affects items with a 'when' of 0.
*/
if (queue->back)
{
if (queue->back->when > task->when)
{
retro_task_t** prev = &queue->front;
while (*prev && (*prev)->when <= task->when)
prev = &((*prev)->next);
task->next = *prev;
*prev = task;
return;
}
queue->back->next = task;
}
}
else
queue->front = task;
queue->back = task;
}
static retro_task_t *task_queue_get(task_queue_t *queue)
{
retro_task_t *task = queue->front;
if (task)
{
queue->front = task->next;
task->next = NULL;
}
return task;
}
static void retro_task_internal_gather(void)
{
retro_task_t *task = NULL;
while ((task = task_queue_get(&tasks_finished)))
{
task_queue_push_progress(task);
if (task->callback)
task->callback(task, task->task_data, task->user_data, task->error);
if (task->cleanup)
task->cleanup(task);
if (task->error)
free(task->error);
if (task->title)
free(task->title);
free(task);
}
}
static void retro_task_regular_push_running(retro_task_t *task)
{
task_queue_put(&tasks_running, task);
}
static void retro_task_regular_cancel(void *task)
{
retro_task_t *t = (retro_task_t*)task;
t->flags |= RETRO_TASK_FLG_CANCELLED;
}
static void retro_task_regular_gather(void)
{
retro_task_t *task = NULL;
retro_task_t *queue = NULL;
retro_task_t *next = NULL;
while ((task = task_queue_get(&tasks_running)))
{
task->next = queue;
queue = task;
}
for (task = queue; task; task = next)
{
next = task->next;
if (!task->when || task->when < cpu_features_get_time_usec())
{
task->handler(task);
task_queue_push_progress(task);
}
if ((task->flags & RETRO_TASK_FLG_FINISHED) > 0)
task_queue_put(&tasks_finished, task);
else
task_queue_put(&tasks_running, task);
}
retro_task_internal_gather();
}
static void retro_task_regular_wait(retro_task_condition_fn_t cond, void* data)
{
while ((tasks_running.front && !tasks_running.front->when) && (!cond || cond(data)))
retro_task_regular_gather();
}
static void retro_task_regular_reset(void)
{
retro_task_t *task = tasks_running.front;
for (; task; task = task->next)
task->flags |= RETRO_TASK_FLG_CANCELLED;
}
static void retro_task_regular_init(void) { }
static void retro_task_regular_deinit(void) { }
static bool retro_task_regular_find(retro_task_finder_t func, void *user_data)
{
retro_task_t *task = tasks_running.front;
for (; task; task = task->next)
{
if (func(task, user_data))
return true;
}
return false;
}
static void retro_task_regular_retrieve(task_retriever_data_t *data)
{
retro_task_t *task = NULL;
task_retriever_info_t *tail = NULL;
/* Parse all running tasks and handle matching handlers */
for (task = tasks_running.front; task != NULL; task = task->next)
{
task_retriever_info_t *info = NULL;
if (task->handler != data->handler)
continue;
/* Create new link */
info = (task_retriever_info_t*)
malloc(sizeof(task_retriever_info_t));
info->data = malloc(data->element_size);
info->next = NULL;
/* Call retriever function and fill info-specific data */
if (!data->func(task, info->data))
{
free(info->data);
free(info);
continue;
}
/* Add link to list */
if (data->list)
{
if (tail)
{
tail->next = info;
tail = tail->next;
}
else
tail = info;
}
else
{
data->list = info;
tail = data->list;
}
}
}
static struct retro_task_impl impl_regular = {
NULL,
retro_task_regular_push_running,
retro_task_regular_cancel,
retro_task_regular_reset,
retro_task_regular_wait,
retro_task_regular_gather,
retro_task_regular_find,
retro_task_regular_retrieve,
retro_task_regular_init,
retro_task_regular_deinit
};
#ifdef HAVE_THREADS
/* 'queue_lock' must be held for the duration of this function */
static void task_queue_remove(task_queue_t *queue, retro_task_t *task)
{
retro_task_t *t = NULL;
retro_task_t *front = queue->front;
/* Remove first element if needed */
if (task == front)
{
queue->front = task->next;
if (queue->back == task) /* if only element, also update back */
queue->back = NULL;
task->next = NULL;
return;
}
/* Parse queue */
t = front;
while (t && t->next)
{
/* Remove task and update queue */
if (t->next == task)
{
t->next = task->next;
task->next = NULL;
/* When removing the tail of the queue, update the tail pointer */
if (queue->back == task)
{
if (queue->back == task)
queue->back = t;
}
break;
}
/* Update iterator */
t = t->next;
}
}
static void retro_task_threaded_push_running(retro_task_t *task)
{
slock_lock(running_lock);
slock_lock(queue_lock);
task_queue_put(&tasks_running, task);
scond_signal(worker_cond);
slock_unlock(queue_lock);
slock_unlock(running_lock);
}
static void retro_task_threaded_cancel(void *task)
{
retro_task_t *t;
slock_lock(running_lock);
for (t = tasks_running.front; t; t = t->next)
{
if (t == task)
{
t->flags |= RETRO_TASK_FLG_CANCELLED;
break;
}
}
slock_unlock(running_lock);
}
static void retro_task_threaded_gather(void)
{
retro_task_t *task = NULL;
slock_lock(running_lock);
for (task = tasks_running.front; task; task = task->next)
task_queue_push_progress(task);
slock_unlock(running_lock);
slock_lock(finished_lock);
retro_task_internal_gather();
slock_unlock(finished_lock);
}
static void retro_task_threaded_wait(retro_task_condition_fn_t cond, void* data)
{
bool wait = false;
do
{
retro_task_threaded_gather();
slock_lock(running_lock);
wait = (tasks_running.front && !tasks_running.front->when);
slock_unlock(running_lock);
if (!wait)
{
slock_lock(finished_lock);
wait = (tasks_finished.front && !tasks_finished.front->when);
slock_unlock(finished_lock);
}
} while (wait && (!cond || cond(data)));
}
static void retro_task_threaded_reset(void)
{
retro_task_t *task = NULL;
slock_lock(running_lock);
for (task = tasks_running.front; task; task = task->next)
task->flags |= RETRO_TASK_FLG_CANCELLED;
slock_unlock(running_lock);
}
static bool retro_task_threaded_find(
retro_task_finder_t func, void *user_data)
{
retro_task_t *task = NULL;
bool result = false;
slock_lock(running_lock);
for (task = tasks_running.front; task; task = task->next)
{
if (func(task, user_data))
{
result = true;
break;
}
}
slock_unlock(running_lock);
return result;
}
static void retro_task_threaded_retrieve(task_retriever_data_t *data)
{
/* Protect access to running tasks */
slock_lock(running_lock);
/* Call regular retrieve function */
retro_task_regular_retrieve(data);
/* Release access to running tasks */
slock_unlock(running_lock);
}
static void threaded_worker(void *userdata)
{
for (;;)
{
retro_task_t *task = NULL;
bool finished = false;
slock_lock(running_lock);
if (!worker_continue)
{
slock_unlock(running_lock);
break; /* should we keep running until all tasks finished? */
}
/* Get first task to run */
if (!(task = tasks_running.front))
{
scond_wait(worker_cond, running_lock);
slock_unlock(running_lock);
continue;
}
if (task->when)
{
retro_time_t now = cpu_features_get_time_usec();
retro_time_t delay = task->when - now - 500; /* allow half a millisecond for context switching */
if (delay > 0)
{
scond_wait_timeout(worker_cond, running_lock, delay);
slock_unlock(running_lock);
continue;
}
}
slock_unlock(running_lock);
task->handler(task);
slock_lock(property_lock);
finished = ((task->flags & RETRO_TASK_FLG_FINISHED) > 0) ? true : false;
slock_unlock(property_lock);
/* Update queue */
if (!finished)
{
/* Move the task to the back of the queue */
/* mimics retro_task_threaded_push_running,
* but also includes a task_queue_remove */
slock_lock(running_lock);
slock_lock(queue_lock);
/* do nothing if only item in queue */
if (task->next)
{
task_queue_remove(&tasks_running, task);
task_queue_put(&tasks_running, task);
scond_signal(worker_cond);
}
slock_unlock(queue_lock);
slock_unlock(running_lock);
}
else
{
/* Remove task from running queue */
slock_lock(running_lock);
slock_lock(queue_lock);
task_queue_remove(&tasks_running, task);
slock_unlock(queue_lock);
slock_unlock(running_lock);
/* Add task to finished queue */
slock_lock(finished_lock);
task_queue_put(&tasks_finished, task);
slock_unlock(finished_lock);
}
}
}
static void retro_task_threaded_init(void)
{
running_lock = slock_new();
finished_lock = slock_new();
property_lock = slock_new();
queue_lock = slock_new();
worker_cond = scond_new();
slock_lock(running_lock);
worker_continue = true;
slock_unlock(running_lock);
worker_thread = sthread_create(threaded_worker, NULL);
}
static void retro_task_threaded_deinit(void)
{
slock_lock(running_lock);
worker_continue = false;
scond_signal(worker_cond);
slock_unlock(running_lock);
sthread_join(worker_thread);
scond_free(worker_cond);
slock_free(running_lock);
slock_free(finished_lock);
slock_free(property_lock);
slock_free(queue_lock);
worker_thread = NULL;
worker_cond = NULL;
running_lock = NULL;
finished_lock = NULL;
property_lock = NULL;
queue_lock = NULL;
}
static struct retro_task_impl impl_threaded = {
NULL,
retro_task_threaded_push_running,
retro_task_threaded_cancel,
retro_task_threaded_reset,
retro_task_threaded_wait,
retro_task_threaded_gather,
retro_task_threaded_find,
retro_task_threaded_retrieve,
retro_task_threaded_init,
retro_task_threaded_deinit
};
#endif
#ifdef HAVE_GCD
static void gcd_worker(retro_task_t *task)
{
bool finished = false;
slock_lock(running_lock);
if (!worker_continue)
{
gcd_queue_count--;
if (!gcd_queue_count)
scond_signal(worker_cond);
slock_unlock(running_lock);
return;
}
if (task->when)
{
retro_time_t now = cpu_features_get_time_usec();
retro_time_t delay = task->when - now - 500;
if (delay > 0)
{
dispatch_time_t after = dispatch_time(DISPATCH_TIME_NOW, delay);
dispatch_after(after, dispatch_get_global_queue(QOS_CLASS_USER_INITIATED, 0),
^{ gcd_worker(task); });
slock_unlock(running_lock);
return;
}
}
slock_unlock(running_lock);
task->handler(task);
slock_lock(property_lock);
finished = ((task->flags & RETRO_TASK_FLG_FINISHED) > 0) ? true : false;
slock_unlock(property_lock);
if (!finished)
dispatch_async(dispatch_get_global_queue(QOS_CLASS_USER_INITIATED, 0),
^{ gcd_worker(task); });
else
{
/* Remove task from running queue */
slock_lock(running_lock);
slock_lock(queue_lock);
gcd_queue_count--;
if (!gcd_queue_count)
scond_signal(worker_cond);
task_queue_remove(&tasks_running, task);
slock_unlock(queue_lock);
slock_unlock(running_lock);
/* Add task to finished queue */
slock_lock(finished_lock);
task_queue_put(&tasks_finished, task);
slock_unlock(finished_lock);
}
}
static void retro_task_gcd_push_running(retro_task_t *task)
{
slock_lock(running_lock);
slock_lock(queue_lock);
task_queue_put(&tasks_running, task);
gcd_queue_count++;
dispatch_async(dispatch_get_global_queue(QOS_CLASS_USER_INITIATED, 0),
^{ gcd_worker(task); });
slock_unlock(queue_lock);
slock_unlock(running_lock);
}
static void retro_task_gcd_wait(retro_task_condition_fn_t cond, void* data)
{
bool wait = false;
do
{
retro_task_t *task = NULL;
retro_task_threaded_gather();
slock_lock(running_lock);
wait = false;
/* can't just look at the first task like threaded, they're not sorted by when */
for (task = tasks_running.front; !wait && task; task = task->next)
wait |= !task->when;
slock_unlock(running_lock);
if (!wait)
{
slock_lock(finished_lock);
for (task = tasks_finished.front; !wait && task; task = task->next)
wait |= !task->when;
slock_unlock(finished_lock);
}
} while (wait && (!cond || cond(data)));
}
static void retro_task_gcd_init(void)
{
retro_task_t *task = NULL;
running_lock = slock_new();
finished_lock = slock_new();
property_lock = slock_new();
queue_lock = slock_new();
worker_cond = scond_new();
slock_lock(running_lock);
worker_continue = true;
for (task = tasks_running.front; task; task = task->next)
{
gcd_queue_count++;
dispatch_async(dispatch_get_global_queue(QOS_CLASS_USER_INITIATED, 0),
^{ gcd_worker(task); });
};
slock_unlock(running_lock);
}
static void retro_task_gcd_deinit(void)
{
slock_lock(running_lock);
worker_continue = false;
if (gcd_queue_count)
scond_wait(worker_cond, running_lock);
slock_unlock(running_lock);
scond_free(worker_cond);
slock_free(running_lock);
slock_free(finished_lock);
slock_free(property_lock);
slock_free(queue_lock);
worker_cond = NULL;
running_lock = NULL;
finished_lock = NULL;
property_lock = NULL;
queue_lock = NULL;
}
static struct retro_task_impl impl_gcd = {
NULL,
retro_task_gcd_push_running,
retro_task_threaded_cancel,
retro_task_threaded_reset,
retro_task_gcd_wait,
retro_task_threaded_gather,
retro_task_threaded_find,
retro_task_threaded_retrieve,
retro_task_gcd_init,
retro_task_gcd_deinit
};
#endif
/* Deinitializes the task system.
* This deinitializes the task system.
* The tasks that are running at
* the moment will stay on hold */
void task_queue_deinit(void)
{
if (impl_current)
impl_current->deinit();
impl_current = NULL;
}
void task_queue_init(bool threaded, retro_task_queue_msg_t msg_push)
{
impl_current = &impl_regular;
#ifdef HAVE_THREADS
main_thread_id = sthread_get_current_thread_id();
if (threaded)
{
task_threaded_enable = true;
#ifdef HAVE_GCD
impl_current = &impl_gcd;
#else
impl_current = &impl_threaded;
#endif
}
#endif
msg_push_bak = msg_push;
impl_current->msg_push = msg_push;
impl_current->init();
}
void task_queue_set_threaded(void)
{
task_threaded_enable = true;
}
void task_queue_unset_threaded(void)
{
task_threaded_enable = false;
}
bool task_queue_is_threaded(void)
{
return task_threaded_enable;
}
bool task_queue_find(task_finder_data_t *find_data)
{
return impl_current->find(find_data->func, find_data->userdata);
}
void task_queue_retrieve(task_retriever_data_t *data)
{
impl_current->retrieve(data);
}
void task_queue_check(void)
{
#ifdef HAVE_THREADS
bool current_threaded = (impl_current != &impl_regular);
bool want_threaded = task_threaded_enable;
if (want_threaded != current_threaded)
task_queue_deinit();
if (!impl_current)
task_queue_init(want_threaded, msg_push_bak);
#endif
impl_current->gather();
}
bool task_queue_push(retro_task_t *task)
{
/* Ignore this task if a related one is already running */
if (task->type == TASK_TYPE_BLOCKING)
{
retro_task_t *running = NULL;
bool found = false;
#ifdef HAVE_THREADS
slock_lock(queue_lock);
#endif
running = tasks_running.front;
for (; running; running = running->next)
{
if (running->type == TASK_TYPE_BLOCKING)
{
found = true;
break;
}
}
#ifdef HAVE_THREADS
slock_unlock(queue_lock);
#endif
/* skip this task, user must try again later */
if (found)
return false;
}
/* The lack of NULL checks in the following functions
* is proposital to ensure correct control flow by the users. */
impl_current->push_running(task);
return true;
}
void task_queue_wait(retro_task_condition_fn_t cond, void* data)
{
impl_current->wait(cond, data);
}
void task_queue_reset(void)
{
impl_current->reset();
}
/**
* Signals a task to end without waiting for
* it to complete. */
void task_queue_cancel_task(void *task)
{
impl_current->cancel(task);
}
void *task_queue_retriever_info_next(task_retriever_info_t **link)
{
/* Grab data and move to next link */
if (*link)
{
*link = (*link)->next;
return (*link)->data;
}
return NULL;
}
void task_queue_retriever_info_free(task_retriever_info_t *list)
{
task_retriever_info_t *info;
/* Free links including retriever-specific data */
while (list)
{
info = list->next;
free(list->data);
free(list);
list = info;
}
}
bool task_is_on_main_thread(void)
{
#ifdef HAVE_THREADS
return sthread_get_current_thread_id() == main_thread_id;
#else
return true;
#endif
}
void task_set_error(retro_task_t *task, char *error)
{
#ifdef HAVE_THREADS
slock_lock(property_lock);
#endif
task->error = error;
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
}
void task_set_progress(retro_task_t *task, int8_t progress)
{
#ifdef HAVE_THREADS
slock_lock(property_lock);
#endif
task->progress = progress;
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
}
void task_set_title(retro_task_t *task, char *title)
{
#ifdef HAVE_THREADS
slock_lock(property_lock);
#endif
task->title = title;
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
}
void task_set_data(retro_task_t *task, void *data)
{
#ifdef HAVE_THREADS
slock_lock(running_lock);
#endif
task->task_data = data;
#ifdef HAVE_THREADS
slock_unlock(running_lock);
#endif
}
void task_free_title(retro_task_t *task)
{
#ifdef HAVE_THREADS
slock_lock(property_lock);
#endif
if (task->title)
free(task->title);
task->title = NULL;
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
}
void* task_get_data(retro_task_t *task)
{
void *data = NULL;
#ifdef HAVE_THREADS
slock_lock(running_lock);
#endif
data = task->task_data;
#ifdef HAVE_THREADS
slock_unlock(running_lock);
#endif
return data;
}
void task_set_flags(retro_task_t *task, uint8_t flags, bool set)
{
#ifdef HAVE_THREADS
slock_lock(property_lock);
#endif
if (set)
task->flags |= (flags);
else
task->flags &= ~(flags);
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
}
uint8_t task_get_flags(retro_task_t *task)
{
uint8_t _flags = 0;
#ifdef HAVE_THREADS
slock_lock(property_lock);
#endif
_flags = task->flags;
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
return _flags;
}
char* task_get_error(retro_task_t *task)
{
char *error = NULL;
#ifdef HAVE_THREADS
slock_lock(property_lock);
#endif
error = task->error;
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
return error;
}
int8_t task_get_progress(retro_task_t *task)
{
int8_t progress = 0;
#ifdef HAVE_THREADS
slock_lock(property_lock);
#endif
progress = task->progress;
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
return progress;
}
char* task_get_title(retro_task_t *task)
{
char *title = NULL;
#ifdef HAVE_THREADS
slock_lock(property_lock);
#endif
title = task->title;
#ifdef HAVE_THREADS
slock_unlock(property_lock);
#endif
return title;
}
retro_task_t *task_init(void)
{
/* TODO/FIXME - static local global */
static uint32_t task_count = 0;
retro_task_t *task = (retro_task_t*)malloc(sizeof(*task));
if (!task)
return NULL;
task->handler = NULL;
task->callback = NULL;
task->cleanup = NULL;
task->flags = 0;
task->task_data = NULL;
task->user_data = NULL;
task->state = NULL;
task->error = NULL;
task->progress = 0;
task->progress_cb = NULL;
task->title = NULL;
task->type = TASK_TYPE_NONE;
task->style = TASK_STYLE_NONE;
task->ident = task_count++;
task->frontend_userdata = NULL;
task->next = NULL;
task->when = 0;
return task;
}
|