summaryrefslogtreecommitdiffhomepage
path: root/Log.hs
blob: 90f1b537b1d19ba5d187c7714dd7ad417cb76f5a (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{-# LANGUAGE DeriveGeneric #-}

module Log where

import Types
import Hash

import GHC.Generics (Generic)
import Data.Aeson
import Data.Char
import Data.Either
import Data.Time.Clock.POSIX
import qualified Data.ByteString.Lazy as L
import System.IO

-- | A log of Activity both Entered and Seen, which can be recorded to
-- prove what happened in a debug-me session.
--
-- Note that the time stamp is included to allow replaying logs, but
-- it's not part of the provable session.
--
-- Note that changing this in ways that change the JSON serialization
-- changes debug-me's log file format.
data ActivityLog = ActivityLog
	{ loggedActivity :: SomeActivity
	, loggedHash :: Hash
	, loggedTimestamp :: Timestamp
	}
	deriving (Show, Generic)

instance ToJSON (ActivityLog)
instance FromJSON (ActivityLog)

data SomeActivity
	= ActivitySeen (Activity Seen)
	| ActivityEntered (Activity Entered)
	deriving (Show, Generic)

instance ToJSON SomeActivity where
	toJSON = genericToJSON sumOptions
	toEncoding = genericToEncoding sumOptions
instance FromJSON SomeActivity where
	parseJSON = genericParseJSON sumOptions

mkActivityLog :: SomeActivity -> POSIXTime -> ActivityLog
mkActivityLog a now = ActivityLog
	{ loggedActivity = a
	, loggedHash = case a of
		ActivitySeen s -> hash s
		ActivityEntered e -> hash e
	, loggedTimestamp = now
	}

type Timestamp = POSIXTime

type Logger = SomeActivity -> IO ()

withLogger :: FilePath -> (Logger -> IO a) -> IO a
withLogger logfile a = withFile logfile WriteMode (a . mkLogger)

mkLogger :: Handle -> Logger
mkLogger h a = do
	l <- mkActivityLog a <$> getPOSIXTime
	L.hPut h (encode l)
	hPutStr h "\n"
	hFlush h

parseLog :: L.ByteString -> [Either String ActivityLog]
parseLog = map eitherDecode' 
	. filter (not . L.null)
	. L.split (fromIntegral (ord '\n'))

-- | Throws exception on unparsable log.
loadLog :: FilePath -> IO [ActivityLog]
loadLog f = do
	parsed <- parseLog <$> L.readFile f
	case lefts parsed of
		[] -> return (rights parsed)
		errs -> error $ unlines errs