author | unc0rr |
Thu, 06 May 2010 17:39:08 +0000 | |
changeset 3435 | 4e4f88a7bdf2 |
parent 3425 | ead2ed20dfd4 |
child 3451 | 62089ccec75c |
permissions | -rw-r--r-- |
1804 | 1 |
module ServerCore where |
2 |
||
3 |
import Network |
|
4 |
import Control.Concurrent |
|
5 |
import Control.Concurrent.Chan |
|
6 |
import Control.Monad |
|
7 |
import qualified Data.IntMap as IntMap |
|
8 |
import System.Log.Logger |
|
3435 | 9 |
import Control.Monad.Reader |
1804 | 10 |
-------------------------------------- |
11 |
import CoreTypes |
|
12 |
import NetRoutines |
|
13 |
import HWProtoCore |
|
14 |
import Actions |
|
1833 | 15 |
import OfficialServer.DBInteraction |
3435 | 16 |
import RoomsAndClients |
1804 | 17 |
|
1839
5dd4cb7fd7e5
Server now send ASKPASSWORD command to frontend when user has web account
unc0rr
parents:
1833
diff
changeset
|
18 |
|
2173 | 19 |
timerLoop :: Int -> Chan CoreMessage -> IO() |
2349 | 20 |
timerLoop tick messagesChan = threadDelay (30 * 10^6) >> writeChan messagesChan (TimerAction tick) >> timerLoop (tick + 1) messagesChan |
1927
e2031906a347
Ping clients every 30 seconds. Disconnection due to ping timeout to be implemented.
unc0rr
parents:
1926
diff
changeset
|
21 |
|
1839
5dd4cb7fd7e5
Server now send ASKPASSWORD command to frontend when user has web account
unc0rr
parents:
1833
diff
changeset
|
22 |
|
3435 | 23 |
reactCmd :: ServerInfo -> ClientIndex -> [String] -> MRnC -> IO () |
24 |
reactCmd sInfo ci cmd rnc = do |
|
25 |
actions <- withRoomsAndClients rnc (\irnc -> runReader (handleCmd cmd) (ci, irnc)) |
|
26 |
forM_ actions (processAction (ci, sInfo, rnc)) |
|
1804 | 27 |
|
3435 | 28 |
mainLoop :: ServerInfo -> MRnC -> IO () |
29 |
mainLoop serverInfo rnc = forever $ do |
|
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
30 |
r <- readChan $ coreChan serverInfo |
3425 | 31 |
|
3435 | 32 |
case r of |
33 |
Accept ci -> do |
|
34 |
processAction |
|
35 |
(undefined, serverInfo, rnc) (AddClient ci) |
|
36 |
return () |
|
1804 | 37 |
|
3435 | 38 |
ClientMessage (clID, cmd) -> do |
39 |
debugM "Clients" $ (show clID) ++ ": " ++ (show cmd) |
|
40 |
--if clID `IntMap.member` clients then |
|
41 |
reactCmd serverInfo clID cmd rnc |
|
42 |
return () |
|
43 |
--else |
|
44 |
--do |
|
45 |
--debugM "Clients" "Message from dead client" |
|
46 |
--return (serverInfo, rnc) |
|
1804 | 47 |
|
3435 | 48 |
ClientAccountInfo (clID, info) -> do |
49 |
--if clID `IntMap.member` clients then |
|
50 |
processAction |
|
51 |
(clID, serverInfo, rnc) |
|
52 |
(ProcessAccountInfo info) |
|
53 |
return () |
|
54 |
--else |
|
55 |
--do |
|
56 |
--debugM "Clients" "Got info for dead client" |
|
57 |
--return (serverInfo, rnc) |
|
1927
e2031906a347
Ping clients every 30 seconds. Disconnection due to ping timeout to be implemented.
unc0rr
parents:
1926
diff
changeset
|
58 |
|
3435 | 59 |
TimerAction tick -> |
60 |
return () |
|
61 |
--liftM snd $ |
|
62 |
-- foldM processAction (0, serverInfo, rnc) $ |
|
63 |
-- PingAll : [StatsAction | even tick] |
|
1804 | 64 |
|
1927
e2031906a347
Ping clients every 30 seconds. Disconnection due to ping timeout to be implemented.
unc0rr
parents:
1926
diff
changeset
|
65 |
startServer :: ServerInfo -> Socket -> IO () |
e2031906a347
Ping clients every 30 seconds. Disconnection due to ping timeout to be implemented.
unc0rr
parents:
1926
diff
changeset
|
66 |
startServer serverInfo serverSocket = do |
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
67 |
putStrLn $ "Listening on port " ++ show (listenPort serverInfo) |
1804 | 68 |
|
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
69 |
forkIO $ |
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
70 |
acceptLoop |
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
71 |
serverSocket |
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
72 |
(coreChan serverInfo) |
1804 | 73 |
|
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
74 |
return () |
3435 | 75 |
|
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
76 |
forkIO $ timerLoop 0 $ coreChan serverInfo |
1804 | 77 |
|
2867
9be6693c78cb
- Unbreak support for client versions prior to 0.9.13-dev
unc0rr
parents:
2349
diff
changeset
|
78 |
startDBConnection serverInfo |
1804 | 79 |
|
3435 | 80 |
rnc <- newRoomsAndClients newRoom |
81 |
||
82 |
forkIO $ mainLoop serverInfo rnc |
|
2184 | 83 |
|
3425 | 84 |
forever $ threadDelay (60 * 60 * 10^6) >> putStrLn "***" |