2022-05-18 16:12:54 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2022 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/>.
|
2022-04-27 18:01:59 +00:00
|
|
|
// This file contains all the functions to handle SSE events after they have been turned
|
|
|
|
// to the structs.
|
|
|
|
|
2022-04-27 14:28:42 +00:00
|
|
|
package beaconclient
|
|
|
|
|
2022-05-06 15:03:15 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
log "github.com/sirupsen/logrus"
|
2022-09-29 01:39:56 +00:00
|
|
|
"github.com/vulcanize/ipld-eth-beacon-indexer/pkg/loghelper"
|
2022-05-06 15:03:15 +00:00
|
|
|
)
|
2022-04-27 14:28:42 +00:00
|
|
|
|
|
|
|
// This function will perform the necessary steps to handle a reorg.
|
2022-05-06 15:03:15 +00:00
|
|
|
func (bc *BeaconClient) handleReorg() {
|
2022-04-27 14:28:42 +00:00
|
|
|
log.Info("Starting to process reorgs.")
|
|
|
|
for {
|
|
|
|
reorg := <-bc.ReOrgTracking.ProcessCh
|
|
|
|
log.WithFields(log.Fields{"reorg": reorg}).Debug("Received a new reorg message.")
|
2022-09-29 01:39:56 +00:00
|
|
|
slot, err := ParseSlot(reorg.Slot)
|
|
|
|
if nil != err {
|
|
|
|
loghelper.LogSlotError(slot.Number(), err)
|
|
|
|
}
|
|
|
|
writeReorgs(bc.Db, slot, reorg.NewHeadBlock, bc.Metrics)
|
2022-04-27 14:28:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function will handle the latest head event.
|
|
|
|
func (bc *BeaconClient) handleHead() {
|
|
|
|
log.Info("Starting to process head.")
|
2022-05-12 19:44:05 +00:00
|
|
|
errorSlots := 0
|
2022-04-27 14:28:42 +00:00
|
|
|
for {
|
2022-05-06 15:03:15 +00:00
|
|
|
head := <-bc.HeadTracking.ProcessCh
|
|
|
|
// Process all the work here.
|
2022-09-29 01:39:56 +00:00
|
|
|
slot, err := ParseSlot(head.Slot)
|
2022-05-06 15:03:15 +00:00
|
|
|
if err != nil {
|
|
|
|
bc.HeadTracking.ErrorCh <- &SseError{
|
|
|
|
err: fmt.Errorf("Unable to turn the slot from string to int: %s", head.Slot),
|
|
|
|
}
|
2022-05-12 19:44:05 +00:00
|
|
|
errorSlots = errorSlots + 1
|
|
|
|
continue
|
2022-05-06 15:03:15 +00:00
|
|
|
}
|
2022-05-12 19:44:05 +00:00
|
|
|
if errorSlots != 0 && bc.PreviousSlot != 0 {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"lastProcessedSlot": bc.PreviousSlot,
|
2022-06-09 21:32:46 +00:00
|
|
|
"errorSlots": errorSlots,
|
2022-05-12 19:44:05 +00:00
|
|
|
}).Warn("We added slots to the knownGaps table because we got bad head messages.")
|
2022-06-09 21:32:46 +00:00
|
|
|
writeKnownGaps(bc.Db, bc.KnownGapTableIncrement, bc.PreviousSlot+1, slot, fmt.Errorf("Bad Head Messages"), "headProcessing", bc.Metrics)
|
|
|
|
errorSlots = 0
|
2022-05-12 19:44:05 +00:00
|
|
|
}
|
|
|
|
|
2022-05-17 20:05:15 +00:00
|
|
|
log.WithFields(log.Fields{"head": head}).Debug("We are going to start processing the slot.")
|
|
|
|
|
2022-06-09 21:32:46 +00:00
|
|
|
// Not used anywhere yet but might be useful to have.
|
|
|
|
if bc.PreviousSlot == 0 && bc.PreviousBlockRoot == "" {
|
|
|
|
bc.StartingSlot = slot
|
|
|
|
}
|
|
|
|
|
2022-09-29 01:39:56 +00:00
|
|
|
go processHeadSlot(slot, head.Block, head.State, bc.SlotProcessingDetails())
|
2022-05-17 20:05:15 +00:00
|
|
|
|
|
|
|
log.WithFields(log.Fields{"head": head.Slot}).Debug("We finished calling processHeadSlot.")
|
2022-05-06 15:03:15 +00:00
|
|
|
|
|
|
|
// Update the previous block
|
|
|
|
bc.PreviousSlot = slot
|
|
|
|
bc.PreviousBlockRoot = head.Block
|
2022-04-27 14:28:42 +00:00
|
|
|
}
|
|
|
|
}
|