----------------------------------------------------------------------------- -- -- Module : Language.PureScript.Pretty.Types -- Copyright : (c) Phil Freeman 2013 -- License : MIT -- -- Maintainer : Phil Freeman -- Stability : experimental -- Portability : -- -- | -- Pretty printer for Types -- ----------------------------------------------------------------------------- module Language.PureScript.Pretty.Types ( prettyPrintType, prettyPrintRow ) where import Data.Maybe (fromMaybe) import Data.List (intercalate) import Data.Generics (mkT, everywhere) import Control.Arrow ((<+>)) import Control.PatternArrows import Control.Monad.Unify import Language.PureScript.Types import Language.PureScript.Pretty.Common typeLiterals :: Pattern () Type String typeLiterals = mkPattern match where match (Object row) = Just $ "{ " ++ prettyPrintType row ++ " }" match (TypeVar var) = Just var match (PrettyPrintArray ty) = Just $ "[" ++ prettyPrintType ty ++ "]" match ty@(TypeConstructor ctor) = Just $ show ctor match (TUnknown (Unknown u)) = Just $ 'u' : show u match (Skolem s _) = Just $ 's' : show s match (ConstrainedType deps ty) = Just $ "(" ++ intercalate "," (map (\(pn, ty') -> show pn ++ " (" ++ prettyPrintType ty' ++ ")") deps) ++ ") => " ++ prettyPrintType ty match (SaturatedTypeSynonym name args) = Just $ show name ++ "<" ++ intercalate "," (map prettyPrintType args) ++ ">" match (ForAll ident ty _) = Just $ "forall " ++ ident ++ ". " ++ prettyPrintType ty match REmpty = Just $ prettyPrintRow REmpty match row@(RCons _ _ _) = Just $ prettyPrintRow row match _ = Nothing -- | -- Generate a pretty-printed string representing a Row -- prettyPrintRow :: Type -> String prettyPrintRow = (\(tys, rest) -> intercalate ", " (map (uncurry nameAndTypeToPs) tys) ++ tailToPs rest) . toList [] where nameAndTypeToPs :: String -> Type -> String nameAndTypeToPs name ty = name ++ " :: " ++ prettyPrintType ty tailToPs :: Type -> String tailToPs REmpty = "" tailToPs (TUnknown (Unknown u)) = " | u" ++ show u tailToPs (TypeVar var) = " | " ++ var tailToPs (Skolem s _) = " | s" ++ show s tailToPs _ = error "Invalid row tail" toList :: [(String, Type)] -> Type -> ([(String, Type)], Type) toList tys (RCons name ty row) = toList ((name, ty):tys) row toList tys r = (tys, r) typeApp :: Pattern () Type (Type, Type) typeApp = mkPattern match where match (TypeApp f x) = Just (f, x) match _ = Nothing appliedFunction :: Pattern () Type (Type, Type) appliedFunction = mkPattern match where match (PrettyPrintFunction arg ret) = Just (arg, ret) match _ = Nothing insertPlaceholders :: Type -> Type insertPlaceholders = everywhere (mkT convert) where convert (TypeApp (TypeApp f arg) ret) | f == tyFunction = PrettyPrintFunction arg ret convert (TypeApp a el) | a == tyArray = PrettyPrintArray el convert other = other -- | -- Generate a pretty-printed string representing a Type -- prettyPrintType :: Type -> String prettyPrintType = fromMaybe (error "Incomplete pattern") . pattern matchType () . insertPlaceholders where matchType :: Pattern () Type String matchType = buildPrettyPrinter operators (typeLiterals <+> fmap parens matchType) operators :: OperatorTable () Type String operators = OperatorTable [ [ AssocL typeApp $ \f x -> f ++ " " ++ x ] , [ AssocR appliedFunction $ \arg ret -> arg ++ " -> " ++ ret ] ]