X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=examples%2FHelloWorld.hs;h=d7e0071c8767f72caf9e9bc72c0ef08e748c3b66;hb=f402841101b4b84f263eea1a43c848f81c48ff93;hp=dacd4c363604b4694430c6dcf68e91e0ea91d7b9;hpb=07b641d6c0a4ba07a07ede4d746dfb08a5ed0730;p=Lucu.git diff --git a/examples/HelloWorld.hs b/examples/HelloWorld.hs index dacd4c3..d7e0071 100644 --- a/examples/HelloWorld.hs +++ b/examples/HelloWorld.hs @@ -1,40 +1,39 @@ +{-# LANGUAGE + OverloadedStrings + , UnicodeSyntax + #-} +import Control.Applicative +import Control.Monad.Unicode +import qualified Data.ByteString.Lazy.Char8 as Lazy import Network.HTTP.Lucu -main :: IO () +main ∷ IO () main = let config = defaultConfig { cnfServerPort = "9999" } - resources = mkResTree [ ( [] - , helloWorld ) - - , ( ["urandom"] - , staticFile "/dev/urandom" ) - - , ( ["inc"] - , staticDir "/usr/include" ) - ] - fallbacks = [ \ path -> case path of - ["hello"] -> return $ Just helloWorld - _ -> return Nothing + resources = mkResTree + [ ([] , helloWorld ) + , (["urandom"], staticFile "/dev/urandom") + , (["inc" ], staticDir "/usr/include" ) + ] + fallbacks = [ \ path → case path of + ["hello"] → return $ Just helloWorld + _ → return Nothing ] in do putStrLn "Access http://localhost:9999/ with your browser." runHttpd config resources fallbacks - -helloWorld :: ResourceDef +helloWorld ∷ ResourceDef helloWorld = emptyResource { resGet - = Just $ do --time <- liftIO $ getClockTime - --foundEntity (strongETag "abcde") time - setContentType $ read "text/hello" - outputChunk "Hello, " - outputChunk "World!\n" - outputChunk =<< getRemoteAddr' - + = Just $ do setContentType $ parseMIMEType "text/hello" + putChunk "Hello, " + putChunk "World!\n" + putChunks =≪ Lazy.pack <$> getRemoteAddr' , resPost - = Just $ do str1 <- inputChunk 3 - str2 <- inputChunk 3 - str3 <- inputChunk 3 - setContentType $ read "text/hello" - output ("[" ++ str1 ++ " - " ++ str2 ++ "#" ++ str3 ++ "]") - } \ No newline at end of file + = Just $ do str1 ← getChunk 3 + str2 ← getChunk 3 + str3 ← getChunk 3 + setContentType $ parseMIMEType "text/hello" + putChunks $ Lazy.fromChunks ["[", str1, " - ", str2, "#", str3, "]"] + }