X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=Lucu.git;a=blobdiff_plain;f=Network%2FHTTP%2FLucu%2FUtils.hs;h=12f89965c2358f49920aea5b8d36cfb18823c463;hp=5dc1584683b5b23082cc3ae63cbd57ad293fe2e2;hb=30fcb38426696db8b80d322196cc594431e30407;hpb=175e14b3b144537644e65ca76f1fca5c56fd44e9 diff --git a/Network/HTTP/Lucu/Utils.hs b/Network/HTTP/Lucu/Utils.hs index 5dc1584..12f8996 100644 --- a/Network/HTTP/Lucu/Utils.hs +++ b/Network/HTTP/Lucu/Utils.hs @@ -1,10 +1,12 @@ +-- |Utility functions used internally in the Lucu httpd. These +-- functions may be useful too for something else. module Network.HTTP.Lucu.Utils - ( splitBy -- (a -> Bool) -> [a] -> [[a]] - , joinWith -- [a] -> [[a]] -> [a] - , trim -- (a -> Bool) -> [a] -> [a] - , noCaseEq -- String -> String -> Bool - , isWhiteSpace -- Char -> Bool - , quoteStr -- String -> String + ( splitBy + , joinWith + , trim + , noCaseEq + , isWhiteSpace + , quoteStr ) where @@ -15,35 +17,43 @@ import Foreign import Foreign.C import Network.URI - +-- |> splitBy (== ':') "ab:c:def" +-- > ==> ["ab", "c", "def"] splitBy :: (a -> Bool) -> [a] -> [[a]] splitBy isSeparator src = case break isSeparator src of (last , [] ) -> last : [] (first, sep:rest) -> first : splitBy isSeparator rest - +-- |> joinWith ':' ["ab", "c", "def"] +-- > ==> "ab:c:def" joinWith :: [a] -> [[a]] -> [a] joinWith separator xs = foldr (++) [] $ intersperse separator xs - +-- |> trim (== '_') "__ab_c__def___" +-- > ==> "ab_c__def" trim :: (a -> Bool) -> [a] -> [a] trim p = trimTail . trimHead where trimHead = dropWhile p trimTail = reverse . trimHead . reverse - +-- |@'noCaseEq' a b@ is equivalent to @(map toLower a) == (map toLower +-- b)@ noCaseEq :: String -> String -> Bool noCaseEq a b = (map toLower a) == (map toLower b) - +-- |@'isWhiteSpace' c@ is True iff c is one of SP, HT, CR and LF. isWhiteSpace :: Char -> Bool isWhiteSpace = flip elem " \t\r\n" - +-- |> quoteStr "abc" +-- > ==> "\"abc\"" +-- +-- > quoteStr "ab\"c" +-- > ==> "\"ab\\\"c\"" quoteStr :: String -> String quoteStr str = foldr (++) "" (["\""] ++ map quote str ++ ["\""]) where