midialsa.lua - the ALSA library, plus some interface functions
local ALSA = require 'midialsa' ALSA.client( 'Lua client', 1, 1, false ) ALSA.connectto( 0, 20, 0 ) ALSA.connectfrom( 1, 14, 0 ) while true do local alsaevent = ALSA.input() if alsaevent[1] == ALSA.SND_SEQ_EVENT_PORT_UNSUBSCRIBED then break end ALSA.output( alsaevent ) end
This module offers a Lua interface to the ALSA library. It translates into Lua the Python modules alsaseq.py and alsamidi.py by Patricio Paez; it also offers some functions to translate events from and to the format used in Peter Billam's MIDI.lua Lua module and Sean Burke's MIDI-Perl CPAN module.
This module is in turn translated also into a call-compatible Perl CPAN module: MIDI::ALSA
Functions based on those in alsaseq.py: client(), connectfrom(), connectto(), disconnectfrom(), disconnectto(), fd(), id(), input(), inputpending(), output(), start(), status(), stop() and syncoutput()
Functions based on those in alsamidi.py: noteevent(), noteonevent(), noteoffevent(), pgmchangeevent(), pitchbendevent(), controllerevent(), chanpress() and sysex()
Functions to interface with MIDI.lua: alsa2scoreevent() and scoreevent2alsa()
Functions to to get the current ALSA status: listclients(), listnumports(), listconnectedto(), listconnectedfrom() and parse_address()
Create an ALSA sequencer client with zero or more input or output ports,
and optionally a timing queue. ninputports and noutputports are created
if the quantity requested is between 1 and 64 for each.
If createqueue = true, it creates a queue for stamping the arrival time of
incoming events and scheduling future start times of outgoing events.
For full ALSA functionality, the name
should contain only letters, digits, underscores, equal-signs or spaces,
and should contain at least one letter.
Unlike in the alsaseq.py Python module,
it returns success or failure.
Connect from src_client:src_port to my inputport.
Each input port can connect from more than one client.
The input()
function will receive events
from any intput port and any of the clients connected to each of them.
Events from each client can be distinguished by their source field.
Unlike in the alsaseq.py Python module,
it returns success or failure.
Since version 1.11, and unlike in the alsaseq.py Python module,
if src_client is a string and src_port is undefined,
then
parse_address(src_client)
automatically gets invoked.
This allows you to refer to the clients by name, for example
connectfrom(inputport,'Virtual:1') will connect from
port 1 of the 'Virtual Raw MIDI' client.
Connect my outputport to dest_client:dest_port.
Each outputport can connect to more than one client.
Events sent to an output port using the
output()
funtion will be sent
to all clients that are connected to it using this function.
Unlike in the alsaseq.py Python module,
it returns success or failure.
Since version 1.11, and unlike in the alsaseq.py Python module,
if dest_client is a string and dest_port is undefined,
then
parse_address(dest_client)
automatically gets invoked.
This allows you to refer to the clients by name, for example
connectto(outputport,'Virtual:1') will connect to
port 1 of the 'Virtual Raw MIDI' client.
Disconnect the connection
from the remote src_client:src_port to my inputport.
Returns success or failure.
Since version 1.11, and unlike in the alsaseq.py Python module,
if src_client is a string and src_port is undefined,
then
parse_address(src_client)
automatically gets invoked.
This allows you to refer to the clients by name, for example
disconnectfrom(inputport,'Virtual:1') will disconnect from
port 1 of the 'Virtual Raw MIDI' client.
Disconnect the connection
from my outputport to the remote dest_client:dest_port.
Returns success or failure.
Since version 1.11, and unlike in the alsaseq.py Python module,
if dest_client is a string and dest_port is undefined,
then
parse_address(dest_client)
automatically gets invoked.
This allows you to refer to the clients by name, for example
disconnectto(outputport,'Virtual:1') will disconnect to
port 1 of the 'Virtual Raw MIDI' client.
Return fileno of sequencer.
Return the client number, or 0 if the client is not yet created.
Wait for an ALSA event in any of the input ports and return it. ALSA events are returned as an array with 8 elements:
{type, flags, tag, queue, time, source, destination, data}
Unlike in the alsaseq.py Python module, the time element is in floating-point seconds. The last three elements are also arrays:
source = { src_client, src_port } destination = { dest_client, dest_port } data = { varies depending on type }
The source and destination arrays may be useful within an application for handling events differently according to their source or destination. The event-type constants, beginning with SND_SEQ_, are available as module variables
Note that if the event is of type SND_SEQ_EVENT_PORT_UNSUBSCRIBED then the remote client and port do not seem to get set; you need to use listconnected() to see what's happened.
The data array mostly as documented in
http://alsa-project.org/alsa-doc/alsa-lib/seq.html
For NOTE events, the elements are
{ channel, pitch, velocity, unused, duration }
For SYSEX, the data array has just one element:
the byte-string, including any F0 and F7 bytes.
For most other events, the elements are
{ channel, unused,unused,unused, param, value }
Return the number of bytes available in input buffer.
Use before input()
to wait till an event is ready to be read.
If a connection terminates, then inputpending()
returns,
and the next event will be of type SND_SEQ_EVENT_PORT_UNSUBSCRIBED
Send an ALSA-event-array to an output port.
The format of the event is dicussed in
input()
above.
The event will be output immediately
either if no queue was created in the client
or if the queue parameter is set to ALSA.SND_SEQ_QUEUE_DIRECT,
and otherwise it will be queued and scheduled.
The source is an array with two elements:
{src_client, src_port},
specifying the local output-port from which the event will be sent.
If only one output-port exists, all events are sent from it.
If two or more exist, the src_port determines which to use.
The smallest available port-number (as created by
client()
)
will be used if src_port is less than it,
and the largest available will be used if src_port is greater than it.
The destination is an array with two elements:
{dest_client, dest_port},
specifying the remote client/port to which the event will be sent.
If dest_client is zero, then the event will be sent to all clients
that are subscribed to the source_port (e.g. using
connectto()
).
Since version 1.12, if dest_client is non-zero,
then the event will be sent to that
dest_client:dest_port and nowhere else.
It is possible to send an event to a destination to which there is no connection, but it's not usually the right thing to do. Normally, you should set up a connection, to allow the underlying RawMIDI ports to remain open while playing - otherwise, ALSA will reset the port after every event.
If the queue buffer is full, output()
will wait until space is available to output the event.
Use status()
to know how many events are scheduled in the queue.
Start the queue. It is ignored if the client does not have a queue.
Return { status, time, events } of the queue.
Status: 0 if stopped, 1 if running. Time: current time in seconds. Events: number of output events scheduled in the queue.
If the client does not have a queue the value {0,0,0} is returned. Unlike in the alsaseq.py Python module, the time element is in floating-point seconds.
Stop the queue. It is ignored if the client does not have a queue.
Wait until output events are processed.
Returns an ALSA-event-array, to be scheduled by
output()
.
Unlike in the alsaseq.py Python module,
the start and duration elements are in floating-point seconds.
Returns an ALSA-event-array to be sent directly with
output()
.
Returns an ALSA-event-array to be sent directly with output()
.
Returns an ALSA-event-array to be sent by output()
.
If start is not used, the event will be sent directly;
if start is provided, the event will be scheduled in a queue.
Unlike in the alsaseq.py Python module,
the start element, when provided, is in floating-point seconds.
Returns an ALSA-event-array to be sent by output()
.
The value is from -8192 to 8191.
If start is not used, the event will be sent directly;
if start is provided, the event will be scheduled in a queue.
Unlike in the alsaseq.py Python module,
the start element, when provided, is in floating-point seconds.
Returns an ALSA-event-array to be sent by output()
.
If start is not used, the event will be sent directly;
if start is provided, the event will be scheduled in a queue.
Unlike in the alsaseq.py Python module,
the start element, when provided, is in floating-point seconds.
Returns an ALSA-event-array to be sent by output()
.
If start is not used, the event will be sent directly;
if start is provided, the event will be scheduled in a queue.
Unlike in the alsaseq.py Python module,
the start element, when provided, is in floating-point seconds.
Returns an ALSA-event-array to be sent by output()
.
If start is not used, the event will be sent directly;
if start is provided, the event will be scheduled in a queue.
The string should start with your Manufacturer ID,
but should not contain any of the F0 or F7 bytes,
they will be added automatically;
indeed the string must not contain any bytes with the top-bit set.
Returns an event in the millisecond-tick score-format used by the MIDI.lua and MIDI.py modules, based on the score-format in Sean Burke's MIDI-Perl CPAN module. See: MIDI.html#events
Since it combines a note_on and a note_off event into one note event, it will return nil when called with the note_on event; the calling loop must therefore detect nil and not, for example, try to index it.
Returns an ALSA-event-array to be scheduled in a queue by
output()
.
The input is an event in the millisecond-tick score-format used by the
MIDI.lua and
MIDI.py modules,
based on the score-format in Sean Burke's MIDI-Perl CPAN module.
See: MIDI.html#events.
For example:
ALSA.output(ALSA.scoreevent2alsa{'note',4000,1000,0,62,110})
Some events in a .mid file have no equivalent
real-time-midi event, which is the sort that ALSA deals in;
these events will cause scoreevent2alsa()
to return nil.
Therefore if you are going through the events in a midi score
converting them with scoreevent2alsa()
,
you should check that the result is not nil
before doing anything further.
Returns a table with the client-numbers as key
and the descriptive strings of the ALSA client as value :
local clientnumber2clientname = ALSA.listclients()
Returns a table with the client-numbers as key
and how many ports they are running as value,
so if a client is running 4 ports they will be numbered 0..3
local clientnumber2howmanyports = ALSA.listnumports()
Returns an array of three-element arrays
{ {outputport, dest_client, dest_port}, }
with the same data as might have been passed to
connectto()
,
or which could be passed to
disconnectto()
.
Returns an array of three-element arrays
{ {inputport, src_client, src_port}, }
with the same data as might have been passed to
connectfrom()
,
or which could be passed to
disconnectfrom()
.
Given a string, this function returns a two-integer array
( client_number, port_number )
as might be needed by
connectto()
or
connectfrom()
.
For example, even if
client()
has not been called,
"24" will return 24,0 and "25:1" will return 25,1
If the local client is running, then parse_address()
also looks up names. For example, if aconnect -oil
reveals a timidity client:
client 128: 'TiMidity' [type=user]
then parse_address("TiM")
will return 128,0
and parse_address("TiMi:1")
will return 128,1
because it finds the first client with a start-of-string
case-sensitive match to the given name.
parse_address() is called automatically by
connectto()
,
connectfrom()
,
disconnectto()
and
disconnectfrom()
if they are called with the second argument a string
and the third argument undefined.
parse_address() was introduced in version 1.11
and is not present in the alsaseq.py Python module.
SND_SEQ_EVENT_BOUNCE SND_SEQ_EVENT_CHANPRESS SND_SEQ_EVENT_CLIENT_CHANGE SND_SEQ_EVENT_CLIENT_EXIT SND_SEQ_EVENT_CLIENT_START SND_SEQ_EVENT_CLOCK SND_SEQ_EVENT_CONTINUE SND_SEQ_EVENT_CONTROL14 SND_SEQ_EVENT_CONTROLLER SND_SEQ_EVENT_ECHO SND_SEQ_EVENT_KEYPRESS SND_SEQ_EVENT_KEYSIGN SND_SEQ_EVENT_NONE SND_SEQ_EVENT_NONREGPARAM SND_SEQ_EVENT_NOTE SND_SEQ_EVENT_NOTEOFF SND_SEQ_EVENT_NOTEON SND_SEQ_EVENT_OSS SND_SEQ_EVENT_PGMCHANGE SND_SEQ_EVENT_PITCHBEND SND_SEQ_EVENT_PORT_CHANGE SND_SEQ_EVENT_PORT_EXIT SND_SEQ_EVENT_PORT_START SND_SEQ_EVENT_PORT_SUBSCRIBED SND_SEQ_EVENT_PORT_UNSUBSCRIBED SND_SEQ_EVENT_QFRAME SND_SEQ_EVENT_QUEUE_SKEW SND_SEQ_EVENT_REGPARAM SND_SEQ_EVENT_RESET SND_SEQ_EVENT_RESULT SND_SEQ_EVENT_SENSING SND_SEQ_EVENT_SETPOS_TICK SND_SEQ_EVENT_SETPOS_TIME SND_SEQ_EVENT_SONGPOS SND_SEQ_EVENT_SONGSEL SND_SEQ_EVENT_START SND_SEQ_EVENT_STOP SND_SEQ_EVENT_SYNC_POS SND_SEQ_EVENT_SYSEX SND_SEQ_EVENT_SYSTEM SND_SEQ_EVENT_TEMPO SND_SEQ_EVENT_TICK SND_SEQ_EVENT_TIMESIGN SND_SEQ_EVENT_TUNE_REQUEST SND_SEQ_EVENT_USR0 SND_SEQ_EVENT_USR1 SND_SEQ_EVENT_USR2 SND_SEQ_EVENT_USR3 SND_SEQ_EVENT_USR4 SND_SEQ_EVENT_USR5 SND_SEQ_EVENT_USR6 SND_SEQ_EVENT_USR7 SND_SEQ_EVENT_USR8 SND_SEQ_EVENT_USR9 SND_SEQ_EVENT_USR_VAR0 SND_SEQ_EVENT_USR_VAR1 SND_SEQ_EVENT_USR_VAR2 SND_SEQ_EVENT_USR_VAR3 SND_SEQ_EVENT_USR_VAR4 SND_SEQ_QUEUE_DIRECT SND_SEQ_TIME_STAMP_REAL Version VersionDate
This module is available as a LuaRock in http://luarocks.org/repositories/rocks/index.html so you should be able to install it with the command:
$ su Password: # luarocks install midialsa
or:
# luarocks install http://www.pjb.com.au/comp/lua/midialsa-1.12-0.rockspec
Perhaps there should be a general connect_between()
mechanism,
allowing the interconnection of two other clients,
a bit like aconnect 32 20
If an event is of type SND_SEQ_EVENT_PORT_UNSUBSCRIBED
then the remote client and port seem to be zeroed-out,
which makes it hard to know which client has just disconnected.
You have to consult
listconnectedto()
and
listconnectedfrom()
ALSA does not transmit Meta-Events like text_event, and there's not much can be done about that.
Peter J Billam, http://www.pjb.com.au/comp/contact.html
aconnect -oil http://pp.com.mx/python/alsaseq http://search.cpan.org/perldoc?MIDI::ALSA http://www.pjb.com.au/comp/lua/midialsa.html http://luarocks.org/repositories/rocks/index.html#midialsa http://www.pjb.com.au/comp/lua/MIDI.html http://www.pjb.com.au/comp/lua/MIDI.html#events http://alsa-project.org/alsa-doc/alsa-lib/seq.html http://alsa-project.org/alsa-doc/alsa-lib/structsnd__seq__ev__note.html http://alsa-project.org/alsa-doc/alsa-lib/structsnd__seq__ev__ctrl.html http://alsa-project.org/alsa-doc/alsa-lib/structsnd__seq__ev__queue__control.html http://alsa-project.org/alsa-doc/alsa-lib/group___seq_client.html http://alsa-utils.sourcearchive.com/documentation/1.0.20/aconnect_8c-source.html http://alsa-utils.sourcearchive.com/documentation/1.0.8/aplaymidi_8c-source.html snd_seq_client_info_event_filter_clear snd_seq_get_any_client_info snd_seq_get_client_info snd_seq_client_info_t