Stability | provisional |
---|---|
Maintainer | Iavor S. Diatchki |
Sound.Alsa.Sequencer.Event
Description
This module contains functions for working with events. Reference: http://www.alsa-project.org/alsa-doc/alsa-lib/group___seq_event.html
- sync_output_queue :: SndSeq -> IO ()
- event_input :: SndSeq -> IO Event
- event_input_pending :: SndSeq -> Bool -> IO Word
- event_output :: SndSeq -> Event -> IO Word
- event_output_buffer :: SndSeq -> Event -> IO Word
- event_output_direct :: SndSeq -> Event -> IO Word
- event_output_pending :: SndSeq -> IO Word
- extract_output :: SndSeq -> IO Event
- remove_output :: SndSeq -> IO ()
- drain_output :: SndSeq -> IO Word
- drop_output :: SndSeq -> IO ()
- drop_output_buffer :: SndSeq -> IO ()
- drop_input :: SndSeq -> IO ()
- drop_input_buffer :: SndSeq -> IO ()
Documentation
sync_output_queue :: SndSeq -> IO ()Source
Wait until all events of the client are processed.
event_input :: SndSeq -> IO EventSource
Get an event from the input buffer.
If the input buffer is empty, then it is filled with data from the
sequencer queue. If there is no data in the sequencer queue,
then the process is either put to sleep (if the sequencer is operating
in blocking mode), or we throw EAGAIN
(if the sequence is operating
in non-blocking mode).
We may also throw ENOSPC
, which means that the sequencer queue
over-run and some events were lost (this clears the input buffer).
Returns the number of events in the input buffer.
If the input buffer is empty and the boolean argument is true,
then try to fill the input buffer with data from the sequencer queue.
See also: snd_seq_event_input
.
Output an event and drain the buffer, if it became full.
Throws exceptions.
See also: event_output_direct
, event_output_buffer
,
event_output_pending
, drain_output
, drop_output
,
extract_output
, remove_events
Output an event without draining the buffer.
Throws -EAGAIN
if the buffer becomes full.
See also event_output
.
Output an event directly to the sequencer, NOT through the output buffer.
If an error occurs, then we throw an exception.
See also event_output
.
Return the size (in bytes) of pending events on output buffer.
See also snd_seq_event_output
.
Extract the first event in output buffer.
Throws an exception on error.
See also snd_seq_event_output
.
remove_output :: SndSeq -> IO ()Source
Remove the first event in output buffer.
Throws an exception on error.
See also snd_seq_event_output
.
Drain output buffer to sequencer.
This function drains all pending events on the output buffer.
The function returns immediately after the events are sent to the queues
regardless whether the events are processed or not.
To get synchronization with the all event processes,
use sync_output_queue
after calling this function.
Throws an exception on error.
See also: event_output
, sync_output_queue
.
drop_output :: SndSeq -> IO ()Source
Remove events from both the user-space output buffer,
and the kernel-space sequencer queue.
See also: drain_output
, drop_output_buffer
, remove_events
.
drop_output_buffer :: SndSeq -> IO ()Source
Remove events from the user-space output buffer.
See also: drop_output
.
drop_input :: SndSeq -> IO ()Source
Remove events from both the user-space input buffer,
and the kernel-space sequencer queue.
See also: drop_input_buffer
, remove_events
.
drop_input_buffer :: SndSeq -> IO ()Source
Remove events from the user-space input buffer.
See also: drop_input
.