mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 18:21:20 +00:00
037c01f4d7
* archive flags * gaz * create archiver * register archiver in node * registering the head updater feed * add more gazelle * cancel func * test for service * properly utilize the mocks * lint * remove extraneous log * add back write to disk * gaz
76 lines
1.9 KiB
Go
76 lines
1.9 KiB
Go
package archiver
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/blockchain"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var log = logrus.WithField("prefix", "archiver")
|
|
|
|
// Service defining archiver functionality for persisting checkpointed
|
|
// beacon chain information to a database backend for historical purposes.
|
|
type Service struct {
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
beaconDB db.Database
|
|
newHeadNotifier blockchain.NewHeadNotifier
|
|
newHeadRootChan chan [32]byte
|
|
}
|
|
|
|
// Config options for the archiver service.
|
|
type Config struct {
|
|
BeaconDB db.Database
|
|
NewHeadNotifier blockchain.NewHeadNotifier
|
|
}
|
|
|
|
// NewArchiverService initializes the service from configuration options.
|
|
func NewArchiverService(ctx context.Context, cfg *Config) *Service {
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
return &Service{
|
|
ctx: ctx,
|
|
cancel: cancel,
|
|
beaconDB: cfg.BeaconDB,
|
|
newHeadNotifier: cfg.NewHeadNotifier,
|
|
newHeadRootChan: make(chan [32]byte, 1),
|
|
}
|
|
}
|
|
|
|
// Start the archiver service event loop.
|
|
func (s *Service) Start() {
|
|
log.Info("Starting service")
|
|
go s.run()
|
|
}
|
|
|
|
// Stop the archiver service event loop.
|
|
func (s *Service) Stop() error {
|
|
defer s.cancel()
|
|
log.Info("Stopping service")
|
|
return nil
|
|
}
|
|
|
|
// Status reports the healthy status of the archiver. Returning nil means service
|
|
// is correctly running without error.
|
|
func (s *Service) Status() error {
|
|
return nil
|
|
}
|
|
|
|
func (s *Service) run() {
|
|
sub := s.newHeadNotifier.HeadUpdatedFeed().Subscribe(s.newHeadRootChan)
|
|
defer sub.Unsubscribe()
|
|
for {
|
|
select {
|
|
case h := <-s.newHeadRootChan:
|
|
log.WithField("headRoot", fmt.Sprintf("%#x", h)).Info("New chain head event")
|
|
case <-s.ctx.Done():
|
|
log.Info("Context closed, exiting goroutine")
|
|
return
|
|
case err := <-sub.Err():
|
|
log.WithError(err).Error("Subscription to new chain head notifier failed")
|
|
}
|
|
}
|
|
}
|