{-# LANGUAGE DataKinds #-} {-# LANGUAGE StandaloneDeriving #-} {-# LANGUAGE GADTs #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeInType #-} {-# OPTIONS_GHC -Wno-unticked-promoted-constructors #-} module Language.LSP.Types.LspId where import qualified Data.Aeson as A import Data.Text (Text) import Data.Int (Int32) import Data.IxMap import Language.LSP.Types.Method -- | Id used for a request, Can be either a String or an Int data LspId (m :: Method f Request) = IdInt !Int32 | IdString !Text deriving (Show,Read,Eq,Ord) instance A.ToJSON (LspId m) where toJSON (IdInt i) = A.toJSON i toJSON (IdString s) = A.toJSON s instance A.FromJSON (LspId m) where parseJSON v@(A.Number _) = IdInt <$> A.parseJSON v parseJSON (A.String s) = return (IdString s) parseJSON _ = fail "LspId" instance IxOrd LspId where type Base LspId = SomeLspId toBase = SomeLspId data SomeLspId where SomeLspId :: !(LspId m) -> SomeLspId deriving instance Show SomeLspId instance Eq SomeLspId where SomeLspId (IdInt a) == SomeLspId (IdInt b) = a == b SomeLspId (IdString a) == SomeLspId (IdString b) = a == b _ == _ = False instance Ord SomeLspId where compare (SomeLspId x) (SomeLspId y) = go x y where go (IdInt a) (IdInt b) = a `compare` b go (IdString a) (IdString b) = a `compare` b go (IdInt _) (IdString _) = LT go (IdString _) (IdInt _) = GT