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 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348
|
Index: portaudio-v19/src/common/pa_dynload.c
===================================================================
--- portaudio-v19/src/common/pa_dynload.c (revision 0)
+++ portaudio-v19/src/common/pa_dynload.c (working copy)
@@ -0,0 +1,108 @@
+/*
+ * $Id: pa_dynlink.c 1339 2008-02-15 07:50:33Z rossb $
+ * Portable Audio I/O Library
+ * dynamic library helper
+ *
+ * Based on the Open Source API proposed by Ross Bencina
+ * Copyright (c) 2008 Ross Bencina
+ *
+ * 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.
+ */
+
+/*
+ * The text above constitutes the entire PortAudio license; however,
+ * the PortAudio community also makes the following non-binding requests:
+ *
+ * Any person wishing to distribute modifications to the Software is
+ * requested to send the modifications to the original developer so that
+ * they can be incorporated into the canonical version. It is also
+ * requested that these non-binding requests be included along with the
+ * license above.
+ */
+
+/** @file
+ @ingroup common_src
+
+ @brief dynamic library helper functions.
+*/
+
+#if defined(WIN32)
+#include <windows.h>
+#else
+#include <dlfcn.h>
+#endif
+
+#include "pa_debugprint.h"
+#include "pa_dynload.h"
+
+#if !defined(NULL)
+#define NULL 0
+#endif
+
+paDynamicLib PaDL_Load( char *name )
+{
+ paDynamicLib lib;
+
+#if defined(WIN32)
+ lib = LoadLibrary(name);
+#else
+ lib = dlopen(name, RTLD_LAZY);
+#endif
+
+ if (!lib) {
+#if defined(WIN32)
+ PA_DEBUG(("Couldn't load %s, error code: %d\n", name, GetLastError()));
+#else
+ PA_DEBUG(("Couldn't load %s, error: %s\n", name, dlerror()));
+#endif
+ }
+
+ return lib;
+}
+
+void PaDL_Unload( paDynamicLib lib )
+{
+#if defined(WIN32)
+ FreeLibrary(lib);
+#else
+ dlclose(lib);
+#endif
+}
+
+void *PaDL_FindSymbol( paDynamicLib lib, char *name )
+{
+ void *addr;
+
+#if defined(WIN32)
+ addr = (void *) GetProcAddress(lib, name);
+#else
+ addr = dlsym(lib, name);
+#endif
+
+ if (addr == NULL) {
+#if defined(WIN32)
+ PA_DEBUG(("Couldn't find %s function, error code: %d\n", name, GetLastError()));
+#else
+ PA_DEBUG(("Couldn't find %s function, error: %s\n", name, dlerror()));
+#endif
+ }
+
+ return addr;
+}
Index: portaudio-v19/src/common/pa_dynload.h
===================================================================
--- portaudio-v19/src/common/pa_dynload.h (revision 0)
+++ portaudio-v19/src/common/pa_dynload.h (working copy)
@@ -0,0 +1,136 @@
+#ifndef PA_DYNLINK_H
+#define PA_DYNLINK_H
+/*
+ * $Id: pa_dynlink.h 1339 2008-02-15 07:50:33Z rossb $
+ * Portable Audio I/O Library
+ * Dynamic library helper
+ *
+ * Based on the Open Source API proposed by Ross Bencina
+ * Copyright (c) 1999-2008 Ross Bencina, Phil Burk
+ *
+ * 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.
+ */
+
+/*
+ * The text above constitutes the entire PortAudio license; however,
+ * the PortAudio community also makes the following non-binding requests:
+ *
+ * Any person wishing to distribute modifications to the Software is
+ * requested to send the modifications to the original developer so that
+ * they can be incorporated into the canonical version. It is also
+ * requested that these non-binding requests be included along with the
+ * license above.
+ */
+
+/** @file
+ @ingroup common_src
+
+ @brief Dynamic library helper functions.
+*/
+
+
+#include "pa_debugprint.h"
+
+#if defined(WIN32)
+#include <windows.h>
+#endif
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+#if defined(WIN32)
+typedef HANDLE paDynamicLib;
+#define PADL_INLINE __inline
+#else
+typedef void * paDynamicLib;
+#define PADL_INLINE inline
+#endif
+
+paDynamicLib PaDL_Load( char *name );
+void PaDL_Unload( paDynamicLib lib );
+void *PaDL_FindSymbol( paDynamicLib lib, char *name );
+
+/* A little explanation of what's going on here.
+ *
+ * Only one source file should define PADL_DEFINE_POINTERS before including the header which
+ * defines the functions. This will cause the compiler to dump all of the function pointers
+ * to a single object file and prevent duplicate symbol definitions during link.
+ *
+ * The PADL_FUNC_WITH_RETURN and PADL_FUNC_NO_RETURN macros do two things each:
+ * 1) Define or reference the variable that contains the actual function pointer
+ * 2) Define an inline function to pass control to the real function
+ *
+ * Since the macros redefine the real functions of the same name, the compiler will make
+ * sure that the definitions are the same. If not, it will complain. For this to occur,
+ * the functions MUST be defined in an extern "C" block otherwise the compiler just thinks the
+ * functions are being overloaded.
+ *
+ * The compiler should optimize away the inline function since it just passes control to the real
+ * function and we should wind up with about the same function call we had before, only now it is
+ * safer due to the validation.
+ *
+ * The PADL_FUNC_WITH_RETURN takes 4 arguments:
+ * 1) The return type <---|
+ * 2) The function name | Taken from the real funciton prototype
+ * 3) The function arguments <---|
+ * 4) The argument list to pass to the real function
+ *
+ * The PADL_FUNC_NO_RETURN takes 3 arguments:
+ * 1) The function name <---| Taken from the FFmpeg funciton prototype
+ * 2) The function arguments <---|
+ * 3) The argument list to pass to the real function
+ *
+ * The PADL_FINDSYMBOL macro is responsible for retrieving the address of the real function
+ * and storing that address in the function pointer variable.
+ */
+#if defined(PADL_DEFINE_POINTERS)
+ #define FFX
+#else
+ #define FFX extern
+#endif
+
+#define PADL_FUNC_WITH_RETURN(r, n, a, p) \
+ FFX r (*paDynFunc_ ## n ## _fp) a; \
+ PADL_INLINE r n a \
+ { \
+ return paDynFunc_ ## n ## _fp p; \
+ } \
+
+#define PADL_FUNC_NO_RETURN(n, a, p) \
+ FFX void (*paDynFunc_ ## n ## _fp) a; \
+ PADL_INLINE void n a \
+ { \
+ paDynFunc_ ## n ## _fp p; \
+ } \
+
+#define PADL_FINDSYMBOL(l, f, e) \
+ *(void**)& paDynFunc_ ## f ## _fp = PaDL_FindSymbol(l, #f); \
+ if (!paDynFunc_ ## f ## _fp) \
+ { \
+ PA_DEBUG(("Could not locate address of %s\n", #f)); \
+ e; \
+ }
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+#endif /* PA_DYNLINK_H */
Index: portaudio-v19/src/hostapi/jack/pa_jack.c
===================================================================
--- portaudio-v19/src/hostapi/jack/pa_jack.c (revision 12233)
+++ portaudio-v19/src/hostapi/jack/pa_jack.c (working copy)
@@ -48,16 +48,22 @@
*/
#include <string.h>
-#include <regex.h>
#include <stdlib.h>
#include <stdio.h>
#include <assert.h>
#include <sys/types.h>
+#if !defined(_WIN32)
#include <unistd.h>
+#endif
#include <errno.h> /* EBUSY */
#include <signal.h> /* sig_atomic_t */
#include <math.h>
+#if defined(_WIN32)
+#include <windows.h>
+#else
#include <semaphore.h>
+#include <pthread.h>
+#endif
#include <jack/types.h>
#include <jack/jack.h>
@@ -71,7 +77,13 @@
#include "pa_ringbuffer.h"
#include "pa_debugprint.h"
+#include "pa_jack_dynload.h"
+
+#if defined(WIN32)
+static DWORD mainThread_;
+#else
static pthread_t mainThread_;
+#endif
static char *jackErr_ = NULL;
static const char* clientName_ = "PortAudio";
@@ -84,7 +96,7 @@
PaError paErr; \
if( (paErr = (expr)) < paNoError ) \
{ \
- if( (paErr) == paUnanticipatedHostError && pthread_self() == mainThread_ ) \
+ if( (paErr) == paUnanticipatedHostError && PaJack_IsOnMainThread() ) \
{ \
const char *err = jackErr_; \
if (! err ) err = "unknown error"; \
@@ -100,7 +112,7 @@
do { \
if( (expr) == 0 ) \
{ \
- if( (code) == paUnanticipatedHostError && pthread_self() == mainThread_ ) \
+ if( (code) == paUnanticipatedHostError && PaJack_IsOnMainThread() ) \
{ \
const char *err = jackErr_; \
if (!err) err = "unknown error"; \
@@ -166,8 +178,13 @@
int jack_buffer_size;
PaHostApiIndex hostApiIndex;
+#if defined(WIN32)
+ HANDLE mtx;
+ HANDLE cond;
+#else
pthread_mutex_t mtx;
pthread_cond_t cond;
+#endif
unsigned long inputBase, outputBase;
/* For dealing with the process thread */
@@ -224,7 +241,11 @@
PaUtilRingBuffer inFIFO;
PaUtilRingBuffer outFIFO;
volatile sig_atomic_t data_available;
+#if defined(WIN32)
+ HANDLE data_event;
+#else
sem_t data_semaphore;
+#endif
int bytesPerFrame;
int samplesPerFrame;
@@ -248,6 +269,178 @@
*
*/
+static void PaJack_InitMainThread( void )
+{
+#if defined(WIN32)
+ mainThread_ = GetCurrentThreadId();
+#else
+ mainThread_ = pthread_self();
+#endif
+}
+
+static int PaJack_IsOnMainThread( void )
+{
+#if defined(WIN32)
+ return GetCurrentThreadId() == mainThread_;
+#else
+ return pthread_self() == mainThread_;
+#endif
+}
+
+static void PaJack_InitHostApiMutex( PaJackHostApiRepresentation *hostApi )
+{
+#if defined(WIN32)
+ ASSERT_CALL( (hostApi->mtx = CreateMutex( NULL, FALSE, NULL )) == NULL, 0 );
+#else
+ ASSERT_CALL( pthread_mutex_init( &hostApi->mtx, NULL ), 0 );
+#endif
+}
+
+static void PaJack_TerminateHostApiMutex( PaJackHostApiRepresentation *hostApi )
+{
+#if defined(WIN32)
+ CloseHandle( hostApi->mtx );
+ hostApi->mtx = NULL;
+#else
+ ASSERT_CALL( pthread_mutex_destroy( &hostApi->mtx ), 0 );
+#endif
+}
+
+static void PaJack_LockHostAPI( PaJackHostApiRepresentation *hostApi )
+{
+#if defined(WIN32)
+ ASSERT_CALL( WaitForSingleObject( hostApi->mtx, INFINITE ), 0 );
+#else
+ ASSERT_CALL( pthread_mutex_lock( &hostApi->mtx ), 0 );
+#endif
+}
+
+/* returns 0 on success, -1 on failure ??? or similar. document make sure it's correct etc */
+static int PaJack_TryLockHostAPI( PaJackHostApiRepresentation *hostApi )
+{
+#if defined(WIN32)
+ return WaitForSingleObject( hostApi->mtx, 0 ) == WAIT_OBJECT_0 ? 0 : -1;
+#else
+ return ( pthread_mutex_trylock( &hostApi->mtx ) == 0 ? 0 : -1 );
+#endif
+}
+
+static void PaJack_UnlockHostAPI( PaJackHostApiRepresentation *hostApi )
+{
+#if defined(WIN32)
+ ReleaseMutex( hostApi->mtx );
+#else
+ ASSERT_CALL( pthread_mutex_unlock( &hostApi->mtx ), 0 );
+#endif
+}
+
+static void PaJack_InitCommandSync( PaJackHostApiRepresentation *hostApi )
+{
+#if defined(WIN32)
+ hostApi->cond = CreateEvent( NULL, FALSE, FALSE, NULL );
+ assert( hostApi->cond );
+#else
+ ASSERT_CALL( pthread_cond_init( &hostApi->cond, NULL ), 0 );
+#endif
+}
+
+static void PaJack_TerminateCommandSync( PaJackHostApiRepresentation *hostApi )
+{
+#if defined(WIN32)
+ CloseHandle( hostApi->cond );
+ hostApi->cond = NULL;
+#else
+ ASSERT_CALL( pthread_cond_init( &hostApi->cond, NULL ), 0 );
+#endif
+}
+
+static void PaJack_SignalCommandCompleted( PaJackHostApiRepresentation *hostApi )
+{
+#if defined(WIN32)
+ ASSERT_CALL( !SetEvent( hostApi->cond ), 0 );
+#else
+ ASSERT_CALL( pthread_cond_signal( &hostApi->cond ), 0 );
+#endif
+}
+
+static PaError WaitForCommandToComplete( PaJackHostApiRepresentation *hostApi )
+{
+ PaError result = paNoError;
+
+#if defined(WIN32)
+ switch( SignalObjectAndWait( hostApi->mtx, hostApi->cond, 10 * 60 * 1000, FALSE ) )
+ {
+ case WAIT_OBJECT_0:
+ result = paNoError;
+ break;
+ case WAIT_TIMEOUT:
+ result = paTimedOut;
+ break;
+ default:
+ result = paInternalError;
+ break;
+ }
+ PaJack_LockHostAPI( hostApi );
+#else
+ int err = 0;
+ PaTime pt = PaUtil_GetTime();
+ struct timespec ts;
+
+ ts.tv_sec = (time_t) floor( pt + 10 * 60 /* 10 minutes */ );
+ ts.tv_nsec = (long) ((pt - floor( pt )) * 1000000000);
+ /* XXX: Best enclose in loop, in case of spurious wakeups? */
+ err = pthread_cond_timedwait( &hostApi->cond, &hostApi->mtx, &ts );
+
+ /* Make sure we didn't time out */
+ UNLESS( err != ETIMEDOUT, paTimedOut );
+ UNLESS( !err, paInternalError );
+error:
+#endif
+
+ return result;
+}
+
+static void PaJack_InitStreamDataSync( PaJackStream *stream )
+{
+#if defined(WIN32)
+ stream->data_event = CreateEvent( NULL, FALSE, FALSE, NULL );
+ assert( stream->data_event );
+#else
+ ASSERT_CALL( sem_init( &stream->data_semaphore, 0, 0 ) == -1, 0);
+#endif
+}
+
+static void PaJack_TerminateStreamDataSync( PaJackStream *stream )
+{
+#if defined(WIN32)
+ CloseHandle( stream->data_event );
+#else
+ sem_destroy( &stream->data_semaphore );
+#endif
+}
+
+static void PaJack_SignalStreamDataAvailable( PaJackStream *stream )
+{
+#if defined(WIN32)
+ SetEvent( stream->data_event );
+#else
+ sem_post( &stream->data_semaphore );
+#endif
+}
+
+static void PaJack_WaitForStreamDataToBecomeAvailable( PaJackStream *stream )
+{
+#if defined(WIN32)
+ WaitForSingleObject( stream->data_event, INFINITE );
+#else
+ sem_wait( &stream->data_semaphore );
+#endif
+}
+
+#if defined(WIN32)
+#define snprintf _snprintf
+#endif
+
/* ---- blocking emulation layer ---- */
/* Allocate buffer. */
@@ -294,7 +487,7 @@
if( !stream->data_available )
{
stream->data_available = 1;
- sem_post( &stream->data_semaphore );
+ PaJack_SignalStreamDataAvailable( stream );
}
return paContinue;
}
@@ -333,7 +526,7 @@
}
stream->data_available = 0;
- sem_init( &stream->data_semaphore, 0, 0 );
+ PaJack_InitStreamDataSync( stream );
error:
return result;
@@ -345,7 +538,7 @@
BlockingTermFIFO( &stream->inFIFO );
BlockingTermFIFO( &stream->outFIFO );
- sem_destroy( &stream->data_semaphore );
+ PaJack_TerminateStreamDataSync( stream );
}
static PaError BlockingReadStream( PaStream* s, void *data, unsigned long numFrames )
@@ -367,7 +560,7 @@
if( stream->data_available )
stream->data_available = 0;
else
- sem_wait( &stream->data_semaphore );
+ PaJack_WaitForStreamDataToBecomeAvailable( stream );
}
}
@@ -405,7 +598,7 @@
if( stream->data_available )
stream->data_available = 0;
else
- sem_wait( &stream->data_semaphore );
+ PaJack_WaitForStreamDataToBecomeAvailable( stream );
}
}
@@ -438,7 +631,7 @@
while( PaUtil_GetRingBufferReadAvailable( &stream->outFIFO ) > 0 )
{
stream->data_available = 0;
- sem_wait( &stream->data_semaphore );
+ PaJack_WaitForStreamDataToBecomeAvailable( stream );
}
return 0;
}
@@ -469,7 +662,6 @@
char *regex_pattern = NULL;
int port_index, client_index, i;
double globalSampleRate;
- regex_t port_regex;
unsigned long numClients = 0, numPorts = 0;
char *tmp_client_name = NULL;
@@ -477,9 +669,6 @@
commonApi->info.defaultOutputDevice = paNoDevice;
commonApi->info.deviceCount = 0;
- /* Parse the list of ports, using a regex to grab the client names */
- ASSERT_CALL( regcomp( &port_regex, "^[^:]*", REG_EXTENDED ), 0 );
-
/* since we are rebuilding the list of devices, free all memory
* associated with the previous list */
PaUtil_FreeAllAllocations( jackApi->deviceInfoMemory );
@@ -492,7 +681,7 @@
* according to the client_name:port_name convention (which is
* enforced by jackd)
* A: If jack_get_ports returns NULL, there's nothing for us to do */
- UNLESS( (jack_ports = jack_get_ports( jackApi->jack_client, "", "", 0 )) && jack_ports[0], paNoError );
+ UNLESS( (jack_ports = jack_get_ports( jackApi->jack_client, "^[^:]*", "", 0 )) && jack_ports[0], paNoError );
/* Find number of ports */
while( jack_ports[numPorts] )
++numPorts;
@@ -504,16 +693,15 @@
for( numClients = 0, port_index = 0; jack_ports[port_index] != NULL; port_index++ )
{
int client_seen = FALSE;
- regmatch_t match_info;
const char *port = jack_ports[port_index];
+ const char *colon;
/* extract the client name from the port name, using a regex
* that parses the clientname:portname syntax */
- UNLESS( !regexec( &port_regex, port, 1, &match_info, 0 ), paInternalError );
- assert(match_info.rm_eo - match_info.rm_so < jack_client_name_size());
- memcpy( tmp_client_name, port + match_info.rm_so,
- match_info.rm_eo - match_info.rm_so );
- tmp_client_name[match_info.rm_eo - match_info.rm_so] = '\0';
+ UNLESS( colon = strchr(port, ':'), paInternalError );
+ assert(colon - port < jack_client_name_size());
+ memcpy( tmp_client_name, port, colon - port );
+ tmp_client_name[colon - port] = '\0';
/* do we know about this port's client yet? */
for( i = 0; i < numClients; i++ )
@@ -599,7 +787,7 @@
* We don't care what they are, we just care how many */
curDevInfo->maxInputChannels++;
}
- free(clientPorts);
+ jack_free(clientPorts);
}
/* ... what are your input ports (that we could output to)? */
@@ -620,7 +808,7 @@
* We don't care what they are, we just care how many */
curDevInfo->maxOutputChannels++;
}
- free(clientPorts);
+ jack_free(clientPorts);
}
/* Add this client to the list of devices */
@@ -633,8 +821,7 @@
}
error:
- regfree( &port_regex );
- free( jack_ports );
+ jack_free( jack_ports );
return result;
}
@@ -647,7 +834,7 @@
static void JackErrorCallback( const char *msg )
{
- if( pthread_self() == mainThread_ )
+ if( PaJack_IsOnMainThread() )
{
assert( msg );
jackErr_ = realloc( jackErr_, strlen( msg ) + 1 );
@@ -667,11 +854,10 @@
}
/* Make sure that the main thread doesn't get stuck waiting on the condition */
- ASSERT_CALL( pthread_mutex_lock( &jackApi->mtx ), 0 );
+ PaJack_LockHostAPI( jackApi );
jackApi->jackIsDown = 1;
- ASSERT_CALL( pthread_cond_signal( &jackApi->cond ), 0 );
- ASSERT_CALL( pthread_mutex_unlock( &jackApi->mtx ), 0 );
-
+ PaJack_SignalCommandCompleted( jackApi );
+ PaJack_UnlockHostAPI( jackApi );
}
static int JackSrCb( jack_nframes_t nframes, void *arg )
@@ -706,18 +892,20 @@
PaHostApiIndex hostApiIndex )
{
PaError result = paNoError;
- PaJackHostApiRepresentation *jackHostApi;
+ PaJackHostApiRepresentation *jackHostApi = NULL;
int activated = 0;
jack_status_t jackStatus = 0;
*hostApi = NULL; /* Initialize to NULL */
+ UNLESS( PaJack_Load(), paNoError );
+
UNLESS( jackHostApi = (PaJackHostApiRepresentation*)
PaUtil_AllocateMemory( sizeof(PaJackHostApiRepresentation) ), paInsufficientMemory );
UNLESS( jackHostApi->deviceInfoMemory = PaUtil_CreateAllocationGroup(), paInsufficientMemory );
- mainThread_ = pthread_self();
- ASSERT_CALL( pthread_mutex_init( &jackHostApi->mtx, NULL ), 0 );
- ASSERT_CALL( pthread_cond_init( &jackHostApi->cond, NULL ), 0 );
+ PaJack_InitMainThread();
+ PaJack_InitHostApiMutex( jackHostApi );
+ PaJack_InitCommandSync( jackHostApi );
/* Try to become a client of the JACK server. If we cannot do
* this, then this API cannot be used.
@@ -803,6 +991,9 @@
PaUtil_FreeMemory( jackHostApi );
}
+
+ PaJack_Unload();
+
return result;
}
@@ -815,8 +1006,8 @@
* client is not allowed to have any ports connected */
ASSERT_CALL( jack_deactivate( jackHostApi->jack_client ), 0 );
- ASSERT_CALL( pthread_mutex_destroy( &jackHostApi->mtx ), 0 );
- ASSERT_CALL( pthread_cond_destroy( &jackHostApi->cond ), 0 );
+ PaJack_TerminateHostApiMutex( jackHostApi );
+ PaJack_TerminateCommandSync( jackHostApi );
ASSERT_CALL( jack_client_close( jackHostApi->jack_client ), 0 );
@@ -830,6 +1021,8 @@
free( jackErr_ );
jackErr_ = NULL;
+
+ PaJack_Unload();
}
static PaError IsFormatSupported( struct PaUtilHostApiRepresentation *hostApi,
@@ -997,39 +1190,19 @@
PaUtil_FreeMemory( stream );
}
-static PaError WaitCondition( PaJackHostApiRepresentation *hostApi )
-{
- PaError result = paNoError;
- int err = 0;
- PaTime pt = PaUtil_GetTime();
- struct timespec ts;
-
- ts.tv_sec = (time_t) floor( pt + 10 * 60 /* 10 minutes */ );
- ts.tv_nsec = (long) ((pt - floor( pt )) * 1000000000);
- /* XXX: Best enclose in loop, in case of spurious wakeups? */
- err = pthread_cond_timedwait( &hostApi->cond, &hostApi->mtx, &ts );
-
- /* Make sure we didn't time out */
- UNLESS( err != ETIMEDOUT, paTimedOut );
- UNLESS( !err, paInternalError );
-
-error:
- return result;
-}
-
static PaError AddStream( PaJackStream *stream )
{
PaError result = paNoError;
PaJackHostApiRepresentation *hostApi = stream->hostApi;
/* Add to queue of streams that should be processed */
- ASSERT_CALL( pthread_mutex_lock( &hostApi->mtx ), 0 );
+ PaJack_LockHostAPI( hostApi );
if( !hostApi->jackIsDown )
{
hostApi->toAdd = stream;
/* Unlock mutex and await signal from processing thread */
- result = WaitCondition( stream->hostApi );
+ result = WaitForCommandToComplete( stream->hostApi );
}
- ASSERT_CALL( pthread_mutex_unlock( &hostApi->mtx ), 0 );
+ PaJack_UnlockHostAPI( hostApi );
ENSURE_PA( result );
UNLESS( !hostApi->jackIsDown, paDeviceUnavailable );
@@ -1045,14 +1218,14 @@
PaJackHostApiRepresentation *hostApi = stream->hostApi;
/* Add to queue over streams that should be processed */
- ASSERT_CALL( pthread_mutex_lock( &hostApi->mtx ), 0 );
+ PaJack_LockHostAPI( hostApi );
if( !hostApi->jackIsDown )
{
hostApi->toRemove = stream;
/* Unlock mutex and await signal from processing thread */
- result = WaitCondition( stream->hostApi );
+ result = WaitForCommandToComplete( stream->hostApi );
}
- ASSERT_CALL( pthread_mutex_unlock( &hostApi->mtx ), 0 );
+ PaJack_UnlockHostAPI( hostApi );
ENSURE_PA( result );
error:
@@ -1165,7 +1338,7 @@
stream->isBlockingStream = !streamCallback;
if( stream->isBlockingStream )
{
- float latency = 0.001; /* 1ms is the absolute minimum we support */
+ PaTime latency = 0.001f; /* 1ms is the absolute minimum we support */
int minimum_buffer_frames = 0;
if( inputParameters && inputParameters->suggestedLatency > latency )
@@ -1245,7 +1418,7 @@
break;
}
}
- free( jack_ports );
+ jack_free( jack_ports );
UNLESS( !err, paInsufficientMemory );
/* Fewer ports than expected? */
@@ -1269,7 +1442,7 @@
break;
}
}
- free( jack_ports );
+ jack_free( jack_ports );
UNLESS( !err , paInsufficientMemory );
/* Fewer ports than expected? */
@@ -1423,9 +1596,9 @@
const double jackSr = jack_get_sample_rate( hostApi->jack_client );
int err;
- if( (err = pthread_mutex_trylock( &hostApi->mtx )) != 0 )
+ if( (err = PaJack_TryLockHostAPI( hostApi )) != 0 )
{
- assert( err == EBUSY );
+ assert( err );
return paNoError;
}
@@ -1484,11 +1657,11 @@
if( queueModified )
{
/* Signal that we've done what was asked of us */
- ASSERT_CALL( pthread_cond_signal( &hostApi->cond ), 0 );
+ PaJack_SignalCommandCompleted( hostApi );
}
error:
- ASSERT_CALL( pthread_mutex_unlock( &hostApi->mtx ), 0 );
+ PaJack_UnlockHostAPI( hostApi );
return result;
}
@@ -1517,7 +1690,7 @@
if( stream->doStart )
{
/* If we can't obtain a lock, we'll try next time */
- int err = pthread_mutex_trylock( &stream->hostApi->mtx );
+ int err = PaJack_TryLockHostAPI( stream->hostApi );
if( !err )
{
if( stream->doStart ) /* Could potentially change before obtaining the lock */
@@ -1525,12 +1698,12 @@
stream->is_active = 1;
stream->doStart = 0;
PA_DEBUG(( "%s: Starting stream\n", __FUNCTION__ ));
- ASSERT_CALL( pthread_cond_signal( &stream->hostApi->cond ), 0 );
+ PaJack_SignalCommandCompleted( hostApi );
stream->callbackResult = paContinue;
stream->isSilenced = 0;
}
- ASSERT_CALL( pthread_mutex_unlock( &stream->hostApi->mtx ), 0 );
+ PaJack_UnlockHostAPI( stream->hostApi );
}
else
assert( err == EBUSY );
@@ -1568,15 +1741,15 @@
if( !stream->is_active ) /* Ok, signal to the main thread that we've carried out the operation */
{
/* If we can't obtain a lock, we'll try next time */
- int err = pthread_mutex_trylock( &stream->hostApi->mtx );
+ int err = PaJack_TryLockHostAPI( stream->hostApi );
if( !err )
{
stream->doStop = stream->doAbort = 0;
- ASSERT_CALL( pthread_cond_signal( &stream->hostApi->cond ), 0 );
- ASSERT_CALL( pthread_mutex_unlock( &stream->hostApi->mtx ), 0 );
+ PaJack_SignalCommandCompleted( stream->hostApi );
+ PaJack_UnlockHostAPI( stream->hostApi );
}
else
- assert( err == EBUSY );
+ assert( err );
}
}
}
@@ -1622,11 +1795,11 @@
/* Enable processing */
- ASSERT_CALL( pthread_mutex_lock( &stream->hostApi->mtx ), 0 );
+ PaJack_LockHostAPI( stream->hostApi );
stream->doStart = 1;
/* Wait for stream to be started */
- result = WaitCondition( stream->hostApi );
+ result = WaitForCommandToComplete( stream->hostApi );
/*
do
{
@@ -1638,7 +1811,7 @@
stream->doStart = 0;
stream->is_active = 0; /* Cancel any processing */
}
- ASSERT_CALL( pthread_mutex_unlock( &stream->hostApi->mtx ), 0 );
+ PaJack_UnlockHostAPI( stream->hostApi );
ENSURE_PA( result );
@@ -1657,15 +1830,15 @@
if( stream->isBlockingStream )
BlockingWaitEmpty ( stream );
- ASSERT_CALL( pthread_mutex_lock( &stream->hostApi->mtx ), 0 );
+ PaJack_LockHostAPI( stream->hostApi );
if( abort )
stream->doAbort = 1;
else
stream->doStop = 1;
/* Wait for stream to be stopped */
- result = WaitCondition( stream->hostApi );
- ASSERT_CALL( pthread_mutex_unlock( &stream->hostApi->mtx ), 0 );
+ result = WaitForCommandToComplete( stream->hostApi );
+ PaJack_UnlockHostAPI( stream->hostApi );
ENSURE_PA( result );
UNLESS( !stream->is_active, paInternalError );
Index: portaudio-v19/src/hostapi/jack/pa_jack_dynload.c
===================================================================
--- portaudio-v19/src/hostapi/jack/pa_jack_dynload.c (revision 0)
+++ portaudio-v19/src/hostapi/jack/pa_jack_dynload.c (working copy)
@@ -0,0 +1,162 @@
+/*
+ * $Id: pa_jack.c 1668 2011-05-02 17:07:11Z rossb $
+ * PortAudio Portable Real-Time Audio Library
+ * Latest Version at: http://www.portaudio.com
+ * JACK Implementation by Joshua Haberman
+ *
+ * Copyright (c) 2004 Stefan Westerfeld <stefan@space.twc.de>
+ * Copyright (c) 2004 Arve Knudsen <aknuds-1@broadpark.no>
+ * Copyright (c) 2002 Joshua Haberman <joshua@haberman.com>
+ *
+ * Based on the Open Source API proposed by Ross Bencina
+ * Copyright (c) 1999-2002 Ross Bencina, Phil Burk
+ *
+ * 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.
+ */
+
+/*
+ * The text above constitutes the entire PortAudio license; however,
+ * the PortAudio community also makes the following non-binding requests:
+ *
+ * Any person wishing to distribute modifications to the Software is
+ * requested to send the modifications to the original developer so that
+ * they can be incorporated into the canonical version. It is also
+ * requested that these non-binding requests be included along with the
+ * license above.
+ */
+
+/**
+ @file
+ @ingroup hostapi_src
+*/
+
+#define PADL_DEFINE_POINTERS
+#include "pa_dynload.h"
+#include "pa_jack_dynload.h"
+
+#if defined(PA_DYNAMIC_JACK)
+static paDynamicLib jacklib = NULL;
+#endif
+
+int PaJack_Load(void)
+{
+#if !defined(PA_DYNAMIC_JACK)
+ return 1;
+#else
+
+#if defined(__APPLE__)
+ jacklib = PaDL_Load("libjack.dylib");
+#elif defined(_WIN64)
+ jacklib = PaDL_Load("libjack64.dll");
+#elif defined(WIN32)
+ jacklib = PaDL_Load("libjack.dll");
+#else
+ jacklib = PaDL_Load("libjack.so");
+#endif
+
+ if (!jacklib) {
+ return 0;
+ }
+
+ PADL_FINDSYMBOL(jacklib, jack_client_name_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_client_name_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_ports, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_sample_rate, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_ports, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_by_name, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_get_latency, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_free, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_ports, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_by_name, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_get_latency, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_free, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_client_open, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_on_shutdown, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_set_error_function, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_buffer_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_set_sample_rate_callback, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_set_xrun_callback, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_set_process_callback, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_activate, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_deactivate, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_client_close, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_deactivate, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_client_close, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_sample_rate, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_unregister, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_unregister, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_name_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_client_name_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_sample_rate, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_sample_rate, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_name_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_register, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_name_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_register, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_ports, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_by_name, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_free, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_ports, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_by_name, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_free, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_get_latency, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_buffer_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_get_latency, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_buffer_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_frame_time, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_sample_rate, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_frame_time, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_get_latency, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_get_latency, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_get_buffer, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_get_buffer, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_sample_rate, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_get_buffer, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_connect, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_name, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_connect, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_name, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_connected, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_disconnect, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_connected, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_port_disconnect, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_frame_time, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_client_name_size, goto error);
+ PADL_FINDSYMBOL(jacklib, jack_get_client_name, goto error);
+
+ return 1;
+
+error:
+
+ PaJack_Unload();
+
+ return 0;
+#endif
+}
+
+void PaJack_Unload(void)
+{
+#if defined(PA_DYNAMIC_JACK)
+ if (jacklib) {
+ PaDL_Unload(jacklib);
+ jacklib = NULL;
+ }
+#endif
+}
Index: portaudio-v19/src/hostapi/jack/pa_jack_dynload.h
===================================================================
--- portaudio-v19/src/hostapi/jack/pa_jack_dynload.h (revision 0)
+++ portaudio-v19/src/hostapi/jack/pa_jack_dynload.h (working copy)
@@ -0,0 +1,224 @@
+/*
+ * $Id: pa_jack.c 1668 2011-05-02 17:07:11Z rossb $
+ * PortAudio Portable Real-Time Audio Library
+ * Latest Version at: http://www.portaudio.com
+ * JACK Implementation by Joshua Haberman
+ *
+ * Copyright (c) 2004 Stefan Westerfeld <stefan@space.twc.de>
+ * Copyright (c) 2004 Arve Knudsen <aknuds-1@broadpark.no>
+ * Copyright (c) 2002 Joshua Haberman <joshua@haberman.com>
+ *
+ * Based on the Open Source API proposed by Ross Bencina
+ * Copyright (c) 1999-2002 Ross Bencina, Phil Burk
+ *
+ * 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.
+ */
+
+/*
+ * The text above constitutes the entire PortAudio license; however,
+ * the PortAudio community also makes the following non-binding requests:
+ *
+ * Any person wishing to distribute modifications to the Software is
+ * requested to send the modifications to the original developer so that
+ * they can be incorporated into the canonical version. It is also
+ * requested that these non-binding requests be included along with the
+ * license above.
+ */
+
+/**
+ @file
+ @ingroup hostapi_src
+*/
+#ifndef INCLUDED_PA_JACK_DYNLINK_H
+#define INCLUDED_PA_JACK_DYNLINK_H
+
+#include <jack/jack.h>
+
+#include "pa_dynload.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif /* __cplusplus */
+
+#if defined(PA_DYNAMIC_JACK)
+
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_activate,
+ (jack_client_t *client),
+ (client)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_client_close,
+ (jack_client_t *client),
+ (client)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_client_name_size,
+ (void),
+ ()
+);
+PADL_FUNC_WITH_RETURN(
+ jack_client_t *,
+ jack_client_open,
+ (const char *client_name, jack_options_t options, jack_status_t *status, ...),
+ (client_name, options, status)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_connect,
+ (jack_client_t *client, const char *source_port, const char *destination_port),
+ (client, source_port, destination_port)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_deactivate,
+ (jack_client_t *client),
+ (client)
+);
+PADL_FUNC_WITH_RETURN(
+ jack_nframes_t,
+ jack_frame_time,
+ (const jack_client_t *client),
+ (client)
+);
+PADL_FUNC_NO_RETURN(
+ jack_free,
+ (void *ptr),
+ (ptr)
+);
+PADL_FUNC_WITH_RETURN(
+ jack_nframes_t,
+ jack_get_buffer_size,
+ (jack_client_t *client),
+ (client)
+);
+PADL_FUNC_WITH_RETURN(
+ char *,
+ jack_get_client_name,
+ (jack_client_t *client),
+ (client)
+);
+PADL_FUNC_WITH_RETURN(
+ const char **,
+ jack_get_ports,
+ (jack_client_t *client, const char *port_name_pattern, const char *type_name_pattern, unsigned long flags),
+ (client, port_name_pattern, type_name_pattern, flags)
+);
+PADL_FUNC_WITH_RETURN(
+ jack_nframes_t,
+ jack_get_sample_rate,
+ (jack_client_t *client),
+ (client)
+);
+PADL_FUNC_NO_RETURN(
+ jack_on_shutdown,
+ (jack_client_t *client, JackShutdownCallback shutdown_callback, void *arg),
+ (client, shutdown_callback, arg)
+);
+PADL_FUNC_WITH_RETURN(
+ jack_port_t *,
+ jack_port_by_name,
+ (jack_client_t *client, const char *port_name),
+ (client, port_name)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_port_connected,
+ (const jack_port_t *port),
+ (port)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_port_disconnect,
+ (jack_client_t *client, jack_port_t *port),
+ (client, port)
+);
+PADL_FUNC_WITH_RETURN(
+ void *,
+ jack_port_get_buffer,
+ (jack_port_t *port, jack_nframes_t frames),
+ (port, frames)
+);
+PADL_FUNC_WITH_RETURN(
+ jack_nframes_t,
+ jack_port_get_latency,
+ (jack_port_t *port),
+ (port)
+);
+PADL_FUNC_WITH_RETURN(
+ const char *,
+ jack_port_name,
+ (const jack_port_t *port),
+ (port)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_port_name_size,
+ (void),
+ ()
+);
+PADL_FUNC_WITH_RETURN(
+ jack_port_t *,
+ jack_port_register,
+ (jack_client_t *client, const char *port_name, const char *port_type, unsigned long flags, unsigned long buffer_size),
+ (client, port_name, port_type, flags, buffer_size)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_port_unregister,
+ (jack_client_t *client, jack_port_t *port),
+ (client, port)
+);
+PADL_FUNC_NO_RETURN(
+ jack_set_error_function,
+ (void (*func)(const char *)),
+ (func)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_set_process_callback,
+ (jack_client_t *client, JackProcessCallback process_callback, void *arg),
+ (client, process_callback, arg)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_set_sample_rate_callback,
+ (jack_client_t *client, JackSampleRateCallback srate_callback, void *arg),
+ (client, srate_callback, arg)
+);
+PADL_FUNC_WITH_RETURN(
+ int,
+ jack_set_xrun_callback,
+ (jack_client_t *client, JackXRunCallback xrun_callback, void *arg),
+ (client, xrun_callback, arg)
+);
+#endif /* PA_DYNAMIC_JACK */
+
+int PaJack_Load(void);
+void PaJack_Unload(void);
+
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+#endif /* INCLUDED_PA_JACK_DYNLINK_H */
Index: portaudio-v19/src/os/win/pa_win_hostapis.c
===================================================================
--- portaudio-v19/src/os/win/pa_win_hostapis.c (revision 12233)
+++ portaudio-v19/src/os/win/pa_win_hostapis.c (working copy)
@@ -63,6 +63,7 @@
PaError PaAsio_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
PaError PaWinWdm_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
PaError PaWasapi_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
+PaError PaJack_Initialize( PaUtilHostApiRepresentation **hostApi, PaHostApiIndex index );
#ifdef __cplusplus
}
@@ -92,6 +93,10 @@
PaWinWdm_Initialize,
#endif
+#if PA_USE_JACK
+ PaJack_Initialize,
+#endif
+
#if PA_USE_SKELETON
PaSkeleton_Initialize, /* just for testing. last in list so it isn't marked as default. */
#endif
|