2016-08-03 16:37:12 +00:00
|
|
|
{- git-annex transfer types
|
|
|
|
-
|
|
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
|
|
|
-
|
|
|
|
- Licensed under the GNU GPL version 3 or higher.
|
|
|
|
-}
|
|
|
|
|
|
|
|
module Types.Transfer where
|
|
|
|
|
|
|
|
import Types
|
|
|
|
import Utility.PID
|
2016-09-05 18:52:06 +00:00
|
|
|
import Utility.QuickCheck
|
2016-08-03 16:37:12 +00:00
|
|
|
|
|
|
|
import Data.Time.Clock.POSIX
|
|
|
|
import Control.Concurrent
|
2016-09-06 18:23:53 +00:00
|
|
|
import Control.Applicative
|
|
|
|
import Prelude
|
2016-08-03 16:37:12 +00:00
|
|
|
|
|
|
|
{- Enough information to uniquely identify a transfer, used as the filename
|
|
|
|
- of the transfer information file. -}
|
|
|
|
data Transfer = Transfer
|
|
|
|
{ transferDirection :: Direction
|
|
|
|
, transferUUID :: UUID
|
|
|
|
, transferKey :: Key
|
|
|
|
}
|
|
|
|
deriving (Eq, Ord, Read, Show)
|
|
|
|
|
|
|
|
{- Information about a Transfer, stored in the transfer information file.
|
|
|
|
-
|
|
|
|
- Note that the associatedFile may not correspond to a file in the local
|
|
|
|
- git repository. It's some file, possibly relative to some directory,
|
|
|
|
- of some repository, that was acted on to initiate the transfer.
|
|
|
|
-}
|
|
|
|
data TransferInfo = TransferInfo
|
|
|
|
{ startedTime :: Maybe POSIXTime
|
|
|
|
, transferPid :: Maybe PID
|
|
|
|
, transferTid :: Maybe ThreadId
|
|
|
|
, transferRemote :: Maybe Remote
|
|
|
|
, bytesComplete :: Maybe Integer
|
|
|
|
, associatedFile :: Maybe FilePath
|
|
|
|
, transferPaused :: Bool
|
|
|
|
}
|
|
|
|
deriving (Show, Eq, Ord)
|
|
|
|
|
|
|
|
stubTransferInfo :: TransferInfo
|
|
|
|
stubTransferInfo = TransferInfo Nothing Nothing Nothing Nothing Nothing Nothing False
|
|
|
|
|
|
|
|
data Direction = Upload | Download
|
|
|
|
deriving (Eq, Ord, Read, Show)
|
|
|
|
|
2016-09-05 18:52:06 +00:00
|
|
|
instance Arbitrary TransferInfo where
|
|
|
|
arbitrary = TransferInfo
|
|
|
|
<$> arbitrary
|
|
|
|
<*> arbitrary
|
|
|
|
<*> pure Nothing -- cannot generate a ThreadID
|
|
|
|
<*> pure Nothing -- remote not needed
|
|
|
|
<*> arbitrary
|
|
|
|
-- associated file cannot be empty (but can be Nothing)
|
|
|
|
<*> arbitrary `suchThat` (/= Just "")
|
|
|
|
<*> arbitrary
|