mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-09-13 13:00:10 +00:00

* Add StagingArea struct * Implemented staging areas in blockStore * Move blockStagingShard to separate folder * Apply staging shard to acceptanceDataStore * Update blockHeaderStore with StagingArea * Add StagingArea to BlockRelationStore * Add StagingArea to blockStatusStore * Add StagingArea to consensusStateStore * Add StagingArea to daaBlocksStore * Add StagingArea to finalityStore * Add StagingArea to ghostdagDataStore * Add StagingArea to headersSelectedChainStore and headersSelectedTipStore * Add StagingArea to multisetStore * Add StagingArea to pruningStore * Add StagingArea to reachabilityDataStore * Add StagingArea to utxoDiffStore * Fix forgotten compilation error * Update reachability manager and some more things with StagingArea * Add StagingArea to dagTopologyManager, and some more * Add StagingArea to GHOSTDAGManager, and some more * Add StagingArea to difficultyManager, and some more * Add StagingArea to dagTraversalManager, and some more * Add StagingArea to headerTipsManager, and some more * Add StagingArea to constnsusStateManager, pastMedianTimeManager * Add StagingArea to transactionValidator * Add StagingArea to finalityManager * Add StagingArea to mergeDepthManager * Add StagingArea to pruningManager * Add StagingArea to rest of ValidateAndInsertBlock * Add StagingArea to blockValidator * Add StagingArea to coinbaseManager * Add StagingArea to syncManager * Add StagingArea to blockBuilder * Update consensus with StagingArea * Add StagingArea to ghostdag2 * Fix remaining compilation errors * Update names of stagingShards * Fix forgotten stagingArea passing * Mark stagingShard.isCommited = true once commited * Move isStaged to stagingShard, so that it's available without going through store * Make blockHeaderStore count be avilable from stagingShard * Fix remaining forgotten stagingArea passing * commitAllChanges should call dbTx.Commit in the end * Fix all tests tests in blockValidator * Fix all tests in consensusStateManager and some more * Fix all tests in pruningManager * Add many missing stagingAreas in tests * Fix many tests * Fix most of all other tests * Fix ghostdag_test.go * Add comment to StagingArea * Make list of StagingShards an array * Add comment to StagingShardID * Make sure all staging shards are pointer-receiver * Undo bucket rename in block_store * Typo: isCommited -> isCommitted * Add comment explaining why stagingArea.shards is an array
74 lines
2.6 KiB
Go
74 lines
2.6 KiB
Go
package dagtraversalmanager
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/domain/consensus/model"
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
)
|
|
|
|
// BlockWindow returns a blockWindow of the given size that contains the
|
|
// blocks in the past of highHash, the sorting is unspecified.
|
|
// If the number of blocks in the past of startingNode is less then windowSize,
|
|
// the window will be padded by genesis blocks to achieve a size of windowSize.
|
|
func (dtm *dagTraversalManager) BlockWindow(stagingArea *model.StagingArea, highHash *externalapi.DomainHash, windowSize int) ([]*externalapi.DomainHash, error) {
|
|
currentGHOSTDAGData, err := dtm.ghostdagDataStore.Get(dtm.databaseContext, stagingArea, highHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
windowHeap := dtm.newSizedUpHeap(stagingArea, windowSize)
|
|
|
|
for windowHeap.len() <= windowSize &&
|
|
currentGHOSTDAGData.SelectedParent() != nil &&
|
|
!currentGHOSTDAGData.SelectedParent().Equal(dtm.genesisHash) {
|
|
|
|
selectedParentGHOSTDAGData, err := dtm.ghostdagDataStore.Get(
|
|
dtm.databaseContext, stagingArea, currentGHOSTDAGData.SelectedParent())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
added, err := windowHeap.tryPushWithGHOSTDAGData(currentGHOSTDAGData.SelectedParent(), selectedParentGHOSTDAGData)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// If the window is full and the selected parent is less than the minimum then we break
|
|
// because this means that there cannot be any more blocks in the past with higher blueWork
|
|
if !added {
|
|
break
|
|
}
|
|
|
|
// Now we go over the merge set.
|
|
// Remove the SP from the blue merge set because we already added it.
|
|
mergeSetBlues := currentGHOSTDAGData.MergeSetBlues()[1:]
|
|
// Go over the merge set in reverse because it's ordered in reverse by blueWork.
|
|
for i := len(mergeSetBlues) - 1; i >= 0; i-- {
|
|
added, err := windowHeap.tryPush(mergeSetBlues[i])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// If it's smaller than minimum then we won't be able to add the rest because they're even smaller.
|
|
if !added {
|
|
break
|
|
}
|
|
}
|
|
mergeSetReds := currentGHOSTDAGData.MergeSetReds()
|
|
for i := len(mergeSetReds) - 1; i >= 0; i-- {
|
|
added, err := windowHeap.tryPush(mergeSetReds[i])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// If it's smaller than minimum then we won't be able to add the rest because they're even smaller.
|
|
if !added {
|
|
break
|
|
}
|
|
}
|
|
currentGHOSTDAGData = selectedParentGHOSTDAGData
|
|
}
|
|
|
|
window := make([]*externalapi.DomainHash, 0, len(windowHeap.impl.slice))
|
|
for _, b := range windowHeap.impl.slice {
|
|
window = append(window, b.hash)
|
|
}
|
|
return window, nil
|
|
}
|