2018-11-07 21:50:43 +00:00
|
|
|
// VulcanizeDB
|
2019-03-12 15:46:42 +00:00
|
|
|
// Copyright © 2019 Vulcanize
|
2018-11-07 21:50:43 +00:00
|
|
|
|
|
|
|
// 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
|
|
|
)
|
|
|
|
|
2019-02-14 15:03:57 +00:00
|
|
|
func PopulateMissingBlocks(blockchain core.BlockChain, blockRepository datastore.BlockRepository, startingBlockNumber int64) (int, error) {
|
|
|
|
lastBlock, err := blockchain.LastBlock()
|
|
|
|
if err != nil {
|
|
|
|
log.Error("PopulateMissingBlocks: error getting last block: ", err)
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
blockRange := blockRepository.MissingBlockNumbers(startingBlockNumber, lastBlock.Int64(), blockchain.Node().ID)
|
2018-12-14 11:11:48 +00:00
|
|
|
|
|
|
|
if len(blockRange) == 0 {
|
2019-02-14 15:03:57 +00:00
|
|
|
return 0, nil
|
2018-12-14 11:11:48 +00:00
|
|
|
}
|
|
|
|
|
2018-01-05 17:55:00 +00:00
|
|
|
log.Printf("Backfilling %d blocks\n\n", len(blockRange))
|
2019-02-14 15:03:57 +00:00
|
|
|
_, err = RetrieveAndUpdateBlocks(blockchain, blockRepository, blockRange)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("PopulateMissingBlocks: error gettings/updating blocks: ", err)
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return len(blockRange), nil
|
2017-12-19 20:14:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-14 15:03:57 +00:00
|
|
|
func RetrieveAndUpdateBlocks(blockchain core.BlockChain, blockRepository datastore.BlockRepository, blockNumbers []int64) (int, error) {
|
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 {
|
2019-02-14 15:03:57 +00:00
|
|
|
log.Error("RetrieveAndUpdateBlocks: error getting block: ", err)
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = blockRepository.CreateOrUpdateBlock(block)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("RetrieveAndUpdateBlocks: error creating/updating block: ", err)
|
|
|
|
return 0, err
|
2018-03-27 21:06:12 +00:00
|
|
|
}
|
2019-02-14 15:03:57 +00:00
|
|
|
|
2017-11-06 20:36:12 +00:00
|
|
|
}
|
2019-02-14 15:03:57 +00:00
|
|
|
return len(blockNumbers), nil
|
2017-11-06 20:36:12 +00:00
|
|
|
}
|