@hackage xml-push0.0.0.18
Push XML from/to client to/from server over XMPP or HTTP
Categories
License
BSD-3-Clause
Maintainer
Yoshikuni Jujo <PAF01143@nifty.ne.jp>
Links
Versions
Installation
Dependencies (19)
- base >=4 && <5
- bytestring >=0.10 && <0.11
- random >=1.0 && <1.1
- stm >=2.4 && <2.5
- crypto-random >=0.0 && <0.1
- handle-like >=0.1 && <0.2 Show all…
Dependents (1)
@hackage/acme-everything
examples/TestSimple.hs
extensions
ScopedTypeVariables
module TestSimple (testSimple) where import Control.Monad import Control.Concurrent import Data.Maybe import Data.Pipe import Data.Pipe.ByteString import System.IO import Text.XML.Pipe import Network.XmlPush import Network.XmlPush.Simple testSimple :: Handle -> IO () testSimple h = do (sp :: SimplePusher Handle) <- generate (One h) () void . forkIO . runPipe_ $ readFrom sp =$= convert (xmlString . (: [])) =$= toHandle stdout runPipe_ $ fromHandle stdin =$= xmlEvent =$= convert fromJust =$= xmlNode [] =$= writeTo sp
examples/simpleClient
import Network import TestSimple main :: IO () main = testSimple =<< connectTo "localhost" (PortNumber 54492)
examples/simpleServer
import Control.Monad import Control.Concurrent import Network import TestSimple main :: IO () main = forever . (void . forkIO . testSimple . fst3 =<<) . accept =<< listenOn (PortNumber 54492) fst3 :: (a, b, c) -> a fst3 (x, _, _) = x