hosc-0.18.1: Haskell Open Sound Control

Safe HaskellSafe
LanguageHaskell2010

Sound.OSC.Transport.FD

Contents

Description

An abstract transport layer with implementations for UDP and TCP transport.

Synopsis

Documentation

class Transport t where Source #

Abstract over the underlying transport protocol.

Methods

sendPacket :: t -> Packet -> IO () Source #

Encode and send an OSC packet.

recvPacket :: t -> IO Packet Source #

Receive and decode an OSC packet.

close :: t -> IO () Source #

Close an existing connection.

Instances
Transport UDP Source #

UDP is an instance of Transport.

Instance details

Defined in Sound.OSC.Transport.FD.UDP

Transport TCP Source #

TCP is an instance of Transport.

Instance details

Defined in Sound.OSC.Transport.FD.TCP

withTransport :: Transport t => IO t -> (t -> IO a) -> IO a Source #

Bracket OSC communication.

Send

Receive

recvBundle :: Transport t => t -> IO Bundle Source #

Variant of recvPacket that runs packet_to_bundle.

recvMessages :: Transport t => t -> IO [Message] Source #

Variant of recvPacket that runs packetMessages.

Timeout

recvPacketTimeout :: Transport t => Double -> t -> IO (Maybe Packet) Source #

Variant of recvPacket that implements an n second timeout.

Wait

waitUntil :: Transport t => t -> (Packet -> Bool) -> IO Packet Source #

Wait for a Packet where the supplied predicate is True, discarding intervening packets.

waitFor :: Transport t => t -> (Packet -> Maybe a) -> IO a Source #

Wait for a Packet where the supplied function does not give Nothing, discarding intervening packets.

waitMessage :: Transport t => t -> IO Message Source #

waitFor packet_to_message, ie. an incoming Message or immediate mode Bundle with one element.

waitAddress :: Transport t => t -> Address_Pattern -> IO Packet Source #

A waitFor for variant using packet_has_address to match on the Address_Pattern of incoming Packets.

waitReply :: Transport t => t -> Address_Pattern -> IO Message Source #

Variant on waitAddress that returns matching Message.

waitDatum :: Transport t => t -> Address_Pattern -> IO [Datum] Source #

Variant of waitReply that runs messageDatum.