mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-30 10:46:41 +00:00
117 lines
3.8 KiB
Go
117 lines
3.8 KiB
Go
package dagtraversalmanager
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/kaspanet/kaspad/domain/consensus/model"
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
)
|
|
|
|
// dagTraversalManager exposes methods for travering blocks
|
|
// in the DAG
|
|
type dagTraversalManager struct {
|
|
databaseContext model.DBReader
|
|
|
|
dagTopologyManager model.DAGTopologyManager
|
|
ghostdagDataStore model.GHOSTDAGDataStore
|
|
ghostdagManager model.GHOSTDAGManager
|
|
}
|
|
|
|
// selectedParentIterator implements the `model.BlockIterator` API
|
|
type selectedParentIterator struct {
|
|
databaseContext model.DBReader
|
|
ghostdagDataStore model.GHOSTDAGDataStore
|
|
current *externalapi.DomainHash
|
|
}
|
|
|
|
func (spi *selectedParentIterator) Next() bool {
|
|
if spi.current == nil {
|
|
return false
|
|
}
|
|
ghostdagData, err := spi.ghostdagDataStore.Get(spi.databaseContext, spi.current)
|
|
if err != nil {
|
|
panic(fmt.Sprintf("ghostdagDataStore is missing ghostdagData for: %v. '%s' ", spi.current, err))
|
|
}
|
|
spi.current = ghostdagData.SelectedParent
|
|
return spi.current != nil
|
|
}
|
|
|
|
func (spi *selectedParentIterator) Get() *externalapi.DomainHash {
|
|
return spi.current
|
|
}
|
|
|
|
// New instantiates a new DAGTraversalManager
|
|
func New(
|
|
databaseContext model.DBReader,
|
|
dagTopologyManager model.DAGTopologyManager,
|
|
ghostdagDataStore model.GHOSTDAGDataStore,
|
|
ghostdagManager model.GHOSTDAGManager) model.DAGTraversalManager {
|
|
return &dagTraversalManager{
|
|
databaseContext: databaseContext,
|
|
dagTopologyManager: dagTopologyManager,
|
|
ghostdagDataStore: ghostdagDataStore,
|
|
ghostdagManager: ghostdagManager,
|
|
}
|
|
}
|
|
|
|
// SelectedParentIterator creates an iterator over the selected
|
|
// parent chain of the given highHash
|
|
func (dtm *dagTraversalManager) SelectedParentIterator(highHash *externalapi.DomainHash) model.BlockIterator {
|
|
return &selectedParentIterator{
|
|
databaseContext: dtm.databaseContext,
|
|
ghostdagDataStore: dtm.ghostdagDataStore,
|
|
current: highHash,
|
|
}
|
|
}
|
|
|
|
// HighestChainBlockBelowBlueScore returns the hash of the
|
|
// highest block with a blue score lower than the given
|
|
// blueScore in the selected-parent-chain of the block
|
|
// with the given highHash's selected parent chain
|
|
func (dtm *dagTraversalManager) HighestChainBlockBelowBlueScore(highHash *externalapi.DomainHash, requiredBlueScore uint64) (*externalapi.DomainHash, error) {
|
|
currentBlockHash := highHash
|
|
highBlockGHOSTDAGData, err := dtm.ghostdagDataStore.Get(dtm.databaseContext, highHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
currentBlockGHOSTDAGData := highBlockGHOSTDAGData
|
|
// If we used `BlockIterator` we'd need to do more calls to `ghostdagDataStore` so we can get the blueScore
|
|
for currentBlockGHOSTDAGData.BlueScore >= requiredBlueScore {
|
|
if currentBlockGHOSTDAGData.SelectedParent == nil { // genesis
|
|
return currentBlockHash, nil
|
|
}
|
|
currentBlockHash = currentBlockGHOSTDAGData.SelectedParent
|
|
currentBlockGHOSTDAGData, err = dtm.ghostdagDataStore.Get(dtm.databaseContext, currentBlockHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return currentBlockHash, nil
|
|
}
|
|
|
|
func (dtm *dagTraversalManager) LowestChainBlockAboveOrEqualToBlueScore(highHash *externalapi.DomainHash, blueScore uint64) (*externalapi.DomainHash, error) {
|
|
highBlockGHOSTDAGData, err := dtm.ghostdagDataStore.Get(dtm.databaseContext, highHash)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
currentHash := highHash
|
|
currentBlockGHOSTDAGData := highBlockGHOSTDAGData
|
|
iterator := dtm.SelectedParentIterator(highHash)
|
|
for iterator.Next() {
|
|
selectedParentBlockGHOSTDAGData, err := dtm.ghostdagDataStore.Get(dtm.databaseContext, currentBlockGHOSTDAGData.SelectedParent)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if selectedParentBlockGHOSTDAGData.BlueScore < blueScore {
|
|
break
|
|
}
|
|
currentHash = selectedParentBlockGHOSTDAGData.SelectedParent
|
|
currentBlockGHOSTDAGData = selectedParentBlockGHOSTDAGData
|
|
}
|
|
|
|
return currentHash, nil
|
|
}
|