ghc-mod/Language/Haskell/GhcMod/Types.hs

126 lines
3.6 KiB
Haskell
Raw Normal View History

2012-02-14 02:33:27 +00:00
{-# LANGUAGE FlexibleInstances #-}
2013-05-17 01:00:01 +00:00
module Language.Haskell.GhcMod.Types where
2010-04-30 09:36:31 +00:00
2013-05-20 05:28:56 +00:00
-- | Output style.
2013-09-05 05:35:28 +00:00
data OutputStyle = LispStyle -- ^ S expression style.
| PlainStyle -- ^ Plain textstyle.
2012-02-14 01:21:48 +00:00
2013-09-05 05:35:28 +00:00
-- | The type for line separator. Historically, a Null string is used.
2013-09-03 05:40:51 +00:00
newtype LineSeparator = LineSeparator String
2010-04-30 09:36:31 +00:00
data Options = Options {
2013-09-03 05:40:51 +00:00
outputStyle :: OutputStyle
, hlintOpts :: [String]
, ghcOpts :: [String]
2013-09-05 05:35:28 +00:00
-- | If 'True', 'browse' also returns operators.
2013-09-03 05:40:51 +00:00
, operators :: Bool
2013-05-20 05:28:56 +00:00
-- | If 'True', 'browse' also returns types.
2013-09-03 05:40:51 +00:00
, detailed :: Bool
-- | If 'True', 'browse' will return fully qualified name
, qualified :: Bool
2013-05-20 05:28:56 +00:00
-- | Whether or not Template Haskell should be expanded.
2013-09-03 05:40:51 +00:00
, expandSplice :: Bool
2013-09-05 05:35:28 +00:00
-- | Line separator string.
2013-09-03 05:40:51 +00:00
, lineSeparator :: LineSeparator
-- | Package id of module
2014-04-16 02:59:00 +00:00
, packageId :: Maybe String
2012-02-27 02:23:56 +00:00
}
2013-05-20 05:28:56 +00:00
-- | A default 'Options'.
2012-02-27 02:23:56 +00:00
defaultOptions :: Options
defaultOptions = Options {
2013-09-03 05:40:51 +00:00
outputStyle = PlainStyle
, hlintOpts = []
, ghcOpts = []
, operators = False
, detailed = False
, qualified = False
2013-09-03 05:40:51 +00:00
, expandSplice = False
, lineSeparator = LineSeparator "\0"
, packageId = Nothing
2010-04-30 09:36:31 +00:00
}
2012-02-14 02:33:27 +00:00
----------------------------------------------------------------
2012-02-14 07:09:53 +00:00
2012-02-14 02:33:27 +00:00
convert :: ToString a => Options -> a -> String
convert Options{ outputStyle = LispStyle } = toLisp
convert Options{ outputStyle = PlainStyle } = toPlain
class ToString a where
toLisp :: a -> String
toPlain :: a -> String
instance ToString [String] where
toLisp = addNewLine . toSexp True
toPlain = unlines
instance ToString [((Int,Int,Int,Int),String)] where
toLisp = addNewLine . toSexp False . map toS
where
toS x = "(" ++ tupToString x ++ ")"
toPlain = unlines . map tupToString
toSexp :: Bool -> [String] -> String
toSexp False ss = "(" ++ unwords ss ++ ")"
toSexp True ss = "(" ++ unwords (map quote ss) ++ ")"
tupToString :: ((Int,Int,Int,Int),String) -> String
tupToString ((a,b,c,d),s) = show a ++ " "
++ show b ++ " "
++ show c ++ " "
++ show d ++ " "
++ quote s
quote :: String -> String
quote x = "\"" ++ x ++ "\""
addNewLine :: String -> String
addNewLine = (++ "\n")
----------------------------------------------------------------
2013-09-05 05:35:28 +00:00
-- | The environment where this library is used.
data Cradle = Cradle {
2013-09-05 05:35:28 +00:00
-- | The directory where this library is executed.
cradleCurrentDir :: FilePath
-- | The project root directory.
, cradleRootDir :: FilePath
2013-09-05 05:35:28 +00:00
-- | The file name of the found cabal file.
, cradleCabalFile :: Maybe FilePath
-- | Package database stack
, cradlePkgDbStack :: [GhcPkgDb]
-- | Package dependencies
, cradlePackages :: [Package]
2013-03-05 01:22:33 +00:00
} deriving (Eq, Show)
----------------------------------------------------------------
-- | GHC package database flags.
data GhcPkgDb = GlobalDb | UserDb | PackageDb String deriving (Eq, Show)
2013-09-19 06:58:50 +00:00
-- | A single GHC command line option.
type GHCOption = String
2013-09-19 06:58:50 +00:00
-- | An include directory for modules.
type IncludeDir = FilePath
2013-09-16 00:56:08 +00:00
2013-09-19 06:58:50 +00:00
-- | A package name.
type PackageBaseName = String
-- | A package name and its ID.
type Package = (PackageBaseName, Maybe String)
2013-09-05 05:35:28 +00:00
-- | Haskell expression.
2013-05-20 05:28:56 +00:00
type Expression = String
2013-09-05 05:35:28 +00:00
-- | Module name.
2013-05-20 05:28:56 +00:00
type ModuleString = String
2013-09-19 06:58:50 +00:00
-- | Option information for GHC
data CompilerOptions = CompilerOptions {
ghcOptions :: [GHCOption] -- ^ Command line options
, includeDirs :: [IncludeDir] -- ^ Include directories for modules
, depPackages :: [Package] -- ^ Dependent package names
2013-09-20 02:21:31 +00:00
} deriving (Eq, Show)