2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2018 Vulcanize
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2017-11-06 20:36:12 +00:00
|
|
|
package history
|
|
|
|
|
|
|
|
import (
|
2018-12-07 17:11:14 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2018-01-05 17:55:00 +00:00
|
|
|
|
2018-01-06 20:31:53 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
2018-02-13 16:31:57 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore"
|
2017-11-06 20:36:12 +00:00
|
|
|
)
|
|
|
|
|
2018-07-20 16:37:46 +00:00
|
|
|
func PopulateMissingBlocks(blockchain core.BlockChain, blockRepository datastore.BlockRepository, startingBlockNumber int64) int {
|
2018-01-02 18:39:55 +00:00
|
|
|
lastBlock := blockchain.LastBlock().Int64()
|
2018-07-17 21:23:07 +00:00
|
|
|
blockRange := blockRepository.MissingBlockNumbers(startingBlockNumber, lastBlock, blockchain.Node().ID)
|
2018-12-14 11:11:48 +00:00
|
|
|
|
|
|
|
if len(blockRange) == 0 {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2018-01-05 17:55:00 +00:00
|
|
|
log.Printf("Backfilling %d blocks\n\n", len(blockRange))
|
2018-02-12 16:54:05 +00:00
|
|
|
RetrieveAndUpdateBlocks(blockchain, blockRepository, blockRange)
|
2017-12-19 20:14:41 +00:00
|
|
|
return len(blockRange)
|
|
|
|
}
|
|
|
|
|
2018-07-20 16:37:46 +00:00
|
|
|
func RetrieveAndUpdateBlocks(blockchain core.BlockChain, blockRepository datastore.BlockRepository, blockNumbers []int64) int {
|
2017-11-06 20:36:12 +00:00
|
|
|
for _, blockNumber := range blockNumbers {
|
2018-03-27 21:06:12 +00:00
|
|
|
block, err := blockchain.GetBlockByNumber(blockNumber)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("failed to retrieve block number: %d\n", blockNumber)
|
|
|
|
return 0
|
|
|
|
}
|
2018-05-02 16:17:02 +00:00
|
|
|
// TODO: handle possible error here
|
2018-02-12 16:54:05 +00:00
|
|
|
blockRepository.CreateOrUpdateBlock(block)
|
2017-11-06 20:36:12 +00:00
|
|
|
}
|
|
|
|
return len(blockNumbers)
|
|
|
|
}
|