summaryrefslogtreecommitdiff
path: root/Assistant/Types/NetMessager.hs
blob: 163468744ea3fe454f1deace5041e7467b23613e (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
{- git-annex assistant out of band network messager types
 -
 - Copyright 2012 Joey Hess <joey@kitenet.net>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Assistant.Types.NetMessager where

import Common.Annex
import Assistant.Pairing

import Data.Text (Text)
import Control.Concurrent.STM
import Control.Concurrent.MSampleVar
import Data.ByteString (ByteString)

{- Messages that can be sent out of band by a network messager. -}
data NetMessage 
	-- indicate that pushes have been made to the repos with these uuids
	= NotifyPush [UUID]
	-- requests other clients to inform us of their presence
	| QueryPresence
	-- notification about a stage in the pairing process,
	-- involving a client, and a UUID.
	| PairingNotification PairStage ClientID UUID
	-- request that a git push be sent over the out of band network
	| PushRequest ClientID
	-- indicates that a push is starting
	| StartingPush ClientID
	-- a chunk of output of git receive-pack
	| ReceivePackOutput ClientID ByteString
	-- a chuck of output of git send-pack
	| SendPackOutput ClientID ByteString
	-- sent when git receive-pack exits, with its exit code
	| ReceivePackDone ClientID ExitCode
	deriving (Show)

{- Something used to identify a specific client to send the message to. -}
type ClientID = Text

data NetMessagerControl = NetMessagerControl
	{ netMessages :: TChan (NetMessage)
	, netMessagerRestart :: MSampleVar ()
	}

newNetMessagerControl :: IO NetMessagerControl
newNetMessagerControl = NetMessagerControl
	<$> atomically newTChan
	<*> newEmptySV