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/>.
|
|
|
|
|
2018-07-17 21:23:07 +00:00
|
|
|
package history
|
|
|
|
|
|
|
|
import (
|
2018-11-21 04:47:01 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2018-07-24 16:38:49 +00:00
|
|
|
|
2018-07-17 21:23:07 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/core"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore"
|
2018-07-26 21:15:24 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres/repositories"
|
2018-07-17 21:23:07 +00:00
|
|
|
)
|
|
|
|
|
2018-08-14 21:59:41 +00:00
|
|
|
func PopulateMissingHeaders(blockchain core.BlockChain, headerRepository datastore.HeaderRepository, startingBlockNumber int64) (int, error) {
|
2018-07-17 21:23:07 +00:00
|
|
|
lastBlock := blockchain.LastBlock().Int64()
|
2018-12-14 11:11:48 +00:00
|
|
|
headerAlreadyExists, err := headerRepository.HeaderExists(lastBlock)
|
2019-01-11 09:58:41 +00:00
|
|
|
|
2018-07-24 16:38:49 +00:00
|
|
|
if err != nil {
|
2019-01-11 09:58:41 +00:00
|
|
|
log.Error("Error in checking header in PopulateMissingHeaders: ", err)
|
2018-07-24 16:38:49 +00:00
|
|
|
return 0, err
|
2018-12-14 11:11:48 +00:00
|
|
|
} else if headerAlreadyExists {
|
|
|
|
return 0, nil
|
2018-07-24 16:38:49 +00:00
|
|
|
}
|
2018-12-14 11:11:48 +00:00
|
|
|
|
2019-01-11 09:58:41 +00:00
|
|
|
blockNumbers, err := headerRepository.MissingBlockNumbers(startingBlockNumber, lastBlock, blockchain.Node().ID)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Error getting missing block numbers in PopulateMissingHeaders: ", err)
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2018-12-14 11:11:48 +00:00
|
|
|
log.Printf("Backfilling %d blocks\n\n", len(blockNumbers))
|
|
|
|
_, err = RetrieveAndUpdateHeaders(blockchain, headerRepository, blockNumbers)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return len(blockNumbers), nil
|
2018-07-17 21:23:07 +00:00
|
|
|
}
|
|
|
|
|
2018-08-14 21:59:41 +00:00
|
|
|
func RetrieveAndUpdateHeaders(chain core.BlockChain, headerRepository datastore.HeaderRepository, blockNumbers []int64) (int, error) {
|
2018-12-12 16:01:50 +00:00
|
|
|
headers, err := chain.GetHeaderByNumbers(blockNumbers)
|
|
|
|
for _, header := range headers {
|
2018-08-14 21:59:41 +00:00
|
|
|
_, err = headerRepository.CreateOrUpdateHeader(header)
|
2018-07-24 16:38:49 +00:00
|
|
|
if err != nil {
|
2018-07-26 21:15:24 +00:00
|
|
|
if err == repositories.ErrValidHeaderExists {
|
|
|
|
continue
|
|
|
|
}
|
2018-07-24 16:38:49 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
2018-07-17 21:23:07 +00:00
|
|
|
}
|
2018-07-24 16:38:49 +00:00
|
|
|
return len(blockNumbers), nil
|
2018-07-17 21:23:07 +00:00
|
|
|
}
|