func (blockchain *blockchain) persistRawBlock(block *protos.Block, blockNumber uint64) error { blockBytes, blockBytesErr := block.Bytes() if blockBytesErr != nil { return blockBytesErr } writeBatch := gorocksdb.NewWriteBatch() defer writeBatch.Destroy() writeBatch.PutCF(db.GetDBHandle().BlockchainCF, encodeBlockNumberDBKey(blockNumber), blockBytes) // Need to check as we suport out of order blocks in cases such as block/state synchronization. This is // really blockchain height, not size. if blockchain.getSize() < blockNumber+1 { sizeBytes := encodeUint64(blockNumber + 1) writeBatch.PutCF(db.GetDBHandle().BlockchainCF, blockCountKey, sizeBytes) blockchain.size = blockNumber + 1 } blockHash, err := block.GetHash() if err != nil { return err } if blockchain.indexer.isSynchronous() { blockchain.indexer.createIndexesSync(block, blockNumber, blockHash, writeBatch) } opt := gorocksdb.NewDefaultWriteOptions() defer opt.Destroy() err = db.GetDBHandle().DB.Write(opt, writeBatch) if err != nil { return err } return nil }
// Functions for persisting and retrieving index data func addIndexDataForPersistence(block *protos.Block, blockNumber uint64, blockHash []byte, writeBatch *gorocksdb.WriteBatch) error { openchainDB := db.GetDBHandle() cf := openchainDB.IndexesCF // add blockhash -> blockNumber indexLogger.Debug("Indexing block number [%d] by hash = [%x]", blockNumber, blockHash) writeBatch.PutCF(cf, encodeBlockHashKey(blockHash), encodeBlockNumber(blockNumber)) addressToTxIndexesMap := make(map[string][]uint64) addressToChaincodeIDsMap := make(map[string][]*protos.ChaincodeID) transactions := block.GetTransactions() for txIndex, tx := range transactions { // add TxUUID -> (blockNumber,indexWithinBlock) writeBatch.PutCF(cf, encodeTxUUIDKey(tx.Uuid), encodeBlockNumTxIndex(blockNumber, uint64(txIndex))) txExecutingAddress := getTxExecutingAddress(tx) addressToTxIndexesMap[txExecutingAddress] = append(addressToTxIndexesMap[txExecutingAddress], uint64(txIndex)) switch tx.Type { case protos.Transaction_CHAINCODE_NEW, protos.Transaction_CHAINCODE_UPDATE: authroizedAddresses, chaincodeID := getAuthorisedAddresses(tx) for _, authroizedAddress := range authroizedAddresses { addressToChaincodeIDsMap[authroizedAddress] = append(addressToChaincodeIDsMap[authroizedAddress], chaincodeID) } } } for address, txsIndexes := range addressToTxIndexesMap { writeBatch.PutCF(cf, encodeAddressBlockNumCompositeKey(address, blockNumber), encodeListTxIndexes(txsIndexes)) } return nil }
func (blockchain *blockchain) addPersistenceChangesForNewBlock(ctx context.Context, block *protos.Block, stateHash []byte, writeBatch *gorocksdb.WriteBatch) (uint64, error) { block = blockchain.buildBlock(block, stateHash) if block.NonHashData == nil { block.NonHashData = &protos.NonHashData{LocalLedgerCommitTimestamp: util.CreateUtcTimestamp()} } else { block.NonHashData.LocalLedgerCommitTimestamp = util.CreateUtcTimestamp() } blockNumber := blockchain.size blockHash, err := block.GetHash() if err != nil { return 0, err } blockBytes, blockBytesErr := block.Bytes() if blockBytesErr != nil { return 0, blockBytesErr } writeBatch.PutCF(db.GetDBHandle().BlockchainCF, encodeBlockNumberDBKey(blockNumber), blockBytes) writeBatch.PutCF(db.GetDBHandle().BlockchainCF, blockCountKey, encodeUint64(blockNumber+1)) if blockchain.indexer.isSynchronous() { blockchain.indexer.createIndexesSync(block, blockNumber, blockHash, writeBatch) } blockchain.lastProcessedBlock = &lastProcessedBlock{block, blockNumber, blockHash} return blockNumber, nil }
func sendProducerBlockEvent(block *protos.Block) { // Remove payload from deploy transactions. This is done to make block // events more lightweight as the payload for these types of transactions // can be very large. blockTransactions := block.GetTransactions() for _, transaction := range blockTransactions { if transaction.Type == protos.Transaction_CHAINCODE_NEW { deploymentSpec := &protos.ChaincodeDeploymentSpec{} err := proto.Unmarshal(transaction.Payload, deploymentSpec) if err != nil { ledgerLogger.Error(fmt.Sprintf("Error unmarshalling deployment transaction for block event: %s", err)) continue } deploymentSpec.CodePackage = nil deploymentSpecBytes, err := proto.Marshal(deploymentSpec) if err != nil { ledgerLogger.Error(fmt.Sprintf("Error marshalling deployment transaction for block event: %s", err)) continue } transaction.Payload = deploymentSpecBytes } } producer.Send(producer.CreateBlockEvent(block)) }
func TestLedgerPutRawBlock(t *testing.T) { ledgerTestWrapper := createFreshDBAndTestLedgerWrapper(t) ledger := ledgerTestWrapper.ledger block := new(protos.Block) block.PreviousBlockHash = []byte("foo") block.StateHash = []byte("bar") ledger.PutRawBlock(block, 4) testutil.AssertEquals(t, ledgerTestWrapper.GetBlockByNumber(4), block) }
func TestLedgerPutRawBlock(t *testing.T) { ledgerTestWrapper := createFreshDBAndTestLedgerWrapper(t) ledger := ledgerTestWrapper.ledger block := new(protos.Block) block.PreviousBlockHash = []byte("foo") block.StateHash = []byte("bar") ledger.PutRawBlock(block, 4) testutil.AssertEquals(t, ledgerTestWrapper.GetBlockByNumber(4), block) ledger.BeginTxBatch(1) ledger.TxBegin("txUuid") ledger.SetState("chaincode1", "key1", []byte("value1")) ledger.TxFinished("txUuid", true) transaction, _ := buildTestTx(t) ledger.CommitTxBatch(1, []*protos.Transaction{transaction}, nil, []byte("proof")) previousHash, _ := block.GetHash() newBlock := ledgerTestWrapper.GetBlockByNumber(5) if !bytes.Equal(newBlock.PreviousBlockHash, previousHash) { t.Fatalf("Expected new block to properly set its previous hash") } }
func (blockchain *blockchain) buildBlock(block *protos.Block, stateHash []byte) *protos.Block { block.SetPreviousBlockHash(blockchain.previousBlockHash) block.StateHash = stateHash return block }
// HashBlock returns the hash of the included block, useful for mocking func (h *Helper) HashBlock(block *pb.Block) ([]byte, error) { return block.GetHash() }