module HSE.Util(module Language.Haskell.Exts.Annotated, module HSE.Util) where
import Control.Monad
import Data.Generics
import Data.Generics.Uniplate.Data
import Data.List
import Data.Maybe
import Language.Haskell.Exts.Annotated hiding (parse, loc, parseFile, paren)
type S = SrcSpanInfo
type Module_ = Module S
type Decl_ = Decl S
type Exp_ = Exp S
type Pat_ = Pat S
type Type_ = Type S
opExp :: QOp s -> Exp s
opExp (QVarOp s op) = Var s op
opExp (QConOp s op) = Con s op
moduleDecls :: Module s -> [Decl s]
moduleDecls (Module _ _ _ _ xs) = xs
moduleName :: Module s -> String
moduleName (Module _ Nothing _ _ _) = "Main"
moduleName (Module _ (Just (ModuleHead _ (ModuleName _ x) _ _)) _ _ _) = x
moduleImports :: Module s -> [ImportDecl s]
moduleImports (Module _ _ _ x _) = x
modulePragmas :: Module s -> [OptionPragma s]
modulePragmas (Module _ _ x _ _) = x
isChar :: Exp s -> Bool
isChar (Lit _ Char{}) = True
isChar _ = False
fromChar :: Exp s -> Char
fromChar (Lit _ (Char _ x _)) = x
isString :: Exp s -> Bool
isString (Lit _ String{}) = True
isString _ = False
fromString :: Exp s -> String
fromString (Lit _ (String _ x _)) = x
isPString (PLit _ String{}) = True; isPString _ = False
fromPString (PLit _ (String _ x _)) = x
fromParen :: Exp s -> Exp s
fromParen (Paren _ x) = fromParen x
fromParen x = x
fromPParen :: Pat s -> Pat s
fromPParen (PParen _ x) = fromPParen x
fromPParen x = x
isVar Var{} = True; isVar _ = False
isApp App{} = True; isApp _ = False
isInfixApp InfixApp{} = True; isInfixApp _ = False
isAnyApp x = isApp x || isInfixApp x
isParen Paren{} = True; isParen _ = False
isLambda Lambda{} = True; isLambda _ = False
isMDo MDo{} = True; isMDo _ = False
isBoxed Boxed{} = True; isBoxed _ = False
isDerivDecl DerivDecl{} = True; isDerivDecl _ = False
isFunDep FunDep{} = True; isFunDep _ = False
isPBangPat PBangPat{} = True; isPBangPat _ = False
isPExplTypeArg PExplTypeArg{} = True; isPExplTypeArg _ = False
isPFieldPun PFieldPun{} = True; isPFieldPun _ = False
isPFieldWildcard PFieldWildcard{} = True; isPFieldWildcard _ = False
isPViewPat PViewPat{} = True; isPViewPat _ = False
isParComp ParComp{} = True; isParComp _ = False
isPatTypeSig PatTypeSig{} = True; isPatTypeSig _ = False
isQuasiQuote QuasiQuote{} = True; isQuasiQuote _ = False
declBind :: Decl_ -> [String]
declBind (FunBind _ (Match _ x _ _ _ : _)) = [prettyPrint x]
declBind (PatBind _ x _ _ _) = pvars x
declBind _ = []
getEquations :: Decl s -> [Decl s]
getEquations (FunBind s xs) = map (FunBind s . (:[])) xs
getEquations (PatBind s (PVar _ name) _ bod bind) = [FunBind s [Match s name [] bod bind]]
getEquations x = [x]
apps :: [Exp s] -> Exp s
apps xs = foldl1 (App $ ann $ head xs) xs
fromApps :: Exp s -> [Exp s]
fromApps (App _ x y) = fromApps x ++ [y]
fromApps x = [x]
childrenApps :: Data s => Exp s -> [Exp s]
childrenApps (App _ x@App{} y) = childrenApps x ++ [y]
childrenApps (App _ x y) = children x ++ [y]
childrenApps x = children x
descendApps :: Data s => (Exp s -> Exp s) -> Exp s -> Exp s
descendApps f (App s x@App{} y) = App s (descendApps f x) (f y)
descendApps f (App s x y) = App s (descend f x) (f y)
descendApps f x = descend f x
descendAppsM :: (Data s, Monad m) => (Exp s -> m (Exp s)) -> Exp s -> m (Exp s)
descendAppsM f (App s x@App{} y) = liftM2 (App s) (descendAppsM f x) (f y)
descendAppsM f (App s x y) = liftM2 (App s) (descendM f x) (f y)
descendAppsM f x = descendM f x
universeApps :: Data s => Exp s -> [Exp s]
universeApps x = x : concatMap universeApps (childrenApps x)
transformApps :: Data s => (Exp s -> Exp s) -> Exp s -> Exp s
transformApps f = f . descendApps (transformApps f)
transformAppsM :: (Data s, Monad m) => (Exp s -> m (Exp s)) -> Exp s -> m (Exp s)
transformAppsM f x = f =<< descendAppsM (transformAppsM f) x
universeS :: (Functor f, Data (f S), Data x) => x -> [f S]
universeS = universeBi
childrenS :: (Functor f, Data (f S), Data x) => x -> [f S]
childrenS = childrenBi
vars :: Data a => a -> [String]
vars xs = [prettyPrint x | Var _ (UnQual _ x) <- universeS xs]
pvars :: Data a => a -> [String]
pvars xs = [prettyPrint x | PVar _ x <- universeS xs]
showSrcLoc :: SrcLoc -> String
showSrcLoc (SrcLoc file line col) = file ++ ":" ++ show line ++ ":" ++ show col ++ ":"
toSrcLoc :: SrcInfo si => si -> SrcLoc
toSrcLoc = getPointLoc
nullSrcLoc :: SrcLoc
nullSrcLoc = SrcLoc "" 0 0
an :: SrcSpanInfo
an = toSrcInfo nullSrcLoc [] nullSrcLoc
dropAnn :: Functor f => f s -> f ()
dropAnn = fmap (const ())
x /=~= y = not $ x =~= y
elem_ :: (Annotated f, Eq (f ())) => f S -> [f S] -> Bool
elem_ x y = any (x =~=) y
nub_ :: (Annotated f, Eq (f ())) => [f S] -> [f S]
nub_ = nubBy (=~=)
intersect_ :: (Annotated f, Eq (f ())) => [f S] -> [f S] -> [f S]
intersect_ = intersectBy (=~=)
eqList, neqList :: (Annotated f, Eq (f ())) => [f S] -> [f S] -> Bool
neqList x y = not $ eqList x y
eqList (x:xs) (y:ys) = x =~= y && eqList xs ys
eqList [] [] = True
eqList _ _ = False
eqMaybe:: (Annotated f, Eq (f ())) => Maybe (f S) -> Maybe (f S) -> Bool
eqMaybe (Just x) (Just y) = x =~= y
eqMaybe Nothing Nothing = True
eqMaybe _ _ = False