Compare commits
3 Commits
5edb9724a0
...
1127b1ec09
Author | SHA1 | Date |
---|---|---|
Christopher Arndt | 1127b1ec09 | |
Christopher Arndt | bffc611cdd | |
Christopher Arndt | 25bf6b31cf |
26
README.md
26
README.md
|
@ -3,12 +3,38 @@
|
||||||
A [Nim] wrapper for the [JACK] [C API]
|
A [Nim] wrapper for the [JACK] [C API]
|
||||||
|
|
||||||
|
|
||||||
|
## Project status
|
||||||
|
|
||||||
|
This software is in *alpha status* and has no official release yet.
|
||||||
|
|
||||||
|
The basic JACK APIs (client lifecycle, ports, callbacks) have been wrapped and
|
||||||
|
are functional (see [examples]), but MIDI, transport and meta-data APIs still
|
||||||
|
need wrapping. Also, symbol names may still be changed and things moved around
|
||||||
|
before the first public release.
|
||||||
|
|
||||||
|
Also, I plan to add a higher-level abstraction on top of the direct mapping
|
||||||
|
from Nim procs and types to C functions and types, probably in the form of
|
||||||
|
a JACk client object, which takes care of a JACK client instance, registering
|
||||||
|
ports and setting up all the callbacks necessary for a well-behaved JACK
|
||||||
|
application.
|
||||||
|
|
||||||
|
|
||||||
|
# Installation
|
||||||
|
|
||||||
|
* Clone this repository.
|
||||||
|
* Change into the `jacket` directory.
|
||||||
|
* Run [`nimble install`] (or `nimble develop`).
|
||||||
|
* Run the examples with `nim compile --run examples/<example>.nim`.
|
||||||
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
This software is released under the *MIT License*. See the [LICENSE](./LICENSE)
|
This software is released under the *MIT License*. See the [LICENSE](./LICENSE)
|
||||||
file for more information.
|
file for more information.
|
||||||
|
|
||||||
|
|
||||||
|
[`nimble install`]: https://github.com/nim-lang/nimble#nimble-usage
|
||||||
[C API]: https://jackaudio.org/api/
|
[C API]: https://jackaudio.org/api/
|
||||||
|
[examples]: ./examples
|
||||||
[JACK]: https://jackaudio.org/
|
[JACK]: https://jackaudio.org/
|
||||||
[Nim]: https://nim-lang.org/
|
[Nim]: https://nim-lang.org/
|
||||||
|
|
|
@ -12,8 +12,8 @@ proc errorCb(msg: cstring) {.cdecl.} =
|
||||||
|
|
||||||
addHandler(log)
|
addHandler(log)
|
||||||
setErrorFunction(errorCb)
|
setErrorFunction(errorCb)
|
||||||
jclient = clientOpen("test_jacket", NullOption.ord, status.addr)
|
jclient = clientOpen("jacket_info", NullOption.ord, status.addr)
|
||||||
debug "Server status: " & $status
|
debug "JACK server status: " & $status
|
||||||
|
|
||||||
if jclient == nil:
|
if jclient == nil:
|
||||||
error getJackStatusErrorString(status)
|
error getJackStatusErrorString(status)
|
|
@ -4,22 +4,28 @@ import signal
|
||||||
|
|
||||||
var jclient: ClientTPtr
|
var jclient: ClientTPtr
|
||||||
var status: cint
|
var status: cint
|
||||||
|
var exitSignalled: bool = false
|
||||||
var log = newConsoleLogger(when defined(release): lvlInfo else: lvlDebug)
|
var log = newConsoleLogger(when defined(release): lvlInfo else: lvlDebug)
|
||||||
|
|
||||||
|
proc cleanup(sig: cint = 0) =
|
||||||
|
debug "Cleaning up..."
|
||||||
|
if jclient != nil:
|
||||||
|
discard jclient.deactivate()
|
||||||
|
discard jclient.clientClose()
|
||||||
|
jclient = nil
|
||||||
|
|
||||||
proc errorCb(msg: cstring) {.cdecl.} =
|
proc errorCb(msg: cstring) {.cdecl.} =
|
||||||
# Suppress verbose JACK error messages when server is not available by
|
# Suppress verbose JACK error messages when server is not available by
|
||||||
# default. Pass ``lvlAll`` when creating the logger to enable them.
|
# default. Pass ``lvlAll`` when creating the logger to enable them.
|
||||||
debug "JACK error: " & $msg
|
debug "JACK error: " & $msg
|
||||||
|
|
||||||
proc cleanup(sig: cint = 0) {.noconv.} =
|
proc signalCb(sig: cint) {.noconv.} =
|
||||||
debug "Cleaning up..."
|
info "Received signal: " & $sig
|
||||||
|
exitSignalled = true
|
||||||
|
|
||||||
if jclient != nil:
|
proc shutdownCb(arg: pointer = nil) {.cdecl.} =
|
||||||
discard jclient.deactivate()
|
info "JACK server has shut down."
|
||||||
discard jclient.clientClose()
|
exitSignalled = true
|
||||||
jclient = nil
|
|
||||||
|
|
||||||
quit QuitSuccess
|
|
||||||
|
|
||||||
proc portConnected(portA: PortIdT; portB: PortIdT; connect: cint; arg: pointer) {.cdecl.} =
|
proc portConnected(portA: PortIdT; portB: PortIdT; connect: cint; arg: pointer) {.cdecl.} =
|
||||||
let portAPtr = jclient.portById(portA)
|
let portAPtr = jclient.portById(portA)
|
||||||
|
@ -40,26 +46,28 @@ proc portConnected(portA: PortIdT; portB: PortIdT; connect: cint; arg: pointer)
|
||||||
|
|
||||||
addHandler(log)
|
addHandler(log)
|
||||||
setErrorFunction(errorCb)
|
setErrorFunction(errorCb)
|
||||||
jclient = clientOpen("jacket_port_register", NoStartServer.ord, status.addr)
|
jclient = clientOpen("jacket_port_connect_cb", NoStartServer.ord, status.addr)
|
||||||
debug "Server status: " & $status
|
debug "JACK server status: " & $status
|
||||||
|
|
||||||
if jclient == nil:
|
if jclient == nil:
|
||||||
error getJackStatusErrorString(status)
|
error getJackStatusErrorString(status)
|
||||||
quit 1
|
quit QuitFailure
|
||||||
|
|
||||||
when defined(windows):
|
when defined(windows):
|
||||||
setSignalProc(cleanup, SIGABRT, SIGINT, SIGTERM)
|
setSignalProc(signalCb, SIGABRT, SIGINT, SIGTERM)
|
||||||
else:
|
else:
|
||||||
setSignalProc(cleanup, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
setSignalProc(signalCb, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
||||||
|
|
||||||
discard jclient.portRegister("in_1", JACK_DEFAULT_AUDIO_TYPE, PortIsInput.ord, 0)
|
discard jclient.portRegister("in_1", JACK_DEFAULT_AUDIO_TYPE, PortIsInput.ord, 0)
|
||||||
discard jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
discard jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
||||||
|
|
||||||
if jclient.setPortConnectCallback(portConnected, nil) != 0:
|
if jclient.setPortConnectCallback(portConnected, nil) != 0:
|
||||||
error "Error: could not set port connection callback."
|
error "Error: could not set JACK port connection callback."
|
||||||
|
|
||||||
|
jclient.onShutdown(shutdownCb, nil)
|
||||||
|
|
||||||
if jclient.activate() == 0:
|
if jclient.activate() == 0:
|
||||||
while true:
|
while not exitSignalled:
|
||||||
sleep(50)
|
sleep(50)
|
||||||
|
|
||||||
cleanup() # normally not reached
|
cleanup()
|
|
@ -4,40 +4,48 @@ import jacket
|
||||||
|
|
||||||
var jclient: ClientTPtr
|
var jclient: ClientTPtr
|
||||||
var status: cint
|
var status: cint
|
||||||
|
var exitSignalled: bool = false
|
||||||
var log = newConsoleLogger(when defined(release): lvlInfo else: lvlDebug)
|
var log = newConsoleLogger(when defined(release): lvlInfo else: lvlDebug)
|
||||||
|
|
||||||
|
proc cleanup(sig: cint = 0) =
|
||||||
|
debug "Cleaning up..."
|
||||||
|
if jclient != nil:
|
||||||
|
discard jclient.clientClose()
|
||||||
|
jclient = nil
|
||||||
|
|
||||||
proc errorCb(msg: cstring) {.cdecl.} =
|
proc errorCb(msg: cstring) {.cdecl.} =
|
||||||
# Suppress verbose JACK error messages when server is not available by
|
# Suppress verbose JACK error messages when server is not available by
|
||||||
# default. Pass ``lvlAll`` when creating the logger to enable them.
|
# default. Pass ``lvlAll`` when creating the logger to enable them.
|
||||||
debug "JACK error: " & $msg
|
debug "JACK error: " & $msg
|
||||||
|
|
||||||
proc cleanup(sig: cint = 0) {.noconv.} =
|
proc signalCb(sig: cint) {.noconv.} =
|
||||||
debug "Cleaning up..."
|
info "Received signal: " & $sig
|
||||||
|
exitSignalled = true
|
||||||
if jclient != nil:
|
|
||||||
discard jclient.clientClose
|
|
||||||
jclient = nil
|
|
||||||
|
|
||||||
quit QuitSuccess
|
proc shutdownCb(arg: pointer = nil) {.cdecl.} =
|
||||||
|
info "JACK server has shut down."
|
||||||
|
exitSignalled = true
|
||||||
|
|
||||||
addHandler(log)
|
addHandler(log)
|
||||||
setErrorFunction(errorCb)
|
setErrorFunction(errorCb)
|
||||||
jclient = clientOpen("jacket_port_register", NoStartServer.ord or UseExactName.ord, status.addr)
|
jclient = clientOpen("jacket_port_register", NoStartServer.ord or UseExactName.ord, status.addr)
|
||||||
debug "Server status: " & $status
|
debug "JACK server status: " & $status
|
||||||
|
|
||||||
if jclient == nil:
|
if jclient == nil:
|
||||||
error getJackStatusErrorString(status)
|
error getJackStatusErrorString(status)
|
||||||
quit 1
|
quit 1
|
||||||
|
|
||||||
when defined(windows):
|
when defined(windows):
|
||||||
setSignalProc(cleanup, SIGABRT, SIGINT, SIGTERM)
|
setSignalProc(signalCb, SIGABRT, SIGINT, SIGTERM)
|
||||||
else:
|
else:
|
||||||
setSignalProc(cleanup, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
setSignalProc(signalCb, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
||||||
|
|
||||||
discard jclient.portRegister("in_1", JACK_DEFAULT_AUDIO_TYPE, PortIsInput.ord, 0)
|
discard jclient.portRegister("in_1", JACK_DEFAULT_AUDIO_TYPE, PortIsInput.ord, 0)
|
||||||
discard jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
discard jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
||||||
|
|
||||||
while true:
|
jclient.onShutdown(shutdownCb, nil)
|
||||||
|
|
||||||
|
while not exitSignalled:
|
||||||
sleep(50)
|
sleep(50)
|
||||||
|
|
||||||
cleanup() # normally not reached
|
cleanup()
|
|
@ -3,8 +3,9 @@ import signal
|
||||||
import jacket
|
import jacket
|
||||||
|
|
||||||
var jclient: ClientTPtr
|
var jclient: ClientTPtr
|
||||||
var out1: PortTPtr
|
var outPort: PortTPtr
|
||||||
var status: cint
|
var status: cint
|
||||||
|
var exitSignalled: bool = false
|
||||||
var log = newConsoleLogger(when defined(release): lvlInfo else: lvlDebug)
|
var log = newConsoleLogger(when defined(release): lvlInfo else: lvlDebug)
|
||||||
|
|
||||||
type
|
type
|
||||||
|
@ -40,27 +41,28 @@ proc tick(osc: SineOscPtr): float =
|
||||||
if osc.phase >= tableSize:
|
if osc.phase >= tableSize:
|
||||||
osc.phase -= tableSize
|
osc.phase -= tableSize
|
||||||
|
|
||||||
proc errorCb(msg: cstring) {.cdecl.} =
|
proc cleanup() =
|
||||||
# Suppress verbose JACK error messages when server is not available by
|
|
||||||
# default. Pass ``lvlAll`` when creating the logger to enable them.
|
|
||||||
debug "JACK error: " & $msg
|
|
||||||
|
|
||||||
proc cleanup(sig: cint = 0) {.noconv.} =
|
|
||||||
debug "Cleaning up..."
|
debug "Cleaning up..."
|
||||||
|
|
||||||
if jclient != nil:
|
if jclient != nil:
|
||||||
discard jclient.deactivate()
|
discard jclient.deactivate()
|
||||||
discard jclient.clientClose()
|
discard jclient.clientClose()
|
||||||
jclient = nil
|
jclient = nil
|
||||||
|
|
||||||
quit QuitSuccess
|
proc errorCb(msg: cstring) {.cdecl.} =
|
||||||
|
# Suppress verbose JACK error messages when server is not available by
|
||||||
|
# default. Pass ``lvlAll`` when creating the logger to enable them.
|
||||||
|
debug "JACK error: " & $msg
|
||||||
|
|
||||||
|
proc signalCb(sig: cint) {.noconv.} =
|
||||||
|
info "Received signal: " & $sig
|
||||||
|
exitSignalled = true
|
||||||
|
|
||||||
proc shutdownCb(arg: pointer = nil) {.cdecl.} =
|
proc shutdownCb(arg: pointer = nil) {.cdecl.} =
|
||||||
debug "Server has shut down"
|
info "JACK server has shut down."
|
||||||
cleanup()
|
exitSignalled = true
|
||||||
|
|
||||||
proc process(nFrames: NFramesT, arg: pointer): cint {.cdecl.} =
|
proc processCb(nFrames: NFramesT, arg: pointer): cint {.cdecl.} =
|
||||||
var outbuf = cast[JackBufferPtr](portGetBuffer(out1, nFrames))
|
var outbuf = cast[JackBufferPtr](portGetBuffer(outPort, nFrames))
|
||||||
let osc = cast[SineOscPtr](arg)
|
let osc = cast[SineOscPtr](arg)
|
||||||
|
|
||||||
for i in 0 ..< nFrames:
|
for i in 0 ..< nFrames:
|
||||||
|
@ -70,35 +72,40 @@ proc process(nFrames: NFramesT, arg: pointer): cint {.cdecl.} =
|
||||||
|
|
||||||
addHandler(log)
|
addHandler(log)
|
||||||
|
|
||||||
# create JACK client
|
# Create JACK client
|
||||||
setErrorFunction(errorCb)
|
setErrorFunction(errorCb)
|
||||||
jclient = clientOpen("jacket_port_register", NoStartServer.ord or UseExactName.ord, status.addr)
|
jclient = clientOpen("jacket_sine", NoStartServer.ord or UseExactName.ord, status.addr)
|
||||||
debug "Server status: " & $status
|
debug "JACK server status: " & $status
|
||||||
|
|
||||||
if jclient == nil:
|
if jclient == nil:
|
||||||
error getJackStatusErrorString(status)
|
error getJackStatusErrorString(status)
|
||||||
quit 1
|
quit 1
|
||||||
|
|
||||||
|
# Create sine oscillator
|
||||||
let sampleRate =(float) jclient.getSampleRate()
|
let sampleRate =(float) jclient.getSampleRate()
|
||||||
|
debug "JACK sample rate: " & $sampleRate
|
||||||
var osc = initSineOsc(sampleRate, sineFreq)
|
var osc = initSineOsc(sampleRate, sineFreq)
|
||||||
|
|
||||||
|
# Set up signal handlers to clean up on exit
|
||||||
when defined(windows):
|
when defined(windows):
|
||||||
setSignalProc(cleanup, SIGABRT, SIGINT, SIGTERM)
|
setSignalProc(signalCb, SIGABRT, SIGINT, SIGTERM)
|
||||||
else:
|
else:
|
||||||
setSignalProc(cleanup, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
setSignalProc(signalCb, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
||||||
|
|
||||||
if jclient.setProcessCallback(process, osc.addr) != 0:
|
# Register JACK callbacks
|
||||||
error "Could not set process callback function."
|
if jclient.setProcessCallback(processCb, osc.addr) != 0:
|
||||||
|
error "Could not set JACK process callback function."
|
||||||
cleanup()
|
cleanup()
|
||||||
|
|
||||||
jclient.onShutdown(shutdownCb, nil)
|
jclient.onShutdown(shutdownCb, nil)
|
||||||
|
|
||||||
out1 = jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
# Create output port
|
||||||
|
outPort = jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
||||||
|
|
||||||
|
# Activate JACK client ...
|
||||||
if jclient.activate() == 0:
|
if jclient.activate() == 0:
|
||||||
# keep running until the Ctrl+C
|
# ... and keep running until a signal is received
|
||||||
while true:
|
while not exitSignalled:
|
||||||
sleep(50)
|
sleep(50)
|
||||||
|
|
||||||
cleanup() # normally not reached
|
cleanup()
|
Loading…
Reference in New Issue