tendermint/mempool/mempool.go

91 lines
2.1 KiB
Go
Raw Normal View History

2014-09-10 02:43:16 -07:00
/*
Mempool receives new transactions and applies them to the latest committed state.
2014-09-11 22:44:59 -07:00
If the transaction is acceptable, then it broadcasts the tx to peers.
2014-09-10 02:43:16 -07:00
When this node happens to be the next proposer, it simply takes the recently
modified state (and the associated transactions) and use that as the proposal.
*/
package mempool
import (
"sync"
2014-09-11 11:17:59 -07:00
. "github.com/tendermint/tendermint/binary"
2014-12-17 01:37:13 -08:00
. "github.com/tendermint/tendermint/block"
"github.com/tendermint/tendermint/state"
)
2014-09-10 02:43:16 -07:00
type Mempool struct {
mtx sync.Mutex
state *state.State
txs []Tx
2014-09-10 02:43:16 -07:00
}
func NewMempool(state *state.State) *Mempool {
2014-09-10 02:43:16 -07:00
return &Mempool{
state: state,
2014-09-10 02:43:16 -07:00
}
}
// Apply tx to the state and remember it.
func (mem *Mempool) AddTx(tx Tx) (err error) {
2014-09-10 02:43:16 -07:00
mem.mtx.Lock()
defer mem.mtx.Unlock()
2014-10-07 00:43:34 -07:00
err = mem.state.ExecTx(tx)
if err != nil {
return err
2014-09-10 02:43:16 -07:00
} else {
mem.txs = append(mem.txs, tx)
return nil
2014-09-10 02:43:16 -07:00
}
}
func (mem *Mempool) GetProposalTxs() []Tx {
mem.mtx.Lock()
defer mem.mtx.Unlock()
return mem.txs
}
// "block" is the new block being committed.
// "state" is the result of state.AppendBlock("block").
// Txs that are present in "block" are discarded from mempool.
// Txs that have become invalid in the new "state" are also discarded.
func (mem *Mempool) ResetForBlockAndState(block *Block, state *state.State) {
mem.mtx.Lock()
defer mem.mtx.Unlock()
mem.state = state.Copy()
// First, create a lookup map of txns in new block.
blockTxsMap := make(map[string]struct{})
for _, tx := range block.Data.Txs {
txHash := BinarySha256(tx)
blockTxsMap[string(txHash)] = struct{}{}
}
// Next, filter all txs from mem.txs that are in blockTxsMap
txs := []Tx{}
for _, tx := range mem.txs {
txHash := BinarySha256(tx)
if _, ok := blockTxsMap[string(txHash)]; ok {
continue
} else {
txs = append(txs, tx)
}
}
// Next, filter all txs that aren't valid given new state.
validTxs := []Tx{}
for _, tx := range txs {
2014-10-07 00:43:34 -07:00
err := mem.state.ExecTx(tx)
if err != nil {
validTxs = append(validTxs, tx)
} else {
// tx is no longer valid.
}
}
// We're done!
mem.txs = validTxs
}