Copyright | Isaac Jones Simon Marlow 2003-2004 |
---|---|
License | BSD3 portions Copyright (c) 2007, Galois Inc. |
Maintainer | cabal-devel@haskell.org |
Portability | portable |
Safe Haskell | None |
Language | Haskell2010 |
A large and somewhat miscellaneous collection of utility functions used
throughout the rest of the Cabal lib and in other tools that use the Cabal
lib like cabal-install
. It has a very simple set of logging actions. It
has low level functions for running programs, a bunch of wrappers for
various directory and file functions that do extra logging.
Synopsis
- cabalVersion :: Version
- dieNoVerbosity :: String -> IO a
- die' :: Verbosity -> String -> IO a
- dieWithLocation' :: Verbosity -> FilePath -> Maybe Int -> String -> IO a
- dieNoWrap :: Verbosity -> String -> IO a
- topHandler :: IO a -> IO a
- topHandlerWith :: forall a. (SomeException -> IO a) -> IO a -> IO a
- warn :: Verbosity -> String -> IO ()
- notice :: Verbosity -> String -> IO ()
- noticeNoWrap :: Verbosity -> String -> IO ()
- noticeDoc :: Verbosity -> Doc -> IO ()
- setupMessage :: Verbosity -> String -> PackageIdentifier -> IO ()
- info :: Verbosity -> String -> IO ()
- infoNoWrap :: Verbosity -> String -> IO ()
- debug :: Verbosity -> String -> IO ()
- debugNoWrap :: Verbosity -> String -> IO ()
- chattyTry :: String -> IO () -> IO ()
- annotateIO :: Verbosity -> IO a -> IO a
- printRawCommandAndArgs :: Verbosity -> FilePath -> [String] -> IO ()
- printRawCommandAndArgsAndEnv :: Verbosity -> FilePath -> [String] -> Maybe FilePath -> Maybe [(String, String)] -> IO ()
- withOutputMarker :: Verbosity -> String -> String
- handleDoesNotExist :: a -> NoCallStackIO a -> NoCallStackIO a
- rawSystemExit :: Verbosity -> FilePath -> [String] -> IO ()
- rawSystemExitCode :: Verbosity -> FilePath -> [String] -> IO ExitCode
- rawSystemExitWithEnv :: Verbosity -> FilePath -> [String] -> [(String, String)] -> IO ()
- rawSystemStdout :: forall mode. KnownIODataMode mode => Verbosity -> FilePath -> [String] -> IO mode
- rawSystemStdInOut :: KnownIODataMode mode => Verbosity -> FilePath -> [String] -> Maybe FilePath -> Maybe [(String, String)] -> Maybe IOData -> IODataMode mode -> IO (mode, String, ExitCode)
- rawSystemIOWithEnv :: Verbosity -> FilePath -> [String] -> Maybe FilePath -> Maybe [(String, String)] -> Maybe Handle -> Maybe Handle -> Maybe Handle -> IO ExitCode
- createProcessWithEnv :: Verbosity -> FilePath -> [String] -> Maybe FilePath -> Maybe [(String, String)] -> StdStream -> StdStream -> StdStream -> IO (Maybe Handle, Maybe Handle, Maybe Handle, ProcessHandle)
- maybeExit :: IO ExitCode -> IO ()
- xargs :: Int -> ([String] -> IO ()) -> [String] -> [String] -> IO ()
- findProgramVersion :: String -> (String -> String) -> Verbosity -> FilePath -> IO (Maybe Version)
- data IOData
- class NFData mode => KnownIODataMode mode where
- hGetIODataContents :: Handle -> IO mode
- toIOData :: mode -> IOData
- iodataMode :: IODataMode mode
- data IODataMode mode where
- createDirectoryIfMissingVerbose :: Verbosity -> Bool -> FilePath -> IO ()
- copyFileVerbose :: Verbosity -> FilePath -> FilePath -> IO ()
- copyFiles :: Verbosity -> FilePath -> [(FilePath, FilePath)] -> IO ()
- copyFileTo :: Verbosity -> FilePath -> FilePath -> IO ()
- installOrdinaryFile :: Verbosity -> FilePath -> FilePath -> IO ()
- installExecutableFile :: Verbosity -> FilePath -> FilePath -> IO ()
- installMaybeExecutableFile :: Verbosity -> FilePath -> FilePath -> IO ()
- installOrdinaryFiles :: Verbosity -> FilePath -> [(FilePath, FilePath)] -> IO ()
- installExecutableFiles :: Verbosity -> FilePath -> [(FilePath, FilePath)] -> IO ()
- installMaybeExecutableFiles :: Verbosity -> FilePath -> [(FilePath, FilePath)] -> IO ()
- installDirectoryContents :: Verbosity -> FilePath -> FilePath -> IO ()
- copyDirectoryRecursive :: Verbosity -> FilePath -> FilePath -> IO ()
- doesExecutableExist :: FilePath -> NoCallStackIO Bool
- setFileOrdinary :: FilePath -> NoCallStackIO ()
- setFileExecutable :: FilePath -> NoCallStackIO ()
- currentDir :: FilePath
- shortRelativePath :: FilePath -> FilePath -> FilePath
- dropExeExtension :: FilePath -> FilePath
- exeExtensions :: [String]
- findFileEx :: Verbosity -> [FilePath] -> FilePath -> IO FilePath
- findFirstFile :: (a -> FilePath) -> [a] -> NoCallStackIO (Maybe a)
- findFileWithExtension :: [String] -> [FilePath] -> FilePath -> NoCallStackIO (Maybe FilePath)
- findFileWithExtension' :: [String] -> [FilePath] -> FilePath -> NoCallStackIO (Maybe (FilePath, FilePath))
- findAllFilesWithExtension :: [String] -> [FilePath] -> FilePath -> NoCallStackIO [FilePath]
- findModuleFileEx :: Verbosity -> [FilePath] -> [String] -> ModuleName -> IO (FilePath, FilePath)
- findModuleFilesEx :: Verbosity -> [FilePath] -> [String] -> [ModuleName] -> IO [(FilePath, FilePath)]
- getDirectoryContentsRecursive :: FilePath -> IO [FilePath]
- isInSearchPath :: FilePath -> NoCallStackIO Bool
- addLibraryPath :: OS -> [FilePath] -> [(String, String)] -> [(String, String)]
- moreRecentFile :: FilePath -> FilePath -> NoCallStackIO Bool
- existsAndIsMoreRecentThan :: FilePath -> FilePath -> NoCallStackIO Bool
- data TempFileOptions = TempFileOptions {}
- defaultTempFileOptions :: TempFileOptions
- withTempFile :: FilePath -> String -> (FilePath -> Handle -> IO a) -> IO a
- withTempFileEx :: TempFileOptions -> FilePath -> String -> (FilePath -> Handle -> IO a) -> IO a
- withTempDirectory :: Verbosity -> FilePath -> String -> (FilePath -> IO a) -> IO a
- withTempDirectoryEx :: Verbosity -> TempFileOptions -> FilePath -> String -> (FilePath -> IO a) -> IO a
- createTempDirectory :: FilePath -> String -> IO FilePath
- defaultPackageDesc :: Verbosity -> IO FilePath
- findPackageDesc :: FilePath -> NoCallStackIO (Either String FilePath)
- tryFindPackageDesc :: Verbosity -> FilePath -> IO FilePath
- findHookedPackageDesc :: Verbosity -> FilePath -> IO (Maybe FilePath)
- withFileContents :: FilePath -> (String -> NoCallStackIO a) -> NoCallStackIO a
- writeFileAtomic :: FilePath -> ByteString -> NoCallStackIO ()
- rewriteFileEx :: Verbosity -> FilePath -> String -> IO ()
- fromUTF8BS :: ByteString -> String
- fromUTF8LBS :: ByteString -> String
- toUTF8BS :: String -> ByteString
- toUTF8LBS :: String -> ByteString
- readUTF8File :: FilePath -> NoCallStackIO String
- withUTF8FileContents :: FilePath -> (String -> IO a) -> IO a
- writeUTF8File :: FilePath -> String -> NoCallStackIO ()
- normaliseLineEndings :: String -> String
- ignoreBOM :: String -> String
- dropWhileEndLE :: (a -> Bool) -> [a] -> [a]
- takeWhileEndLE :: (a -> Bool) -> [a] -> [a]
- equating :: Eq a => (b -> a) -> b -> b -> Bool
- comparing :: Ord a => (b -> a) -> b -> b -> Ordering
- isInfixOf :: Eq a => [a] -> [a] -> Bool
- intercalate :: [a] -> [[a]] -> [a]
- lowercase :: String -> String
- listUnion :: Ord a => [a] -> [a] -> [a]
- listUnionRight :: Ord a => [a] -> [a] -> [a]
- ordNub :: Ord a => [a] -> [a]
- ordNubBy :: Ord b => (a -> b) -> [a] -> [a]
- ordNubRight :: Ord a => [a] -> [a]
- safeHead :: [a] -> Maybe a
- safeTail :: [a] -> [a]
- safeLast :: [a] -> Maybe a
- safeInit :: [a] -> [a]
- unintersperse :: Char -> String -> [String]
- wrapText :: String -> String
- wrapLine :: Int -> [String] -> [[String]]
- isAbsoluteOnAnyPlatform :: FilePath -> Bool
- isRelativeOnAnyPlatform :: FilePath -> Bool
- findFile :: [FilePath] -> FilePath -> IO FilePath
- findModuleFile :: [FilePath] -> [String] -> ModuleName -> IO (FilePath, FilePath)
- findModuleFiles :: [FilePath] -> [String] -> [ModuleName] -> IO [(FilePath, FilePath)]
Documentation
logging and errors
dieNoVerbosity :: String -> IO a Source #
topHandler :: IO a -> IO a Source #
topHandlerWith :: forall a. (SomeException -> IO a) -> IO a -> IO a Source #
warn :: Verbosity -> String -> IO () Source #
Non fatal conditions that may be indicative of an error or problem.
We display these at the normal
verbosity level.
notice :: Verbosity -> String -> IO () Source #
Useful status messages.
We display these at the normal
verbosity level.
This is for the ordinary helpful status messages that users see. Just enough information to know that things are working but not floods of detail.
noticeNoWrap :: Verbosity -> String -> IO () Source #
Display a message at normal
verbosity level, but without
wrapping.
setupMessage :: Verbosity -> String -> PackageIdentifier -> IO () Source #
Display a "setup status message". Prefer using setupMessage' if possible.
info :: Verbosity -> String -> IO () Source #
More detail on the operation of some action.
We display these messages when the verbosity level is verbose
debug :: Verbosity -> String -> IO () Source #
Detailed internal debugging information
We display these messages when the verbosity level is deafening
debugNoWrap :: Verbosity -> String -> IO () Source #
A variant of debug
that doesn't perform the automatic line
wrapping. Produces better output in some cases.
Perform an IO action, catching any IO exceptions and printing an error if one occurs.
annotateIO :: Verbosity -> IO a -> IO a Source #
Given a block of IO code that may raise an exception, annotate it with the metadata from the current scope. Use this as close to external code that raises IO exceptions as possible, since this function unconditionally wraps the error message with a trace (so it is NOT idempotent.)
printRawCommandAndArgsAndEnv :: Verbosity -> FilePath -> [String] -> Maybe FilePath -> Maybe [(String, String)] -> IO () Source #
withOutputMarker :: Verbosity -> String -> String Source #
Wrap output with a marker if +markoutput
verbosity flag is set.
NB: Why is markoutput done with start/end markers, and not prefixes?
Markers are more convenient to add (if we want to add prefixes,
we have to lines
and then map
; here's it's just some
concatenates). Note that even in the prefix case, we can't
guarantee that the markers are unambiguous, because some of
Cabal's output comes straight from external programs, where
we don't have the ability to interpose on the output.
This is used by withMetadata
exceptions
handleDoesNotExist :: a -> NoCallStackIO a -> NoCallStackIO a Source #
Run an IO computation, returning e
if it raises a "file
does not exist" error.
running programs
rawSystemStdout :: forall mode. KnownIODataMode mode => Verbosity -> FilePath -> [String] -> IO mode Source #
Run a command and return its output.
The output is assumed to be text in the locale encoding.
:: KnownIODataMode mode | |
=> Verbosity | |
-> FilePath | Program location |
-> [String] | Arguments |
-> Maybe FilePath | New working dir or inherit |
-> Maybe [(String, String)] | New environment or inherit |
-> Maybe IOData | input text and binary mode |
-> IODataMode mode | iodata mode, acts as proxy |
-> IO (mode, String, ExitCode) | output, errors, exit |
Run a command and return its output, errors and exit status. Optionally also supply some input. Also provides control over whether the binary/text mode of the input and output.
:: Verbosity | |
-> FilePath | |
-> [String] | |
-> Maybe FilePath | New working dir or inherit |
-> Maybe [(String, String)] | New environment or inherit |
-> StdStream | stdin |
-> StdStream | stdout |
-> StdStream | stderr |
-> IO (Maybe Handle, Maybe Handle, Maybe Handle, ProcessHandle) | Any handles created for stdin, stdout, or stderr
with |
xargs :: Int -> ([String] -> IO ()) -> [String] -> [String] -> IO () Source #
Like the Unix xargs program. Useful for when we've got very long command lines that might overflow an OS limit on command line length and so you need to invoke a command multiple times to get all the args in.
Use it with either of the rawSystem variants above. For example:
xargs (32*1024) (rawSystemExit verbosity) prog fixedArgs bigArgs
:: String | version args |
-> (String -> String) | function to select version number from program output |
-> Verbosity | |
-> FilePath | location |
-> IO (Maybe Version) |
Look for a program and try to find it's version number. It can accept either an absolute path or the name of a program binary, in which case we will look for the program on the path.
IOData
re-export
Represents either textual or binary data passed via I/O functions which support binary/text mode
Since: Cabal-2.2
IODataText String | How Text gets encoded is usually locale-dependent. |
IODataBinary ByteString | Raw binary which gets read/written in binary mode. |
class NFData mode => KnownIODataMode mode where Source #
Since: Cabal-2.2
hGetIODataContents :: Handle -> IO mode Source #
IOData
Wrapper for hGetContents
Note: This operation uses lazy I/O. Use NFData
to force all
data to be read and consequently the internal file handle to be
closed.
toIOData :: mode -> IOData Source #
iodataMode :: IODataMode mode Source #
Instances
KnownIODataMode ByteString # | |
Defined in Distribution.Utils.IOData hGetIODataContents :: Handle -> IO ByteString Source # toIOData :: ByteString -> IOData Source # | |
a ~ Char => KnownIODataMode [a] # | |
Defined in Distribution.Utils.IOData hGetIODataContents :: Handle -> IO [a] Source # toIOData :: [a] -> IOData Source # iodataMode :: IODataMode [a] Source # |
data IODataMode mode where Source #
Since: Cabal-3.2
copying files
createDirectoryIfMissingVerbose Source #
Same as createDirectoryIfMissing
but logs at higher verbosity levels.
copyFileVerbose :: Verbosity -> FilePath -> FilePath -> IO () Source #
Copies a file without copying file permissions. The target file is created with default permissions. Any existing target file is replaced.
At higher verbosity levels it logs an info message.
copyFiles :: Verbosity -> FilePath -> [(FilePath, FilePath)] -> IO () Source #
Copies a bunch of files to a target directory, preserving the directory structure in the target location. The target directories are created if they do not exist.
The files are identified by a pair of base directory and a path relative to that base. It is only the relative part that is preserved in the destination.
For example:
copyFiles normal "dist/src" [("", "src/Foo.hs"), ("dist/build/", "src/Bar.hs")]
This would copy "src/Foo.hs" to "dist/src/src/Foo.hs" and copy "dist/build/src/Bar.hs" to "dist/src/src/Bar.hs".
This operation is not atomic. Any IO failure during the copy (including any missing source files) leaves the target in an unknown state so it is best to use it with a freshly created directory so that it can be simply deleted if anything goes wrong.
copyFileTo :: Verbosity -> FilePath -> FilePath -> IO () Source #
Given a relative path to a file, copy it to the given directory, preserving the relative path and creating the parent directories if needed.
installing files
installOrdinaryFile :: Verbosity -> FilePath -> FilePath -> IO () Source #
Install an ordinary file. This is like a file copy but the permissions are set appropriately for an installed file. On Unix it is "-rw-r--r--" while on Windows it uses the default permissions for the target directory.
installExecutableFile :: Verbosity -> FilePath -> FilePath -> IO () Source #
Install an executable file. This is like a file copy but the permissions are set appropriately for an installed file. On Unix it is "-rwxr-xr-x" while on Windows it uses the default permissions for the target directory.
installMaybeExecutableFile :: Verbosity -> FilePath -> FilePath -> IO () Source #
Install a file that may or not be executable, preserving permissions.
installOrdinaryFiles :: Verbosity -> FilePath -> [(FilePath, FilePath)] -> IO () Source #
This is like copyFiles
but uses installOrdinaryFile
.
installExecutableFiles :: Verbosity -> FilePath -> [(FilePath, FilePath)] -> IO () Source #
This is like copyFiles
but uses installExecutableFile
.
installMaybeExecutableFiles :: Verbosity -> FilePath -> [(FilePath, FilePath)] -> IO () Source #
This is like copyFiles
but uses installMaybeExecutableFile
.
installDirectoryContents :: Verbosity -> FilePath -> FilePath -> IO () Source #
This installs all the files in a directory to a target location, preserving the directory layout. All the files are assumed to be ordinary rather than executable files.
copyDirectoryRecursive :: Verbosity -> FilePath -> FilePath -> IO () Source #
Recursively copy the contents of one directory to another path.
File permissions
doesExecutableExist :: FilePath -> NoCallStackIO Bool Source #
Like doesFileExist
, but also checks that the file is executable.
setFileOrdinary :: FilePath -> NoCallStackIO () Source #
setFileExecutable :: FilePath -> NoCallStackIO () Source #
file names
currentDir :: FilePath Source #
The path name that represents the current directory.
In Unix, it's "."
, but this is system-specific.
(E.g. AmigaOS uses the empty string ""
for the current directory.)
dropExeExtension :: FilePath -> FilePath Source #
Drop the extension if it's one of exeExtensions
, or return the path
unchanged.
exeExtensions :: [String] Source #
List of possible executable file extensions on the current build platform.
finding files
Find a file by looking in a search path. The file path must match exactly.
findFirstFile :: (a -> FilePath) -> [a] -> NoCallStackIO (Maybe a) Source #
findFileWithExtension :: [String] -> [FilePath] -> FilePath -> NoCallStackIO (Maybe FilePath) Source #
Find a file by looking in a search path with one of a list of possible file extensions. The file base name should be given and it will be tried with each of the extensions in each element of the search path.
findFileWithExtension' :: [String] -> [FilePath] -> FilePath -> NoCallStackIO (Maybe (FilePath, FilePath)) Source #
Like findFileWithExtension
but returns which element of the search path
the file was found in, and the file path relative to that base directory.
findAllFilesWithExtension :: [String] -> [FilePath] -> FilePath -> NoCallStackIO [FilePath] Source #
:: Verbosity | |
-> [FilePath] | build prefix (location of objects) |
-> [String] | search suffixes |
-> ModuleName | module |
-> IO (FilePath, FilePath) |
Find the file corresponding to a Haskell module name.
This is similar to findFileWithExtension'
but specialised to a module
name. The function fails if the file corresponding to the module is missing.
:: Verbosity | |
-> [FilePath] | build prefix (location of objects) |
-> [String] | search suffixes |
-> [ModuleName] | modules |
-> IO [(FilePath, FilePath)] |
Finds the files corresponding to a list of Haskell module names.
As findModuleFile
but for a list of module names.
getDirectoryContentsRecursive :: FilePath -> IO [FilePath] Source #
List all the files in a directory and all subdirectories.
The order places files in sub-directories after all the files in their parent directories. The list is generated lazily so is not well defined if the source directory structure changes before the list is used.
environment variables
isInSearchPath :: FilePath -> NoCallStackIO Bool Source #
Is this directory in the system search path?
modification time
moreRecentFile :: FilePath -> FilePath -> NoCallStackIO Bool Source #
Compare the modification times of two files to see if the first is newer than the second. The first file must exist but the second need not. The expected use case is when the second file is generated using the first. In this use case, if the result is True then the second file is out of date.
existsAndIsMoreRecentThan :: FilePath -> FilePath -> NoCallStackIO Bool Source #
Like moreRecentFile
, but also checks that the first file exists.
temp files and dirs
data TempFileOptions Source #
Advanced options for withTempFile
and withTempDirectory
.
TempFileOptions | |
|
:: FilePath | Temp dir to create the file in |
-> String | File name template. See |
-> (FilePath -> Handle -> IO a) | |
-> IO a |
Use a temporary filename that doesn't already exist.
:: TempFileOptions | |
-> FilePath | Temp dir to create the file in |
-> String | File name template. See |
-> (FilePath -> Handle -> IO a) | |
-> IO a |
A version of withTempFile
that additionally takes a TempFileOptions
argument.
withTempDirectory :: Verbosity -> FilePath -> String -> (FilePath -> IO a) -> IO a Source #
Create and use a temporary directory.
Creates a new temporary directory inside the given directory, making use of the template. The temp directory is deleted after use. For example:
withTempDirectory verbosity "src" "sdist." $ \tmpDir -> do ...
The tmpDir
will be a new subdirectory of the given directory, e.g.
src/sdist.342
.
withTempDirectoryEx :: Verbosity -> TempFileOptions -> FilePath -> String -> (FilePath -> IO a) -> IO a Source #
A version of withTempDirectory
that additionally takes a
TempFileOptions
argument.
.cabal and .buildinfo files
Find a package description file in the given directory. Looks for
.cabal
files.
tryFindPackageDesc :: Verbosity -> FilePath -> IO FilePath Source #
Like findPackageDesc
, but calls die
in case of error.
findHookedPackageDesc Source #
Find auxiliary package information in the given directory.
Looks for .buildinfo
files.
reading and writing files safely
withFileContents :: FilePath -> (String -> NoCallStackIO a) -> NoCallStackIO a Source #
Gets the contents of a file, but guarantee that it gets closed.
The file is read lazily but if it is not fully consumed by the action then the remaining input is truncated and the file is closed.
writeFileAtomic :: FilePath -> ByteString -> NoCallStackIO () Source #
Writes a file atomically.
The file is either written successfully or an IO exception is raised and the original file is left unchanged.
On windows it is not possible to delete a file that is open by a process. This case will give an IO exception but the atomic property is not affected.
rewriteFileEx :: Verbosity -> FilePath -> String -> IO () Source #
Write a file but only if it would have new content. If we would be writing the same as the existing content then leave the file as is so that we do not update the file's modification time.
NB: Before Cabal-3.0 the file content was assumed to be ASCII-representable. Since Cabal-3.0 the file is assumed to be UTF-8 encoded.
Unicode
fromUTF8BS :: ByteString -> String Source #
Decode String
from UTF8-encoded ByteString
Invalid data in the UTF8 stream (this includes code-points U+D800
through U+DFFF
) will be decoded as the replacement character (U+FFFD
).
fromUTF8LBS :: ByteString -> String Source #
Variant of fromUTF8BS
for lazy ByteString
s
toUTF8BS :: String -> ByteString Source #
Encode String
to to UTF8-encoded ByteString
Code-points in the U+D800
-U+DFFF
range will be encoded
as the replacement character (i.e. U+FFFD
).
toUTF8LBS :: String -> ByteString Source #
Variant of toUTF8BS
for lazy ByteString
s
readUTF8File :: FilePath -> NoCallStackIO String Source #
Reads a UTF8 encoded text file as a Unicode String
Reads lazily using ordinary readFile
.
withUTF8FileContents :: FilePath -> (String -> IO a) -> IO a Source #
Reads a UTF8 encoded text file as a Unicode String
Same behaviour as withFileContents
.
writeUTF8File :: FilePath -> String -> NoCallStackIO () Source #
Writes a Unicode String as a UTF8 encoded text file.
Uses writeFileAtomic
, so provides the same guarantees.
normaliseLineEndings :: String -> String Source #
Fix different systems silly line ending conventions
BOM
ignoreBOM :: String -> String Source #
Ignore a Unicode byte order mark (BOM) at the beginning of the input
generic utils
dropWhileEndLE :: (a -> Bool) -> [a] -> [a] Source #
dropWhileEndLE p
is equivalent to reverse . dropWhile p . reverse
, but
quite a bit faster. The difference between "Data.List.dropWhileEnd" and this
version is that the one in Data.List is strict in elements, but spine-lazy,
while this one is spine-strict but lazy in elements. That's what LE
stands
for - "lazy in elements".
Example:
>>>
safeTail $ Data.List.dropWhileEnd (<3) [undefined, 5, 4, 3, 2, 1]
*** Exception: Prelude.undefined ...
>>>
safeTail $ dropWhileEndLE (<3) [undefined, 5, 4, 3, 2, 1]
[5,4,3]
>>>
take 3 $ Data.List.dropWhileEnd (<3) [5, 4, 3, 2, 1, undefined]
[5,4,3]
>>>
take 3 $ dropWhileEndLE (<3) [5, 4, 3, 2, 1, undefined]
*** Exception: Prelude.undefined ...
takeWhileEndLE :: (a -> Bool) -> [a] -> [a] Source #
takeWhileEndLE p
is equivalent to reverse . takeWhile p . reverse
, but
is usually faster (as well as being easier to read).
comparing :: Ord a => (b -> a) -> b -> b -> Ordering Source #
comparing p x y = compare (p x) (p y)
Useful combinator for use in conjunction with the xxxBy
family
of functions from Data.List, for example:
... sortBy (comparing fst) ...
intercalate :: [a] -> [[a]] -> [a] Source #
intercalate
xs xss
is equivalent to (
.
It inserts the list concat
(intersperse
xs xss))xs
in between the lists in xss
and concatenates the
result.
>>>
intercalate ", " ["Lorem", "ipsum", "dolor"]
"Lorem, ipsum, dolor"
listUnion :: Ord a => [a] -> [a] -> [a] Source #
Like "Data.List.union", but has O(n log n)
complexity instead of
O(n^2)
.
listUnionRight :: Ord a => [a] -> [a] -> [a] Source #
A right-biased version of listUnion
.
Example:
>>>
listUnion [1,2,3,4,3] [2,1,1]
[1,2,3,4,3]
>>>
listUnionRight [1,2,3,4,3] [2,1,1]
[4,3,2,1,1]
ordNubRight :: Ord a => [a] -> [a] Source #
A right-biased version of ordNub
.
Example:
>>>
ordNub [1,2,1] :: [Int]
[1,2]
>>>
ordNubRight [1,2,1] :: [Int]
[2,1]
wrapText :: String -> String Source #
Wraps text to the default line width. Existing newlines are preserved.
wrapLine :: Int -> [String] -> [[String]] Source #
Wraps a list of words to a list of lines of words of a particular width.
FilePath stuff
isAbsoluteOnAnyPlatform :: FilePath -> Bool Source #
isAbsoluteOnAnyPlatform
and isRelativeOnAnyPlatform
are like
isAbsolute
and isRelative
but have
platform independent heuristics.
The System.FilePath exists in two versions, Windows and Posix. The two
versions don't agree on what is a relative path and we don't know if we're
given Windows or Posix paths.
This results in false positives when running on Posix and inspecting
Windows paths, like the hackage server does.
System.FilePath.Posix.isAbsolute "C:\hello" == False
System.FilePath.Windows.isAbsolute "/hello" == False
This means that we would treat paths that start with "/" to be absolute.
On Posix they are indeed absolute, while on Windows they are not.
The portable versions should be used when we might deal with paths that are from another OS than the host OS. For example, the Hackage Server deals with both Windows and Posix paths while performing the PackageDescription checks. In contrast, when we run 'cabal configure' we do expect the paths to be correct for our OS and we should not have to use the platform independent heuristics.
isRelativeOnAnyPlatform :: FilePath -> Bool Source #
isRelativeOnAnyPlatform = not . isAbsoluteOnAnyPlatform
Deprecated functions
Deprecated: Use findFileEx instead. This symbol will be removed in Cabal 3.2 (est. December 2019)
:: [FilePath] | build prefix (location of objects) |
-> [String] | search suffixes |
-> ModuleName | module |
-> IO (FilePath, FilePath) |
Deprecated: Use findModuleFileEx instead. This symbol will be removed in Cabal 3.2 (est. December 2019)