vcswrapper-0.1.0: Wrapper for source code management systems

Safe HaskellNone

VCSWrapper.Common

Description

This module exports types and functions common to all VCS.

Synopsis

Documentation

data VCSType Source

Available VCS types implemented in this package.

Constructors

SVN 
GIT 
Mercurial 

type IsLocked = BoolSource

True, if this file is locked by the VCS.

data LogEntry Source

Represents a log entry in the history managed by the VCS.

Constructors

LogEntry 

Fields

mbBranch :: Maybe Text

Maybe Branchname

commitID :: Text

Commit identifier

author :: Text

Author of this commit.

email :: Text

Email address of the author.

date :: Text

Date this log entry was created.

subject :: Text

Short commit message.

body :: Text

Long body of the commit message.

Instances

newtype Ctx a Source

Context for all VCS commands.

E.g. to create a new Git repository use something like this:

import VCSWrapper.Git
myInitRepoFn = do
    let config = makeConfig "path/to/repo" Nothing Nothing
    runVcs config $ initDB False

Constructors

Ctx (ReaderT Config IO a) 

data Config Source

Configuration of the Ctx the VCS commands will be executed in.

Constructors

Config 

Fields

configCwd :: Maybe FilePath

Path to the main directory of the repository. E.g. for Git: the directory of the repository containing the .git config directory.

configPath :: Maybe FilePath

Path to the vcs executable. If Nothing, the PATH environment variable will be search for a matching executable.

configAuthor :: Maybe Author

Author to be used for different VCS actions. If Nothing, the default for the selected repository will be used.

configEnvironment :: [(Text, Text)]

List of environment variables mappings passed to the underlying VCS executable.

data Author Source

Author to be passed to VCS commands where applicable.

Constructors

Author 

Fields

authorName :: Text

Name of the author.

authorEmail :: Maybe Text

Email address of the author.

Instances

data VCSException Source

This Exception-type will be thrown if a VCS command fails unexpectedly.

Constructors

VCSException Int Text Text FilePath [Text]

Exit code -> stdout -> errout -> configCwd of the Config -> List containing the executed command and its options

data Status Source

Status of a file managed by the respective VCS.

Instances

data Modification Source

Flags to describe the state of a file.

Constructors

None

File hasn't been modified.

Added

File has been selected to be managed by the respective VCS.

Conflicting

File is in conflicting state. Manually resolving the conflict may be necessary.

Deleted

File has been deleted.

Modified

File has been modified since last commit.

Replaced

File has been replaced by a different file.

Untracked

File is currently not known by the VCS.

Unknown

State of file is unknown.

Ignored

File is ignored by VCS.

Missing

File is missing.

makeConfigSource

Arguments

:: Maybe FilePath

Path to the main directory of the repository. E.g. for Git: the directory of the repository containing the .git config directory.

-> Maybe FilePath

Path to the vcs executable. If Nothing, the PATH environment variable will be search for a matching executable.

-> Maybe Author

Author to be used for different VCS actions. If Nothing, the default for the selected repository will be used.

-> Config 

Creates a new Config.

makeConfigWithEnvironmentSource

Arguments

:: Maybe FilePath

Path to the main directory of the repository. E.g. for Git: the directory of the repository containing the .git config directory.

-> Maybe FilePath

Path to the vcs executable. If Nothing, the PATH environment variable will be search for a matching executable.

-> Maybe Author

Author to be used for different VCS actions. If Nothing, the default for the selected repository will be used.

-> [(Text, Text)]

List of environment variables mappings passed to the underlying VCS executable.

-> Config 

Creates a new Config with a list of environment variables.

filePath :: Status -> FilePathSource

Retrieve the FilePath of any VCS Status.

isLocked :: Status -> IsLockedSource

Retrieve the IsLocked of any VCS Status. For Git, this returns always False.

runVcsSource

Arguments

:: Config

Config for a VCS

-> Ctx t

An operation running in Ctx

-> IO t 

Run a VCS Ctx from a Config and returns the result

vcsExecSource

Arguments

:: FilePath

VCS shell-command, e.g. git

-> Text

VCS command, e.g. checkout

-> [Text]

options

-> [(Text, Text)]

environment variables

-> Ctx (Either VCSException Text) 

Internal function to execute a VCS command

vcsExecThrowingOnErrorSource

Arguments

:: FilePath

VCS shell-command, e.g. git

-> Text

VCS command, e.g. checkout

-> [Text]

options

-> [(Text, Text)]

environment variables

-> Ctx Text 

Internal function to execute a VCS command. Throws an exception if the command fails.

execSource

Arguments

:: Text

VCS command, e.g. checkout

-> [Text]

options

-> [(Text, Text)]

environment variables

-> FilePath

VCS shell-command, e.g. git

-> (Config -> Maybe FilePath)

variable getter applied to content of Ctx

-> Ctx (Either VCSException Text) 

Internal function to execute a VCS command