68 lines
2.1 KiB
Haskell
68 lines
2.1 KiB
Haskell
-- ghc-mod: Making Haskell development *more* fun
|
|
-- Copyright (C) 2015 Daniel Gröber <dxld ÄT darkboxed DOT org>
|
|
--
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
-- it under the terms of the GNU Affero General Public License as published by
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
|
-- (at your option) any later version.
|
|
--
|
|
-- This program is distributed in the hope that it will be useful,
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
-- GNU Affero General Public License for more details.
|
|
--
|
|
-- You should have received a copy of the GNU Affero General Public License
|
|
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
module Language.Haskell.GhcMod.Pretty where
|
|
|
|
import Control.Arrow hiding ((<+>))
|
|
import Data.Char
|
|
import Data.List
|
|
import Distribution.Helper
|
|
import Text.PrettyPrint
|
|
|
|
import Language.Haskell.GhcMod.Types
|
|
|
|
docStyle :: Style
|
|
docStyle = style { ribbonsPerLine = 1.2 }
|
|
|
|
gmRenderDoc :: Doc -> String
|
|
gmRenderDoc = renderStyle docStyle
|
|
|
|
gmComponentNameDoc :: ChComponentName -> Doc
|
|
gmComponentNameDoc ChSetupHsName = text $ "Setup.hs"
|
|
gmComponentNameDoc ChLibName = text $ "library"
|
|
gmComponentNameDoc (ChExeName n) = text $ "exe:" ++ n
|
|
gmComponentNameDoc (ChTestName n) = text $ "test:" ++ n
|
|
gmComponentNameDoc (ChBenchName n) = text $ "bench:" ++ n
|
|
|
|
gmLogLevelDoc :: GmLogLevel -> Doc
|
|
gmLogLevelDoc GmPanic = text "PANIC"
|
|
gmLogLevelDoc GmException = text "EXCEPTION"
|
|
gmLogLevelDoc GmError = text "ERROR"
|
|
gmLogLevelDoc GmWarning = text "Warning"
|
|
gmLogLevelDoc GmInfo = text "info"
|
|
gmLogLevelDoc GmDebug = text "DEBUG"
|
|
|
|
infixl 6 <+>:
|
|
(<+>:) :: Doc -> Doc -> Doc
|
|
a <+>: b = (a <> colon) <+> b
|
|
|
|
fnDoc :: FilePath -> Doc
|
|
fnDoc = doubleQuotes . text
|
|
|
|
showDoc :: Show a => a -> Doc
|
|
showDoc = text . show
|
|
|
|
warnDoc :: Doc -> Doc
|
|
warnDoc d = text "Warning" <+>: d
|
|
|
|
strDoc :: String -> Doc
|
|
strDoc str = doc (dropWhileEnd isSpace str)
|
|
where
|
|
doc :: String -> Doc
|
|
doc = lines
|
|
>>> map (words >>> map text >>> fsep)
|
|
>>> \l -> case l of (x:xs) -> hang x 4 (vcat xs); [] -> empty
|