{- ORMOLU_DISABLE -}
{- HLINT ignore -}
-- THIS IS A GENERATED FILE, DO NOT EDIT

{-# OPTIONS_GHC -Wno-unused-imports #-}
{-# OPTIONS_GHC -Wno-unused-matches #-}
{-# OPTIONS_GHC -Wno-deprecations #-}
module Language.LSP.Protocol.Internal.Types.DocumentHighlightParams where

import Control.DeepSeq
import Data.Hashable
import GHC.Generics
import Language.LSP.Protocol.Utils.Misc
import Prettyprinter
import qualified Data.Aeson as Aeson
import qualified Data.Row.Aeson as Aeson
import qualified Data.Row.Hashable as Hashable
import qualified Language.LSP.Protocol.Internal.Types.Position
import qualified Language.LSP.Protocol.Internal.Types.ProgressToken
import qualified Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier
import qualified Language.LSP.Protocol.Types.Common

{-|
Parameters for a `DocumentHighlightRequest`.
-}
data DocumentHighlightParams = DocumentHighlightParams 
  { {-|
  The text document.
  -}
  DocumentHighlightParams -> TextDocumentIdentifier
_textDocument :: Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier.TextDocumentIdentifier
  , {-|
  The position inside the text document.
  -}
  DocumentHighlightParams -> Position
_position :: Language.LSP.Protocol.Internal.Types.Position.Position
  , {-|
  An optional token that a server can use to report work done progress.
  -}
  DocumentHighlightParams -> Maybe ProgressToken
_workDoneToken :: (Maybe Language.LSP.Protocol.Internal.Types.ProgressToken.ProgressToken)
  , {-|
  An optional token that a server can use to report partial results (e.g. streaming) to
  the client.
  -}
  DocumentHighlightParams -> Maybe ProgressToken
_partialResultToken :: (Maybe Language.LSP.Protocol.Internal.Types.ProgressToken.ProgressToken)
  }
  deriving stock (Int -> DocumentHighlightParams -> ShowS
[DocumentHighlightParams] -> ShowS
DocumentHighlightParams -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DocumentHighlightParams] -> ShowS
$cshowList :: [DocumentHighlightParams] -> ShowS
show :: DocumentHighlightParams -> String
$cshow :: DocumentHighlightParams -> String
showsPrec :: Int -> DocumentHighlightParams -> ShowS
$cshowsPrec :: Int -> DocumentHighlightParams -> ShowS
Show, DocumentHighlightParams -> DocumentHighlightParams -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
$c/= :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
== :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
$c== :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
Eq, Eq DocumentHighlightParams
DocumentHighlightParams -> DocumentHighlightParams -> Bool
DocumentHighlightParams -> DocumentHighlightParams -> Ordering
DocumentHighlightParams
-> DocumentHighlightParams -> DocumentHighlightParams
forall a.
Eq a
-> (a -> a -> Ordering)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> Bool)
-> (a -> a -> a)
-> (a -> a -> a)
-> Ord a
min :: DocumentHighlightParams
-> DocumentHighlightParams -> DocumentHighlightParams
$cmin :: DocumentHighlightParams
-> DocumentHighlightParams -> DocumentHighlightParams
max :: DocumentHighlightParams
-> DocumentHighlightParams -> DocumentHighlightParams
$cmax :: DocumentHighlightParams
-> DocumentHighlightParams -> DocumentHighlightParams
>= :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
$c>= :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
> :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
$c> :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
<= :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
$c<= :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
< :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
$c< :: DocumentHighlightParams -> DocumentHighlightParams -> Bool
compare :: DocumentHighlightParams -> DocumentHighlightParams -> Ordering
$ccompare :: DocumentHighlightParams -> DocumentHighlightParams -> Ordering
Ord, forall x. Rep DocumentHighlightParams x -> DocumentHighlightParams
forall x. DocumentHighlightParams -> Rep DocumentHighlightParams x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DocumentHighlightParams x -> DocumentHighlightParams
$cfrom :: forall x. DocumentHighlightParams -> Rep DocumentHighlightParams x
Generic)
  deriving anyclass (DocumentHighlightParams -> ()
forall a. (a -> ()) -> NFData a
rnf :: DocumentHighlightParams -> ()
$crnf :: DocumentHighlightParams -> ()
NFData, Eq DocumentHighlightParams
Int -> DocumentHighlightParams -> Int
DocumentHighlightParams -> Int
forall a. Eq a -> (Int -> a -> Int) -> (a -> Int) -> Hashable a
hash :: DocumentHighlightParams -> Int
$chash :: DocumentHighlightParams -> Int
hashWithSalt :: Int -> DocumentHighlightParams -> Int
$chashWithSalt :: Int -> DocumentHighlightParams -> Int
Hashable)
  deriving forall ann. [DocumentHighlightParams] -> Doc ann
forall ann. DocumentHighlightParams -> Doc ann
forall a.
(forall ann. a -> Doc ann)
-> (forall ann. [a] -> Doc ann) -> Pretty a
prettyList :: forall ann. [DocumentHighlightParams] -> Doc ann
$cprettyList :: forall ann. [DocumentHighlightParams] -> Doc ann
pretty :: forall ann. DocumentHighlightParams -> Doc ann
$cpretty :: forall ann. DocumentHighlightParams -> Doc ann
Pretty via (ViaJSON DocumentHighlightParams)

instance Aeson.ToJSON DocumentHighlightParams where
  toJSON :: DocumentHighlightParams -> Value
toJSON (DocumentHighlightParams TextDocumentIdentifier
arg0 Position
arg1 Maybe ProgressToken
arg2 Maybe ProgressToken
arg3) = [Pair] -> Value
Aeson.object forall a b. (a -> b) -> a -> b
$ forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat forall a b. (a -> b) -> a -> b
$  [[Key
"textDocument" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Aeson..= TextDocumentIdentifier
arg0]
    ,[Key
"position" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Aeson..= Position
arg1]
    ,String
"workDoneToken" forall kv v. (KeyValue kv, ToJSON v) => String -> Maybe v -> [kv]
Language.LSP.Protocol.Types.Common..=? Maybe ProgressToken
arg2
    ,String
"partialResultToken" forall kv v. (KeyValue kv, ToJSON v) => String -> Maybe v -> [kv]
Language.LSP.Protocol.Types.Common..=? Maybe ProgressToken
arg3]

instance Aeson.FromJSON DocumentHighlightParams where
  parseJSON :: Value -> Parser DocumentHighlightParams
parseJSON = forall a. String -> (Object -> Parser a) -> Value -> Parser a
Aeson.withObject String
"DocumentHighlightParams" forall a b. (a -> b) -> a -> b
$ \Object
arg -> TextDocumentIdentifier
-> Position
-> Maybe ProgressToken
-> Maybe ProgressToken
-> DocumentHighlightParams
DocumentHighlightParams forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> Object
arg forall a. FromJSON a => Object -> Key -> Parser a
Aeson..: Key
"textDocument" forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
arg forall a. FromJSON a => Object -> Key -> Parser a
Aeson..: Key
"position" forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
arg forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Aeson..:! Key
"workDoneToken" forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
<*> Object
arg forall a. FromJSON a => Object -> Key -> Parser (Maybe a)
Aeson..:! Key
"partialResultToken"