tendermint/types/validator.go

107 lines
2.5 KiB
Go
Raw Normal View History

package types
import (
"bytes"
2014-10-18 01:42:33 -07:00
"fmt"
"io"
. "github.com/tendermint/go-common"
2015-11-01 11:34:08 -08:00
"github.com/tendermint/go-crypto"
"github.com/tendermint/go-wire"
)
// Volatile state for each Validator
// Also persisted with the state, but fields change
// every height|round so they don't go in merkle.Tree
type Validator struct {
Address []byte `json:"address"`
PubKey crypto.PubKey `json:"pub_key"`
LastCommitHeight int `json:"last_commit_height"`
VotingPower int64 `json:"voting_power"`
Accum int64 `json:"accum"`
}
// Creates a new copy of the validator so we can mutate accum.
// Panics if the validator is nil.
func (v *Validator) Copy() *Validator {
vCopy := *v
return &vCopy
}
2014-10-11 21:27:58 -07:00
// Returns the one with higher Accum.
func (v *Validator) CompareAccum(other *Validator) *Validator {
if v == nil {
return other
2014-09-14 15:37:32 -07:00
}
2014-10-11 21:27:58 -07:00
if v.Accum > other.Accum {
return v
} else if v.Accum < other.Accum {
return other
} else {
if bytes.Compare(v.Address, other.Address) < 0 {
2014-10-11 21:27:58 -07:00
return v
} else if bytes.Compare(v.Address, other.Address) > 0 {
2014-10-11 21:27:58 -07:00
return other
} else {
2015-07-19 16:42:52 -07:00
PanicSanity("Cannot compare identical validators")
return nil
}
}
}
2014-10-18 01:42:33 -07:00
func (v *Validator) String() string {
if v == nil {
return "nil-Validator"
}
2015-12-09 17:09:06 -08:00
return fmt.Sprintf("Validator{%X %v %v VP:%v A:%v}",
v.Address,
v.PubKey,
v.LastCommitHeight,
v.VotingPower,
v.Accum)
}
func (v *Validator) Hash() []byte {
2015-07-25 15:45:45 -07:00
return wire.BinaryRipemd160(v)
2014-10-18 01:42:33 -07:00
}
2014-10-11 21:27:58 -07:00
//-------------------------------------
2014-09-14 15:37:32 -07:00
2014-10-11 21:27:58 -07:00
var ValidatorCodec = validatorCodec{}
2014-09-14 15:37:32 -07:00
2014-10-11 21:27:58 -07:00
type validatorCodec struct{}
2015-11-10 13:10:43 -08:00
func (vc validatorCodec) Encode(o interface{}, w io.Writer, n *int, err *error) {
2015-07-25 15:45:45 -07:00
wire.WriteBinary(o.(*Validator), w, n, err)
}
2015-11-10 13:10:43 -08:00
func (vc validatorCodec) Decode(r io.Reader, n *int, err *error) interface{} {
return wire.ReadBinary(&Validator{}, r, 0, n, err)
}
2014-10-11 21:27:58 -07:00
func (vc validatorCodec) Compare(o1 interface{}, o2 interface{}) int {
2015-07-19 16:42:52 -07:00
PanicSanity("ValidatorCodec.Compare not implemented")
return 0
2014-10-07 00:43:34 -07:00
}
//--------------------------------------------------------------------------------
// For testing...
func RandValidator(randPower bool, minPower int64) (*Validator, *PrivValidator) {
privVal := GenPrivValidator()
_, tempFilePath := Tempfile("priv_validator_")
privVal.SetFile(tempFilePath)
votePower := minPower
if randPower {
votePower += int64(RandUint32())
}
val := &Validator{
Address: privVal.Address,
PubKey: privVal.PubKey,
LastCommitHeight: 0,
VotingPower: votePower,
Accum: 0,
}
return val, privVal
}