add
This commit is contained in:
parent
104fe9132a
commit
f516b820ca
1 changed files with 31 additions and 0 deletions
31
BackendType.hs
Normal file
31
BackendType.hs
Normal file
|
@ -0,0 +1,31 @@
|
|||
{- git-annex backend data types
|
||||
- -}
|
||||
|
||||
module BackendType (
|
||||
-- the entire types are exported, for use in backend implementations
|
||||
Key(..),
|
||||
Backend(..)
|
||||
) where
|
||||
|
||||
import GitRepo
|
||||
|
||||
-- annexed filenames are mapped into keys
|
||||
type Key = FilePath
|
||||
|
||||
-- this structure represents a key/value backend
|
||||
data Backend = Backend {
|
||||
-- name of this backend
|
||||
name :: String,
|
||||
-- converts a filename to a key
|
||||
getKey :: GitRepo -> FilePath -> IO (Maybe Key),
|
||||
-- stores a file's contents to a key
|
||||
storeFileKey :: GitRepo -> FilePath -> Key -> IO Bool,
|
||||
-- retrieves a key's contents to a file
|
||||
retrieveKeyFile :: Key -> FilePath -> IO Bool,
|
||||
-- removes a key
|
||||
removeKey :: Key -> IO Bool
|
||||
}
|
||||
|
||||
instance Show Backend where
|
||||
show backend = "Backend { name =\"" ++ (name backend) ++ "\" }"
|
||||
|
Loading…
Reference in a new issue