2011-10-16 04:31:25 +00:00
|
|
|
{- misc utility functions
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2010-2011 Joey Hess <id@joeyh.name>
|
2011-10-16 04:31:25 +00:00
|
|
|
-
|
2014-05-10 14:01:27 +00:00
|
|
|
- License: BSD-2-clause
|
2011-10-16 04:31:25 +00:00
|
|
|
-}
|
|
|
|
|
2013-05-10 20:08:53 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2011-10-16 04:31:25 +00:00
|
|
|
module Utility.Misc where
|
|
|
|
|
|
|
|
import System.IO
|
2011-11-01 03:39:55 +00:00
|
|
|
import Control.Monad
|
2012-09-20 20:01:31 +00:00
|
|
|
import Foreign
|
|
|
|
import Data.Char
|
2013-04-09 03:56:37 +00:00
|
|
|
import Data.List
|
2012-09-20 20:01:31 +00:00
|
|
|
import Control.Applicative
|
2013-11-19 21:08:57 +00:00
|
|
|
import System.Exit
|
2013-05-10 21:57:21 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2012-10-17 04:39:45 +00:00
|
|
|
import System.Posix.Process (getAnyProcessStatus)
|
|
|
|
import Utility.Exception
|
2013-08-04 17:54:09 +00:00
|
|
|
#endif
|
2011-10-16 04:31:25 +00:00
|
|
|
|
2013-11-20 17:41:13 +00:00
|
|
|
import Utility.FileSystemEncoding
|
|
|
|
import Utility.Monad
|
|
|
|
|
2011-10-16 04:31:25 +00:00
|
|
|
{- A version of hgetContents that is not lazy. Ensures file is
|
|
|
|
- all read before it gets closed. -}
|
|
|
|
hGetContentsStrict :: Handle -> IO String
|
2011-11-08 01:27:43 +00:00
|
|
|
hGetContentsStrict = hGetContents >=> \s -> length s `seq` return s
|
2011-10-16 04:31:25 +00:00
|
|
|
|
|
|
|
{- A version of readFile that is not lazy. -}
|
|
|
|
readFileStrict :: FilePath -> IO String
|
2011-11-01 03:39:55 +00:00
|
|
|
readFileStrict = readFile >=> \s -> length s `seq` return s
|
2011-10-16 04:31:25 +00:00
|
|
|
|
2014-02-03 14:01:49 +00:00
|
|
|
{- Reads a file strictly, and using the FileSystemEncoding, so it will
|
2013-11-20 17:41:13 +00:00
|
|
|
- never crash on a badly encoded file. -}
|
|
|
|
readFileStrictAnyEncoding :: FilePath -> IO String
|
|
|
|
readFileStrictAnyEncoding f = withFile f ReadMode $ \h -> do
|
|
|
|
fileEncoding h
|
|
|
|
hClose h `after` hGetContentsStrict h
|
|
|
|
|
2014-02-03 14:08:28 +00:00
|
|
|
{- Writes a file, using the FileSystemEncoding so it will never crash
|
|
|
|
- on a badly encoded content string. -}
|
|
|
|
writeFileAnyEncoding :: FilePath -> String -> IO ()
|
|
|
|
writeFileAnyEncoding f content = withFile f WriteMode $ \h -> do
|
|
|
|
fileEncoding h
|
|
|
|
hPutStr h content
|
|
|
|
|
2013-10-07 19:36:42 +00:00
|
|
|
{- Like break, but the item matching the condition is not included
|
2011-12-09 22:10:41 +00:00
|
|
|
- in the second result list.
|
|
|
|
-
|
|
|
|
- separate (== ':') "foo:bar" = ("foo", "bar")
|
2012-01-20 19:06:17 +00:00
|
|
|
- separate (== ':') "foobar" = ("foobar", "")
|
2011-12-09 22:10:41 +00:00
|
|
|
-}
|
|
|
|
separate :: (a -> Bool) -> [a] -> ([a], [a])
|
|
|
|
separate c l = unbreak $ break c l
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
unbreak r@(a, b)
|
|
|
|
| null b = r
|
|
|
|
| otherwise = (a, tail b)
|
2011-12-09 22:10:41 +00:00
|
|
|
|
2011-12-12 06:04:48 +00:00
|
|
|
{- Breaks out the first line. -}
|
2012-07-17 18:40:05 +00:00
|
|
|
firstLine :: String -> String
|
2011-12-12 06:04:48 +00:00
|
|
|
firstLine = takeWhile (/= '\n')
|
2012-07-02 04:53:00 +00:00
|
|
|
|
|
|
|
{- Splits a list into segments that are delimited by items matching
|
2012-10-16 02:22:40 +00:00
|
|
|
- a predicate. (The delimiters are not included in the segments.)
|
|
|
|
- Segments may be empty. -}
|
2012-07-02 04:53:00 +00:00
|
|
|
segment :: (a -> Bool) -> [a] -> [[a]]
|
2012-10-16 02:22:40 +00:00
|
|
|
segment p l = map reverse $ go [] [] l
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
go c r [] = reverse $ c:r
|
|
|
|
go c r (i:is)
|
|
|
|
| p i = go [] (c:r) is
|
|
|
|
| otherwise = go (i:c) r is
|
2012-10-16 02:22:40 +00:00
|
|
|
|
|
|
|
prop_segment_regressionTest :: Bool
|
|
|
|
prop_segment_regressionTest = all id
|
|
|
|
-- Even an empty list is a segment.
|
|
|
|
[ segment (== "--") [] == [[]]
|
|
|
|
-- There are two segements in this list, even though the first is empty.
|
|
|
|
, segment (== "--") ["--", "foo", "bar"] == [[],["foo","bar"]]
|
|
|
|
]
|
2012-10-04 19:48:59 +00:00
|
|
|
|
|
|
|
{- Includes the delimiters as segments of their own. -}
|
|
|
|
segmentDelim :: (a -> Bool) -> [a] -> [[a]]
|
|
|
|
segmentDelim p l = map reverse $ go [] [] l
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
go c r [] = reverse $ c:r
|
|
|
|
go c r (i:is)
|
|
|
|
| p i = go [] ([i]:c:r) is
|
|
|
|
| otherwise = go (i:c) r is
|
2012-07-29 23:05:51 +00:00
|
|
|
|
2013-04-09 03:56:37 +00:00
|
|
|
{- Replaces multiple values in a string.
|
|
|
|
-
|
|
|
|
- Takes care to skip over just-replaced values, so that they are not
|
|
|
|
- mangled. For example, massReplace [("foo", "new foo")] does not
|
|
|
|
- replace the "new foo" with "new new foo".
|
|
|
|
-}
|
|
|
|
massReplace :: [(String, String)] -> String -> String
|
|
|
|
massReplace vs = go [] vs
|
|
|
|
where
|
|
|
|
|
|
|
|
go acc _ [] = concat $ reverse acc
|
|
|
|
go acc [] (c:cs) = go ([c]:acc) vs cs
|
|
|
|
go acc ((val, replacement):rest) s
|
|
|
|
| val `isPrefixOf` s =
|
|
|
|
go (replacement:acc) vs (drop (length val) s)
|
|
|
|
| otherwise = go acc rest s
|
|
|
|
|
2012-09-20 20:01:31 +00:00
|
|
|
{- Wrapper around hGetBufSome that returns a String.
|
|
|
|
-
|
|
|
|
- The null string is returned on eof, otherwise returns whatever
|
|
|
|
- data is currently available to read from the handle, or waits for
|
|
|
|
- data to be written to it if none is currently available.
|
|
|
|
-
|
|
|
|
- Note on encodings: The normal encoding of the Handle is ignored;
|
|
|
|
- each byte is converted to a Char. Not unicode clean!
|
|
|
|
-}
|
|
|
|
hGetSomeString :: Handle -> Int -> IO String
|
|
|
|
hGetSomeString h sz = do
|
|
|
|
fp <- mallocForeignPtrBytes sz
|
|
|
|
len <- withForeignPtr fp $ \buf -> hGetBufSome h buf sz
|
|
|
|
map (chr . fromIntegral) <$> withForeignPtr fp (peekbytes len)
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
|
|
|
peekbytes :: Int -> Ptr Word8 -> IO [Word8]
|
|
|
|
peekbytes len buf = mapM (peekElemOff buf) [0..pred len]
|
2012-10-17 04:39:45 +00:00
|
|
|
|
|
|
|
{- Reaps any zombie git processes.
|
|
|
|
-
|
|
|
|
- Warning: Not thread safe. Anything that was expecting to wait
|
|
|
|
- on a process and get back an exit status is going to be confused
|
|
|
|
- if this reap gets there first. -}
|
|
|
|
reapZombies :: IO ()
|
2013-05-11 20:03:00 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2012-10-17 04:39:45 +00:00
|
|
|
reapZombies = do
|
|
|
|
-- throws an exception when there are no child processes
|
|
|
|
catchDefaultIO Nothing (getAnyProcessStatus False True)
|
|
|
|
>>= maybe (return ()) (const reapZombies)
|
2013-05-10 20:08:53 +00:00
|
|
|
|
2013-05-11 20:03:00 +00:00
|
|
|
#else
|
|
|
|
reapZombies = return ()
|
2013-05-10 20:08:53 +00:00
|
|
|
#endif
|
2013-11-19 21:08:57 +00:00
|
|
|
|
|
|
|
exitBool :: Bool -> IO a
|
|
|
|
exitBool False = exitFailure
|
|
|
|
exitBool True = exitSuccess
|