Compare commits
No commits in common. "1127b1ec097ad0bf113334de7761938173dceb68" and "5edb9724a07e0912508f33cb4e8a724bf1bec4c2" have entirely different histories.
1127b1ec09
...
5edb9724a0
26
README.md
26
README.md
|
@ -3,38 +3,12 @@
|
|||
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
|
||||
|
||||
This software is released under the *MIT License*. See the [LICENSE](./LICENSE)
|
||||
file for more information.
|
||||
|
||||
|
||||
[`nimble install`]: https://github.com/nim-lang/nimble#nimble-usage
|
||||
[C API]: https://jackaudio.org/api/
|
||||
[examples]: ./examples
|
||||
[JACK]: https://jackaudio.org/
|
||||
[Nim]: https://nim-lang.org/
|
||||
|
|
|
@ -3,9 +3,8 @@ import signal
|
|||
import jacket
|
||||
|
||||
var jclient: ClientTPtr
|
||||
var outPort: PortTPtr
|
||||
var out1: PortTPtr
|
||||
var status: cint
|
||||
var exitSignalled: bool = false
|
||||
var log = newConsoleLogger(when defined(release): lvlInfo else: lvlDebug)
|
||||
|
||||
type
|
||||
|
@ -41,28 +40,27 @@ proc tick(osc: SineOscPtr): float =
|
|||
if osc.phase >= tableSize:
|
||||
osc.phase -= tableSize
|
||||
|
||||
proc cleanup() =
|
||||
debug "Cleaning up..."
|
||||
if jclient != nil:
|
||||
discard jclient.deactivate()
|
||||
discard jclient.clientClose()
|
||||
jclient = nil
|
||||
|
||||
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 cleanup(sig: cint = 0) {.noconv.} =
|
||||
debug "Cleaning up..."
|
||||
|
||||
if jclient != nil:
|
||||
discard jclient.deactivate()
|
||||
discard jclient.clientClose()
|
||||
jclient = nil
|
||||
|
||||
quit QuitSuccess
|
||||
|
||||
proc shutdownCb(arg: pointer = nil) {.cdecl.} =
|
||||
info "JACK server has shut down."
|
||||
exitSignalled = true
|
||||
debug "Server has shut down"
|
||||
cleanup()
|
||||
|
||||
proc processCb(nFrames: NFramesT, arg: pointer): cint {.cdecl.} =
|
||||
var outbuf = cast[JackBufferPtr](portGetBuffer(outPort, nFrames))
|
||||
proc process(nFrames: NFramesT, arg: pointer): cint {.cdecl.} =
|
||||
var outbuf = cast[JackBufferPtr](portGetBuffer(out1, nFrames))
|
||||
let osc = cast[SineOscPtr](arg)
|
||||
|
||||
for i in 0 ..< nFrames:
|
||||
|
@ -72,40 +70,35 @@ proc processCb(nFrames: NFramesT, arg: pointer): cint {.cdecl.} =
|
|||
|
||||
addHandler(log)
|
||||
|
||||
# Create JACK client
|
||||
# create JACK client
|
||||
setErrorFunction(errorCb)
|
||||
jclient = clientOpen("jacket_sine", NoStartServer.ord or UseExactName.ord, status.addr)
|
||||
debug "JACK server status: " & $status
|
||||
jclient = clientOpen("jacket_port_register", NoStartServer.ord or UseExactName.ord, status.addr)
|
||||
debug "Server status: " & $status
|
||||
|
||||
if jclient == nil:
|
||||
error getJackStatusErrorString(status)
|
||||
quit 1
|
||||
|
||||
# Create sine oscillator
|
||||
let sampleRate =(float) jclient.getSampleRate()
|
||||
debug "JACK sample rate: " & $sampleRate
|
||||
var osc = initSineOsc(sampleRate, sineFreq)
|
||||
|
||||
# Set up signal handlers to clean up on exit
|
||||
when defined(windows):
|
||||
setSignalProc(signalCb, SIGABRT, SIGINT, SIGTERM)
|
||||
else:
|
||||
setSignalProc(signalCb, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
||||
|
||||
# Register JACK callbacks
|
||||
if jclient.setProcessCallback(processCb, osc.addr) != 0:
|
||||
error "Could not set JACK process callback function."
|
||||
when defined(windows):
|
||||
setSignalProc(cleanup, SIGABRT, SIGINT, SIGTERM)
|
||||
else:
|
||||
setSignalProc(cleanup, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
||||
|
||||
if jclient.setProcessCallback(process, osc.addr) != 0:
|
||||
error "Could not set process callback function."
|
||||
cleanup()
|
||||
|
||||
jclient.onShutdown(shutdownCb, nil)
|
||||
|
||||
# Create output port
|
||||
outPort = jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
||||
out1 = jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
||||
|
||||
# Activate JACK client ...
|
||||
if jclient.activate() == 0:
|
||||
# ... and keep running until a signal is received
|
||||
while not exitSignalled:
|
||||
# keep running until the Ctrl+C
|
||||
while true:
|
||||
sleep(50)
|
||||
|
||||
cleanup()
|
||||
cleanup() # normally not reached
|
|
@ -12,8 +12,8 @@ proc errorCb(msg: cstring) {.cdecl.} =
|
|||
|
||||
addHandler(log)
|
||||
setErrorFunction(errorCb)
|
||||
jclient = clientOpen("jacket_info", NullOption.ord, status.addr)
|
||||
debug "JACK server status: " & $status
|
||||
jclient = clientOpen("test_jacket", NullOption.ord, status.addr)
|
||||
debug "Server status: " & $status
|
||||
|
||||
if jclient == nil:
|
||||
error getJackStatusErrorString(status)
|
|
@ -4,28 +4,22 @@ import signal
|
|||
|
||||
var jclient: ClientTPtr
|
||||
var status: cint
|
||||
var exitSignalled: bool = false
|
||||
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.} =
|
||||
# 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 cleanup(sig: cint = 0) {.noconv.} =
|
||||
debug "Cleaning up..."
|
||||
|
||||
proc shutdownCb(arg: pointer = nil) {.cdecl.} =
|
||||
info "JACK server has shut down."
|
||||
exitSignalled = true
|
||||
if jclient != nil:
|
||||
discard jclient.deactivate()
|
||||
discard jclient.clientClose()
|
||||
jclient = nil
|
||||
|
||||
quit QuitSuccess
|
||||
|
||||
proc portConnected(portA: PortIdT; portB: PortIdT; connect: cint; arg: pointer) {.cdecl.} =
|
||||
let portAPtr = jclient.portById(portA)
|
||||
|
@ -46,28 +40,26 @@ proc portConnected(portA: PortIdT; portB: PortIdT; connect: cint; arg: pointer)
|
|||
|
||||
addHandler(log)
|
||||
setErrorFunction(errorCb)
|
||||
jclient = clientOpen("jacket_port_connect_cb", NoStartServer.ord, status.addr)
|
||||
debug "JACK server status: " & $status
|
||||
jclient = clientOpen("jacket_port_register", NoStartServer.ord, status.addr)
|
||||
debug "Server status: " & $status
|
||||
|
||||
if jclient == nil:
|
||||
error getJackStatusErrorString(status)
|
||||
quit QuitFailure
|
||||
quit 1
|
||||
|
||||
when defined(windows):
|
||||
setSignalProc(signalCb, SIGABRT, SIGINT, SIGTERM)
|
||||
setSignalProc(cleanup, SIGABRT, SIGINT, SIGTERM)
|
||||
else:
|
||||
setSignalProc(signalCb, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
||||
setSignalProc(cleanup, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
||||
|
||||
discard jclient.portRegister("in_1", JACK_DEFAULT_AUDIO_TYPE, PortIsInput.ord, 0)
|
||||
discard jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
||||
|
||||
if jclient.setPortConnectCallback(portConnected, nil) != 0:
|
||||
error "Error: could not set JACK port connection callback."
|
||||
|
||||
jclient.onShutdown(shutdownCb, nil)
|
||||
error "Error: could not set port connection callback."
|
||||
|
||||
if jclient.activate() == 0:
|
||||
while not exitSignalled:
|
||||
while true:
|
||||
sleep(50)
|
||||
|
||||
cleanup()
|
||||
cleanup() # normally not reached
|
|
@ -4,48 +4,40 @@ import jacket
|
|||
|
||||
var jclient: ClientTPtr
|
||||
var status: cint
|
||||
var exitSignalled: bool = false
|
||||
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.} =
|
||||
# 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 cleanup(sig: cint = 0) {.noconv.} =
|
||||
debug "Cleaning up..."
|
||||
|
||||
proc shutdownCb(arg: pointer = nil) {.cdecl.} =
|
||||
info "JACK server has shut down."
|
||||
exitSignalled = true
|
||||
if jclient != nil:
|
||||
discard jclient.clientClose
|
||||
jclient = nil
|
||||
|
||||
quit QuitSuccess
|
||||
|
||||
addHandler(log)
|
||||
setErrorFunction(errorCb)
|
||||
jclient = clientOpen("jacket_port_register", NoStartServer.ord or UseExactName.ord, status.addr)
|
||||
debug "JACK server status: " & $status
|
||||
debug "Server status: " & $status
|
||||
|
||||
if jclient == nil:
|
||||
error getJackStatusErrorString(status)
|
||||
quit 1
|
||||
|
||||
when defined(windows):
|
||||
setSignalProc(signalCb, SIGABRT, SIGINT, SIGTERM)
|
||||
setSignalProc(cleanup, SIGABRT, SIGINT, SIGTERM)
|
||||
else:
|
||||
setSignalProc(signalCb, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
||||
setSignalProc(cleanup, SIGABRT, SIGHUP, SIGINT, SIGQUIT, SIGTERM)
|
||||
|
||||
discard jclient.portRegister("in_1", JACK_DEFAULT_AUDIO_TYPE, PortIsInput.ord, 0)
|
||||
discard jclient.portRegister("out_1", JACK_DEFAULT_AUDIO_TYPE, PortIsOutput.ord, 0)
|
||||
|
||||
jclient.onShutdown(shutdownCb, nil)
|
||||
|
||||
while not exitSignalled:
|
||||
while true:
|
||||
sleep(50)
|
||||
|
||||
cleanup()
|
||||
cleanup() # normally not reached
|
Loading…
Reference in New Issue