-- | Optimised decode function for OSC packets. module Sound.OSC.Coding.Decode.Binary (get_packet ,decodeMessage ,decodeBundle ,decodePacket ,decodePacket_strict) where import Control.Applicative {- base -} import Control.Monad {- base -} import Data.Int {- base -} import Data.Word {- base -} import qualified Data.Binary.Get as G {- binary -} import qualified Data.Binary.IEEE754 as I {- data-binary-ieee754 -} import qualified Data.ByteString.Char8 as S.C {- bytestring -} import qualified Data.ByteString.Lazy as B {- bytestring -} import qualified Data.ByteString.Lazy.Char8 as C {- bytestring -} import qualified Sound.OSC.Coding.Byte as Byte {- hosc -} import Sound.OSC.Coding.Convert {- hosc -} import Sound.OSC.Datum {- hosc -} import Sound.OSC.Packet {- hosc -} import qualified Sound.OSC.Time as Time {- hosc -} -- | Get a 32 bit integer in big-endian byte order. getInt32be :: G.Get Int32 getInt32be = fmap word32_to_int32 G.getWord32be -- | Get a 64 bit integer in big-endian byte order. getInt64be :: G.Get Int64 getInt64be = fmap word64_to_int64 G.getWord64be -- | Get an aligned OSC string. get_string :: G.Get String get_string = do s <- G.getLazyByteStringNul G.skip (int64_to_int (Byte.align (B.length s + 1))) return (C.unpack s) -- | Get an aligned OSC string. get_ascii :: G.Get ASCII get_ascii = do s <- G.getLazyByteStringNul G.skip (int64_to_int (Byte.align (B.length s + 1))) return (S.C.pack (C.unpack s)) -- | Get binary data prefixed by byte count. get_bytes :: Word32 -> G.Get B.ByteString get_bytes n = do b <- G.getLazyByteString (word32_to_int64 n) if n /= int64_to_word32 (B.length b) then fail "get_bytes: end of stream" else G.skip (word32_to_int (Byte.align n)) return b -- | Get an OSC datum. get_datum :: Datum_Type -> G.Get Datum get_datum ty = case ty of 'i' -> fmap Int32 getInt32be 'h' -> fmap Int64 getInt64be 'f' -> fmap Float I.getFloat32be 'd' -> fmap Double I.getFloat64be 's' -> fmap ASCII_String get_ascii 'b' -> fmap Blob (get_bytes =<< G.getWord32be) 't' -> fmap (TimeStamp . Time.ntpi_to_ntpr) G.getWord64be 'm' -> do b0 <- G.getWord8 b1 <- G.getWord8 b2 <- G.getWord8 b3 <- G.getWord8 return (Midi (MIDI b0 b1 b2 b3)) _ -> fail ("get_datum: illegal type " ++ show ty) -- | Get an OSC 'Message', fail if type descriptor is invalid. get_message :: G.Get Message get_message = do cmd <- get_string dsc <- get_ascii case S.C.unpack dsc of ',':tags -> do arg <- mapM get_datum tags return (Message cmd arg) e -> fail ("get_message: invalid type descriptor string: " ++ e) -- | Get a sequence of OSC 'Message's, each one headed by its length. get_message_seq :: G.Get [Message] get_message_seq = do b <- G.isEmpty if b then return [] else do p <- flip G.isolate get_message . word32_to_int =<< G.getWord32be ps <- get_message_seq return (p:ps) -- | Get a bundle. Fail if bundle header is not found in packet. get_bundle :: G.Get Bundle get_bundle = do h <- G.getByteString (S.C.length Byte.bundleHeader_strict) when (h /= Byte.bundleHeader_strict) (fail "get_bundle: not a bundle") t <- fmap Time.ntpi_to_ntpr G.getWord64be fmap (Bundle t) get_message_seq -- | Get an OSC 'Packet'. get_packet :: G.Get Packet get_packet = fmap Packet_Bundle get_bundle <|> fmap Packet_Message get_message {-# INLINE decodeMessage #-} {-# INLINE decodeBundle #-} {-# INLINE decodePacket #-} {-# INLINE decodePacket_strict #-} {- | Decode an OSC 'Message' from a lazy ByteString. > let b = B.pack [47,103,95,102,114,101,101,0,44,105,0,0,0,0,0,0] > decodeMessage b == Message "/g_free" [Int32 0] -} decodeMessage :: B.ByteString -> Message decodeMessage = G.runGet get_message -- | Decode an OSC 'Bundle' from a lazy ByteString. decodeBundle :: B.ByteString -> Bundle decodeBundle = G.runGet get_bundle {- | Decode an OSC packet from a lazy ByteString. > let b = B.pack [47,103,95,102,114,101,101,0,44,105,0,0,0,0,0,0] > decodePacket b == Packet_Message (Message "/g_free" [Int32 0]) -} decodePacket :: B.ByteString -> Packet decodePacket = G.runGet get_packet -- | Decode an OSC packet from a strict Char8 ByteString. decodePacket_strict :: S.C.ByteString -> Packet decodePacket_strict = G.runGet get_packet . B.fromChunks . (:[])