mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* [DEV-134] Implement Continuous Integration Squashed commit: [5e41d830] Dev 223 fix txindex (#100) * [DEV-201] In handleGetBlockDAGInfo calculate difficulty by the tip with the lowest bits * [DEV-202] Move VirtualBlock.GetUTXOEntry to BlockDAG * [DEV-203] Move VirtualBlock.SelectedTip() to BlockDAG * [DEV-203] Move VirtualBlock.SelectedTip() to BlockDAG * [DEV-204] Unexport VirtualBlock() and add CalcMedianTime method for DAG * [DEV-204] add explanation about difficulty in CurrentBits() comment * [DEV-204] unexport VirtualBlock type * [DEV-223] make applyUTXOChanges return pastUTXOResults * [DEV-223] add bluestxdata for current block as well * [DEV-223] re-design tx index * [DEV-223] edit txindex comments * [DEV-223] rename BluesTxData -> AcceptedTxData, and return from applyUTXOChanges only transactions that got accepted * [DEV-223] add unit test for txindex * [DEV-223] fix comments and unite blueTransaction and AcceptedTxData to one type * [DEV-223] use bucket cursor for dbFetchFirstTxRegion * [DEV-223] use the same cursor instance for dbFetchFirstTxRegion * [DEV-223] write in dbFetchFirstTxRegion's comment that it returns the first block region * [DEV-223] rename type BlueBlockTransaction to TxWithBlockHash * [DEV-223] add named returned value for applyUTXOChanges [4c95e293] [DEV-134] Made golint ignore the vendor directory. [21736dbc] [DEV-134] Renamed ExampleBlockChain_ProcessBlock to ExampleBlockDAG_ProcessBlock to satisfy go vet. [beea6486] [DEV-134] Removed pushing the built docker to a remove repository. That's unnecessary at this stage. [bee911ed] [DEV-134] Made all precompilation checks run on everything instead of only the root dir. [585f92ae] [DEV-134] Added "github.com/pkg/errors" to dep. [5f02f570] [DEV-134] -vendor-only is written with only one hyphen. [3eee7f95] [DEV-134] go vet instead of go tool vet. [0c2d4343] [DEV-134] Split all the pre-compile checks to separate lines to be able to tell which of them is failing. [780519c8] [DEV-134] Ran gofmt on everything. [8247146b] Dev 223 fix txindex (#100) * [DEV-201] In handleGetBlockDAGInfo calculate difficulty by the tip with the lowest bits * [DEV-202] Move VirtualBlock.GetUTXOEntry to BlockDAG * [DEV-203] Move VirtualBlock.SelectedTip() to BlockDAG * [DEV-203] Move VirtualBlock.SelectedTip() to BlockDAG * [DEV-204] Unexport VirtualBlock() and add CalcMedianTime method for DAG * [DEV-204] add explanation about difficulty in CurrentBits() comment * [DEV-204] unexport VirtualBlock type * [DEV-223] make applyUTXOChanges return pastUTXOResults * [DEV-223] add bluestxdata for current block as well * [DEV-223] re-design tx index * [DEV-223] edit txindex comments * [DEV-223] rename BluesTxData -> AcceptedTxData, and return from applyUTXOChanges only transactions that got accepted * [DEV-223] add unit test for txindex * [DEV-223] fix comments and unite blueTransaction and AcceptedTxData to one type * [DEV-223] use bucket cursor for dbFetchFirstTxRegion * [DEV-223] use the same cursor instance for dbFetchFirstTxRegion * [DEV-223] write in dbFetchFirstTxRegion's comment that it returns the first block region * [DEV-223] rename type BlueBlockTransaction to TxWithBlockHash * [DEV-223] add named returned value for applyUTXOChanges [bff68aa3] [DEV-134] Gave executable permission to deploy.sh [638a99d9] [DEV-134] Added jenkinsfile and deploy script. * [DEV-134] Added a robust testing script. * [DEV-134] Fixed a bash-ism. * [DEV-134] Disabled testing with coverage for now. * [DEV-134] Disabled golint and removed removing debug symbols. * [DEV-134] Disabled aligncheck. * [DEV-134] Disabled structcheck and varcheck. * [DEV-134] Added "don't inline functions" to compiler flags for testing. * [DEV-134] Made build fail if gofmt prints out anything. * [DEV-134] Fixed misleading comment. * [DEV-134] Added comments to test.sh. * [DEV-134] Renamed tm to measure_runtime and removed do_ prefixes from functions. * [DEV-134] Fixed gofmt line in build script. * [DEV-134] Fixed gofmt some more. * [DEV-134] Fixed gofmt not actually failing due to logical or.
126 lines
3.9 KiB
Go
126 lines
3.9 KiB
Go
// Copyright (c) 2013-2016 The btcsuite developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package bloom
|
|
|
|
import (
|
|
"github.com/daglabs/btcd/blockdag"
|
|
"github.com/daglabs/btcd/dagconfig/daghash"
|
|
"github.com/daglabs/btcd/util"
|
|
"github.com/daglabs/btcd/wire"
|
|
)
|
|
|
|
// merkleBlock is used to house intermediate information needed to generate a
|
|
// wire.MsgMerkleBlock according to a filter.
|
|
type merkleBlock struct {
|
|
numTx uint32
|
|
allHashes []*daghash.Hash
|
|
finalHashes []*daghash.Hash
|
|
matchedBits []byte
|
|
bits []byte
|
|
}
|
|
|
|
// calcTreeWidth calculates and returns the the number of nodes (width) or a
|
|
// merkle tree at the given depth-first height.
|
|
func (m *merkleBlock) calcTreeWidth(height uint32) uint32 {
|
|
return (m.numTx + (1 << height) - 1) >> height
|
|
}
|
|
|
|
// calcHash returns the hash for a sub-tree given a depth-first height and
|
|
// node position.
|
|
func (m *merkleBlock) calcHash(height, pos uint32) *daghash.Hash {
|
|
if height == 0 {
|
|
return m.allHashes[pos]
|
|
}
|
|
|
|
var right *daghash.Hash
|
|
left := m.calcHash(height-1, pos*2)
|
|
if pos*2+1 < m.calcTreeWidth(height-1) {
|
|
right = m.calcHash(height-1, pos*2+1)
|
|
} else {
|
|
right = left
|
|
}
|
|
return blockdag.HashMerkleBranches(left, right)
|
|
}
|
|
|
|
// traverseAndBuild builds a partial merkle tree using a recursive depth-first
|
|
// approach. As it calculates the hashes, it also saves whether or not each
|
|
// node is a parent node and a list of final hashes to be included in the
|
|
// merkle block.
|
|
func (m *merkleBlock) traverseAndBuild(height, pos uint32) {
|
|
// Determine whether this node is a parent of a matched node.
|
|
var isParent byte
|
|
for i := pos << height; i < (pos+1)<<height && i < m.numTx; i++ {
|
|
isParent |= m.matchedBits[i]
|
|
}
|
|
m.bits = append(m.bits, isParent)
|
|
|
|
// When the node is a leaf node or not a parent of a matched node,
|
|
// append the hash to the list that will be part of the final merkle
|
|
// block.
|
|
if height == 0 || isParent == 0x00 {
|
|
m.finalHashes = append(m.finalHashes, m.calcHash(height, pos))
|
|
return
|
|
}
|
|
|
|
// At this point, the node is an internal node and it is the parent of
|
|
// of an included leaf node.
|
|
|
|
// Descend into the left child and process its sub-tree.
|
|
m.traverseAndBuild(height-1, pos*2)
|
|
|
|
// Descend into the right child and process its sub-tree if
|
|
// there is one.
|
|
if pos*2+1 < m.calcTreeWidth(height-1) {
|
|
m.traverseAndBuild(height-1, pos*2+1)
|
|
}
|
|
}
|
|
|
|
// NewMerkleBlock returns a new *wire.MsgMerkleBlock and an array of the matched
|
|
// transaction index numbers based on the passed block and filter.
|
|
func NewMerkleBlock(block *util.Block, filter *Filter) (*wire.MsgMerkleBlock, []uint32) {
|
|
numTx := uint32(len(block.Transactions()))
|
|
mBlock := merkleBlock{
|
|
numTx: numTx,
|
|
allHashes: make([]*daghash.Hash, 0, numTx),
|
|
matchedBits: make([]byte, 0, numTx),
|
|
}
|
|
|
|
// Find and keep track of any transactions that match the filter.
|
|
var matchedIndices []uint32
|
|
for txIndex, tx := range block.Transactions() {
|
|
if filter.MatchTxAndUpdate(tx) {
|
|
mBlock.matchedBits = append(mBlock.matchedBits, 0x01)
|
|
matchedIndices = append(matchedIndices, uint32(txIndex))
|
|
} else {
|
|
mBlock.matchedBits = append(mBlock.matchedBits, 0x00)
|
|
}
|
|
mBlock.allHashes = append(mBlock.allHashes, tx.Hash())
|
|
}
|
|
|
|
// Calculate the number of merkle branches (height) in the tree.
|
|
height := uint32(0)
|
|
for mBlock.calcTreeWidth(height) > 1 {
|
|
height++
|
|
}
|
|
|
|
// Build the depth-first partial merkle tree.
|
|
mBlock.traverseAndBuild(height, 0)
|
|
|
|
// Create and return the merkle block.
|
|
msgMerkleBlock := wire.MsgMerkleBlock{
|
|
Header: block.MsgBlock().Header,
|
|
Transactions: mBlock.numTx,
|
|
Hashes: make([]*daghash.Hash, 0, len(mBlock.finalHashes)),
|
|
Flags: make([]byte, (len(mBlock.bits)+7)/8),
|
|
}
|
|
for _, hash := range mBlock.finalHashes {
|
|
msgMerkleBlock.AddTxHash(hash)
|
|
}
|
|
for i := uint32(0); i < uint32(len(mBlock.bits)); i++ {
|
|
msgMerkleBlock.Flags[i/8] |= mBlock.bits[i] << (i % 8)
|
|
}
|
|
return &msgMerkleBlock, matchedIndices
|
|
}
|