Skip to content

Commit

Permalink
Restore stable query cmds
Browse files Browse the repository at this point in the history
  • Loading branch information
Jimbo4350 committed Oct 29, 2024
1 parent 2570f88 commit 73f60a9
Show file tree
Hide file tree
Showing 4 changed files with 157 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cardano-cli/src/Cardano/CLI/Commands.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import Cardano.CLI.Commands.Node
import Cardano.CLI.Commands.Ping (PingCmd (..))
import Cardano.CLI.Compatible.Commands
import Cardano.CLI.EraBased.Commands
import Cardano.CLI.EraBased.Commands.Query
import Cardano.CLI.Legacy.Commands

import Options.Applicative.Types (ParserInfo (..), ParserPrefs (..))
Expand All @@ -32,6 +33,8 @@ data ClientCommand
KeyCommands KeyCmds
| -- | Era agnostic node commands
NodeCommands NodeCmds
| -- | Query commands
forall era. QueryCommands (QueryCmds era)
| -- | Legacy shelley-based Commands
LegacyCmds LegacyCmds
| CliPingCommand PingCmd
Expand Down
137 changes: 137 additions & 0 deletions cardano-cli/src/Cardano/CLI/EraBased/Options/Query.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

module Cardano.CLI.EraBased.Options.Query
( pQueryCmds
, pQueryCmdsTopLevel
)
where

Expand All @@ -27,6 +28,142 @@ import qualified Options.Applicative as Opt
{- HLINT ignore "Use <$>" -}
{- HLINT ignore "Move brackets to avoid $" -}

pQueryCmdsTopLevel :: EnvCli -> Parser (QueryCmds ConwayEra)
pQueryCmdsTopLevel envCli =
let parsers =
[ pProtocolParams envCli
, pTip envCli
, pStakePools envCli
, pStakeDistribution envCli
, pStakeAddressInfo envCli
, pUTxO envCli
, pLedgerState envCli
, pProtocolState envCli
, pStakeSnapshot envCli
, pPoolParams envCli
, pLeadershipSchedule envCli
, pKesPeriodInfo envCli
, pPoolState envCli
, pTxMempool envCli
, pSlotNumber envCli
]
i =
Opt.progDesc $
mconcat
[ "Node query commands. Will query the local node whose Unix domain socket is "
, "obtained from the CARDANO_NODE_SOCKET_PATH environment variable."
]
in subParser "query" $ Opt.info (asum parsers) i

pProtocolParams :: EnvCli -> Parser (QueryCmds era)
pProtocolParams envCli =
subParser "protocol-parameters" $
Opt.info (pQueryProtocolParametersCmd envCli) $
Opt.progDesc "Get the node's current protocol parameters"

pTip :: EnvCli -> Parser (QueryCmds ConwayEra)
pTip envCli =
subParser "tip" $
Opt.info (pQueryTipCmd ShelleyBasedEraConway envCli) $
Opt.progDesc "Get the node's current tip (slot no, hash, block no)"

pStakePools :: EnvCli -> Parser (QueryCmds ConwayEra)
pStakePools envCli =
subParser "stake-pools" $
Opt.info (pQueryStakePoolsCmd ShelleyBasedEraConway envCli) $
Opt.progDesc "Get the node's current set of stake pool ids"

pStakeDistribution :: EnvCli -> Parser (QueryCmds ConwayEra)
pStakeDistribution envCli =
subParser "stake-distribution" $
Opt.info (pQueryStakeDistributionCmd ShelleyBasedEraConway envCli) $
Opt.progDesc "Get the node's current aggregated stake distribution"

pStakeAddressInfo :: EnvCli -> Parser (QueryCmds ConwayEra)
pStakeAddressInfo envCli =
subParser "stake-address-info" $
Opt.info (pQueryStakeAddressInfoCmd ShelleyBasedEraConway envCli) $
Opt.progDesc $
mconcat
[ "Get the current delegations and reward accounts filtered by stake address."
]

pUTxO :: EnvCli -> Parser (QueryCmds ConwayEra)
pUTxO envCli =
subParser "utxo" $
Opt.info (pQueryUTxOCmd ShelleyBasedEraConway envCli) $
Opt.progDesc $
mconcat
[ "Get a portion of the current UTxO: by tx in, by address or the whole."
]

pLedgerState :: EnvCli -> Parser (QueryCmds ConwayEra)
pLedgerState envCli =
subParser "ledger-state" $
Opt.info (pQueryLedgerStateCmd ShelleyBasedEraConway envCli) $
Opt.progDesc $
mconcat
[ "Dump the current ledger state of the node (Ledger.NewEpochState -- advanced command)"
]

pProtocolState :: EnvCli -> Parser (QueryCmds ConwayEra)
pProtocolState envCli =
subParser "protocol-state" $
Opt.info (pQueryProtocolStateCmd ShelleyBasedEraConway envCli) $
Opt.progDesc $
mconcat
[ "Dump the current protocol state of the node (Ledger.ChainDepState -- advanced command)"
]

pStakeSnapshot :: EnvCli -> Parser (QueryCmds ConwayEra)
pStakeSnapshot envCli =
subParser "stake-snapshot" $
Opt.info (pQueryStakeSnapshotCmd ShelleyBasedEraConway envCli) $
Opt.progDesc $
mconcat
[ "Obtain the three stake snapshots for a pool, plus the total active stake (advanced command)"
]

pPoolParams :: EnvCli -> Parser (QueryCmds ConwayEra)
pPoolParams envCli =
hiddenSubParser "pool-params" $
Opt.info (pQueryPoolStateCmd ShelleyBasedEraConway envCli) $
Opt.progDesc $
mconcat
[ "DEPRECATED. Use query pool-state instead. Dump the pool parameters "
, "(Ledger.NewEpochState.esLState._delegationState._pState._pParams -- advanced command)"
]

pLeadershipSchedule :: EnvCli -> Parser (QueryCmds ConwayEra)
pLeadershipSchedule envCli =
subParser "leadership-schedule" $
Opt.info (pLeadershipScheduleCmd ShelleyBasedEraConway envCli) $
Opt.progDesc "Get the slots the node is expected to mint a block in (advanced command)"

pKesPeriodInfo :: EnvCli -> Parser (QueryCmds ConwayEra)
pKesPeriodInfo envCli =
subParser "kes-period-info" $
Opt.info (pKesPeriodInfoCmd ShelleyBasedEraConway envCli) $
Opt.progDesc "Get information about the current KES period and your node's operational certificate."

pPoolState :: EnvCli -> Parser (QueryCmds ConwayEra)
pPoolState envCli =
subParser "pool-state" $
Opt.info (pQueryPoolStateCmd ShelleyBasedEraConway envCli) $
Opt.progDesc "Dump the pool state"

pTxMempool :: EnvCli -> Parser (QueryCmds era)
pTxMempool envCli =
subParser "tx-mempool" $
Opt.info (pQueryTxMempoolCmd envCli) $
Opt.progDesc "Local Mempool info"

pSlotNumber :: EnvCli -> Parser (QueryCmds ConwayEra)
pSlotNumber envCli =
subParser "slot-number" $
Opt.info (pQuerySlotNumberCmd ShelleyBasedEraConway envCli) $
Opt.progDesc "Query slot number for UTC timestamp"

pQueryCmds
:: ()
=> ShelleyBasedEra era
Expand Down
10 changes: 10 additions & 0 deletions cardano-cli/src/Cardano/CLI/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import Cardano.CLI.Compatible.Commands
import Cardano.CLI.Environment (EnvCli)
import Cardano.CLI.EraBased.Commands
import Cardano.CLI.EraBased.Options.Common
import Cardano.CLI.EraBased.Options.Query (pQueryCmdsTopLevel)
import Cardano.CLI.Legacy.Options (parseLegacyCmds)
import Cardano.CLI.Options.Address
import Cardano.CLI.Options.Debug
Expand Down Expand Up @@ -60,6 +61,14 @@ addressCmdsTopLevel envCli = AddressCommand <$> pAddressCmds envCli
nodeCmdsTopLevel :: Parser ClientCommand
nodeCmdsTopLevel = NodeCommands <$> pNodeCmds

-- Queries actually depend on the node to client version which may coincide
-- with a hardfork but not necessarily. Therefore commands that are available
-- in the mainnet era will be exposed at the top level. Commands that are
-- introduced in an upcoming hardfork era will be gated behind the era argument.
-- Once the hardfork is completed we can move those gated commands to the top level.
queryCmdsTopLevel :: EnvCli -> Parser ClientCommand
queryCmdsTopLevel envCli = QueryCommands <$> pQueryCmdsTopLevel envCli

keyCmdsTopLevel :: Parser ClientCommand
keyCmdsTopLevel = KeyCommands <$> pKeyCmds

Expand All @@ -72,6 +81,7 @@ parseClientCommand envCli =
[ addressCmdsTopLevel envCli
, keyCmdsTopLevel
, nodeCmdsTopLevel
, queryCmdsTopLevel envCli
, parseLegacy envCli
, parseByron envCli
, parseAnyEra envCli
Expand Down
7 changes: 7 additions & 0 deletions cardano-cli/src/Cardano/CLI/Run.hs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import Cardano.CLI.Compatible.Commands
import Cardano.CLI.Compatible.Run
import Cardano.CLI.EraBased.Commands
import Cardano.CLI.EraBased.Run
import Cardano.CLI.EraBased.Run.Query
import Cardano.CLI.Legacy.Commands
import Cardano.CLI.Legacy.Run (runLegacyCmds)
import Cardano.CLI.Render (customRenderHelp)
Expand All @@ -35,6 +36,7 @@ import Cardano.CLI.Types.Errors.CmdError
import Cardano.CLI.Types.Errors.HashCmdError
import Cardano.CLI.Types.Errors.KeyCmdError
import Cardano.CLI.Types.Errors.NodeCmdError
import Cardano.CLI.Types.Errors.QueryCmdError
import Cardano.Git.Rev (gitRev)

import Control.Monad (forM_)
Expand Down Expand Up @@ -63,6 +65,7 @@ data ClientCommandErrors
| HashCmdError HashCmdError
| KeyCmdError KeyCmdError
| NodeCmdError NodeCmdError
| QueryCmdError QueryCmdError
| PingClientError PingClientCmdError
| DebugCmdError DebugCmdError

Expand All @@ -86,6 +89,8 @@ runClientCommand = \case
firstExceptT KeyCmdError $ runKeyCmds cmds
LegacyCmds cmds ->
firstExceptT (CmdError (renderLegacyCommand cmds)) $ runLegacyCmds cmds
QueryCommands cmds ->
firstExceptT QueryCmdError $ runQueryCmds cmds
CliPingCommand cmds ->
firstExceptT PingClientError $ runPingCmd cmds
CliDebugCmds cmds ->
Expand All @@ -111,6 +116,8 @@ renderClientCommandError = \case
renderNodeCmdError err
KeyCmdError err ->
renderKeyCmdError err
QueryCmdError err ->
renderQueryCmdError err
PingClientError err ->
renderPingClientCmdError err
DebugCmdError err ->
Expand Down

0 comments on commit 73f60a9

Please sign in to comment.