github.com/core-coin/go-core/v2@v2.1.9/core/chain_makers.go (about)

     1  // Copyright 2015 by the Authors
     2  // This file is part of the go-core library.
     3  //
     4  // The go-core library is free software: you can redistribute it and/or modify
     5  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     9  // The go-core library is distributed in the hope that it will be useful,
    10  // but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  // GNU Lesser General Public License for more details.
    13  //
    14  // You should have received a copy of the GNU Lesser General Public License
    15  // along with the go-core library. If not, see <http://www.gnu.org/licenses/>.
    16  
    17  package core
    18  
    19  import (
    20  	"fmt"
    21  	"math/big"
    22  
    23  	"github.com/core-coin/go-core/v2/xcbdb"
    24  
    25  	"github.com/core-coin/go-core/v2/common"
    26  	"github.com/core-coin/go-core/v2/consensus"
    27  	"github.com/core-coin/go-core/v2/core/state"
    28  	"github.com/core-coin/go-core/v2/core/types"
    29  	"github.com/core-coin/go-core/v2/core/vm"
    30  	"github.com/core-coin/go-core/v2/params"
    31  )
    32  
    33  // BlockGen creates blocks for testing.
    34  // See GenerateChain for a detailed explanation.
    35  type BlockGen struct {
    36  	i       int
    37  	parent  *types.Block
    38  	chain   []*types.Block
    39  	header  *types.Header
    40  	statedb *state.StateDB
    41  
    42  	energyPool *EnergyPool
    43  	txs        []*types.Transaction
    44  	receipts   []*types.Receipt
    45  	uncles     []*types.Header
    46  
    47  	config *params.ChainConfig
    48  	engine consensus.Engine
    49  }
    50  
    51  // SetCoinbase sets the coinbase of the generated block.
    52  // It can be called at most once.
    53  func (b *BlockGen) SetCoinbase(addr common.Address) {
    54  	if b.energyPool != nil {
    55  		if len(b.txs) > 0 {
    56  			panic("coinbase must be set before adding transactions")
    57  		}
    58  		panic("coinbase can only be set once")
    59  	}
    60  	b.header.Coinbase = addr
    61  	b.energyPool = new(EnergyPool).AddEnergy(b.header.EnergyLimit)
    62  }
    63  
    64  // SetExtra sets the extra data field of the generated block.
    65  func (b *BlockGen) SetExtra(data []byte) {
    66  	b.header.Extra = data
    67  }
    68  
    69  // SetNonce sets the nonce field of the generated block.
    70  func (b *BlockGen) SetNonce(nonce types.BlockNonce) {
    71  	b.header.Nonce = nonce
    72  }
    73  
    74  // SetDifficulty sets the difficulty field of the generated block. This method is
    75  // useful for Clique tests where the difficulty does not depend on time. For the
    76  // cryptore tests, please use OffsetTime, which implicitly recalculates the diff.
    77  func (b *BlockGen) SetDifficulty(diff *big.Int) {
    78  	b.header.Difficulty = diff
    79  }
    80  
    81  // AddTx adds a transaction to the generated block. If no coinbase has
    82  // been set, the block's coinbase is set to the zero address.
    83  //
    84  // AddTx panics if the transaction cannot be executed. In addition to
    85  // the protocol-imposed limitations (energy limit, etc.), there are some
    86  // further limitations on the content of transactions that can be
    87  // added. Notably, contract code relying on the BLOCKHASH instruction
    88  // will panic during execution.
    89  func (b *BlockGen) AddTx(tx *types.Transaction) {
    90  	b.AddTxWithChain(nil, tx)
    91  }
    92  
    93  // AddTxWithChain adds a transaction to the generated block. If no coinbase has
    94  // been set, the block's coinbase is set to the zero address.
    95  //
    96  // AddTxWithChain panics if the transaction cannot be executed. In addition to
    97  // the protocol-imposed limitations (energy limit, etc.), there are some
    98  // further limitations on the content of transactions that can be
    99  // added. If contract code relies on the BLOCKHASH instruction,
   100  // the block in chain will be returned.
   101  func (b *BlockGen) AddTxWithChain(bc *BlockChain, tx *types.Transaction) {
   102  	if b.energyPool == nil {
   103  		b.SetCoinbase(common.Address{})
   104  	}
   105  	b.statedb.Prepare(tx.Hash(), common.Hash{}, len(b.txs))
   106  	receipt, err := ApplyTransaction(b.config, bc, &b.header.Coinbase, b.energyPool, b.statedb, b.header, tx, &b.header.EnergyUsed, vm.Config{})
   107  	if err != nil {
   108  		panic(err)
   109  	}
   110  	b.txs = append(b.txs, tx)
   111  	b.receipts = append(b.receipts, receipt)
   112  }
   113  
   114  // AddUncheckedTx forcefully adds a transaction to the block without any
   115  // validation.
   116  //
   117  // AddUncheckedTx will cause consensus failures when used during real
   118  // chain processing. This is best used in conjunction with raw block insertion.
   119  func (b *BlockGen) AddUncheckedTx(tx *types.Transaction) {
   120  	b.txs = append(b.txs, tx)
   121  }
   122  
   123  // Number returns the block number of the block being generated.
   124  func (b *BlockGen) Number() *big.Int {
   125  	return new(big.Int).Set(b.header.Number)
   126  }
   127  
   128  // Energy returns the amount of energy left in the current block.
   129  func (b *BlockGen) Energy() uint64 {
   130  	return b.header.EnergyLimit - b.header.EnergyUsed
   131  }
   132  
   133  // AddUncheckedReceipt forcefully adds a receipts to the block without a
   134  // backing transaction.
   135  //
   136  // AddUncheckedReceipt will cause consensus failures when used during real
   137  // chain processing. This is best used in conjunction with raw block insertion.
   138  func (b *BlockGen) AddUncheckedReceipt(receipt *types.Receipt) {
   139  	b.receipts = append(b.receipts, receipt)
   140  }
   141  
   142  // TxNonce returns the next valid transaction nonce for the
   143  // account at addr. It panics if the account does not exist.
   144  func (b *BlockGen) TxNonce(addr common.Address) uint64 {
   145  	if !b.statedb.Exist(addr) {
   146  		panic("account does not exist")
   147  	}
   148  	return b.statedb.GetNonce(addr)
   149  }
   150  
   151  // AddUncle adds an uncle header to the generated block.
   152  func (b *BlockGen) AddUncle(h *types.Header) {
   153  	b.uncles = append(b.uncles, h)
   154  }
   155  
   156  // PrevBlock returns a previously generated block by number. It panics if
   157  // num is greater or equal to the number of the block being generated.
   158  // For index -1, PrevBlock returns the parent block given to GenerateChain.
   159  func (b *BlockGen) PrevBlock(index int) *types.Block {
   160  	if index >= b.i {
   161  		panic(fmt.Errorf("block index %d out of range (%d,%d)", index, -1, b.i))
   162  	}
   163  	if index == -1 {
   164  		return b.parent
   165  	}
   166  	return b.chain[index]
   167  }
   168  
   169  // OffsetTime modifies the time instance of a block, implicitly changing its
   170  // associated difficulty. It's useful to test scenarios where forking is not
   171  // tied to chain length directly.
   172  func (b *BlockGen) OffsetTime(seconds int64) {
   173  	b.header.Time += uint64(seconds)
   174  	if b.header.Time <= b.parent.Header().Time {
   175  		panic("block time out of range")
   176  	}
   177  	chainreader := &fakeChainReader{config: b.config}
   178  	b.header.Difficulty = b.engine.CalcDifficulty(chainreader, b.header.Time, b.parent.Header())
   179  }
   180  
   181  // GenerateChain creates a chain of n blocks. The first block's
   182  // parent will be the provided parent. db is used to store
   183  // intermediate states and should contain the parent's state trie.
   184  //
   185  // The generator function is called with a new block generator for
   186  // every block. Any transactions and uncles added to the generator
   187  // become part of the block. If gen is nil, the blocks will be empty
   188  // and their coinbase will be the zero address.
   189  //
   190  // Blocks created by GenerateChain do not contain valid proof of work
   191  // values. Inserting them into BlockChain requires use of FakePow or
   192  // a similar non-validating proof of work implementation.
   193  func GenerateChain(config *params.ChainConfig, parent *types.Block, engine consensus.Engine, db xcbdb.Database, n int, gen func(int, *BlockGen)) ([]*types.Block, []types.Receipts) {
   194  	if config == nil {
   195  		config = params.MainnetChainConfig
   196  	}
   197  	blocks, receipts := make(types.Blocks, n), make([]types.Receipts, n)
   198  	chainreader := &fakeChainReader{config: config}
   199  	genblock := func(i int, parent *types.Block, statedb *state.StateDB) (*types.Block, types.Receipts) {
   200  		b := &BlockGen{i: i, chain: blocks, parent: parent, statedb: statedb, config: config, engine: engine}
   201  		b.header = makeHeader(chainreader, parent, statedb, b.engine)
   202  
   203  		// Execute any user modifications to the block
   204  		if gen != nil {
   205  			gen(i, b)
   206  		}
   207  		if b.engine != nil {
   208  			// Finalize and seal the block
   209  			block, _ := b.engine.FinalizeAndAssemble(chainreader, b.header, statedb, b.txs, b.uncles, b.receipts)
   210  
   211  			// Write state changes to db
   212  			root, err := statedb.Commit(true)
   213  			if err != nil {
   214  				panic(fmt.Sprintf("state write error: %v", err))
   215  			}
   216  			if err := statedb.Database().TrieDB().Commit(root, false, nil); err != nil {
   217  				panic(fmt.Sprintf("trie write error: %v", err))
   218  			}
   219  			return block, b.receipts
   220  		}
   221  		return nil, nil
   222  	}
   223  	for i := 0; i < n; i++ {
   224  		statedb, err := state.New(parent.Root(), state.NewDatabase(db), nil)
   225  		if err != nil {
   226  			panic(err)
   227  		}
   228  		block, receipt := genblock(i, parent, statedb)
   229  		blocks[i] = block
   230  		receipts[i] = receipt
   231  		parent = block
   232  	}
   233  	return blocks, receipts
   234  }
   235  
   236  func makeHeader(chain consensus.ChainReader, parent *types.Block, state *state.StateDB, engine consensus.Engine) *types.Header {
   237  	var time uint64
   238  	if parent.Time() == 0 {
   239  		time = 10
   240  	} else {
   241  		time = parent.Time() + 10 // block time is fixed at 10 seconds
   242  	}
   243  
   244  	return &types.Header{
   245  		Root:       state.IntermediateRoot(true),
   246  		ParentHash: parent.Hash(),
   247  		Coinbase:   parent.Coinbase(),
   248  		Difficulty: engine.CalcDifficulty(chain, time, &types.Header{
   249  			Number:     parent.Number(),
   250  			Time:       time - 10,
   251  			Difficulty: parent.Difficulty(),
   252  			UncleHash:  parent.UncleHash(),
   253  		}),
   254  		EnergyLimit: CalcEnergyLimit(parent, parent.EnergyLimit(), parent.EnergyLimit()),
   255  		Number:      new(big.Int).Add(parent.Number(), common.Big1),
   256  		Time:        time,
   257  	}
   258  }
   259  
   260  // makeHeaderChain creates a deterministic chain of headers rooted at parent.
   261  func makeHeaderChain(parent *types.Header, n int, engine consensus.Engine, db xcbdb.Database, seed int) []*types.Header {
   262  	blocks := makeBlockChain(types.NewBlockWithHeader(parent), n, engine, db, seed)
   263  	headers := make([]*types.Header, len(blocks))
   264  	for i, block := range blocks {
   265  		headers[i] = block.Header()
   266  	}
   267  	return headers
   268  }
   269  
   270  // makeBlockChain creates a deterministic chain of blocks rooted at parent.
   271  func makeBlockChain(parent *types.Block, n int, engine consensus.Engine, db xcbdb.Database, seed int) []*types.Block {
   272  	blocks, _ := GenerateChain(params.MainnetChainConfig, parent, engine, db, n, func(i int, b *BlockGen) {
   273  		b.SetCoinbase(common.Address{0: byte(seed), 19: byte(i)})
   274  	})
   275  	return blocks
   276  }
   277  
   278  type fakeChainReader struct {
   279  	config *params.ChainConfig
   280  }
   281  
   282  // Config returns the chain configuration.
   283  func (cr *fakeChainReader) Config() *params.ChainConfig {
   284  	return cr.config
   285  }
   286  
   287  func (cr *fakeChainReader) CurrentHeader() *types.Header                            { return nil }
   288  func (cr *fakeChainReader) GetHeaderByNumber(number uint64) *types.Header           { return nil }
   289  func (cr *fakeChainReader) GetHeaderByHash(hash common.Hash) *types.Header          { return nil }
   290  func (cr *fakeChainReader) GetHeader(hash common.Hash, number uint64) *types.Header { return nil }
   291  func (cr *fakeChainReader) GetBlock(hash common.Hash, number uint64) *types.Block   { return nil }