forked from 0xPolygonHermez/cdk-erigon
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathprohibit_new_downloads_lock.go
49 lines (44 loc) · 1.25 KB
/
prohibit_new_downloads_lock.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package migrations
import (
"context"
"os"
"path/filepath"
"github.com/ledgerwatch/erigon-lib/common/datadir"
"github.com/ledgerwatch/erigon-lib/common/dir"
"github.com/ledgerwatch/erigon-lib/downloader"
"github.com/ledgerwatch/erigon-lib/kv"
"github.com/ledgerwatch/erigon/eth/stagedsync/stages"
"github.com/ledgerwatch/log/v3"
)
var ProhibitNewDownloadsLock = Migration{
Name: "prohibit_new_downloads_lock",
Up: func(db kv.RwDB, dirs datadir.Dirs, progress []byte, BeforeCommit Callback, logger log.Logger) (err error) {
tx, err := db.BeginRw(context.Background())
if err != nil {
return err
}
defer tx.Rollback()
snapshotsStageProgress, err := stages.GetStageProgress(tx, stages.Snapshots)
if err != nil {
return err
}
if snapshotsStageProgress > 0 {
fPath := filepath.Join(dirs.Snap, downloader.ProhibitNewDownloadsFileName)
if !dir.FileExist(fPath) {
f, err := os.Create(fPath)
if err != nil {
return err
}
defer f.Close()
if err := f.Sync(); err != nil {
return err
}
}
}
// This migration is no-op, but it forces the migration mechanism to apply it and thus write the DB schema version info
if err := BeforeCommit(tx, nil, true); err != nil {
return err
}
return tx.Commit()
},
}