jack2 codebase
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

326 lines
22KB

  1. //=============================================================================
  2. //
  3. // jackWeakAPI partly based on Julien Pommier (PianoTeq : http://www.pianoteq.com/) code.
  4. //
  5. // Copyright (C) 2002-2007 Werner Schweer and others
  6. // Copyright (C) 2009 Grame
  7. // This program is free software; you can redistribute it and/or modify
  8. // it under the terms of the GNU Lesser General Public License as published by
  9. // the Free Software Foundation; either version 2.1 of the License, or
  10. // (at your option) any later version.
  11. // This program is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Lesser General Public License for more details.
  15. // You should have received a copy of the GNU Lesser General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. #include <jack/jack.h>
  19. #include <jack/session.h>
  20. #include <jack/thread.h>
  21. #include <jack/midiport.h>
  22. #include <math.h>
  23. #ifndef WIN32
  24. #include <dlfcn.h>
  25. #endif
  26. #include <stdlib.h>
  27. #include <stdio.h>
  28. /* dynamically load libjack and forward all registered calls to libjack
  29. (similar to what relaytool is trying to do, but more portably..)
  30. */
  31. typedef void (*print_function)(const char *);
  32. typedef void *(*thread_routine)(void*);
  33. static int libjack_is_present = 0; // public symbol, similar to what relaytool does.
  34. #ifdef WIN32
  35. static HMODULE libjack_handle = 0;
  36. #else
  37. static void *libjack_handle = 0;
  38. #endif
  39. #ifndef WIN32
  40. static void __attribute__((constructor)) tryload_libjack()
  41. #else
  42. void tryload_libjack()
  43. #endif
  44. {
  45. if (getenv("SKIP_LIBJACK") == 0) { // just in case libjack is causing troubles..
  46. #ifdef __APPLE__
  47. libjack_handle = dlopen("libjack.0.dylib", RTLD_LAZY);
  48. if (!libjack_handle) {
  49. fprintf(stderr, "dlopen error : %s \n", dlerror());
  50. }
  51. libjack_handle = dlopen("/usr/local/lib/libjack.0.dylib", RTLD_LAZY);
  52. if (!libjack_handle) {
  53. fprintf(stderr, "dlopen error : %s \n", dlerror());
  54. }
  55. #elif defined(WIN32)
  56. #ifdef _WIN64
  57. libjack_handle = LoadLibraryA("libjack64.dll");
  58. #else
  59. libjack_handle = LoadLibraryA("libjack.dll");
  60. #endif
  61. if (!libjack_handle) {
  62. char* lpMsgBuf;
  63. FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,NULL,GetLastError(),MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),(LPTSTR) &lpMsgBuf,0,NULL );
  64. fprintf(stderr, "Failed to load libjack DLL: %d", lpMsgBuf);
  65. }
  66. #else
  67. libjack_handle = dlopen("libjack.so.0", RTLD_LAZY);
  68. #endif
  69. }
  70. libjack_is_present = (libjack_handle != 0);
  71. }
  72. void *load_jack_function(const char *fn_name)
  73. {
  74. void *fn = 0;
  75. if (!libjack_handle) {
  76. tryload_libjack();
  77. if (!libjack_handle) {
  78. fprintf (stderr, "libjack not found, so do not try to load %s ffs !\n", fn_name);
  79. return 0;
  80. }
  81. }
  82. #ifdef WIN32
  83. fn = (void*)GetProcAddress(libjack_handle, fn_name);
  84. #else
  85. fn = dlsym(libjack_handle, fn_name);
  86. #endif
  87. if (!fn) {
  88. #ifdef WIN32
  89. char* lpMsgBuf;
  90. FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,NULL,GetLastError(),MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),(LPTSTR) &lpMsgBuf,0,NULL );
  91. fprintf(stderr, "could not GetProcAddress( %s ), %s \n", fn_name, lpMsgBuf);
  92. #else
  93. fprintf(stderr, "could not dlsym( %s ), %s \n", fn_name, dlerror());
  94. #endif
  95. }
  96. return fn;
  97. }
  98. #define DECL_FUNCTION(return_type, fn_name, arguments_types, arguments) \
  99. typedef return_type (*fn_name##_ptr_t)arguments_types; \
  100. return_type fn_name arguments_types { \
  101. static fn_name##_ptr_t fn = 0; \
  102. if (fn == 0) { fn = (fn_name##_ptr_t)load_jack_function(#fn_name); } \
  103. if (fn) return (*fn)arguments; \
  104. else return (return_type)-1; \
  105. }
  106. #define DECL_FUNCTION_NULL(return_type, fn_name, arguments_types, arguments) \
  107. typedef return_type (*fn_name##_ptr_t)arguments_types; \
  108. return_type fn_name arguments_types { \
  109. static fn_name##_ptr_t fn = 0; \
  110. if (fn == 0) { fn = (fn_name##_ptr_t)load_jack_function(#fn_name); } \
  111. if (fn) return (*fn)arguments; \
  112. else return (return_type)0; \
  113. }
  114. #define DECL_VOID_FUNCTION(fn_name, arguments_types, arguments) \
  115. typedef void (*fn_name##_ptr_t)arguments_types; \
  116. void fn_name arguments_types { \
  117. static fn_name##_ptr_t fn = 0; \
  118. if (fn == 0) { fn = (fn_name##_ptr_t)load_jack_function(#fn_name); } \
  119. if (fn) (*fn)arguments; \
  120. }
  121. DECL_VOID_FUNCTION(jack_get_version, (int *major_ptr, int *minor_ptr, int *micro_ptr, int *proto_ptr), (major_ptr, minor_ptr, micro_ptr, proto_ptr));
  122. DECL_FUNCTION_NULL(const char *, jack_get_version_string, (), ());
  123. DECL_FUNCTION_NULL(jack_client_t *, jack_client_open, (const char *client_name, jack_options_t options, jack_status_t *status, ...),
  124. (client_name, options, status));
  125. DECL_FUNCTION(int, jack_client_close, (jack_client_t *client), (client));
  126. DECL_FUNCTION_NULL(jack_client_t *, jack_client_new, (const char *client_name), (client_name));
  127. DECL_FUNCTION(int, jack_client_name_size, (), ());
  128. DECL_FUNCTION_NULL(char*, jack_get_client_name, (jack_client_t *client), (client));
  129. DECL_FUNCTION(int, jack_internal_client_new, (const char *client_name,
  130. const char *load_name,
  131. const char *load_init), (client_name, load_name, load_init));
  132. DECL_VOID_FUNCTION(jack_internal_client_close, (const char *client_name), (client_name));
  133. DECL_FUNCTION(int, jack_is_realtime, (jack_client_t *client), (client));
  134. DECL_VOID_FUNCTION(jack_on_shutdown, (jack_client_t *client, JackShutdownCallback shutdown_callback, void *arg), (client, shutdown_callback, arg));
  135. DECL_VOID_FUNCTION(jack_on_info_shutdown, (jack_client_t* client, JackInfoShutdownCallback shutdown_callback, void* arg), (client, shutdown_callback, arg));
  136. DECL_FUNCTION(int, jack_set_process_callback, (jack_client_t *client,
  137. JackProcessCallback process_callback,
  138. void *arg), (client, process_callback, arg));
  139. DECL_FUNCTION(jack_nframes_t, jack_thread_wait, (jack_client_t *client, int status), (client, status));
  140. //
  141. DECL_FUNCTION(jack_nframes_t, jack_cycle_wait, (jack_client_t *client), (client));
  142. DECL_VOID_FUNCTION(jack_cycle_signal, (jack_client_t *client, int status), (client, status));
  143. DECL_FUNCTION(int, jack_set_process_thread, (jack_client_t *client,
  144. JackThreadCallback fun,
  145. void *arg), (client, fun, arg));
  146. DECL_FUNCTION(int, jack_set_thread_init_callback, (jack_client_t *client,
  147. JackThreadInitCallback thread_init_callback,
  148. void *arg), (client, thread_init_callback, arg));
  149. DECL_FUNCTION(int, jack_set_freewheel_callback, (jack_client_t *client,
  150. JackFreewheelCallback freewheel_callback,
  151. void *arg), (client, freewheel_callback, arg));
  152. DECL_FUNCTION(int, jack_set_freewheel, (jack_client_t *client, int onoff), (client, onoff));
  153. DECL_FUNCTION(int, jack_set_buffer_size, (jack_client_t *client, jack_nframes_t nframes), (client, nframes));
  154. DECL_FUNCTION(int, jack_set_buffer_size_callback, (jack_client_t *client,
  155. JackBufferSizeCallback bufsize_callback,
  156. void *arg), (client, bufsize_callback, arg));
  157. DECL_FUNCTION(int, jack_set_sample_rate_callback, (jack_client_t *client,
  158. JackSampleRateCallback srate_callback,
  159. void *arg), (client, srate_callback, arg));
  160. DECL_FUNCTION(int, jack_set_client_registration_callback, (jack_client_t *client,
  161. JackClientRegistrationCallback registration_callback,
  162. void *arg), (client, registration_callback, arg));
  163. DECL_FUNCTION(int, jack_set_port_registration_callback, (jack_client_t *client,
  164. JackPortRegistrationCallback registration_callback,
  165. void *arg), (client, registration_callback, arg));
  166. DECL_FUNCTION(int, jack_set_port_connect_callback, (jack_client_t *client,
  167. JackPortConnectCallback connect_callback,
  168. void *arg), (client, connect_callback, arg));
  169. DECL_FUNCTION(int, jack_set_port_rename_callback, (jack_client_t *client,
  170. JackPortRenameCallback rename_callback,
  171. void *arg), (client, rename_callback, arg));
  172. DECL_FUNCTION(int, jack_set_graph_order_callback, (jack_client_t *client,
  173. JackGraphOrderCallback graph_callback,
  174. void *arg), (client, graph_callback, arg));
  175. DECL_FUNCTION(int, jack_set_xrun_callback, (jack_client_t *client,
  176. JackXRunCallback xrun_callback,
  177. void *arg), (client, xrun_callback, arg));
  178. DECL_FUNCTION(int, jack_set_latency_callback, (jack_client_t *client,
  179. JackLatencyCallback latency_callback,
  180. void *arg), (client, latency_callback, arg));
  181. DECL_FUNCTION(int, jack_activate, (jack_client_t *client), (client));
  182. DECL_FUNCTION(int, jack_deactivate, (jack_client_t *client), (client));
  183. DECL_FUNCTION_NULL(jack_port_t *, jack_port_register, (jack_client_t *client, const char *port_name, const char *port_type,
  184. unsigned long flags, unsigned long buffer_size),
  185. (client, port_name, port_type, flags, buffer_size));
  186. DECL_FUNCTION(int, jack_port_unregister, (jack_client_t *client, jack_port_t* port), (client, port));
  187. DECL_FUNCTION_NULL(void *, jack_port_get_buffer, (jack_port_t *port, jack_nframes_t nframes), (port, nframes));
  188. DECL_FUNCTION_NULL(const char*, jack_port_name, (const jack_port_t *port), (port));
  189. DECL_FUNCTION_NULL(const char*, jack_port_short_name, (const jack_port_t *port), (port));
  190. DECL_FUNCTION(int, jack_port_flags, (const jack_port_t *port), (port));
  191. DECL_FUNCTION_NULL(const char*, jack_port_type, (const jack_port_t *port), (port));
  192. DECL_FUNCTION(jack_port_type_id_t, jack_port_type_id, (const jack_port_t *port), (port));
  193. DECL_FUNCTION(int, jack_port_is_mine, (const jack_client_t *client, const jack_port_t* port), (client, port));
  194. DECL_FUNCTION(int, jack_port_connected, (const jack_port_t *port), (port));
  195. DECL_FUNCTION(int, jack_port_connected_to, (const jack_port_t *port, const char *port_name), (port, port_name));
  196. DECL_FUNCTION_NULL(const char**, jack_port_get_connections, (const jack_port_t *port), (port));
  197. DECL_FUNCTION_NULL(const char**, jack_port_get_all_connections, (const jack_client_t *client,const jack_port_t *port), (client, port));
  198. DECL_FUNCTION(int, jack_port_tie, (jack_port_t *src, jack_port_t *dst), (src, dst));
  199. DECL_FUNCTION(int, jack_port_untie, (jack_port_t *port), (port));
  200. DECL_FUNCTION(jack_nframes_t, jack_port_get_latency, (jack_port_t *port), (port));
  201. DECL_FUNCTION(jack_nframes_t, jack_port_get_total_latency ,(jack_client_t * client, jack_port_t *port), (client, port));
  202. DECL_VOID_FUNCTION(jack_port_set_latency, (jack_port_t * port, jack_nframes_t frames), (port, frames));
  203. DECL_FUNCTION(int, jack_recompute_total_latency, (jack_client_t* client, jack_port_t* port), (client, port));
  204. DECL_VOID_FUNCTION(jack_port_get_latency_range, (jack_port_t *port, jack_latency_callback_mode_t mode, jack_latency_range_t *range), (port, mode, range));
  205. DECL_VOID_FUNCTION(jack_port_set_latency_range, (jack_port_t *port, jack_latency_callback_mode_t mode, jack_latency_range_t *range), (port, mode, range));
  206. DECL_FUNCTION(int, jack_recompute_total_latencies, (jack_client_t* client),(client));
  207. DECL_FUNCTION(int, jack_port_set_name, (jack_port_t *port, const char *port_name), (port, port_name));
  208. DECL_FUNCTION(int, jack_port_rename, (jack_client_t *client, jack_port_t *port, const char *port_name), (client, port, port_name));
  209. DECL_FUNCTION(int, jack_port_set_alias, (jack_port_t *port, const char *alias), (port, alias));
  210. DECL_FUNCTION(int, jack_port_unset_alias, (jack_port_t *port, const char *alias), (port, alias));
  211. DECL_FUNCTION(int, jack_port_get_aliases, (const jack_port_t *port, char* const aliases[2]), (port,aliases));
  212. DECL_FUNCTION(int, jack_port_request_monitor, (jack_port_t *port, int onoff), (port, onoff));
  213. DECL_FUNCTION(int, jack_port_request_monitor_by_name, (jack_client_t *client, const char *port_name, int onoff), (client, port_name, onoff));
  214. DECL_FUNCTION(int, jack_port_ensure_monitor, (jack_port_t *port, int onoff), (port, onoff));
  215. DECL_FUNCTION(int, jack_port_monitoring_input, (jack_port_t *port) ,(port));
  216. DECL_FUNCTION(int, jack_connect, (jack_client_t * client, const char *source_port, const char *destination_port), (client, source_port, destination_port));
  217. DECL_FUNCTION(int, jack_disconnect, (jack_client_t * client, const char *source_port, const char *destination_port), (client, source_port, destination_port));
  218. DECL_FUNCTION(int, jack_port_disconnect, (jack_client_t * client, jack_port_t * port), (client, port));
  219. DECL_FUNCTION(int, jack_port_name_size,(),());
  220. DECL_FUNCTION(int, jack_port_type_size,(),());
  221. DECL_FUNCTION(size_t, jack_port_type_get_buffer_size, (jack_client_t *client, const char* port_type), (client, port_type));
  222. DECL_FUNCTION(jack_nframes_t, jack_get_sample_rate, (jack_client_t *client), (client));
  223. DECL_FUNCTION(jack_nframes_t, jack_get_buffer_size, (jack_client_t *client), (client));
  224. DECL_FUNCTION_NULL(const char**, jack_get_ports, (jack_client_t *client, const char *port_name_pattern, const char * type_name_pattern,
  225. unsigned long flags), (client, port_name_pattern, type_name_pattern, flags));
  226. DECL_FUNCTION_NULL(jack_port_t *, jack_port_by_name, (jack_client_t * client, const char *port_name), (client, port_name));
  227. DECL_FUNCTION_NULL(jack_port_t *, jack_port_by_id, (jack_client_t *client, jack_port_id_t port_id), (client, port_id));
  228. DECL_FUNCTION(int, jack_engine_takeover_timebase, (jack_client_t * client), (client));
  229. DECL_FUNCTION(jack_nframes_t, jack_frames_since_cycle_start, (const jack_client_t * client), (client));
  230. DECL_FUNCTION(jack_time_t, jack_get_time, (), ());
  231. DECL_FUNCTION(jack_nframes_t, jack_time_to_frames, (const jack_client_t *client, jack_time_t time), (client, time));
  232. DECL_FUNCTION(jack_time_t, jack_frames_to_time, (const jack_client_t *client, jack_nframes_t frames), (client, frames));
  233. DECL_FUNCTION(jack_nframes_t, jack_frame_time, (const jack_client_t *client), (client));
  234. DECL_FUNCTION(jack_nframes_t, jack_last_frame_time, (const jack_client_t *client), (client));
  235. DECL_FUNCTION(float, jack_cpu_load, (jack_client_t *client), (client));
  236. DECL_FUNCTION_NULL(jack_native_thread_t, jack_client_thread_id, (jack_client_t *client), (client));
  237. DECL_VOID_FUNCTION(jack_set_error_function, (print_function fun), (fun));
  238. DECL_VOID_FUNCTION(jack_set_info_function, (print_function fun), (fun));
  239. DECL_FUNCTION(float, jack_get_max_delayed_usecs, (jack_client_t *client), (client));
  240. DECL_FUNCTION(float, jack_get_xrun_delayed_usecs, (jack_client_t *client), (client));
  241. DECL_VOID_FUNCTION(jack_reset_max_delayed_usecs, (jack_client_t *client), (client));
  242. DECL_FUNCTION(int, jack_release_timebase, (jack_client_t *client), (client));
  243. DECL_FUNCTION(int, jack_set_sync_callback, (jack_client_t *client, JackSyncCallback sync_callback, void *arg), (client, sync_callback, arg));
  244. DECL_FUNCTION(int, jack_set_sync_timeout, (jack_client_t *client, jack_time_t timeout), (client, timeout));
  245. DECL_FUNCTION(int, jack_set_timebase_callback, (jack_client_t *client,
  246. int conditional,
  247. JackTimebaseCallback timebase_callback,
  248. void *arg), (client, conditional, timebase_callback, arg));
  249. DECL_FUNCTION(int, jack_transport_locate, (jack_client_t *client, jack_nframes_t frame), (client, frame));
  250. DECL_FUNCTION(jack_transport_state_t, jack_transport_query, (const jack_client_t *client, jack_position_t *pos), (client, pos));
  251. DECL_FUNCTION(jack_nframes_t, jack_get_current_transport_frame, (const jack_client_t *client), (client));
  252. DECL_FUNCTION(int, jack_transport_reposition, (jack_client_t *client, const jack_position_t *pos), (client, pos));
  253. DECL_VOID_FUNCTION(jack_transport_start, (jack_client_t *client), (client));
  254. DECL_VOID_FUNCTION(jack_transport_stop, (jack_client_t *client), (client));
  255. DECL_VOID_FUNCTION(jack_get_transport_info, (jack_client_t *client, jack_transport_info_t *tinfo), (client,tinfo));
  256. DECL_VOID_FUNCTION(jack_set_transport_info, (jack_client_t *client, jack_transport_info_t *tinfo), (client,tinfo));
  257. DECL_FUNCTION(int, jack_client_real_time_priority, (jack_client_t* client), (client));
  258. DECL_FUNCTION(int, jack_client_max_real_time_priority, (jack_client_t* client), (client));
  259. DECL_FUNCTION(int, jack_acquire_real_time_scheduling, (jack_native_thread_t thread, int priority), (thread, priority));
  260. DECL_FUNCTION(int, jack_client_create_thread, (jack_client_t* client,
  261. jack_native_thread_t *thread,
  262. int priority,
  263. int realtime, // boolean
  264. thread_routine routine,
  265. void *arg), (client, thread, priority, realtime, routine, arg));
  266. DECL_FUNCTION(int, jack_drop_real_time_scheduling, (jack_native_thread_t thread), (thread));
  267. DECL_FUNCTION(int, jack_client_stop_thread, (jack_client_t* client, jack_native_thread_t thread), (client, thread));
  268. DECL_FUNCTION(int, jack_client_kill_thread, (jack_client_t* client, jack_native_thread_t thread), (client, thread));
  269. #ifndef WIN32
  270. DECL_VOID_FUNCTION(jack_set_thread_creator, (jack_thread_creator_t jtc), (jtc));
  271. #endif
  272. DECL_FUNCTION(char *, jack_get_internal_client_name, (jack_client_t *client, jack_intclient_t intclient), (client, intclient));
  273. DECL_FUNCTION(jack_intclient_t, jack_internal_client_handle, (jack_client_t *client, const char *client_name, jack_status_t *status), (client, client_name, status));
  274. /*
  275. DECL_FUNCTION(jack_intclient_t, jack_internal_client_load, (jack_client_t *client,
  276. const char *client_name,
  277. jack_options_t options,
  278. jack_status_t *status
  279. , ...), (client, client_name, options, status, ...));
  280. */
  281. DECL_FUNCTION(jack_status_t, jack_internal_client_unload, (jack_client_t *client, jack_intclient_t intclient), (client, intclient));
  282. DECL_VOID_FUNCTION(jack_free, (void* ptr), (ptr));
  283. // session
  284. DECL_FUNCTION(int, jack_set_session_callback, (jack_client_t* ext_client, JackSessionCallback session_callback, void* arg), (ext_client, session_callback, arg));
  285. DECL_FUNCTION(jack_session_command_t*, jack_session_notify, (jack_client_t* ext_client, const char* target, jack_session_event_type_t ev_type, const char* path), (ext_client, target, ev_type, path));
  286. DECL_FUNCTION(int, jack_session_reply, (jack_client_t* ext_client, jack_session_event_t *event), (ext_client, event));
  287. DECL_VOID_FUNCTION(jack_session_event_free, (jack_session_event_t* ev), (ev));
  288. DECL_FUNCTION(char*, jack_client_get_uuid, (jack_client_t* ext_client),(ext_client));
  289. DECL_FUNCTION(char*, jack_get_uuid_for_client_name, (jack_client_t* ext_client, const char* client_name),(ext_client, client_name));
  290. DECL_FUNCTION(char*, jack_get_client_name_by_uuid, (jack_client_t* ext_client, const char* client_uuid),(ext_client, client_uuid));
  291. DECL_FUNCTION(int, jack_reserve_client_name, (jack_client_t* ext_client, const char* name, const char* uuid),(ext_client, name, uuid));
  292. DECL_VOID_FUNCTION(jack_session_commands_free, (jack_session_command_t *cmds),(cmds));
  293. DECL_FUNCTION(int, jack_client_has_session_callback, (jack_client_t *client, const char* client_name),(client, client_name));
  294. // MIDI
  295. DECL_FUNCTION(jack_nframes_t, jack_midi_get_event_count, (void* port_buffer), (port_buffer));
  296. DECL_FUNCTION(int, jack_midi_event_get, (jack_midi_event_t* event, void* port_buffer, jack_nframes_t event_index), (event, port_buffer, event_index)) ;
  297. DECL_VOID_FUNCTION(jack_midi_clear_buffer, (void* port_buffer), (port_buffer));
  298. DECL_FUNCTION(size_t, jack_midi_max_event_size, (void* port_buffer), (port_buffer));
  299. DECL_FUNCTION_NULL(jack_midi_data_t*, jack_midi_event_reserve, (void* port_buffer, jack_nframes_t time, size_t data_size), (port_buffer, time, data_size));
  300. DECL_FUNCTION(int, jack_midi_event_write, (void* port_buffer, jack_nframes_t time, const jack_midi_data_t* data, size_t data_size), (port_buffer, time, data, data_size));
  301. DECL_FUNCTION(jack_nframes_t, jack_midi_get_lost_event_count, (void* port_buffer), (port_buffer));