purescript-0.15.15: src/Language/PureScript/Ide/Util.hs
-----------------------------------------------------------------------------
--
-- Module : Language.PureScript.Ide.Util
-- Description : Generally useful functions and conversions
-- Copyright : Christoph Hegemann 2016
-- License : MIT (http://opensource.org/licenses/MIT)
--
-- Maintainer : Christoph Hegemann <christoph.hegemann1337@gmail.com>
-- Stability : experimental
--
-- |
-- Generally useful functions
-----------------------------------------------------------------------------
module Language.PureScript.Ide.Util
( identifierFromIdeDeclaration
, unwrapMatch
, namespaceForDeclaration
, encodeT
, decodeT
, discardAnn
, withEmptyAnn
, valueOperatorAliasT
, typeOperatorAliasT
, properNameT
, identT
, opNameT
, ideReadFile
, module Language.PureScript.Ide.Logging
) where
import Protolude hiding (decodeUtf8,
encodeUtf8, to)
import Control.Lens (Getting, to, (^.))
import Data.Aeson (FromJSON, ToJSON, eitherDecode, encode)
import Data.Text qualified as T
import Data.Text.Lazy qualified as TL
import Data.Text.Lazy.Encoding as TLE
import Language.PureScript qualified as P
import Language.PureScript.Ide.Error (IdeError(..))
import Language.PureScript.Ide.Logging
import Language.PureScript.Ide.Types (IdeDeclaration(..), IdeDeclarationAnn(..), IdeNamespace(..), Match(..), emptyAnn, ideDtorName, ideSynonymName, ideTCName, ideTypeName, ideTypeOpName, ideValueIdent, ideValueOpName)
import System.IO.UTF8 (readUTF8FileT)
import System.Directory (makeAbsolute)
identifierFromIdeDeclaration :: IdeDeclaration -> Text
identifierFromIdeDeclaration d = case d of
IdeDeclValue v -> v ^. ideValueIdent . identT
IdeDeclType t -> t ^. ideTypeName . properNameT
IdeDeclTypeSynonym s -> s ^. ideSynonymName . properNameT
IdeDeclDataConstructor dtor -> dtor ^. ideDtorName . properNameT
IdeDeclTypeClass tc -> tc ^. ideTCName . properNameT
IdeDeclValueOperator op -> op ^. ideValueOpName & P.runOpName
IdeDeclTypeOperator op -> op ^. ideTypeOpName & P.runOpName
IdeDeclModule name -> P.runModuleName name
namespaceForDeclaration :: IdeDeclaration -> IdeNamespace
namespaceForDeclaration d = case d of
IdeDeclValue _ -> IdeNSValue
IdeDeclType _ -> IdeNSType
IdeDeclTypeSynonym _ -> IdeNSType
IdeDeclDataConstructor _ -> IdeNSValue
IdeDeclTypeClass _ -> IdeNSType
IdeDeclValueOperator _ -> IdeNSValue
IdeDeclTypeOperator _ -> IdeNSType
IdeDeclModule _ -> IdeNSModule
discardAnn :: IdeDeclarationAnn -> IdeDeclaration
discardAnn (IdeDeclarationAnn _ d) = d
withEmptyAnn :: IdeDeclaration -> IdeDeclarationAnn
withEmptyAnn = IdeDeclarationAnn emptyAnn
unwrapMatch :: Match a -> a
unwrapMatch (Match (_, ed)) = ed
valueOperatorAliasT
:: P.Qualified (Either P.Ident (P.ProperName 'P.ConstructorName)) -> Text
valueOperatorAliasT =
P.showQualified $ either P.runIdent P.runProperName
typeOperatorAliasT
:: P.Qualified (P.ProperName 'P.TypeName) -> Text
typeOperatorAliasT =
P.showQualified P.runProperName
encodeT :: (ToJSON a) => a -> Text
encodeT = TL.toStrict . TLE.decodeUtf8 . encode
decodeT :: (FromJSON a) => Text -> Either Text a
decodeT = first T.pack . eitherDecode . TLE.encodeUtf8 . TL.fromStrict
properNameT :: Getting r (P.ProperName a) Text
properNameT = to P.runProperName
identT :: Getting r P.Ident Text
identT = to P.runIdent
opNameT :: Getting r (P.OpName a) Text
opNameT = to P.runOpName
ideReadFile'
:: (MonadIO m, MonadError IdeError m)
=> (FilePath -> IO Text)
-> FilePath
-> m (FilePath, Text)
ideReadFile' fileReader fp = do
absPath <- liftIO (try (makeAbsolute fp)) >>= \case
Left (err :: IOException) ->
throwError
(GeneralError
("Couldn't resolve path for: " <> show fp <> ", Error: " <> show err))
Right absPath -> pure absPath
contents <- liftIO (try (fileReader absPath)) >>= \case
Left (err :: IOException) ->
throwError
(GeneralError
("Couldn't find file at: " <> show absPath <> ", Error: " <> show err))
Right contents ->
pure contents
pure (absPath, contents)
ideReadFile :: (MonadIO m, MonadError IdeError m) => FilePath -> m (FilePath, Text)
ideReadFile = ideReadFile' readUTF8FileT