netserver/hedgewars-server.hs
author unc0rr
Thu, 27 Nov 2008 14:36:22 +0000
changeset 1514 c4170faf7b0a
parent 1513 a35c90263e27
child 1558 3370b7ffeb5c
permissions -rw-r--r--
oops, remove leftovers
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1511
a5bafdafb394 Make ghc 6.10 happy
unc0rr
parents: 1510
diff changeset
     1
{-# LANGUAGE CPP, ScopedTypeVariables #-}
1510
98c5799c851b Add some type info
unc0rr
parents: 1508
diff changeset
     2
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
     3
module Main where
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
     4
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
     5
import Network
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
     6
import IO
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
     7
import System.IO
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
     8
import Control.Concurrent
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
     9
import Control.Concurrent.STM
1510
98c5799c851b Add some type info
unc0rr
parents: 1508
diff changeset
    10
import Control.Exception (handle, finally, Exception, IOException)
1461
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
    11
import Control.Monad
1391
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
    12
import Maybe (fromMaybe, isJust, fromJust)
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    13
import Data.List
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    14
import Miscutils
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    15
import HWProto
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    16
import Opts
1478
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
    17
import Data.Time
1397
471c42a1c358 Use C preprocessor to allow compilation in windows
unc0rr
parents: 1396
diff changeset
    18
1398
29eedf717d0f Check for right define
unc0rr
parents: 1397
diff changeset
    19
#if !defined(mingw32_HOST_OS)
1396
abb28dcb6d0d - Send additional info on rooms
unc0rr
parents: 1394
diff changeset
    20
import System.Posix
1397
471c42a1c358 Use C preprocessor to allow compilation in windows
unc0rr
parents: 1396
diff changeset
    21
#endif
471c42a1c358 Use C preprocessor to allow compilation in windows
unc0rr
parents: 1396
diff changeset
    22
1514
c4170faf7b0a oops, remove leftovers
unc0rr
parents: 1513
diff changeset
    23
-- #define IOException Exception
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    24
1461
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
    25
data Messages =
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
    26
	Accept ClientInfo
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
    27
	| ClientMessage ([String], ClientInfo)
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
    28
	| CoreMessage [String]
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
    29
	| TimerTick
1461
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
    30
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
    31
messagesLoop :: TChan [String] -> IO()
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
    32
messagesLoop messagesChan = forever $ do
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
    33
	threadDelay (25 * 10^6) -- 25 seconds
1461
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
    34
	atomically $ writeTChan messagesChan ["PING"]
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    35
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
    36
timerLoop :: TChan [String] -> IO()
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
    37
timerLoop messagesChan = forever $ do
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
    38
	threadDelay (60 * 10^6) -- 60 seconds
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
    39
	atomically $ writeTChan messagesChan ["MINUTELY"]
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
    40
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    41
acceptLoop :: Socket -> TChan ClientInfo -> IO ()
1483
89e24edb6020 Make code flow more clear
unc0rr
parents: 1482
diff changeset
    42
acceptLoop servSock acceptChan =
1511
a5bafdafb394 Make ghc 6.10 happy
unc0rr
parents: 1510
diff changeset
    43
	Control.Exception.handle (\(_ :: IOException) -> putStrLn "exception on connect" >> acceptLoop servSock acceptChan) $
1483
89e24edb6020 Make code flow more clear
unc0rr
parents: 1482
diff changeset
    44
	do
1478
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
    45
	(cHandle, host, _) <- accept servSock
1483
89e24edb6020 Make code flow more clear
unc0rr
parents: 1482
diff changeset
    46
	
1478
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
    47
	currentTime <- getCurrentTime
1481
f741afa7dbf3 Show time of connection start
unc0rr
parents: 1480
diff changeset
    48
	putStrLn $ (show currentTime) ++ " new client: " ++ host
1483
89e24edb6020 Make code flow more clear
unc0rr
parents: 1482
diff changeset
    49
	
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    50
	cChan <- atomically newTChan
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    51
	sendChan <- atomically newTChan
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    52
	forkIO $ clientRecvLoop cHandle cChan
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    53
	forkIO $ clientSendLoop cHandle cChan sendChan
1483
89e24edb6020 Make code flow more clear
unc0rr
parents: 1482
diff changeset
    54
	
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    55
	atomically $ writeTChan acceptChan (ClientInfo cChan sendChan cHandle host currentTime "" 0 "" False False False)
1469
5218aa76939e Handle exceptions on accept
unc0rr
parents: 1468
diff changeset
    56
	atomically $ writeTChan cChan ["ASKME"]
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    57
	acceptLoop servSock acceptChan
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    58
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    59
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    60
listenLoop :: Handle -> [String] -> TChan [String] -> IO ()
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    61
listenLoop handle buf chan = do
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    62
	str <- hGetLine handle
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    63
	if str == "" then do
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    64
		atomically $ writeTChan chan buf
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    65
		listenLoop handle [] chan
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    66
		else
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    67
		listenLoop handle (buf ++ [str]) chan
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    68
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    69
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    70
clientRecvLoop :: Handle -> TChan [String] -> IO ()
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    71
clientRecvLoop handle chan =
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    72
	listenLoop handle [] chan
1478
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
    73
		`catch` (\e -> (clientOff $ show e) >> return ())
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
    74
	where clientOff msg = atomically $ writeTChan chan ["QUIT", msg] -- if the client disconnects, we perform as if it sent QUIT message
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    75
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    76
clientSendLoop :: Handle -> TChan[String] -> TChan[String] -> IO()
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    77
clientSendLoop handle clChan chan = do
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    78
	answer <- atomically $ readTChan chan
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    79
	doClose <- Control.Exception.handle
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    80
		(\(e :: IOException) -> if isQuit answer then return True else sendQuit e >> return False) $ do
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    81
		forM_ answer (\str -> hPutStrLn handle str)
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    82
		hPutStrLn handle ""
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    83
		hFlush handle
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    84
		return $ isQuit answer
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    85
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    86
	if doClose then
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    87
		Control.Exception.handle (\(_ :: IOException) -> putStrLn "error on hClose") $ hClose handle
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    88
		else
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    89
		clientSendLoop handle clChan chan
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    90
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    91
	where
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    92
		sendQuit e = atomically $ writeTChan clChan ["QUIT", show e]
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    93
		isQuit answer = head answer == "BYE"
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    94
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    95
sendAnswers  [] _ clients _ = return clients
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
    96
sendAnswers ((handlesFunc, answer):answers) client clients rooms = do
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
    97
	let recipients = handlesFunc client clients rooms
1476
b3b28e99570f Disconnect clients on BYE message
unc0rr
parents: 1475
diff changeset
    98
	--unless (null recipients) $ putStrLn ("< " ++ (show answer))
1478
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
    99
	when (head answer == "NICK") $ putStrLn (show answer)
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   100
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   101
	clHandles' <- forM recipients $
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   102
		\ch ->
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   103
			do
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   104
			atomically $ writeTChan (sendChan ch) answer
1466
c68b0a0969d3 It seems, I finally got the solution
unc0rr
parents: 1465
diff changeset
   105
			if head answer == "BYE" then return [ch] else return []
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   106
1476
b3b28e99570f Disconnect clients on BYE message
unc0rr
parents: 1475
diff changeset
   107
	let outHandles = concat clHandles'
1478
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
   108
	unless (null outHandles) $ putStrLn ((show $ length outHandles) ++ " / " ++ (show $ length clients) ++ " : " ++ (show answer))
1499
870305c40b81 Don't close socket handles, just leave that job for garbage collector, as doing it manually seems to be the cause of server hangs
unc0rr
parents: 1497
diff changeset
   109
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   110
	let mclients = deleteFirstsBy (==) clients outHandles
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   111
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   112
	sendAnswers answers client mclients rooms
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   113
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   114
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   115
reactCmd :: ServerInfo -> [String] -> ClientInfo -> [ClientInfo] -> [RoomInfo] -> IO ([ClientInfo], [RoomInfo])
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   116
reactCmd serverInfo cmd client clients rooms = do
1473
60e1fad78d58 Cleanup code a bit, some reformatting
unc0rr
parents: 1469
diff changeset
   117
	--putStrLn ("> " ++ show cmd)
1391
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   118
1492
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   119
	let (clientsFunc, roomsFunc, answerFuncs) = handleCmd client clients rooms $ cmd
1391
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   120
	let mrooms = roomsFunc rooms
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   121
	let mclients = (clientsFunc clients)
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   122
	let mclient = fromMaybe client $ find (== client) mclients
1492
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   123
	let answers = map (\x -> x serverInfo) answerFuncs
1391
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   124
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   125
	clientsIn <- sendAnswers answers mclient mclients mrooms
1483
89e24edb6020 Make code flow more clear
unc0rr
parents: 1482
diff changeset
   126
	mapM_ (\cl -> atomically $ writeTChan (chan cl) ["QUIT", "Kicked"]) $ filter forceQuit $ clientsIn
1474
8817adb86da6 Oops, fix build
unc0rr
parents: 1473
diff changeset
   127
	
1483
89e24edb6020 Make code flow more clear
unc0rr
parents: 1482
diff changeset
   128
	return (clientsIn, mrooms)
1391
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   129
735f6d43780b Implement kick
unc0rr
parents: 1385
diff changeset
   130
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   131
mainLoop :: ServerInfo -> TChan ClientInfo -> TChan [String] -> [ClientInfo] -> [RoomInfo] -> IO ()
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   132
mainLoop serverInfo acceptChan messagesChan clients rooms = do
1473
60e1fad78d58 Cleanup code a bit, some reformatting
unc0rr
parents: 1469
diff changeset
   133
	r <- atomically $
60e1fad78d58 Cleanup code a bit, some reformatting
unc0rr
parents: 1469
diff changeset
   134
		(Accept `fmap` readTChan acceptChan) `orElse`
60e1fad78d58 Cleanup code a bit, some reformatting
unc0rr
parents: 1469
diff changeset
   135
		(ClientMessage `fmap` tselect clients) `orElse`
60e1fad78d58 Cleanup code a bit, some reformatting
unc0rr
parents: 1469
diff changeset
   136
		(CoreMessage `fmap` readTChan messagesChan)
1484
c01512115c12 - Add es and sv translations to hedgewars.pro
unc0rr
parents: 1483
diff changeset
   137
	
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   138
	case r of
1478
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
   139
		Accept ci -> do
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
   140
			let sameHostClients = filter (\cl -> host ci == host cl) clients
1514
c4170faf7b0a oops, remove leftovers
unc0rr
parents: 1513
diff changeset
   141
			let haveJustConnected = not $ null $ filter (\cl -> connectTime ci `diffUTCTime` connectTime cl <= 25) sameHostClients
1478
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
   142
			
8bfb417d165e Add simple DoS protection
unc0rr
parents: 1477
diff changeset
   143
			when haveJustConnected $ do
1483
89e24edb6020 Make code flow more clear
unc0rr
parents: 1482
diff changeset
   144
				atomically $ do
89e24edb6020 Make code flow more clear
unc0rr
parents: 1482
diff changeset
   145
					writeTChan (chan ci) ["QUIT", "Reconnected too fast"]
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   146
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   147
			currentTime <- getCurrentTime
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   148
			let newServerInfo = serverInfo{
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   149
					loginsNumber = loginsNumber serverInfo + 1,
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   150
					lastHourUsers = currentTime : lastHourUsers serverInfo
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   151
					}
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   152
			mainLoop newServerInfo acceptChan messagesChan (clients ++ [ci]) rooms
1484
c01512115c12 - Add es and sv translations to hedgewars.pro
unc0rr
parents: 1483
diff changeset
   153
			
1461
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
   154
		ClientMessage (cmd, client) -> do
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   155
			(clientsIn, mrooms) <- reactCmd serverInfo cmd client clients rooms
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   156
			
1385
ca72264f921a Shutdown private server when room is abandoned
unc0rr
parents: 1384
diff changeset
   157
			let hadRooms = (not $ null rooms) && (null mrooms)
1492
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   158
				in unless ((not $ isDedicated serverInfo) && ((null clientsIn) || hadRooms)) $
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   159
					mainLoop serverInfo acceptChan messagesChan clientsIn mrooms
1484
c01512115c12 - Add es and sv translations to hedgewars.pro
unc0rr
parents: 1483
diff changeset
   160
		
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   161
		CoreMessage msg -> case msg of
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   162
			["PING"] ->
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   163
				if not $ null $ clients then
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   164
					do
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   165
					let client = head clients -- don't care
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   166
					(clientsIn, mrooms) <- reactCmd serverInfo msg client clients rooms
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   167
					mainLoop serverInfo acceptChan messagesChan clientsIn mrooms
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   168
				else
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   169
					mainLoop serverInfo acceptChan messagesChan clients rooms
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   170
			["MINUTELY"] -> do
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   171
				currentTime <- getCurrentTime
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   172
				let newServerInfo = serverInfo{
1494
6e6baf165e0c Fix wrong filter
unc0rr
parents: 1493
diff changeset
   173
						lastHourUsers = filter (\t -> currentTime `diffUTCTime` t < 3600) $ lastHourUsers serverInfo
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   174
						}
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   175
				mainLoop newServerInfo acceptChan messagesChan clients rooms
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   176
1492
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   177
startServer :: ServerInfo -> Socket -> IO()
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   178
startServer serverInfo serverSocket = do
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   179
	acceptChan <- atomically newTChan
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   180
	forkIO $ acceptLoop serverSocket acceptChan
1461
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
   181
	
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
   182
	messagesChan <- atomically newTChan
87e5a6c3882c Ping clients every 30 seconds, should help with ghosts on server
unc0rr
parents: 1403
diff changeset
   183
	forkIO $ messagesLoop messagesChan
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   184
	forkIO $ timerLoop messagesChan
1492
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   185
1513
a35c90263e27 Refactor server a bit, now all socket operations are in own threads, two per client
unc0rr
parents: 1511
diff changeset
   186
	mainLoop serverInfo acceptChan messagesChan [] []
1370
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   187
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   188
ff8863ebde17 Add hedgewars server to build process
unc0rr
parents:
diff changeset
   189
main = withSocketsDo $ do
1398
29eedf717d0f Check for right define
unc0rr
parents: 1397
diff changeset
   190
#if !defined(mingw32_HOST_OS)
1396
abb28dcb6d0d - Send additional info on rooms
unc0rr
parents: 1394
diff changeset
   191
	installHandler sigPIPE Ignore Nothing;
1397
471c42a1c358 Use C preprocessor to allow compilation in windows
unc0rr
parents: 1396
diff changeset
   192
#endif
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   193
	serverInfo <- getOpts $ newServerInfo
1492
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   194
	
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   195
	putStrLn $ "Listening on port " ++ show (listenPort serverInfo)
1493
1e422bc5d863 Show last hour logins number
unc0rr
parents: 1492
diff changeset
   196
	serverSocket <- listenOn $ PortNumber (listenPort serverInfo)
1492
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   197
	
2da1fe033f23 Finish refactoring
unc0rr
parents: 1484
diff changeset
   198
	startServer serverInfo serverSocket `finally` sClose serverSocket