-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTest.hs
47 lines (36 loc) · 1.28 KB
/
Test.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import Message
import Network
import System.IO
import Control.Concurrent
connect :: PortNumber -> String -> IO Handle
connect port name = do
handle <- connectTo "localhost" (PortNumber port)
hSetNewlineMode handle (NewlineMode CRLF CRLF)
hPutStrLn handle ("LOGIN " ++ name)
hFlush handle
response <- hGetLine handle
return handle
joinRoom :: Handle -> String -> IO ()
joinRoom handle room = do
hPutStrLn handle ("JOIN #" ++ room)
hFlush handle
return ()
messageRoom :: Handle -> String -> String -> IO ()
messageRoom handle room msg = do
hPutStrLn handle ("MSG #" ++ room ++ " " ++ msg)
hFlush handle
return ()
logout handle = do
hPutStrLn handle "LOGOUT"
hFlush handle
return ()
connectAndLogout port name = connect port name >>= logout
connect500 :: PortNumber -> String -> IO [Handle]
connect500 port namePrefix = do
sequence $ map (\n -> connect port (namePrefix ++ (show n))) [1..500]
logoutAll :: [Handle] -> IO ()
logoutAll users = foldr (>>) (return ()) $ map (\h -> logout h) users
allJoinRoom :: [Handle] -> String -> IO ()
allJoinRoom users room = foldr (>>) (return ()) $ map (\h -> joinRoom h room) users
allMessageRoom :: [Handle] -> String -> String -> IO ()
allMessageRoom users room msg = foldr (>>) (return ()) $ map (\h -> messageRoom h room msg) users