2011-10-16 00:31:25 -04:00
|
|
|
{- misc utility functions
|
|
|
|
-
|
2015-01-21 12:50:09 -04:00
|
|
|
- Copyright 2010-2011 Joey Hess <id@joeyh.name>
|
2011-10-16 00:31:25 -04:00
|
|
|
-
|
2014-05-10 11:01:27 -03:00
|
|
|
- License: BSD-2-clause
|
2011-10-16 00:31:25 -04:00
|
|
|
-}
|
|
|
|
|
2015-05-10 16:31:50 -04:00
|
|
|
{-# OPTIONS_GHC -fno-warn-tabs #-}
|
2013-05-10 15:08:53 -05:00
|
|
|
|
2019-11-21 15:38:06 -04:00
|
|
|
module Utility.Misc (
|
|
|
|
hGetContentsStrict,
|
|
|
|
readFileStrict,
|
|
|
|
separate,
|
2020-04-07 11:54:27 -04:00
|
|
|
separate',
|
2023-02-27 13:08:29 -04:00
|
|
|
separateEnd',
|
2019-11-21 15:38:06 -04:00
|
|
|
firstLine,
|
2019-11-25 16:18:19 -04:00
|
|
|
firstLine',
|
2019-11-21 15:38:06 -04:00
|
|
|
segment,
|
|
|
|
segmentDelim,
|
|
|
|
massReplace,
|
|
|
|
hGetSomeString,
|
|
|
|
exitBool,
|
|
|
|
|
|
|
|
prop_segment_regressionTest,
|
|
|
|
) where
|
2011-10-16 00:31:25 -04:00
|
|
|
|
|
|
|
import System.IO
|
2011-10-31 23:39:55 -04:00
|
|
|
import Control.Monad
|
2012-09-20 16:01:31 -04:00
|
|
|
import Foreign
|
|
|
|
import Data.Char
|
2013-04-08 23:56:37 -04:00
|
|
|
import Data.List
|
2013-11-19 17:08:57 -04:00
|
|
|
import System.Exit
|
2015-05-10 16:19:56 -04:00
|
|
|
import Control.Applicative
|
2019-11-25 16:18:19 -04:00
|
|
|
import qualified Data.ByteString as S
|
2015-05-10 16:19:56 -04:00
|
|
|
import Prelude
|
2013-11-20 13:41:13 -04:00
|
|
|
|
2011-10-16 00:31:25 -04:00
|
|
|
{- A version of hgetContents that is not lazy. Ensures file is
|
|
|
|
- all read before it gets closed. -}
|
|
|
|
hGetContentsStrict :: Handle -> IO String
|
2011-11-07 21:27:43 -04:00
|
|
|
hGetContentsStrict = hGetContents >=> \s -> length s `seq` return s
|
2011-10-16 00:31:25 -04:00
|
|
|
|
|
|
|
{- A version of readFile that is not lazy. -}
|
|
|
|
readFileStrict :: FilePath -> IO String
|
2011-10-31 23:39:55 -04:00
|
|
|
readFileStrict = readFile >=> \s -> length s `seq` return s
|
2011-10-16 00:31:25 -04:00
|
|
|
|
2013-10-07 15:36:42 -04:00
|
|
|
{- Like break, but the item matching the condition is not included
|
2011-12-09 18:10:41 -04:00
|
|
|
- in the second result list.
|
|
|
|
-
|
|
|
|
- separate (== ':') "foo:bar" = ("foo", "bar")
|
2012-01-20 15:06:17 -04:00
|
|
|
- separate (== ':') "foobar" = ("foobar", "")
|
2011-12-09 18:10:41 -04:00
|
|
|
-}
|
|
|
|
separate :: (a -> Bool) -> [a] -> ([a], [a])
|
|
|
|
separate c l = unbreak $ break c l
|
2012-12-13 00:24:19 -04:00
|
|
|
where
|
2024-09-26 18:43:59 -04:00
|
|
|
unbreak (a, (_:b)) = (a, b)
|
|
|
|
unbreak r = r
|
2011-12-09 18:10:41 -04:00
|
|
|
|
2020-04-07 11:54:27 -04:00
|
|
|
separate' :: (Word8 -> Bool) -> S.ByteString -> (S.ByteString, S.ByteString)
|
|
|
|
separate' c l = unbreak $ S.break c l
|
|
|
|
where
|
|
|
|
unbreak r@(a, b)
|
|
|
|
| S.null b = r
|
|
|
|
| otherwise = (a, S.tail b)
|
|
|
|
|
2023-02-27 13:08:29 -04:00
|
|
|
separateEnd' :: (Word8 -> Bool) -> S.ByteString -> (S.ByteString, S.ByteString)
|
|
|
|
separateEnd' c l = unbreak $ S.breakEnd c l
|
|
|
|
where
|
|
|
|
unbreak r@(a, b)
|
|
|
|
| S.null a = r
|
|
|
|
| otherwise = (S.init a, b)
|
|
|
|
|
2011-12-12 02:04:48 -04:00
|
|
|
{- Breaks out the first line. -}
|
2012-07-17 14:40:05 -04:00
|
|
|
firstLine :: String -> String
|
2011-12-12 02:04:48 -04:00
|
|
|
firstLine = takeWhile (/= '\n')
|
2012-07-02 00:53:00 -04:00
|
|
|
|
2019-11-25 16:18:19 -04:00
|
|
|
firstLine' :: S.ByteString -> S.ByteString
|
|
|
|
firstLine' = S.takeWhile (/= nl)
|
|
|
|
where
|
|
|
|
nl = fromIntegral (ord '\n')
|
|
|
|
|
2012-07-02 00:53:00 -04:00
|
|
|
{- Splits a list into segments that are delimited by items matching
|
2012-10-15 22:22:40 -04:00
|
|
|
- a predicate. (The delimiters are not included in the segments.)
|
|
|
|
- Segments may be empty. -}
|
2012-07-02 00:53:00 -04:00
|
|
|
segment :: (a -> Bool) -> [a] -> [[a]]
|
2012-10-15 22:22:40 -04:00
|
|
|
segment p l = map reverse $ go [] [] l
|
2012-12-13 00:24:19 -04: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-15 22:22:40 -04:00
|
|
|
|
|
|
|
prop_segment_regressionTest :: Bool
|
|
|
|
prop_segment_regressionTest = all id
|
|
|
|
-- Even an empty list is a segment.
|
|
|
|
[ segment (== "--") [] == [[]]
|
2023-03-13 22:39:16 -04:00
|
|
|
-- There are two segments in this list, even though the first is empty.
|
2012-10-15 22:22:40 -04:00
|
|
|
, segment (== "--") ["--", "foo", "bar"] == [[],["foo","bar"]]
|
|
|
|
]
|
2012-10-04 15:48:59 -04:00
|
|
|
|
|
|
|
{- Includes the delimiters as segments of their own. -}
|
|
|
|
segmentDelim :: (a -> Bool) -> [a] -> [[a]]
|
|
|
|
segmentDelim p l = map reverse $ go [] [] l
|
2012-12-13 00:24:19 -04: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 19:05:51 -04:00
|
|
|
|
2013-04-08 23:56:37 -04: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 16:01:31 -04: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 00:24:19 -04:00
|
|
|
where
|
|
|
|
peekbytes :: Int -> Ptr Word8 -> IO [Word8]
|
|
|
|
peekbytes len buf = mapM (peekElemOff buf) [0..pred len]
|
2012-10-17 00:39:45 -04:00
|
|
|
|
2013-11-19 17:08:57 -04:00
|
|
|
exitBool :: Bool -> IO a
|
|
|
|
exitBool False = exitFailure
|
|
|
|
exitBool True = exitSuccess
|