{- 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.DocumentColorParams 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.ProgressToken
import qualified Language.LSP.Protocol.Internal.Types.TextDocumentIdentifier
import qualified Language.LSP.Protocol.Types.Common

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

instance Aeson.ToJSON DocumentColorParams where
  toJSON :: DocumentColorParams -> Value
toJSON (DocumentColorParams Maybe ProgressToken
arg0 Maybe ProgressToken
arg1 TextDocumentIdentifier
arg2) = [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
$  [String
"workDoneToken" forall kv v. (KeyValue kv, ToJSON v) => String -> Maybe v -> [kv]
Language.LSP.Protocol.Types.Common..=? Maybe ProgressToken
arg0
    ,String
"partialResultToken" forall kv v. (KeyValue kv, ToJSON v) => String -> Maybe v -> [kv]
Language.LSP.Protocol.Types.Common..=? Maybe ProgressToken
arg1
    ,[Key
"textDocument" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Aeson..= TextDocumentIdentifier
arg2]]

instance Aeson.FromJSON DocumentColorParams where
  parseJSON :: Value -> Parser DocumentColorParams
parseJSON = forall a. String -> (Object -> Parser a) -> Value -> Parser a
Aeson.withObject String
"DocumentColorParams" forall a b. (a -> b) -> a -> b
$ \Object
arg -> Maybe ProgressToken
-> Maybe ProgressToken
-> TextDocumentIdentifier
-> DocumentColorParams
DocumentColorParams forall (f :: * -> *) a b. Functor 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" 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
"textDocument"