tendermint/blocks/block.go

279 lines
5.9 KiB
Go
Raw Normal View History

2014-06-04 01:40:17 -07:00
package blocks
import (
2014-09-11 22:44:59 -07:00
"bytes"
2014-08-10 16:35:08 -07:00
"crypto/sha256"
2014-09-11 22:44:59 -07:00
"errors"
"fmt"
2014-08-10 16:35:08 -07:00
"io"
"strings"
"time"
2014-08-10 16:35:08 -07:00
2014-07-01 14:50:24 -07:00
. "github.com/tendermint/tendermint/binary"
2014-09-11 22:44:59 -07:00
. "github.com/tendermint/tendermint/config"
2014-07-01 14:50:24 -07:00
"github.com/tendermint/tendermint/merkle"
2014-06-04 01:40:17 -07:00
)
2014-09-11 22:44:59 -07:00
var (
ErrBlockInvalidNetwork = errors.New("Error block invalid network")
ErrBlockInvalidBlockHeight = errors.New("Error block invalid height")
ErrBlockInvalidLastBlockHash = errors.New("Error block invalid last blockhash")
)
2014-06-05 02:34:45 -07:00
type Block struct {
2014-07-01 14:50:24 -07:00
Header
Validation
Data
2014-08-10 16:35:08 -07:00
// Volatile
hash []byte
2014-06-04 01:40:17 -07:00
}
func ReadBlock(r io.Reader, n *int64, err *error) *Block {
2014-07-01 14:50:24 -07:00
return &Block{
Header: ReadHeader(r, n, err),
Validation: ReadValidation(r, n, err),
Data: ReadData(r, n, err),
2014-07-01 14:50:24 -07:00
}
2014-06-04 01:40:17 -07:00
}
2014-08-10 16:35:08 -07:00
func (b *Block) WriteTo(w io.Writer) (n int64, err error) {
WriteBinary(w, &b.Header, &n, &err)
WriteBinary(w, &b.Validation, &n, &err)
WriteBinary(w, &b.Data, &n, &err)
2014-08-10 16:35:08 -07:00
return
}
2014-09-11 22:44:59 -07:00
// Basic validation that doesn't involve state data.
func (b *Block) ValidateBasic(lastBlockHeight uint32, lastBlockHash []byte) error {
if b.Header.Network != Config.Network {
return ErrBlockInvalidNetwork
}
2014-10-07 00:43:34 -07:00
if b.Header.Height != lastBlockHeight+1 {
2014-09-11 22:44:59 -07:00
return ErrBlockInvalidBlockHeight
}
if !bytes.Equal(b.Header.LastBlockHash, lastBlockHash) {
return ErrBlockInvalidLastBlockHash
}
// XXX more validation
2014-08-10 16:35:08 -07:00
return nil
}
func (b *Block) Hash() []byte {
if b.hash == nil {
hashes := [][]byte{
b.Header.Hash(),
b.Validation.Hash(),
b.Data.Hash(),
2014-08-10 16:35:08 -07:00
}
// Merkle hash from sub-hashes.
b.hash = merkle.HashFromHashes(hashes)
2014-08-10 16:35:08 -07:00
}
return b.hash
2014-08-10 16:35:08 -07:00
}
2014-09-14 15:37:32 -07:00
// Convenience.
// A nil block never hashes to anything.
// Nothing hashes to a nil hash.
func (b *Block) HashesTo(hash []byte) bool {
if len(hash) == 0 {
return false
2014-08-10 16:35:08 -07:00
}
2014-09-14 15:37:32 -07:00
if b == nil {
return false
}
return bytes.Equal(b.Hash(), hash)
2014-08-10 16:35:08 -07:00
}
func (b *Block) String() string {
return b.StringWithIndent("")
}
func (b *Block) StringWithIndent(indent string) string {
return fmt.Sprintf(`Block{
%s %v
%s %v
%s %v
%s}#%X`,
indent, b.Header.StringWithIndent(indent+" "),
indent, b.Validation.StringWithIndent(indent+" "),
indent, b.Data.StringWithIndent(indent+" "),
indent, b.hash)
}
2014-10-18 01:42:33 -07:00
func (b *Block) Description() string {
if b == nil {
return "nil-Block"
} else {
return fmt.Sprintf("Block#%X", b.Hash())
}
}
2014-08-10 16:35:08 -07:00
//-----------------------------------------------------------------------------
2014-06-05 02:34:45 -07:00
type Header struct {
Network string
Height uint32
Time time.Time
Fees uint64
LastBlockHash []byte
StateHash []byte
2014-08-10 16:35:08 -07:00
// Volatile
hash []byte
2014-06-05 02:34:45 -07:00
}
func ReadHeader(r io.Reader, n *int64, err *error) (h Header) {
if *err != nil {
return Header{}
}
2014-07-01 14:50:24 -07:00
return Header{
Network: ReadString(r, n, err),
Height: ReadUInt32(r, n, err),
Time: ReadTime(r, n, err),
Fees: ReadUInt64(r, n, err),
LastBlockHash: ReadByteSlice(r, n, err),
StateHash: ReadByteSlice(r, n, err),
2014-07-01 14:50:24 -07:00
}
2014-06-05 02:34:45 -07:00
}
2014-08-10 16:35:08 -07:00
func (h *Header) WriteTo(w io.Writer) (n int64, err error) {
2014-09-11 22:44:59 -07:00
WriteString(w, h.Network, &n, &err)
WriteUInt32(w, h.Height, &n, &err)
WriteTime(w, h.Time, &n, &err)
WriteUInt64(w, h.Fees, &n, &err)
2014-09-11 22:44:59 -07:00
WriteByteSlice(w, h.LastBlockHash, &n, &err)
WriteByteSlice(w, h.StateHash, &n, &err)
2014-07-01 14:50:24 -07:00
return
2014-06-05 02:34:45 -07:00
}
2014-08-10 16:35:08 -07:00
func (h *Header) Hash() []byte {
if h.hash == nil {
2014-08-10 16:35:08 -07:00
hasher := sha256.New()
_, err := h.WriteTo(hasher)
if err != nil {
panic(err)
}
h.hash = hasher.Sum(nil)
}
return h.hash
}
func (h *Header) StringWithIndent(indent string) string {
return fmt.Sprintf(`Header{
%s Network: %v
%s Height: %v
%s Time: %v
%s Fees: %v
%s LastBlockHash: %X
%s StateHash: %X
%s}#%X`,
indent, h.Network,
indent, h.Height,
indent, h.Time,
indent, h.Fees,
indent, h.LastBlockHash,
indent, h.StateHash,
indent, h.hash)
2014-08-10 16:35:08 -07:00
}
//-----------------------------------------------------------------------------
2014-06-05 02:34:45 -07:00
type Validation struct {
2014-09-10 02:43:16 -07:00
Signatures []Signature
2014-08-10 16:35:08 -07:00
// Volatile
hash []byte
2014-06-05 02:34:45 -07:00
}
func ReadValidation(r io.Reader, n *int64, err *error) Validation {
numSigs := ReadUInt32(r, n, err)
2014-07-01 14:50:24 -07:00
sigs := make([]Signature, 0, numSigs)
2014-08-30 16:28:51 -07:00
for i := uint32(0); i < numSigs; i++ {
sigs = append(sigs, ReadSignature(r, n, err))
2014-07-01 14:50:24 -07:00
}
return Validation{
2014-09-10 02:43:16 -07:00
Signatures: sigs,
2014-07-01 14:50:24 -07:00
}
2014-06-05 02:34:45 -07:00
}
2014-08-10 16:35:08 -07:00
func (v *Validation) WriteTo(w io.Writer) (n int64, err error) {
WriteUInt32(w, uint32(len(v.Signatures)), &n, &err)
2014-08-10 16:35:08 -07:00
for _, sig := range v.Signatures {
WriteBinary(w, sig, &n, &err)
2014-07-01 14:50:24 -07:00
}
return
2014-06-05 11:04:56 -07:00
}
2014-06-05 02:34:45 -07:00
2014-08-10 16:35:08 -07:00
func (v *Validation) Hash() []byte {
if v.hash == nil {
bs := make([]Binary, len(v.Signatures))
for i, sig := range v.Signatures {
bs[i] = Binary(sig)
2014-08-10 16:35:08 -07:00
}
v.hash = merkle.HashFromBinaries(bs)
}
return v.hash
}
func (v *Validation) StringWithIndent(indent string) string {
sigStrings := make([]string, len(v.Signatures))
for i, sig := range v.Signatures {
sigStrings[i] = sig.String()
2014-08-10 16:35:08 -07:00
}
return fmt.Sprintf(`Validation{
%s %v
%s}#%X`,
indent, strings.Join(sigStrings, "\n"+indent+" "),
indent, v.hash)
2014-08-10 16:35:08 -07:00
}
//-----------------------------------------------------------------------------
type Data struct {
2014-07-01 14:50:24 -07:00
Txs []Tx
2014-08-10 16:35:08 -07:00
// Volatile
hash []byte
2014-06-05 02:34:45 -07:00
}
func ReadData(r io.Reader, n *int64, err *error) Data {
numTxs := ReadUInt32(r, n, err)
2014-07-01 14:50:24 -07:00
txs := make([]Tx, 0, numTxs)
2014-08-30 16:28:51 -07:00
for i := uint32(0); i < numTxs; i++ {
txs = append(txs, ReadTx(r, n, err))
2014-07-01 14:50:24 -07:00
}
return Data{Txs: txs}
2014-06-05 02:34:45 -07:00
}
func (data *Data) WriteTo(w io.Writer) (n int64, err error) {
WriteUInt32(w, uint32(len(data.Txs)), &n, &err)
for _, tx := range data.Txs {
WriteBinary(w, tx, &n, &err)
2014-07-01 14:50:24 -07:00
}
return
2014-06-05 02:34:45 -07:00
}
func (data *Data) Hash() []byte {
if data.hash == nil {
bs := make([]Binary, len(data.Txs))
for i, tx := range data.Txs {
2014-08-10 16:35:08 -07:00
bs[i] = Binary(tx)
}
2014-09-14 15:37:32 -07:00
data.hash = merkle.HashFromBinaries(bs)
2014-07-01 14:50:24 -07:00
}
return data.hash
}
func (data *Data) StringWithIndent(indent string) string {
txStrings := make([]string, len(data.Txs))
for i, tx := range data.Txs {
txStrings[i] = tx.String()
}
return fmt.Sprintf(`Data{
%s %v
%s}#%X`,
indent, strings.Join(txStrings, "\n"+indent+" "),
indent, data.hash)
2014-06-05 02:34:45 -07:00
}