|
|
|
@ -1,6 +1,5 @@
|
|
|
|
|
# jacket.nim
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Possible names/install locations of libjack, according to:
|
|
|
|
|
# https://github.com/x42/weakjack/blob/master/weak_libjack.c#L108
|
|
|
|
|
proc getJackLibName: string =
|
|
|
|
@ -19,11 +18,10 @@ proc getJackLibName: string =
|
|
|
|
|
# ------------------------------ Constants --------------------------------
|
|
|
|
|
|
|
|
|
|
const
|
|
|
|
|
JACK_MAX_FRAMES* = (4294967295'i64)
|
|
|
|
|
JACK_LOAD_INIT_LIMIT* = 1024
|
|
|
|
|
JACK_DEFAULT_AUDIO_TYPE* = "32 bit float mono audio"
|
|
|
|
|
JACK_DEFAULT_MIDI_TYPE* = "8 bit raw midi"
|
|
|
|
|
|
|
|
|
|
JackMaxFrames* = (4294967295'i64)
|
|
|
|
|
JackLoadInitLimit* = 1024
|
|
|
|
|
JackDefaultAudioType* = "32 bit float mono audio"
|
|
|
|
|
JackDefaultMidiType* = "8 bit raw midi"
|
|
|
|
|
|
|
|
|
|
# ----------------------------- Custom Types ------------------------------
|
|
|
|
|
|
|
|
|
@ -37,18 +35,18 @@ type
|
|
|
|
|
DefaultAudioSample* = cfloat
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
Client = distinct object
|
|
|
|
|
ClientP* = ptr Client
|
|
|
|
|
Port = distinct object
|
|
|
|
|
PortP* = ptr Port
|
|
|
|
|
ClientT = distinct object
|
|
|
|
|
Client* = ptr ClientT
|
|
|
|
|
PortT = distinct object
|
|
|
|
|
Port* = ptr PortT
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
MidiData* = uint8
|
|
|
|
|
MidiEvent* = object
|
|
|
|
|
MidiEventT* = object
|
|
|
|
|
time*: NFrames
|
|
|
|
|
size*: csize_t
|
|
|
|
|
buffer*: ptr UncheckedArray[MidiData]
|
|
|
|
|
MidiEventP* = ptr MidiEvent
|
|
|
|
|
MidiEvent* = ptr MidiEventT
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
JackOptions* {.size: sizeof(cint) pure.} = enum
|
|
|
|
@ -113,7 +111,7 @@ type
|
|
|
|
|
TransportNetStarting = 4
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
Position* = object
|
|
|
|
|
PositionT* = object
|
|
|
|
|
unique1*: uint64
|
|
|
|
|
usecs*: Time
|
|
|
|
|
frameRate*: NFrames
|
|
|
|
@ -135,7 +133,7 @@ type
|
|
|
|
|
tickDouble*: cdouble
|
|
|
|
|
padding*: array[5, int32]
|
|
|
|
|
unique2*: uint64
|
|
|
|
|
PositionP* = ptr Position
|
|
|
|
|
Position* = ptr PositionT
|
|
|
|
|
|
|
|
|
|
#[ DEPRECATED
|
|
|
|
|
typedef enum {
|
|
|
|
@ -168,20 +166,20 @@ typedef struct {
|
|
|
|
|
]#
|
|
|
|
|
|
|
|
|
|
const
|
|
|
|
|
JACK_POSITION_MASK* = (PositionBBT.ord or PositionTimecode.ord)
|
|
|
|
|
EXTENDED_TIME_INFO* = true
|
|
|
|
|
JACK_TICK_DOUBLE* = true
|
|
|
|
|
JackPositionMask* = (PositionBBT.ord or PositionTimecode.ord)
|
|
|
|
|
ExtendedTimeInfo* = true
|
|
|
|
|
JackTickDouble* = true
|
|
|
|
|
|
|
|
|
|
# Ringbuffer
|
|
|
|
|
|
|
|
|
|
type
|
|
|
|
|
RingbufferData* = object
|
|
|
|
|
RingbufferDataT* = object
|
|
|
|
|
buf*: ptr char
|
|
|
|
|
len*: csize_t
|
|
|
|
|
RingbufferDataP* = ptr RingbufferData
|
|
|
|
|
RingbufferData* = ptr RingbufferDataT
|
|
|
|
|
|
|
|
|
|
Ringbuffer = distinct object
|
|
|
|
|
RingbufferP* = ptr Ringbuffer
|
|
|
|
|
RingbufferT = distinct object
|
|
|
|
|
Ringbuffer* = ptr RingbufferT
|
|
|
|
|
|
|
|
|
|
# Metadata
|
|
|
|
|
|
|
|
|
@ -196,13 +194,13 @@ type
|
|
|
|
|
PropertyChanged,
|
|
|
|
|
PropertyDeleted
|
|
|
|
|
|
|
|
|
|
Description* = object
|
|
|
|
|
DescriptionT* = object
|
|
|
|
|
subject*: Uuid
|
|
|
|
|
property_cnt*: uint32
|
|
|
|
|
properties*: ptr UncheckedArray[Property]
|
|
|
|
|
property_size*: uint32
|
|
|
|
|
|
|
|
|
|
DescriptionP* = ptr Description
|
|
|
|
|
Description* = ptr DescriptionT
|
|
|
|
|
|
|
|
|
|
# Callback function types
|
|
|
|
|
|
|
|
|
@ -258,47 +256,47 @@ proc free*(`ptr`: pointer) {.importc: "jack_free".}
|
|
|
|
|
# jack_client_t * jack_client_open (char *client_name,
|
|
|
|
|
# jack_options_t options,
|
|
|
|
|
# jack_status_t *status, ...)
|
|
|
|
|
proc clientOpen*(clientName: cstring; options: cint; status: ptr cint): ClientP {.
|
|
|
|
|
proc clientOpen*(clientName: cstring; options: cint; status: ptr cint): Client {.
|
|
|
|
|
varargs, importc: "jack_client_open".}
|
|
|
|
|
|
|
|
|
|
# int jack_client_close (jack_client_t *client)
|
|
|
|
|
proc clientClose*(client: ClientP): cint {.importc: "jack_client_close"}
|
|
|
|
|
proc clientClose*(client: Client): cint {.importc: "jack_client_close", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_client_name_size (void)
|
|
|
|
|
proc clientNameSize*(): cint {.importc: "jack_client_name_size"}
|
|
|
|
|
|
|
|
|
|
# char * jack_get_client_name (jack_client_t *client)
|
|
|
|
|
proc getClientName*(client: ClientP): cstring {.importc: "jack_get_client_name".}
|
|
|
|
|
proc getClientName*(client: Client): cstring {.importc: "jack_get_client_name".}
|
|
|
|
|
|
|
|
|
|
# char *jack_get_uuid_for_client_name (jack_client_t *client, const char *client_name)
|
|
|
|
|
proc getUuidForClientName*(client: ClientP; clientName: cstring): cstring {.
|
|
|
|
|
proc getUuidForClientName*(client: Client; clientName: cstring): cstring {.
|
|
|
|
|
importc: "jack_get_uuid_for_client_name".}
|
|
|
|
|
|
|
|
|
|
# char *jack_get_client_name_by_uuid (jack_client_t *client, const char *client_uuid)
|
|
|
|
|
proc getClientNameByUuid*(client: ClientP; clientUuid: cstring): cstring {.
|
|
|
|
|
proc getClientNameByUuid*(client: Client; clientUuid: cstring): cstring {.
|
|
|
|
|
importc: "jack_get_client_name_by_uuid".}
|
|
|
|
|
|
|
|
|
|
# int jack_activate (jack_client_t *client)
|
|
|
|
|
proc activate*(client: ClientP): cint {.importc: "jack_activate".}
|
|
|
|
|
proc activate*(client: Client): cint {.importc: "jack_activate", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_deactivate (jack_client_t *client)
|
|
|
|
|
proc deactivate*(client: ClientP): cint {.importc: "jack_deactivate".}
|
|
|
|
|
proc deactivate*(client: Client): cint {.importc: "jack_deactivate", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_get_client_pid (const char *name)
|
|
|
|
|
proc getClientPid*(name: cstring): cint {.importc: "jack_get_client_pid".}
|
|
|
|
|
|
|
|
|
|
# FIXME: not implemented yet
|
|
|
|
|
# jack_native_thread_t jack_client_thread_id (jack_client_t *client)
|
|
|
|
|
# proc clientThreadId*(client: ClientP): NativeThread {.importc: "jack_client_thread_id".}
|
|
|
|
|
# proc clientThreadId*(client: Client): NativeThread {.importc: "jack_client_thread_id".}
|
|
|
|
|
|
|
|
|
|
# int jack_is_realtime (jack_client_t *client)
|
|
|
|
|
proc isRealtime*(client: ClientP): cint {.importc: "jack_is_realtime".}
|
|
|
|
|
proc isRealtime*(client: Client): cint {.importc: "jack_is_realtime".}
|
|
|
|
|
|
|
|
|
|
# jack_nframes_t jack_cycle_wait (jack_client_t* client)
|
|
|
|
|
proc cycleWait*(client: ClientP): NFrames {.importc: "jack_cycle_wait".}
|
|
|
|
|
proc cycleWait*(client: Client): NFrames {.importc: "jack_cycle_wait".}
|
|
|
|
|
|
|
|
|
|
# void jack_cycle_signal (jack_client_t* client, int status)
|
|
|
|
|
proc cycleSignal*(client: ClientP; status: cint) {.importc: "jack_cycle_signal".}
|
|
|
|
|
proc cycleSignal*(client: Client; status: cint) {.importc: "jack_cycle_signal".}
|
|
|
|
|
|
|
|
|
|
#[ DEPRECATED
|
|
|
|
|
jack_client_t *jack_client_new (const char *client_name)
|
|
|
|
@ -308,23 +306,23 @@ jack_nframes_t jack_thread_wait (jack_client_t *client, int status)
|
|
|
|
|
# --------------------------- Internal Clients ----------------------------
|
|
|
|
|
|
|
|
|
|
# char *jack_get_internal_client_name (jack_client_t *client, jack_intclient_t intclient);
|
|
|
|
|
proc getInternalClientName*(client: ClientP; intclient: IntClient): cstring {.
|
|
|
|
|
proc getInternalClientName*(client: Client; intclient: IntClient): cstring {.
|
|
|
|
|
importc: "jack_get_internal_client_name".}
|
|
|
|
|
|
|
|
|
|
# jack_intclient_t jack_internal_client_handle (jack_client_t *client, const char *client_name,
|
|
|
|
|
# jack_status_t *status)
|
|
|
|
|
proc internalClientHandle*(client: ClientP; clientName: cstring; status: ptr cint): IntClient {.
|
|
|
|
|
proc internalClientHandle*(client: Client; clientName: cstring; status: ptr cint): IntClient {.
|
|
|
|
|
importc: "jack_internal_client_handle".}
|
|
|
|
|
|
|
|
|
|
# jack_intclient_t jack_internal_client_load (jack_client_t *client, const char *client_name,
|
|
|
|
|
# jack_options_t options, jack_status_t *status, ...)
|
|
|
|
|
proc internalClientLoad*(client: ClientP; clientName: cstring; options: cint; status: ptr cint): IntClient {.
|
|
|
|
|
proc internalClientLoad*(client: Client; clientName: cstring; options: cint; status: ptr cint): IntClient {.
|
|
|
|
|
varargs, importc: "jack_internal_client_load".}
|
|
|
|
|
|
|
|
|
|
# jack_status_t jack_internal_client_unload (jack_client_t *client, jack_intclient_t intclient)
|
|
|
|
|
|
|
|
|
|
proc internalClientUnload*(client: ClientP; intclient: IntClient): cint {.
|
|
|
|
|
importc: "jack_internal_client_unload".}
|
|
|
|
|
proc internalClientUnload*(client: Client; intclient: IntClient): cint {.
|
|
|
|
|
importc: "jack_internal_client_unload", discardable.}
|
|
|
|
|
|
|
|
|
|
#[ DEPRECATED
|
|
|
|
|
int jack_internal_client_new (const char * client_name, const char *load_name, const char *load_init)
|
|
|
|
@ -334,70 +332,70 @@ void jack_internal_client_close (const char *client_name)
|
|
|
|
|
|
|
|
|
|
# ------------------------------- Callbacks -------------------------------
|
|
|
|
|
|
|
|
|
|
proc setProcessThread*(client: ClientP; threadCallback: ThreadCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_process_thread".}
|
|
|
|
|
|
|
|
|
|
proc setThreadInitCallback*(client: ClientP; threadInitCallback: ThreadInitCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_thread_init_callback".}
|
|
|
|
|
|
|
|
|
|
proc onShutdown*(client: ClientP; shutdownCallback: ShutdownCallback; arg: pointer = nil) {.
|
|
|
|
|
proc onShutdown*(client: Client; shutdownCallback: ShutdownCallback; arg: pointer = nil) {.
|
|
|
|
|
importc: "jack_on_shutdown".}
|
|
|
|
|
|
|
|
|
|
proc onInfoShutdown*(client: ClientP; shutdownCallback: InfoShutdownCallback; arg: pointer = nil) {.
|
|
|
|
|
proc onInfoShutdown*(client: Client; shutdownCallback: InfoShutdownCallback; arg: pointer = nil) {.
|
|
|
|
|
importc: "jack_on_info_shutdown".}
|
|
|
|
|
|
|
|
|
|
proc setProcessCallback*(client: ClientP; processCallback: ProcessCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_process_callback".}
|
|
|
|
|
proc setProcessThread*(client: Client; threadCallback: ThreadCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_process_thread", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setFreewheelCallback*(client: ClientP; freewheelCallback: FreewheelCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_freewheel_callback".}
|
|
|
|
|
proc setThreadInitCallback*(client: Client; threadInitCallback: ThreadInitCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_thread_init_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setBufferSizeCallback*(client: ClientP; bufsizeCallback: BufferSizeCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_buffer_size_callback".}
|
|
|
|
|
proc setProcessCallback*(client: Client; processCallback: ProcessCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_process_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setSampleRateCallback*(client: ClientP; srateCallback: SampleRateCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_sample_rate_callback".}
|
|
|
|
|
proc setFreewheelCallback*(client: Client; freewheelCallback: FreewheelCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_freewheel_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setClientRegistrationCallback*(client: ClientP; registrationCallback: ClientRegistrationCallback;
|
|
|
|
|
proc setBufferSizeCallback*(client: Client; bufsizeCallback: BufferSizeCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_buffer_size_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setSampleRateCallback*(client: Client; srateCallback: SampleRateCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_sample_rate_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setClientRegistrationCallback*(client: Client; registrationCallback: ClientRegistrationCallback;
|
|
|
|
|
arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_client_registration_callback".}
|
|
|
|
|
importc: "jack_set_client_registration_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setPortRegistrationCallback*(client: ClientP; registrationCallback: PortRegistrationCallback;
|
|
|
|
|
proc setPortRegistrationCallback*(client: Client; registrationCallback: PortRegistrationCallback;
|
|
|
|
|
arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_port_registration_callback".}
|
|
|
|
|
importc: "jack_set_port_registration_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setPortConnectCallback*(client: ClientP; connectCallback: PortConnectCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_port_connect_callback".}
|
|
|
|
|
proc setPortConnectCallback*(client: Client; connectCallback: PortConnectCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_port_connect_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setPortRenameCallback*(client: ClientP; renameCallback: PortRenameCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_port_rename_callback".}
|
|
|
|
|
proc setPortRenameCallback*(client: Client; renameCallback: PortRenameCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_port_rename_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setGraphOrderCallback*(client: ClientP; graphCallback: GraphOrderCallback; a3: pointer): cint {.
|
|
|
|
|
importc: "jack_set_graph_order_callback".}
|
|
|
|
|
proc setGraphOrderCallback*(client: Client; graphCallback: GraphOrderCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_graph_order_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setXrunCallback*(client: ClientP; xrunCallback: XRunCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_xrun_callback".}
|
|
|
|
|
proc setXrunCallback*(client: Client; xrunCallback: XRunCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_xrun_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
proc setLatencyCallback*(client: ClientP; latencyCallback: LatencyCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_latency_callback".}
|
|
|
|
|
proc setLatencyCallback*(client: Client; latencyCallback: LatencyCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_latency_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# -------------------------- Server Client Control ------------------------
|
|
|
|
|
|
|
|
|
|
# int jack_set_freewheel(jack_client_t* client, int onoff)
|
|
|
|
|
proc setFreewheel*(client: ClientP; onoff: cint): cint {.importc: "jack_set_freewheel".}
|
|
|
|
|
proc setFreewheel*(client: Client; onoff: cint): cint {.importc: "jack_set_freewheel", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_set_buffer_size (jack_client_t *client, jack_nframes_t nframes)
|
|
|
|
|
proc setBufferSize*(client: ClientP; nframes: NFrames): cint {.importc: "jack_set_buffer_size".}
|
|
|
|
|
proc setBufferSize*(client: Client; nframes: NFrames): cint {.importc: "jack_set_buffer_size", discardable.}
|
|
|
|
|
|
|
|
|
|
#jack_nframes_t jack_get_sample_rate (jack_client_t *)
|
|
|
|
|
proc getSampleRate*(client: ClientP): NFrames {.importc: "jack_get_sample_rate".}
|
|
|
|
|
proc getSampleRate*(client: Client): NFrames {.importc: "jack_get_sample_rate"}
|
|
|
|
|
|
|
|
|
|
# jack_nframes_t jack_get_buffer_size (jack_client_t *)
|
|
|
|
|
proc getBufferSize*(client: ClientP): NFrames {.importc: "jack_get_buffer_size".}
|
|
|
|
|
proc getBufferSize*(client: Client): NFrames {.importc: "jack_get_buffer_size".}
|
|
|
|
|
|
|
|
|
|
# float jack_cpu_load (jack_client_t *client)
|
|
|
|
|
proc cpuLoad*(client: ClientP): cfloat {.importc: "jack_cpu_load".}
|
|
|
|
|
proc cpuLoad*(client: Client): cfloat {.importc: "jack_cpu_load".}
|
|
|
|
|
|
|
|
|
|
#[ DEPRECATED
|
|
|
|
|
int jack_engine_takeover_timebase (jack_client_t *)
|
|
|
|
@ -411,82 +409,82 @@ int jack_engine_takeover_timebase (jack_client_t *)
|
|
|
|
|
# const char *port_type,
|
|
|
|
|
# unsigned long flags,
|
|
|
|
|
# unsigned long buffer_size)
|
|
|
|
|
proc portRegister*(client: ClientP; portName: cstring; portType: cstring;
|
|
|
|
|
flags: culong; bufferSize: culong): PortP {.importc: "jack_port_register".}
|
|
|
|
|
proc portRegister*(client: Client; portName: cstring; portType: cstring;
|
|
|
|
|
flags: culong; bufferSize: culong): Port {.importc: "jack_port_register".}
|
|
|
|
|
|
|
|
|
|
# int jack_port_unregister (jack_client_t *client, jack_port_t *port)
|
|
|
|
|
proc portUnregister*(client: ClientP; port: PortP): cint {.importc: "jack_port_unregister".}
|
|
|
|
|
proc portUnregister*(client: Client; port: Port): cint {.importc: "jack_port_unregister", discardable.}
|
|
|
|
|
|
|
|
|
|
# void * jack_port_get_buffer (jack_port_t *port, jack_nframes_t)
|
|
|
|
|
proc portGetBuffer*(port: PortP; nframes: NFrames): pointer {.importc: "jack_port_get_buffer".}
|
|
|
|
|
proc portGetBuffer*(port: Port; nframes: NFrames): pointer {.importc: "jack_port_get_buffer".}
|
|
|
|
|
|
|
|
|
|
# jack_uuid_t jack_port_uuid (const jack_port_t *port)
|
|
|
|
|
proc portUuid*(port: PortP): Uuid {.importc: "jack_port_uuid".}
|
|
|
|
|
proc portUuid*(port: Port): Uuid {.importc: "jack_port_uuid".}
|
|
|
|
|
|
|
|
|
|
# const char * jack_port_name (const jack_port_t *port)
|
|
|
|
|
proc portName*(port: PortP): cstring {.importc: "jack_port_name".}
|
|
|
|
|
proc portName*(port: Port): cstring {.importc: "jack_port_name".}
|
|
|
|
|
|
|
|
|
|
# const char * jack_port_short_name (const jack_port_t *port)
|
|
|
|
|
proc portShortName*(port: PortP): cstring {.importc: "jack_port_short_name".}
|
|
|
|
|
proc portShortName*(port: Port): cstring {.importc: "jack_port_short_name".}
|
|
|
|
|
|
|
|
|
|
# int jack_port_flags (const jack_port_t *port)
|
|
|
|
|
proc portFlags*(port: PortP): cint {.importc: "jack_port_flags".}
|
|
|
|
|
proc portFlags*(port: Port): cint {.importc: "jack_port_flags".}
|
|
|
|
|
|
|
|
|
|
# const char * jack_port_type (const jack_port_t *port)
|
|
|
|
|
proc portType*(port: PortP): cstring {.importc: "jack_port_type".}
|
|
|
|
|
proc portType*(port: Port): cstring {.importc: "jack_port_type".}
|
|
|
|
|
|
|
|
|
|
# jack_port_type_id_t jack_port_type_id (const jack_port_t *port)
|
|
|
|
|
proc portTypeId*(port: PortP): PortTypeId {.importc: "jack_port_type_id".}
|
|
|
|
|
proc portTypeId*(port: Port): PortTypeId {.importc: "jack_port_type_id".}
|
|
|
|
|
|
|
|
|
|
# int jack_port_is_mine (const jack_client_t *client, const jack_port_t *port)
|
|
|
|
|
proc portIsMine*(client: ClientP; port: PortP): cint {.
|
|
|
|
|
proc portIsMine*(client: Client; port: Port): cint {.
|
|
|
|
|
importc: "jack_port_is_mine".}
|
|
|
|
|
|
|
|
|
|
# int jack_port_connected (const jack_port_t *port)
|
|
|
|
|
proc portConnected*(port: PortP): cint {.importc: "jack_port_connected".}
|
|
|
|
|
proc portConnected*(port: Port): cint {.importc: "jack_port_connected".}
|
|
|
|
|
|
|
|
|
|
# int jack_port_connected_to (const jack_port_t *port,
|
|
|
|
|
# const char *port_name)
|
|
|
|
|
proc portConnectedTo*(port: PortP; portName: cstring): cint {.importc: "jack_port_connected_to".}
|
|
|
|
|
proc portConnectedTo*(port: Port; portName: cstring): cint {.importc: "jack_port_connected_to".}
|
|
|
|
|
|
|
|
|
|
# const char ** jack_port_get_connections (const jack_port_t *port)
|
|
|
|
|
#
|
|
|
|
|
# CAVEAT: The caller is responsible for calling jack_free() on any non-NULL returned value.
|
|
|
|
|
proc portGetConnections*(port: PortP): cstringArray {.importc: "jack_port_get_connections".}
|
|
|
|
|
proc portGetConnections*(port: Port): cstringArray {.importc: "jack_port_get_connections".}
|
|
|
|
|
|
|
|
|
|
# const char ** jack_port_get_all_connections (const jack_client_t *client,
|
|
|
|
|
# const jack_port_t *port)
|
|
|
|
|
#
|
|
|
|
|
# CAVEAT: The caller is responsible for calling jack_free() on any non-NULL returned value.
|
|
|
|
|
proc portGetAllConnections*(client: ClientP; port: PortP): cstringArray {.
|
|
|
|
|
proc portGetAllConnections*(client: Client; port: Port): cstringArray {.
|
|
|
|
|
importc: "jack_port_get_all_connections".}
|
|
|
|
|
|
|
|
|
|
# int jack_port_rename (jack_client_t* client, jack_port_t *port, const char *port_name)
|
|
|
|
|
proc portRename*(client: ClientP; port: PortP; portName: cstring): cint {.importc: "jack_port_rename".}
|
|
|
|
|
proc portRename*(client: Client; port: Port; portName: cstring): cint {.importc: "jack_port_rename", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_port_set_alias (jack_port_t *port, const char *alias)
|
|
|
|
|
proc portSetAlias*(port: PortP; alias: cstring): cint {.importc: "jack_port_set_alias".}
|
|
|
|
|
proc portSetAlias*(port: Port; alias: cstring): cint {.importc: "jack_port_set_alias", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_port_unset_alias (jack_port_t *port, const char *alias)
|
|
|
|
|
proc portUnsetAlias*(port: PortP; alias: cstring): cint {.importc: "jack_port_unset_alias".}
|
|
|
|
|
proc portUnsetAlias*(port: Port; alias: cstring): cint {.importc: "jack_port_unset_alias", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_port_get_aliases (const jack_port_t *port, char* const aliases[2])
|
|
|
|
|
proc portGetAliases*(port: PortP; aliases: array[2, cstring]): cint {.importc: "jack_port_get_aliases".}
|
|
|
|
|
proc portGetAliases*(port: Port; aliases: array[2, cstring]): cint {.importc: "jack_port_get_aliases".}
|
|
|
|
|
|
|
|
|
|
#int jack_port_request_monitor (jack_port_t *port, int onoff)
|
|
|
|
|
proc portRequestMonitor*(port: PortP; onoff: cint): cint {.importc: "jack_port_request_monitor".}
|
|
|
|
|
proc portRequestMonitor*(port: Port; onoff: cint): cint {.importc: "jack_port_request_monitor", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_port_request_monitor_by_name (jack_client_t *client,
|
|
|
|
|
# const char *port_name, int onoff)
|
|
|
|
|
proc portRequestMonitorByName*(client: ClientP; portName: cstring; onoff: cint): cint {.
|
|
|
|
|
importc: "jack_port_request_monitor_by_name".}
|
|
|
|
|
proc portRequestMonitorByName*(client: Client; portName: cstring; onoff: cint): cint {.
|
|
|
|
|
importc: "jack_port_request_monitor_by_name", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_port_ensure_monitor (jack_port_t *port, int onoff)
|
|
|
|
|
proc portEnsureMonitor*(port: PortP; onoff: cint): cint {.
|
|
|
|
|
importc: "jack_port_ensure_monitor".}
|
|
|
|
|
proc portEnsureMonitor*(port: Port; onoff: cint): cint {.
|
|
|
|
|
importc: "jack_port_ensure_monitor", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_port_monitoring_input (jack_port_t *port)
|
|
|
|
|
proc portMonitoringInput*(port: PortP): cint {.importc: "jack_port_monitoring_input".}
|
|
|
|
|
proc portMonitoringInput*(port: Port): cint {.importc: "jack_port_monitoring_input".}
|
|
|
|
|
|
|
|
|
|
#[ DEPRECATED
|
|
|
|
|
int jack_port_tie (jack_port_t *src, jack_port_t *dst)
|
|
|
|
@ -503,14 +501,14 @@ int jack_port_set_name (jack_port_t *port, const char *port_name)
|
|
|
|
|
# unsigned long flags)
|
|
|
|
|
#
|
|
|
|
|
# CAVEAT: The caller is responsible for calling jack_free() on any non-NULL returned value.
|
|
|
|
|
proc getPorts*(client: ClientP; portNamePattern: cstring;
|
|
|
|
|
proc getPorts*(client: Client; portNamePattern: cstring;
|
|
|
|
|
typeNamePattern: cstring; flags: culong): cstringArray {.importc: "jack_get_ports".}
|
|
|
|
|
|
|
|
|
|
# jack_port_t * jack_port_by_name (jack_client_t *client, const char *port_name)
|
|
|
|
|
proc portByName*(client: ClientP; portName: cstring): PortP {.importc: "jack_port_by_name".}
|
|
|
|
|
proc portByName*(client: Client; portName: cstring): Port {.importc: "jack_port_by_name".}
|
|
|
|
|
|
|
|
|
|
# jack_port_t * jack_port_by_id (jack_client_t *client, jack_port_id_t port_id)
|
|
|
|
|
proc portById*(client: ClientP; portId: PortId): PortP {.importc: "jack_port_by_id".}
|
|
|
|
|
proc portById*(client: Client; portId: PortId): Port {.importc: "jack_port_by_id".}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ------------------------------ Connections ------------------------------
|
|
|
|
@ -518,15 +516,15 @@ proc portById*(client: ClientP; portId: PortId): PortP {.importc: "jack_port_by_
|
|
|
|
|
# int jack_connect (jack_client_t *client,
|
|
|
|
|
# const char *source_port,
|
|
|
|
|
# const char *destination_port)
|
|
|
|
|
proc connect*(client: ClientP; srcPort: cstring; destPort: cstring): cint {.importc: "jack_connect".}
|
|
|
|
|
proc connect*(client: Client; srcPort: cstring; destPort: cstring): cint {.importc: "jack_connect", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_disconnect (jack_client_t *client,
|
|
|
|
|
# const char *source_port,
|
|
|
|
|
# const char *destination_port)
|
|
|
|
|
proc disconnect*(client: ClientP; srcPort: cstring; destPort: cstring): cint {.importc: "jack_disconnect".}
|
|
|
|
|
proc disconnect*(client: Client; srcPort: cstring; destPort: cstring): cint {.importc: "jack_disconnect", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_port_disconnect (jack_client_t *client, jack_port_t *port)
|
|
|
|
|
proc portDisconnect*(client: ClientP; port: PortP): cint {.importc: "jack_port_disconnect".}
|
|
|
|
|
proc portDisconnect*(client: Client; port: Port): cint {.importc: "jack_port_disconnect", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_port_name_size(void)
|
|
|
|
|
proc portNameSize*(): cint {.importc: "jack_port_name_size".}
|
|
|
|
@ -535,7 +533,7 @@ proc portNameSize*(): cint {.importc: "jack_port_name_size".}
|
|
|
|
|
proc portTypeSize*(): cint {.importc: "jack_port_type_size".}
|
|
|
|
|
|
|
|
|
|
# size_t jack_port_type_get_buffer_size (jack_client_t *client, const char *port_type)
|
|
|
|
|
proc portTypeGetBufferSize*(client: ClientP; portType: cstring): csize_t {.
|
|
|
|
|
proc portTypeGetBufferSize*(client: Client; portType: cstring): csize_t {.
|
|
|
|
|
importc: "jack_port_type_get_buffer_size".}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -545,7 +543,7 @@ proc portTypeGetBufferSize*(client: ClientP; portType: cstring): csize_t {.
|
|
|
|
|
proc midiGetEventCount*(portBuffer: pointer): NFrames {.importc: "jack_midi_get_event_count".}
|
|
|
|
|
|
|
|
|
|
# int jack_midi_event_get (jack_midi_event_t *event, void *port_buffer, uint32_t event_index)
|
|
|
|
|
proc midiEventGet*(event: MidiEventP, portBuffer: pointer, eventIndex: uint32): cint {.
|
|
|
|
|
proc midiEventGet*(event: MidiEvent, portBuffer: pointer, eventIndex: uint32): cint {.
|
|
|
|
|
importc: "jack_midi_event_get".}
|
|
|
|
|
|
|
|
|
|
# void jack_midi_clear_buffer (void *port_buffer)
|
|
|
|
@ -559,8 +557,8 @@ proc midiEventReserve*(portBuffer: pointer, time: NFrames, dataSize: csize_t): p
|
|
|
|
|
importc: "jack_midi_event_reserve".}
|
|
|
|
|
|
|
|
|
|
# int jack_midi_event_write (void *port_buffer, jack_nframes_t time, const jack_midi_data_t *data, size_t data_size)
|
|
|
|
|
proc midiEventWrite*(portBuffer: pointer, time: NFrames, data: ptr MidiData, dataSize: csize_t): int {.
|
|
|
|
|
importc: "jack_midi_event_write".}
|
|
|
|
|
proc midiEventWrite*(portBuffer: pointer, time: NFrames, data: ptr MidiData, dataSize: csize_t): cint {.
|
|
|
|
|
importc: "jack_midi_event_write", discardable.}
|
|
|
|
|
|
|
|
|
|
# uint32_t jack_midi_get_lost_event_count (void *port_buffer)
|
|
|
|
|
proc midiGetLostEventCount*(portBuffer: pointer): uint32 {.importc: "jack_midi_get_lost_event_count".}
|
|
|
|
@ -569,15 +567,15 @@ proc midiGetLostEventCount*(portBuffer: pointer): uint32 {.importc: "jack_midi_g
|
|
|
|
|
# -------------------------------- Latency --------------------------------
|
|
|
|
|
|
|
|
|
|
# void jack_port_get_latency_range (jack_port_t *port, jack_latency_callback_mode_t mode, jack_latency_range_t *range)
|
|
|
|
|
proc portGetLatencyRange*(port: PortP; mode: LatencyCallbackMode; range: ptr LatencyRange) {.
|
|
|
|
|
proc portGetLatencyRange*(port: Port; mode: LatencyCallbackMode; range: ptr LatencyRange) {.
|
|
|
|
|
importc: "jack_port_get_latency_range".}
|
|
|
|
|
|
|
|
|
|
# void jack_port_set_latency_range (jack_port_t *port, jack_latency_callback_mode_t mode, jack_latency_range_t *range)
|
|
|
|
|
proc portSetLatencyRange*(port: PortP; mode: LatencyCallbackMode; range: ptr LatencyRange) {.
|
|
|
|
|
proc portSetLatencyRange*(port: Port; mode: LatencyCallbackMode; range: ptr LatencyRange) {.
|
|
|
|
|
importc: "jack_port_set_latency_range".}
|
|
|
|
|
|
|
|
|
|
# int jack_recompute_total_latencies (jack_client_t *)
|
|
|
|
|
proc recomputeTotalLatencies*(client: ClientP): cint {.importc: "jack_recompute_total_latencies".}
|
|
|
|
|
proc recomputeTotalLatencies*(client: Client): cint {.importc: "jack_recompute_total_latencies", discardable.}
|
|
|
|
|
|
|
|
|
|
#[ DEPRECATED
|
|
|
|
|
jack_nframes_t jack_port_get_latency (jack_port_t *port)
|
|
|
|
@ -590,28 +588,28 @@ int jack_recompute_total_latency (jack_client_t *, jack_port_t *port)
|
|
|
|
|
# ----------------------------- Time handling -----------------------------
|
|
|
|
|
|
|
|
|
|
# jack_nframes_t jack_frames_since_cycle_start (const jack_client_t *)
|
|
|
|
|
proc framesSinceCycleStart*(client: ClientP): NFrames {.importc: "jack_frames_since_cycle_start".}
|
|
|
|
|
proc framesSinceCycleStart*(client: Client): NFrames {.importc: "jack_frames_since_cycle_start".}
|
|
|
|
|
|
|
|
|
|
# jack_nframes_t jack_frame_time (const jack_client_t *)
|
|
|
|
|
proc frameTime*(client: ClientP): NFrames {.importc: "jack_frame_time".}
|
|
|
|
|
proc frameTime*(client: Client): NFrames {.importc: "jack_frame_time".}
|
|
|
|
|
|
|
|
|
|
# jack_nframes_t jack_last_frame_time (const jack_client_t *client)
|
|
|
|
|
proc lastFrameTime*(client: ClientP): NFrames {.importc: "jack_last_frame_time".}
|
|
|
|
|
proc lastFrameTime*(client: Client): NFrames {.importc: "jack_last_frame_time".}
|
|
|
|
|
|
|
|
|
|
# int jack_get_cycle_times(const jack_client_t *client,
|
|
|
|
|
# jack_nframes_t *current_frames,
|
|
|
|
|
# jack_time_t *current_usecs,
|
|
|
|
|
# jack_time_t *next_usecs,
|
|
|
|
|
# float *period_usecs)
|
|
|
|
|
proc getCycleTimes*(client: ClientP; currentFrames: ptr NFrames;
|
|
|
|
|
proc getCycleTimes*(client: Client; currentFrames: ptr NFrames;
|
|
|
|
|
currentUsecs: ptr Time; nextUsecs: ptr Time;
|
|
|
|
|
periodUsecs: ptr cfloat): cint {.importc: "jack_get_cycle_times".}
|
|
|
|
|
|
|
|
|
|
# jack_time_t jack_frames_to_time(const jack_client_t *client, jack_nframes_t)
|
|
|
|
|
proc framesToTime*(client: ClientP; nframes: NFrames): Time {.importc: "jack_frames_to_time".}
|
|
|
|
|
proc framesToTime*(client: Client; nframes: NFrames): Time {.importc: "jack_frames_to_time".}
|
|
|
|
|
|
|
|
|
|
# jack_nframes_t jack_time_to_frames(const jack_client_t *client, jack_time_t)
|
|
|
|
|
proc timeToFrames*(client: ClientP; time: Time): NFrames {.importc: "jack_time_to_frames".}
|
|
|
|
|
proc timeToFrames*(client: Client; time: Time): NFrames {.importc: "jack_time_to_frames".}
|
|
|
|
|
|
|
|
|
|
# jack_time_t jack_get_time(void)
|
|
|
|
|
proc getTime*(): Time {.importc: "jack_get_time".}
|
|
|
|
@ -620,40 +618,40 @@ proc getTime*(): Time {.importc: "jack_get_time".}
|
|
|
|
|
# ------------------------------- Transport -------------------------------
|
|
|
|
|
|
|
|
|
|
# int jack_release_timebase (jack_client_t *client)
|
|
|
|
|
proc releaseTimebase*(client: ClientP): cint {.importc: "jack_release_timebase".}
|
|
|
|
|
proc releaseTimebase*(client: Client): cint {.importc: "jack_release_timebase", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_set_sync_callback (jack_client_t *client, JackSyncCallback sync_callback, void *arg)
|
|
|
|
|
proc setSyncCallback*(client: ClientP; syncCallback: SyncCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_sync_callback".}
|
|
|
|
|
proc setSyncCallback*(client: Client; syncCallback: SyncCallback; arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_sync_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_set_sync_timeout (jack_client_t *client, jack_time_t timeout)
|
|
|
|
|
proc setSyncTimeout*(client: ClientP; timeout: Time): cint {.importc: "jack_set_sync_timeout".}
|
|
|
|
|
proc setSyncTimeout*(client: Client; timeout: Time): cint {.importc: "jack_set_sync_timeout", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_set_timebase_callback (jack_client_t *client,
|
|
|
|
|
# int conditional,
|
|
|
|
|
# JackTimebaseCallback timebase_callback,
|
|
|
|
|
# void *arg)
|
|
|
|
|
proc setTimebaseCallback*(client: ClientP; conditional: cint; timebaseCallback: TimebaseCallback;
|
|
|
|
|
proc setTimebaseCallback*(client: Client; conditional: cint; timebaseCallback: TimebaseCallback;
|
|
|
|
|
arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_timebase_callback".}
|
|
|
|
|
importc: "jack_set_timebase_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_transport_locate (jack_client_t *client, jack_nframes_t frame)
|
|
|
|
|
proc transportLocate*(client: ClientP; frame: NFrames): cint {.importc: "jack_transport_locate".}
|
|
|
|
|
proc transportLocate*(client: Client; frame: NFrames): cint {.importc: "jack_transport_locate", discardable.}
|
|
|
|
|
|
|
|
|
|
# jack_transport_state_t jack_transport_query (const jack_client_t *client, jack_position_t *pos)
|
|
|
|
|
proc transportQuery*(client: ClientP; pos: PositionP): TransportState {.importc: "jack_transport_query".}
|
|
|
|
|
proc transportQuery*(client: Client; pos: Position): TransportState {.importc: "jack_transport_query".}
|
|
|
|
|
|
|
|
|
|
# jack_nframes_t jack_get_current_transport_frame (const jack_client_t *client)
|
|
|
|
|
proc getCurrentTransportFrame*(client: ClientP): NFrames {.importc: "jack_get_current_transport_frame".}
|
|
|
|
|
proc getCurrentTransportFrame*(client: Client): NFrames {.importc: "jack_get_current_transport_frame".}
|
|
|
|
|
|
|
|
|
|
# int jack_transport_reposition (jack_client_t *client, const jack_position_t *pos)
|
|
|
|
|
proc transportReposition*(client: ClientP; pos: PositionP): cint {.importc: "jack_transport_reposition".}
|
|
|
|
|
proc transportReposition*(client: Client; pos: Position): cint {.importc: "jack_transport_reposition".}
|
|
|
|
|
|
|
|
|
|
# void jack_transport_start (jack_client_t *client)
|
|
|
|
|
proc transportStart*(client: ClientP) {.importc: "jack_transport_start".}
|
|
|
|
|
proc transportStart*(client: Client) {.importc: "jack_transport_start".}
|
|
|
|
|
|
|
|
|
|
# void jack_transport_stop (jack_client_t *client)
|
|
|
|
|
proc transportStop*(client: ClientP) {.importc: "jack_transport_stop".}
|
|
|
|
|
proc transportStop*(client: Client) {.importc: "jack_transport_stop".}
|
|
|
|
|
|
|
|
|
|
#[ DEPRECATED
|
|
|
|
|
void jack_get_transport_info (jack_client_t *client, jack_transport_info_t *tinfo)
|
|
|
|
@ -663,79 +661,81 @@ void jack_set_transport_info (jack_client_t *client, jack_transport_info_t *tinf
|
|
|
|
|
# ----------------------------- Ringbuffers -------------------------------
|
|
|
|
|
|
|
|
|
|
# jack_ringbuffer_t *jack_ringbuffer_create (size_t sz)
|
|
|
|
|
proc ringbufferCreate*(sz: csize_t): RingbufferP {.importc: "jack_ringbuffer_create".}
|
|
|
|
|
proc ringbufferCreate*(sz: csize_t): Ringbuffer {.importc: "jack_ringbuffer_create".}
|
|
|
|
|
|
|
|
|
|
# void jack_ringbuffer_free (jack_ringbuffer_t *rb)
|
|
|
|
|
proc ringbufferFree*(rb: RingbufferP) {.importc: "jack_ringbuffer_free".}
|
|
|
|
|
proc ringbufferFree*(rb: Ringbuffer) {.importc: "jack_ringbuffer_free".}
|
|
|
|
|
|
|
|
|
|
# void jack_ringbuffer_get_read_vector (const jack_ringbuffer_t *rb, jack_ringbuffer_data_t *vec)
|
|
|
|
|
proc ringbufferGetReadVector*(rb: RingbufferP, vec: var RingbufferDataP) {.importc: "jack_ringbuffer_get_read_vector".}
|
|
|
|
|
proc ringbufferGetReadVector*(rb: Ringbuffer, vec: var RingbufferData) {.importc: "jack_ringbuffer_get_read_vector".}
|
|
|
|
|
|
|
|
|
|
# void jack_ringbuffer_get_write_vector (const jack_ringbuffer_t *rb, jack_ringbuffer_data_t *vec)
|
|
|
|
|
proc ringbufferGetWriteVector*(rb: RingbufferP, vec: var RingbufferDataP) {.importc: "jack_ringbuffer_get_write_vector".}
|
|
|
|
|
proc ringbufferGetWriteVector*(rb: Ringbuffer, vec: var RingbufferData) {.importc: "jack_ringbuffer_get_write_vector".}
|
|
|
|
|
|
|
|
|
|
# size_t jack_ringbuffer_read (jack_ringbuffer_t *rb, char *dest, size_t cnt)
|
|
|
|
|
proc ringbufferRead*(rb: RingbufferP, dest: cstring, cnt: csize_t): csize_t {.importc: "jack_ringbuffer_read".}
|
|
|
|
|
proc ringbufferRead*(rb: Ringbuffer, dest: cstring, cnt: csize_t): csize_t {.importc: "jack_ringbuffer_read".}
|
|
|
|
|
|
|
|
|
|
# size_t jack_ringbuffer_peek (jack_ringbuffer_t *rb, char *dest, size_t cnt)
|
|
|
|
|
proc ringbufferPeek*(rb: RingbufferP, dest: cstring, cnt: csize_t): csize_t {.importc: "jack_ringbuffer_peek".}
|
|
|
|
|
proc ringbufferPeek*(rb: Ringbuffer, dest: cstring, cnt: csize_t): csize_t {.importc: "jack_ringbuffer_peek".}
|
|
|
|
|
|
|
|
|
|
# void jack_ringbuffer_read_advance (jack_ringbuffer_t *rb, size_t cnt)
|
|
|
|
|
proc ringbufferReadAdvance*(rb: RingbufferP, cnt: csize_t) {.importc: "jack_ringbuffer_read_advance".}
|
|
|
|
|
proc ringbufferReadAdvance*(rb: Ringbuffer, cnt: csize_t) {.importc: "jack_ringbuffer_read_advance".}
|
|
|
|
|
|
|
|
|
|
# size_t jack_ringbuffer_read_space (const jack_ringbuffer_t *rb)
|
|
|
|
|
proc ringbufferReadSpace*(rb: RingbufferP): csize_t {.importc: "jack_ringbuffer_read_space".}
|
|
|
|
|
proc ringbufferReadSpace*(rb: Ringbuffer): csize_t {.importc: "jack_ringbuffer_read_space".}
|
|
|
|
|
|
|
|
|
|
# int jack_ringbuffer_mlock (jack_ringbuffer_t *rb)
|
|
|
|
|
proc ringbufferMlock*(rb: RingbufferP): int {.importc: "jack_ringbuffer_mlock".}
|
|
|
|
|
proc ringbufferMlock*(rb: Ringbuffer): cint {.importc: "jack_ringbuffer_mlock", discardable.}
|
|
|
|
|
|
|
|
|
|
# void jack_ringbuffer_reset (jack_ringbuffer_t *rb)
|
|
|
|
|
proc ringbufferReset*(rb: RingbufferP) {.importc: "jack_ringbuffer_reset".}
|
|
|
|
|
proc ringbufferReset*(rb: Ringbuffer) {.importc: "jack_ringbuffer_reset".}
|
|
|
|
|
|
|
|
|
|
# size_t jack_ringbuffer_write (jack_ringbuffer_t *rb, const char *src, size_t cnt)
|
|
|
|
|
proc ringbufferWrite*(rb: RingbufferP, src: cstring, cnt: csize_t): csize_t {.importc: "jack_ringbuffer_write".}
|
|
|
|
|
proc ringbufferWrite*(rb: Ringbuffer, src: cstring, cnt: csize_t): csize_t {.importc: "jack_ringbuffer_write".}
|
|
|
|
|
|
|
|
|
|
# void jack_ringbuffer_write_advance (jack_ringbuffer_t *rb, size_t cnt)
|
|
|
|
|
proc ringbufferWriteAdvance*(rb: RingbufferP, cnt: csize_t) {.importc: "jack_ringbuffer_write_advance".}
|
|
|
|
|
proc ringbufferWriteAdvance*(rb: Ringbuffer, cnt: csize_t) {.importc: "jack_ringbuffer_write_advance".}
|
|
|
|
|
|
|
|
|
|
# size_t jack_ringbuffer_write_space (const jack_ringbuffer_t *rb)
|
|
|
|
|
proc ringbufferWriteSpace*(rb: RingbufferP): csize_t {.importc: "jack_ringbuffer_write_space".}
|
|
|
|
|
proc ringbufferWriteSpace*(rb: Ringbuffer): csize_t {.importc: "jack_ringbuffer_write_space".}
|
|
|
|
|
|
|
|
|
|
# ------------------------------- Metadata --------------------------------
|
|
|
|
|
|
|
|
|
|
# int jack_set_property (jack_client_t*, jack_uuid_t subject, const char* key, const char* value, const char* type)
|
|
|
|
|
proc setProperty*(client: ClientP, subject: Uuid, key, value, `type`: cstring): cint {.importc: "jack_set_property".}
|
|
|
|
|
proc setProperty*(client: Client, subject: Uuid, key, value, `type`: cstring): cint {.importc: "jack_set_property", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_get_property (jack_uuid_t subject, const char* key, char** value, char** type)
|
|
|
|
|
proc getProperty*(subject: Uuid, key: cstring, value, `type`: ptr cstring): cint {.importc: "jack_get_property".}
|
|
|
|
|
proc getProperty*(subject: Uuid, key: cstring, value, `type`: ptr cstring): cint {.importc: "jack_get_property", discardable.}
|
|
|
|
|
|
|
|
|
|
# void jack_free_description (jack_description_t* desc, int free_description_itself)
|
|
|
|
|
proc freeDescription*(desc: DescriptionP, freeDescriptionItself: cint) {.importc: "jack_free_description".}
|
|
|
|
|
proc freeDescription*(desc: Description, freeDescriptionItself: cint) {.importc: "jack_free_description".}
|
|
|
|
|
|
|
|
|
|
# int jack_get_properties (jack_uuid_t subject, jack_description_t* desc)
|
|
|
|
|
proc getProperties*(subject: Uuid, desc: DescriptionP): cint {.importc: "jack_get_properties".}
|
|
|
|
|
proc getProperties*(subject: Uuid, desc: Description): cint {.importc: "jack_get_properties", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_get_all_properties (jack_description_t** descs)
|
|
|
|
|
proc getAllProperties*(descs: var ptr UncheckedArray[Description]): cint {.importc: "jack_get_all_properties".}
|
|
|
|
|
proc getAllProperties*(descs: var ptr UncheckedArray[DescriptionT]): cint {.importc: "jack_get_all_properties", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_remove_property (jack_client_t* client, jack_uuid_t subject, const char* key)
|
|
|
|
|
proc removeProperty*(client: ClientP, subject: Uuid): cint {.importc: "jack_remove_property".}
|
|
|
|
|
proc removeProperty*(client: Client, subject: Uuid): cint {.importc: "jack_remove_property", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_remove_properties (jack_client_t* client, jack_uuid_t subject)
|
|
|
|
|
proc removeProperties*(client: ClientP, subject: Uuid): cint {.importc: "jack_remove_properties".}
|
|
|
|
|
proc removeProperties*(client: Client, subject: Uuid): cint {.importc: "jack_remove_properties", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_remove_all_properties (jack_client_t* client)
|
|
|
|
|
proc removeAllProperties*(client: ClientP): cint {.importc: "jack_remove_all_properties".}
|
|
|
|
|
proc removeAllProperties*(client: Client): cint {.importc: "jack_remove_all_properties", discardable.}
|
|
|
|
|
|
|
|
|
|
# int jack_set_property_change_callback (jack_client_t* client, JackPropertyChangeCallback callback, void* arg)
|
|
|
|
|
proc setPropertyChangeCallback*(client: ClientP, callback: PropertyChangeCallback, arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_property_change_callback".}
|
|
|
|
|
proc setPropertyChangeCallback*(client: Client, callback: PropertyChangeCallback, arg: pointer = nil): cint {.
|
|
|
|
|
importc: "jack_set_property_change_callback", discardable.}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ---------------------------- Error handling -----------------------------
|
|
|
|
|
|
|
|
|
|
# void jack_set_error_function (void(*)(const char *) func)
|
|
|
|
|
proc setErrorFunction*(errorCallback: ErrorCallback) {.importc: "jack_set_error_function".}
|
|
|
|
|
|
|
|
|
|
# void jack_set_info_function (void(*)(const char *) func)
|
|
|
|
|
proc setInfoFunction*(infoCallback: InfoCallback) {.importc: "jack_set_info_function".}
|
|
|
|
|
|
|
|
|
|
{.pop.}
|
|
|
|
|