-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexec.go
108 lines (89 loc) · 1.98 KB
/
exec.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package adapt
import (
"log/slog"
"os"
)
type exec struct {
executor string
driver Driver
sources SourceCollection
log *slog.Logger
optDisableDriverLocks bool
optDisableHashIntegrityChecks bool
driverIsDatabaseDriver bool
driverAsDatabaseDriver DatabaseDriver
driverIsDatabaseDriverCustomMigration bool
driverAsDatabaseDriverCustomMigration DatabaseDriverCustomMigration
available []*AvailableMigration
driverLockAcquired bool
applied []*Migration
unknownApplied []*Migration
}
func newExec(executor string, driver Driver, sources SourceCollection, options ...Option) (*exec, error) {
// create
e := &exec{
executor: executor,
driver: driver,
sources: sources,
log: slog.New(slog.NewTextHandler(os.Stdout, nil)),
}
// apply options
for _, opt := range options {
if err := opt(e); err != nil {
return nil, err
}
}
// name logger
e.log = e.log.With("logged_from", Version)
// check if driver is a DatabaseDriver
if asDB, ok := driver.(DatabaseDriver); ok {
e.driverIsDatabaseDriver = ok
e.driverAsDatabaseDriver = asDB
if asCustomDB, ok := driver.(DatabaseDriverCustomMigration); ok {
e.driverIsDatabaseDriverCustomMigration = true
e.driverAsDatabaseDriverCustomMigration = asCustomDB
}
}
return e, nil
}
func (e *exec) run() (err error) {
defer func() {
closeErr := e.stageClose()
if closeErr != nil && err == nil {
err = closeErr
}
}()
err = e.stageInit()
if err != nil {
return err
}
err = e.stageHealthCheck()
if err != nil {
return err
}
err = e.stagePrepareLocal()
if err != nil {
return err
}
err = e.acquireDriverLock()
if err != nil {
return err
}
if e.driverLockAcquired {
defer func() {
unlockErr := e.releaseDriverLock()
if unlockErr != nil && err == nil {
err = unlockErr
}
}()
}
err = e.stagePrepareRemote()
if err != nil {
return err
}
err = e.stageStart()
if err != nil {
return err
}
return nil
}