2013-05-10 20:08:53 +00:00
|
|
|
{-# LANGUAGE PackageImports, CPP #-}
|
2013-04-14 16:51:05 +00:00
|
|
|
|
2011-11-11 05:52:58 +00:00
|
|
|
module Common (module X) where
|
2011-10-04 02:24:57 +00:00
|
|
|
|
2013-04-23 00:24:53 +00:00
|
|
|
import Control.Monad as X
|
2012-01-24 19:28:13 +00:00
|
|
|
import Control.Monad.IfElse as X
|
2011-11-11 05:52:58 +00:00
|
|
|
import Control.Applicative as X
|
2012-10-24 18:43:32 +00:00
|
|
|
import "mtl" Control.Monad.State.Strict as X (liftIO)
|
2011-10-04 02:24:57 +00:00
|
|
|
|
2011-11-11 05:52:58 +00:00
|
|
|
import Data.Maybe as X
|
2011-12-15 22:11:42 +00:00
|
|
|
import Data.List as X hiding (head, tail, init, last)
|
2013-04-23 00:24:53 +00:00
|
|
|
import Data.String.Utils as X hiding (join)
|
2014-03-22 14:42:38 +00:00
|
|
|
import Data.Monoid as X
|
2011-10-04 02:24:57 +00:00
|
|
|
|
2011-11-11 05:52:58 +00:00
|
|
|
import System.FilePath as X
|
|
|
|
import System.Directory as X
|
|
|
|
import System.IO as X hiding (FilePath)
|
2013-05-10 21:57:21 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2015-01-04 16:52:22 +00:00
|
|
|
import System.Posix.IO as X hiding (createPipe)
|
2013-05-10 20:08:53 +00:00
|
|
|
#endif
|
2011-11-11 05:52:58 +00:00
|
|
|
import System.Exit as X
|
2011-10-04 02:24:57 +00:00
|
|
|
|
2011-11-11 05:52:58 +00:00
|
|
|
import Utility.Misc as X
|
2012-02-03 20:47:24 +00:00
|
|
|
import Utility.Exception as X
|
2011-11-11 05:52:58 +00:00
|
|
|
import Utility.SafeCommand as X
|
2012-07-18 19:30:26 +00:00
|
|
|
import Utility.Process as X
|
2011-11-11 05:52:58 +00:00
|
|
|
import Utility.Path as X
|
support .git/annex on a different disk than the rest of the repo
The only fully supported thing is to have the main repository on one disk,
and .git/annex on another. Only commands that move data in/out of the annex
will need to copy it across devices.
There is only partial support for putting arbitrary subdirectories of
.git/annex on different devices. For one thing, but this can require more
copies to be done. For example, when .git/annex/tmp is on one device, and
.git/annex/journal on another, every journal write involves a call to
mv(1). Also, there are a few places that make hard links between various
subdirectories of .git/annex with createLink, that are not handled.
In the common case without cross-device, the new moveFile is actually
faster than renameFile, avoiding an unncessary stat to check that a file
(not a directory) is being moved. Of course if a cross-device move is
needed, it is as slow as mv(1) of the data.
2011-11-28 19:26:27 +00:00
|
|
|
import Utility.Directory as X
|
2011-12-03 13:10:23 +00:00
|
|
|
import Utility.Monad as X
|
2013-09-27 23:52:36 +00:00
|
|
|
import Utility.Data as X
|
2012-06-29 14:00:05 +00:00
|
|
|
import Utility.Applicative as X
|
2012-03-09 23:08:10 +00:00
|
|
|
import Utility.FileSystemEncoding as X
|
2015-01-20 20:58:48 +00:00
|
|
|
import Utility.PosixFiles as X hiding (fileSize)
|
|
|
|
import Utility.FileSize as X
|
2014-04-14 17:25:49 +00:00
|
|
|
import Utility.Network as X
|
2011-12-15 22:11:42 +00:00
|
|
|
|
2011-12-20 15:01:50 +00:00
|
|
|
import Utility.PartialPrelude as X
|