feat: add MIDI receiver example showing use of threading/channels
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
		
							parent
							
								
									64b831039a
								
							
						
					
					
						commit
						f3a6b660d6
					
				
							
								
								
									
										130
									
								
								examples/jacket_midi_print_threading.nim
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										130
									
								
								examples/jacket_midi_print_threading.nim
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,130 @@
 | 
			
		||||
# This requires the 'threading' module and either nim 1.9+
 | 
			
		||||
# or --threads:on:
 | 
			
		||||
#
 | 
			
		||||
#   nimble install threading
 | 
			
		||||
#
 | 
			
		||||
 | 
			
		||||
import std/[isolation, logging, os, strformat]
 | 
			
		||||
import threading/channels
 | 
			
		||||
import signal
 | 
			
		||||
import jacket
 | 
			
		||||
 | 
			
		||||
var
 | 
			
		||||
    jclient: ClientP
 | 
			
		||||
    event: MidiEvent
 | 
			
		||||
    midiPort: PortP
 | 
			
		||||
    midiEventChan: Chan[MidiEvent]
 | 
			
		||||
    midiEventPrinter: Thread[void]
 | 
			
		||||
    status: cint
 | 
			
		||||
    exitSignalled: bool = false
 | 
			
		||||
 | 
			
		||||
var log = newConsoleLogger(when defined(release): lvlInfo else: lvlDebug)
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
proc cleanup() =
 | 
			
		||||
    debug "Cleaning up..."
 | 
			
		||||
 | 
			
		||||
    if jclient != nil:
 | 
			
		||||
        debug "Deactivating JACK client..."
 | 
			
		||||
        discard jclient.deactivate()
 | 
			
		||||
 | 
			
		||||
    if midiEventPrinter.running:
 | 
			
		||||
        debug "Stopping MIDI event printer thread..."
 | 
			
		||||
        # Receiving an invalid event causes receiving thread to wake up and
 | 
			
		||||
        # break its endless loop
 | 
			
		||||
        event.size = 0
 | 
			
		||||
        midiEventChan.send(event)
 | 
			
		||||
 | 
			
		||||
    midiEventPrinter.joinThread()
 | 
			
		||||
 | 
			
		||||
    if jclient != nil:
 | 
			
		||||
        debug "Closing JACK client..."
 | 
			
		||||
        discard jclient.clientClose()
 | 
			
		||||
        jclient = nil
 | 
			
		||||
 | 
			
		||||
    debug "Bye."
 | 
			
		||||
 | 
			
		||||
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.} =
 | 
			
		||||
    info "JACK server has shut down."
 | 
			
		||||
    exitSignalled = true
 | 
			
		||||
 | 
			
		||||
proc midiEventPrinterProc() =
 | 
			
		||||
    var event: MidiEvent
 | 
			
		||||
 | 
			
		||||
    while true:
 | 
			
		||||
        midiEventChan.recv(event)
 | 
			
		||||
 | 
			
		||||
        if event.size == 0:
 | 
			
		||||
            break
 | 
			
		||||
        elif event.size <= 3:
 | 
			
		||||
            for i in 0..<event.size:
 | 
			
		||||
                stdout.write(fmt"{event.buffer[i]:#02X} ")
 | 
			
		||||
 | 
			
		||||
            stdout.write("\n")
 | 
			
		||||
            stdout.flushFile()
 | 
			
		||||
 | 
			
		||||
proc processCb*(nFrames: NFrames, arg: pointer): cint {.cdecl.} =
 | 
			
		||||
    let inbuf = portGetBuffer(midiPort, nFrames)
 | 
			
		||||
    let count = midiGetEventCount(inbuf)
 | 
			
		||||
 | 
			
		||||
    for i in 0..<count:
 | 
			
		||||
        if midiEventGet(event.addr, inbuf, i.uint32) == 0:
 | 
			
		||||
            midiEventChan.send(event)
 | 
			
		||||
            # trySend does not work: https://github.com/nim-lang/threading/issues/30
 | 
			
		||||
            #if not midiEventChan.trySend(event):
 | 
			
		||||
            #    warn "MIDI event channel overflow!"
 | 
			
		||||
 | 
			
		||||
proc main() =
 | 
			
		||||
    addHandler(log)
 | 
			
		||||
 | 
			
		||||
    # Create JACK client
 | 
			
		||||
    setErrorFunction(errorCb)
 | 
			
		||||
    jclient = clientOpen("jacket_midi_print", NoStartServer.ord or UseExactName.ord, status.addr)
 | 
			
		||||
    debug "JACK server status: " & $status
 | 
			
		||||
 | 
			
		||||
    if jclient == nil:
 | 
			
		||||
        error getJackStatusErrorString(status)
 | 
			
		||||
        quit QuitFailure
 | 
			
		||||
 | 
			
		||||
    # 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)
 | 
			
		||||
 | 
			
		||||
    # Set up a thread, which receives MIDI events from process callback via a
 | 
			
		||||
    # Channel and prints them without danger of blocking the process callback
 | 
			
		||||
    midiEventChan = newChan[MidiEvent]()
 | 
			
		||||
    createThread(midiEventPrinter, midiEventPrinterProc)
 | 
			
		||||
 | 
			
		||||
    # Register JACK callbacks
 | 
			
		||||
    if jclient.setProcessCallback(processCb, nil) != 0:
 | 
			
		||||
        error "Could not set JACK process callback function."
 | 
			
		||||
        cleanup()
 | 
			
		||||
        quit QuitFailure
 | 
			
		||||
 | 
			
		||||
    jclient.onShutdown(shutdownCb, nil)
 | 
			
		||||
 | 
			
		||||
    # Create output port
 | 
			
		||||
    midiPort = jclient.portRegister("midi_in", JACK_DEFAULT_MIDI_TYPE, PortIsInput.ord, 0)
 | 
			
		||||
 | 
			
		||||
    # Activate JACK client ...
 | 
			
		||||
    if jclient.activate() == 0:
 | 
			
		||||
        # ... and keep running until a signal is received
 | 
			
		||||
        while not exitSignalled:
 | 
			
		||||
            sleep(200)
 | 
			
		||||
 | 
			
		||||
    cleanup()
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
when isMainModule:
 | 
			
		||||
    main()
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user