X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=Network%2FHTTP%2FLucu%2FMIMEType.hs;h=4b509bf1e1a25f0d23bff16efc700debde2dcd0b;hb=9668dc27a02b59d7bfb1e9e40af3d2619700ad69;hp=fdc112c7eea12ac560492795616b66f446c18faa;hpb=ac2ff93f647d60d43ca3cc54eb776fe0f701ac9e;p=Lucu.git diff --git a/Network/HTTP/Lucu/MIMEType.hs b/Network/HTTP/Lucu/MIMEType.hs index fdc112c..4b509bf 100644 --- a/Network/HTTP/Lucu/MIMEType.hs +++ b/Network/HTTP/Lucu/MIMEType.hs @@ -3,7 +3,7 @@ , UnicodeSyntax #-} --- |Manipulation of MIME Types. +-- |MIME Types module Network.HTTP.Lucu.MIMEType ( MIMEType(..) , mkMIMEType @@ -27,21 +27,25 @@ import Network.HTTP.Lucu.RFC2231 import Prelude hiding (min) import Prelude.Unicode --- |@'MIMEType' \"major\" \"minor\" [(\"name\", \"value\")]@ --- represents \"major\/minor; name=value\". +-- |@'MIMEType' \"major\" \"minor\" [(\"name\", \"value\"), ...]@ +-- represents \"major\/minor; name=value; ...\". data MIMEType = MIMEType { mtMajor ∷ !CIAscii , mtMinor ∷ !CIAscii , mtParams ∷ !(Map CIAscii Text) - } deriving (Eq, Show) + } deriving (Eq) --- |Construct a 'MIMEType' without any parameters. +instance Show MIMEType where + show = A.toString ∘ A.fromAsciiBuilder ∘ printMIMEType + +-- |@'mkMIMEType' major minor@ returns a 'MIMEType' with the given +-- @major@ and @minor@ types but without any parameters. mkMIMEType ∷ CIAscii → CIAscii → MIMEType {-# INLINE mkMIMEType #-} mkMIMEType maj min = MIMEType maj min (∅) --- |Convert a 'MIMEType' to 'AsciiBuilder'. +-- |Convert a 'MIMEType' to an 'AsciiBuilder'. printMIMEType ∷ MIMEType → AsciiBuilder {-# INLINEABLE printMIMEType #-} printMIMEType (MIMEType maj min params) @@ -65,6 +69,7 @@ parseMIMEType str endOfInput return t +-- |'Parser' for an 'MIMEType'. mimeTypeP ∷ Parser MIMEType {-# INLINEABLE mimeTypeP #-} mimeTypeP = do maj ← A.toCIAscii <$> token @@ -73,6 +78,7 @@ mimeTypeP = do maj ← A.toCIAscii <$> token params ← paramsP return $ MIMEType maj min params +-- |'Parser' for a list of 'MIMEType's. mimeTypeListP ∷ Parser [MIMEType] {-# INLINE mimeTypeListP #-} mimeTypeListP = listOf mimeTypeP