mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-28 14:47:16 +00:00
53 lines
1.0 KiB
Go
53 lines
1.0 KiB
Go
|
package generate
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/ledgerwatch/turbo-geth/common"
|
||
|
"github.com/ledgerwatch/turbo-geth/ethdb"
|
||
|
"github.com/ledgerwatch/turbo-geth/log"
|
||
|
"github.com/ledgerwatch/turbo-geth/turbo/torrent"
|
||
|
"os"
|
||
|
"os/signal"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func SeedSnapshots(dir string) error {
|
||
|
client := torrent.New(dir, torrent.SnapshotMode{
|
||
|
Headers: true,
|
||
|
Bodies: true,
|
||
|
State: false,
|
||
|
Receipts: false,
|
||
|
}, true)
|
||
|
|
||
|
ctx, cancel := context.WithCancel(context.Background())
|
||
|
|
||
|
c := make(chan os.Signal, 1)
|
||
|
signal.Notify(c, os.Interrupt)
|
||
|
go func() {
|
||
|
<-c
|
||
|
cancel()
|
||
|
}()
|
||
|
|
||
|
db := ethdb.NewLMDB().Path(dir + "/tmpdb").MustOpen()
|
||
|
err := client.Run(ethdb.NewObjectDatabase(db))
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
go func() {
|
||
|
ticker := time.NewTicker(10 * time.Second)
|
||
|
for range ticker.C {
|
||
|
for _, t := range client.Cli.Torrents() {
|
||
|
log.Info("Snapshot stats", "snapshot", t.Name(), "active peers", t.Stats().ActivePeers, "seeding", t.Seeding())
|
||
|
}
|
||
|
if common.IsCanceled(ctx) {
|
||
|
ticker.Stop()
|
||
|
return
|
||
|
}
|
||
|
}
|
||
|
}()
|
||
|
|
||
|
<-ctx.Done()
|
||
|
return nil
|
||
|
}
|