author | unc0rr |
Mon, 04 Nov 2013 01:23:20 +0400 | |
changeset 9671 | 6e95617988c9 |
parent 9662 | 47dbd9601342 |
child 10051 | cc6f62d7aea2 |
permissions | -rw-r--r-- |
5143
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
1 |
{-# LANGUAGE ScopedTypeVariables #-} |
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
2 |
module OfficialServer.GameReplayStore where |
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
3 |
|
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
4 |
import Data.Time |
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
5 |
import Control.Exception as E |
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
6 |
import qualified Data.Map as Map |
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
7 |
import Data.Sequence() |
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
8 |
import System.Log.Logger |
5996
2c72fe81dd37
Convert boolean variable + a bunch of fields which make sense only while game is going on into Maybe + structure
unc0rr
parents:
5143
diff
changeset
|
9 |
import Data.Maybe |
6040 | 10 |
import Data.Unique |
11 |
import Control.Monad |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8423
diff
changeset
|
12 |
import Data.List |
8482 | 13 |
import qualified Data.ByteString as B |
14 |
import System.Directory |
|
6040 | 15 |
--------------- |
16 |
import CoreTypes |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8423
diff
changeset
|
17 |
import EngineInteraction |
6040 | 18 |
|
5143
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
19 |
|
9662
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
8511
diff
changeset
|
20 |
pickReplayFile :: Int -> [String] -> IO String |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
8511
diff
changeset
|
21 |
pickReplayFile p blackList = do |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
8511
diff
changeset
|
22 |
files <- liftM (filter (\f -> sameProto f && notBlacklisted f)) $ getDirectoryContents "replays" |
8509 | 23 |
if (not $ null files) then |
24 |
return $ "replays/" ++ head files |
|
25 |
else |
|
26 |
return "" |
|
9662
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
8511
diff
changeset
|
27 |
where |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
8511
diff
changeset
|
28 |
sameProto = (isSuffixOf ('.' : show p)) |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
8511
diff
changeset
|
29 |
notBlacklisted = flip notElem blackList |
8509 | 30 |
|
5143
649d87819682
Start implementation of archivements/ratings on server side: replay saving routine
unc0rr
parents:
diff
changeset
|
31 |
saveReplay :: RoomInfo -> IO () |
8423 | 32 |
saveReplay r = do |
5996
2c72fe81dd37
Convert boolean variable + a bunch of fields which make sense only while game is going on into Maybe + structure
unc0rr
parents:
5143
diff
changeset
|
33 |
let gi = fromJust $ gameInfo r |
8423 | 34 |
when (allPlayersHaveRegisteredAccounts gi) $ do |
35 |
time <- getCurrentTime |
|
36 |
u <- liftM hashUnique newUnique |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8423
diff
changeset
|
37 |
let fileName = "replays/" ++ show time ++ "-" ++ show u ++ "." ++ show (roomProto r) |
8423 | 38 |
let replayInfo = (teamsAtStart gi, Map.toList $ mapParams r, Map.toList $ params r, roundMsgs gi) |
39 |
E.catch |
|
40 |
(writeFile fileName (show replayInfo)) |
|
41 |
(\(e :: IOException) -> warningM "REPLAYS" $ "Couldn't write to " ++ fileName ++ ": " ++ show e) |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8423
diff
changeset
|
42 |
|
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8423
diff
changeset
|
43 |
|
9662
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
8511
diff
changeset
|
44 |
loadReplay :: Int -> [String] -> IO (Maybe CheckInfo, [B.ByteString]) |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
8511
diff
changeset
|
45 |
loadReplay p blackList = E.handle (\(e :: SomeException) -> warningM "REPLAYS" "Problems reading replay" >> return (Nothing, [])) $ do |
47dbd9601342
Ensure checkers don't check same replay simultaneously
unc0rr
parents:
8511
diff
changeset
|
46 |
fileName <- pickReplayFile p blackList |
8509 | 47 |
if (not $ null fileName) then |
48 |
loadFile fileName |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8423
diff
changeset
|
49 |
else |
8509 | 50 |
return (Nothing, []) |
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8423
diff
changeset
|
51 |
where |
8509 | 52 |
loadFile :: String -> IO (Maybe CheckInfo, [B.ByteString]) |
53 |
loadFile fileName = E.handle (\(e :: SomeException) -> |
|
54 |
warningM "REPLAYS" ("Problems reading " ++ fileName ++ ": " ++ show e) >> return (Nothing, [])) $ do |
|
8479
8d71109b04d2
Some work on loading replay and interaction with checker
unc0rr
parents:
8423
diff
changeset
|
55 |
(teams, params1, params2, roundMsgs) <- liftM read $ readFile fileName |
8509 | 56 |
return $ ( |
57 |
Just (CheckInfo fileName teams) |
|
58 |
, replayToDemo teams (Map.fromList params1) (Map.fromList params2) (reverse roundMsgs) |
|
59 |
) |
|
60 |
||
61 |
moveFailedRecord :: String -> IO () |
|
8511 | 62 |
moveFailedRecord fn = E.handle (\(e :: SomeException) -> warningM "REPLAYS" $ show e) $ |
63 |
renameFile fn ("failed/" ++ drop 8 fn) |
|
8509 | 64 |
|
65 |
||
66 |
moveCheckedRecord :: String -> IO () |
|
8511 | 67 |
moveCheckedRecord fn = E.handle (\(e :: SomeException) -> warningM "REPLAYS" $ show e) $ |
68 |
renameFile fn ("checked/" ++ drop 8 fn) |