hackage-security-0.5.2.2: Hackage security library

Safe HaskellNone
LanguageHaskell2010

Hackage.Security.TUF.FileMap

Contents

Description

Information about files

Intended to be double imported

import Hackage.Security.TUF.FileMap (FileMap)
import qualified Hackage.Security.TUF.FileMap as FileMap

Synopsis

Documentation

data FileMap #

Mapping from paths to file info

File maps are used in target files; the paths are relative to the location of the target files containing the file map.

Instances

Show FileMap # 

Methods

showsPrec :: Int -> FileMap -> ShowS

show :: FileMap -> String

showList :: [FileMap] -> ShowS

ReportSchemaErrors m => FromJSON m FileMap # 

Methods

fromJSON :: JSValue -> m FileMap #

Monad m => ToJSON m FileMap # 

Methods

toJSON :: FileMap -> m JSValue #

data TargetPath #

Entries in FileMap either talk about the repository or the index

Instances

Eq TargetPath # 

Methods

(==) :: TargetPath -> TargetPath -> Bool

(/=) :: TargetPath -> TargetPath -> Bool

Ord TargetPath # 
Show TargetPath # 

Methods

showsPrec :: Int -> TargetPath -> ShowS

show :: TargetPath -> String

showList :: [TargetPath] -> ShowS

Pretty TargetPath # 

Methods

pretty :: TargetPath -> String #

ReportSchemaErrors m => FromObjectKey m TargetPath # 

Methods

fromObjectKey :: String -> m (Maybe TargetPath) #

Monad m => ToObjectKey m TargetPath # 

Methods

toObjectKey :: TargetPath -> m String #

Standard accessors

Convenience accessors

lookupM :: Monad m => FileMap -> TargetPath -> m FileInfo #

Comparing file maps

data FileChange #

Constructors

FileChanged FileInfo

File got added or modified; we record the new file info

FileDeleted

File got deleted

Instances

Show FileChange # 

Methods

showsPrec :: Int -> FileChange -> ShowS

show :: FileChange -> String

showList :: [FileChange] -> ShowS