module Ledger.Conway.Foreign.HSLedger.Ratify where

open import Ledger.Conway.Foreign.HSLedger.Address
open import Ledger.Conway.Foreign.HSLedger.BaseTypes
open import Ledger.Conway.Foreign.HSLedger.Certs
open import Ledger.Conway.Foreign.HSLedger.Enact
open import Ledger.Conway.Foreign.HSLedger.Gov.Core
open import Ledger.Conway.Foreign.HSLedger.Gov

open import Ledger.Enact govStructure

open import Data.String.Base renaming (_++_ to _+ˢ_) hiding (show; length)
import Data.Rational.Show as Rational

import Foreign.Haskell.Pair as F
open import Ledger.Ratify it
open import Ledger.Ratify.Properties it

instance
  HsTy-StakeDistrs = autoHsType StakeDistrs
  Conv-StakeDistrs = autoConvert StakeDistrs

  HsTy-RatifyEnv = autoHsType RatifyEnv  withConstructor "MkRatifyEnv"
                                         fieldPrefix "re"
  Conv-RatifyEnv = autoConvert RatifyEnv

  HsTy-RatifyState = autoHsType RatifyState  withConstructor "MkRatifyState"
                                             fieldPrefix "rs"
                                             RatifyState.es  "rsEnactState"
  Conv-RatifyState = autoConvert RatifyState

ratify-debug : HsType (RatifyEnv  RatifyState  List (GovActionID × GovActionState)  String)
ratify-debug env st sig =
  "Number of govactions: "  show (length sig)  "\n" 
  foldr  x s  s  govActionInfo x) "" sig
  where
    open RatifyEnv (from env)
    govActionInfo : HsType (GovActionID × GovActionState)  String
    govActionInfo (gaId F., gas) =
      let
        open GovActionState (from gas)
        open RatifyState (from st)
        open EnactState es
        votes'  = actualVotes (from env) (proj₁ pparams) (proj₁ cc) (action .gaType) votes
        showAcceptedStakeRatio role = Rational.show (acceptedStakeRatio role (dom votes') stakeDistrs votes')
        showIsAccepted role = case acceptedBy? (from env) es (from gas) role of λ where
          (yes _)  "✓"
          (no  _)  "×"
      in
        "SPO: \t"   showAcceptedStakeRatio SPO   "\t"  showIsAccepted SPO   "\n" 
        "DRep: \t"  showAcceptedStakeRatio DRep  "\t"  showIsAccepted DRep  "\n" 
        "CC: \t"    showAcceptedStakeRatio CC    "\t"  showIsAccepted CC    "\n"

{-# COMPILE GHC ratify-debug as ratifyDebug #-}

ratify-step : HsType (RatifyEnv  RatifyState  List (GovActionID × GovActionState)  ComputationResult  RatifyState)
ratify-step = to (compute Computational-RATIFIES)

{-# COMPILE GHC ratify-step as ratifyStep #-}