purescript-0.15.15: src/Language/PureScript/Names.hs
{-# LANGUAGE TemplateHaskell #-}
-- |
-- Data types for names
--
module Language.PureScript.Names where
import Prelude
import Codec.Serialise (Serialise)
import Control.Applicative ((<|>))
import Control.Monad.Supply.Class (MonadSupply(..))
import Control.DeepSeq (NFData)
import Data.Functor.Contravariant (contramap)
import Data.Vector qualified as V
import GHC.Generics (Generic)
import Data.Aeson (FromJSON(..), FromJSONKey(..), Options(..), SumEncoding(..), ToJSON(..), ToJSONKey(..), defaultOptions, parseJSON2, toJSON2, withArray)
import Data.Aeson.TH (deriveJSON)
import Data.Text (Text)
import Data.Text qualified as T
import Language.PureScript.AST.SourcePos (SourcePos, pattern SourcePos)
-- | A sum of the possible name types, useful for error and lint messages.
data Name
= IdentName Ident
| ValOpName (OpName 'ValueOpName)
| TyName (ProperName 'TypeName)
| TyOpName (OpName 'TypeOpName)
| DctorName (ProperName 'ConstructorName)
| TyClassName (ProperName 'ClassName)
| ModName ModuleName
deriving (Eq, Ord, Show, Generic)
instance NFData Name
instance Serialise Name
getIdentName :: Name -> Maybe Ident
getIdentName (IdentName name) = Just name
getIdentName _ = Nothing
getValOpName :: Name -> Maybe (OpName 'ValueOpName)
getValOpName (ValOpName name) = Just name
getValOpName _ = Nothing
getTypeName :: Name -> Maybe (ProperName 'TypeName)
getTypeName (TyName name) = Just name
getTypeName _ = Nothing
getTypeOpName :: Name -> Maybe (OpName 'TypeOpName)
getTypeOpName (TyOpName name) = Just name
getTypeOpName _ = Nothing
getDctorName :: Name -> Maybe (ProperName 'ConstructorName)
getDctorName (DctorName name) = Just name
getDctorName _ = Nothing
getClassName :: Name -> Maybe (ProperName 'ClassName)
getClassName (TyClassName name) = Just name
getClassName _ = Nothing
-- |
-- This type is meant to be extended with any new uses for idents that come
-- along. Adding constructors to this type is cheaper than adding them to
-- `Ident` because functions that match on `Ident` can ignore all
-- `InternalIdent`s with a single pattern, and thus don't have to change if
-- a new `InternalIdentData` constructor is created.
--
data InternalIdentData
-- Used by CoreFn.Laziness
= RuntimeLazyFactory | Lazy !Text
deriving (Show, Eq, Ord, Generic)
instance NFData InternalIdentData
instance Serialise InternalIdentData
-- |
-- Names for value identifiers
--
data Ident
-- |
-- An alphanumeric identifier
--
= Ident Text
-- |
-- A generated name for an identifier
--
| GenIdent (Maybe Text) Integer
-- |
-- A generated name used only for type-checking
--
| UnusedIdent
-- |
-- A generated name used only for internal transformations
--
| InternalIdent !InternalIdentData
deriving (Show, Eq, Ord, Generic)
instance NFData Ident
instance Serialise Ident
unusedIdent :: Text
unusedIdent = "$__unused"
runIdent :: Ident -> Text
runIdent (Ident i) = i
runIdent (GenIdent Nothing n) = "$" <> T.pack (show n)
runIdent (GenIdent (Just name) n) = "$" <> name <> T.pack (show n)
runIdent UnusedIdent = unusedIdent
runIdent InternalIdent{} = error "unexpected InternalIdent"
showIdent :: Ident -> Text
showIdent = runIdent
freshIdent :: MonadSupply m => Text -> m Ident
freshIdent name = GenIdent (Just name) <$> fresh
freshIdent' :: MonadSupply m => m Ident
freshIdent' = GenIdent Nothing <$> fresh
isPlainIdent :: Ident -> Bool
isPlainIdent Ident{} = True
isPlainIdent _ = False
-- |
-- Operator alias names.
--
newtype OpName (a :: OpNameType) = OpName { runOpName :: Text }
deriving (Show, Eq, Ord, Generic)
instance NFData (OpName a)
instance Serialise (OpName a)
instance ToJSON (OpName a) where
toJSON = toJSON . runOpName
instance FromJSON (OpName a) where
parseJSON = fmap OpName . parseJSON
showOp :: OpName a -> Text
showOp op = "(" <> runOpName op <> ")"
-- |
-- The closed set of operator alias types.
--
data OpNameType = ValueOpName | TypeOpName | AnyOpName
eraseOpName :: OpName a -> OpName 'AnyOpName
eraseOpName = OpName . runOpName
coerceOpName :: OpName a -> OpName b
coerceOpName = OpName . runOpName
-- |
-- Proper names, i.e. capitalized names for e.g. module names, type//data constructors.
--
newtype ProperName (a :: ProperNameType) = ProperName { runProperName :: Text }
deriving (Show, Eq, Ord, Generic)
instance NFData (ProperName a)
instance Serialise (ProperName a)
instance ToJSON (ProperName a) where
toJSON = toJSON . runProperName
instance FromJSON (ProperName a) where
parseJSON = fmap ProperName . parseJSON
-- |
-- The closed set of proper name types.
--
data ProperNameType
= TypeName
| ConstructorName
| ClassName
| Namespace
-- |
-- Coerces a ProperName from one ProperNameType to another. This should be used
-- with care, and is primarily used to convert ClassNames into TypeNames after
-- classes have been desugared.
--
coerceProperName :: ProperName a -> ProperName b
coerceProperName = ProperName . runProperName
-- |
-- Module names
--
newtype ModuleName = ModuleName Text
deriving (Show, Eq, Ord, Generic)
deriving newtype Serialise
instance NFData ModuleName
runModuleName :: ModuleName -> Text
runModuleName (ModuleName name) = name
moduleNameFromString :: Text -> ModuleName
moduleNameFromString = ModuleName
isBuiltinModuleName :: ModuleName -> Bool
isBuiltinModuleName (ModuleName mn) = mn == "Prim" || "Prim." `T.isPrefixOf` mn
data QualifiedBy
= BySourcePos SourcePos
| ByModuleName ModuleName
deriving (Show, Eq, Ord, Generic)
pattern ByNullSourcePos :: QualifiedBy
pattern ByNullSourcePos = BySourcePos (SourcePos 0 0)
instance NFData QualifiedBy
instance Serialise QualifiedBy
isBySourcePos :: QualifiedBy -> Bool
isBySourcePos (BySourcePos _) = True
isBySourcePos _ = False
byMaybeModuleName :: Maybe ModuleName -> QualifiedBy
byMaybeModuleName (Just mn) = ByModuleName mn
byMaybeModuleName Nothing = ByNullSourcePos
toMaybeModuleName :: QualifiedBy -> Maybe ModuleName
toMaybeModuleName (ByModuleName mn) = Just mn
toMaybeModuleName (BySourcePos _) = Nothing
-- |
-- A qualified name, i.e. a name with an optional module name
--
data Qualified a = Qualified QualifiedBy a
deriving (Show, Eq, Ord, Functor, Foldable, Traversable, Generic)
instance NFData a => NFData (Qualified a)
instance Serialise a => Serialise (Qualified a)
showQualified :: (a -> Text) -> Qualified a -> Text
showQualified f (Qualified (BySourcePos _) a) = f a
showQualified f (Qualified (ByModuleName name) a) = runModuleName name <> "." <> f a
getQual :: Qualified a -> Maybe ModuleName
getQual (Qualified qb _) = toMaybeModuleName qb
-- |
-- Provide a default module name, if a name is unqualified
--
qualify :: ModuleName -> Qualified a -> (ModuleName, a)
qualify m (Qualified (BySourcePos _) a) = (m, a)
qualify _ (Qualified (ByModuleName m) a) = (m, a)
-- |
-- Makes a qualified value from a name and module name.
--
mkQualified :: a -> ModuleName -> Qualified a
mkQualified name mn = Qualified (ByModuleName mn) name
-- | Remove the module name from a qualified name
disqualify :: Qualified a -> a
disqualify (Qualified _ a) = a
-- |
-- Remove the qualification from a value when it is qualified with a particular
-- module name.
--
disqualifyFor :: Maybe ModuleName -> Qualified a -> Maybe a
disqualifyFor mn (Qualified qb a) | mn == toMaybeModuleName qb = Just a
disqualifyFor _ _ = Nothing
-- |
-- Checks whether a qualified value is actually qualified with a module reference
--
isQualified :: Qualified a -> Bool
isQualified (Qualified (BySourcePos _) _) = False
isQualified _ = True
-- |
-- Checks whether a qualified value is not actually qualified with a module reference
--
isUnqualified :: Qualified a -> Bool
isUnqualified = not . isQualified
-- |
-- Checks whether a qualified value is qualified with a particular module
--
isQualifiedWith :: ModuleName -> Qualified a -> Bool
isQualifiedWith mn (Qualified (ByModuleName mn') _) = mn == mn'
isQualifiedWith _ _ = False
instance ToJSON a => ToJSON (Qualified a) where
toJSON (Qualified qb a) = case qb of
ByModuleName mn -> toJSON2 (mn, a)
BySourcePos ss -> toJSON2 (ss, a)
instance FromJSON a => FromJSON (Qualified a) where
parseJSON v = byModule <|> bySourcePos <|> byMaybeModuleName'
where
byModule = do
(mn, a) <- parseJSON2 v
pure $ Qualified (ByModuleName mn) a
bySourcePos = do
(ss, a) <- parseJSON2 v
pure $ Qualified (BySourcePos ss) a
byMaybeModuleName' = do
(mn, a) <- parseJSON2 v
pure $ Qualified (byMaybeModuleName mn) a
instance ToJSON ModuleName where
toJSON (ModuleName name) = toJSON (T.splitOn "." name)
instance FromJSON ModuleName where
parseJSON = withArray "ModuleName" $ \names -> do
names' <- traverse parseJSON names
pure (ModuleName (T.intercalate "." (V.toList names')))
instance ToJSONKey ModuleName where
toJSONKey = contramap runModuleName toJSONKey
instance FromJSONKey ModuleName where
fromJSONKey = fmap moduleNameFromString fromJSONKey
$(deriveJSON (defaultOptions { sumEncoding = ObjectWithSingleField }) ''InternalIdentData)
$(deriveJSON (defaultOptions { sumEncoding = ObjectWithSingleField }) ''Ident)