module HsDev.Tools.Base (
Result, ToolM,
runWait, runWait_,
tool, tool_,
matchRx, splitRx, replaceRx,
at,
inspect,
ReadM,
readParse, parseReads, parseRead
) where
import Control.Monad.Error
import Control.Monad.State
import Data.Array (assocs)
import Data.List (unfoldr, intercalate)
import Data.Maybe (fromMaybe, listToMaybe)
import System.Exit
import System.Process
import Text.Regex.PCRE ((=~), MatchResult(..))
import HsDev.Symbols
import HsDev.Util (liftIOErrors)
type Result = Either String String
type ToolM a = ErrorT String IO a
runWait :: FilePath -> [String] -> String -> IO Result
runWait name args input = do
(code, out, err) <- readProcessWithExitCode name args input
return $ if code == ExitSuccess && not (null out) then Right out else Left err
runWait_ :: FilePath -> [String] -> IO Result
runWait_ name args = runWait name args ""
tool :: FilePath -> [String] -> String -> ToolM String
tool name args input = liftIOErrors $ ErrorT $ runWait name args input
tool_ :: FilePath -> [String] -> ToolM String
tool_ name args = tool name args ""
matchRx :: String -> String -> Maybe (Int -> Maybe String)
matchRx pat str = if matched then Just look else Nothing where
m :: MatchResult String
m = str =~ pat
matched = not $ null $ mrMatch m
groups = filter (not . null . snd) $ assocs $ mrSubs m
look i = lookup i groups
splitRx :: String -> String -> [String]
splitRx pat = unfoldr split' . Just where
split' :: Maybe String -> Maybe (String, Maybe String)
split' Nothing = Nothing
split' (Just str) = case str =~ pat of
(pre, "", "") -> Just (pre, Nothing)
(pre, _, post) -> Just (pre, Just post)
replaceRx :: String -> String -> String -> String
replaceRx pat w = intercalate w . splitRx pat
at :: (Int -> Maybe String) -> Int -> String
at g i = fromMaybe (error $ "Can't find group " ++ show i) $ g i
inspect :: Monad m => ModuleLocation -> ErrorT String m Inspection -> ErrorT String m Module -> ErrorT String m InspectedModule
inspect mloc insp act = lift $ execStateT inspect' (Inspected InspectionNone mloc (Left "not inspected")) where
inspect' = runErrorT $ do
i <- mapErrorT lift insp
modify (\im -> im { inspection = i })
v <- mapErrorT lift act
modify (\im -> im { inspectionResult = Right v })
`catchError`
\e -> modify (\im -> im { inspectionResult = Left e })
type ReadM a = StateT String [] a
readParse :: Read a => ReadM a
readParse = StateT reads
parseReads :: String -> ReadM a -> [a]
parseReads = flip evalStateT
parseRead :: String -> ReadM a -> Maybe a
parseRead s = listToMaybe . parseReads s