-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmigrator.go
380 lines (322 loc) · 9.65 KB
/
migrator.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
package conduit
import (
"cmp"
"context"
"errors"
"fmt"
"hash/fnv"
"log/slog"
"maps"
"slices"
"time"
"github.com/jackc/pgx/v5"
"go.inout.gg/conduit/conduitregistry"
"go.inout.gg/conduit/internal/dbsqlc"
"go.inout.gg/conduit/internal/direction"
"go.inout.gg/conduit/internal/sliceutil"
"go.inout.gg/conduit/internal/uuidv7"
"go.inout.gg/foundations/debug"
"go.inout.gg/foundations/must"
)
// AllSteps tells migrator to run all available migrations either up or down.
const AllSteps = -1
const (
DefaultUpStep = AllSteps // roll up
DefaultDownStep = 1 // roll back
)
const (
DirectionUp Direction = direction.DirectionUp // roll up
DirectionDown = direction.DirectionDown // roll down
)
var ErrInvalidStep = errors.New(
"conduit: invalid migration step. Expected: -1 (all) or positive integer.",
)
type (
Direction = direction.Direction
MigrateFunc = conduitregistry.MigrateFunc
MigrateFuncTx = conduitregistry.MigrateFuncTx
Migration = conduitregistry.Migration
)
// Config is the configuration for the Migrator.
//
// Use NewConfig to instantiate a new instance.
//
// Logger and Registry fields are optional.
// If Registry is omitted, the global registry is used.
// If Logger is omitted, slog.Default is used.
type Config struct {
Logger *slog.Logger // optional
Registry *conduitregistry.Registry // optional
}
// WithLogger adds a logger to the Config.
//
// It's provided for convenience and intended to be used with NewConfig.
func WithLogger(l *slog.Logger) func(*Config) {
return func(c *Config) { c.Logger = l }
}
// NewConfig creates a new Config and applies the provided configurations.
//
// If Config.Registry is not provided, it falls back to the global registry.
func NewConfig(cfgs ...func(*Config)) *Config {
config := &Config{}
for _, c := range cfgs {
c(config)
}
config.defaults()
return config
}
// defaults applies default configurations.
func (c *Config) defaults() {
if c.Logger == nil {
c.Logger = slog.Default()
}
c.Registry = cmp.Or(c.Registry, globalRegistry)
}
// MigrateResult represents the outcome of applied migrations batch.
type MigrateResult struct {
// Direction of the applied migrations.
Direction direction.Direction
// MigrationResults is a
MigrationResults []MigrationResult
}
// MigrationResult represents the outcome of a single applied migration.
type MigrationResult struct {
// Total time it took to apply migration
DurationTotal time.Duration
Name string
Namespace string
Version int64
}
// MigrateOptions specifies options for a Migrator.Migrate operation.
type MigrateOptions struct {
Steps int
}
func (m *MigrateOptions) validate() error {
if !(m.Steps == -1 || m.Steps > 0) {
return ErrInvalidStep
}
return nil
}
// NewMigrator creates a new migrator with the given config.
func NewMigrator(config *Config) *Migrator {
debug.Assert(config.Logger != nil, "config.Logger must be defined")
debug.Assert(config.Registry != nil, "config.Registry must be defined")
return &Migrator{
logger: config.Logger,
registry: config.Registry,
}
}
// Migrator is a database migration tool that can rolls up and down migrations
// in order.
type Migrator struct {
logger *slog.Logger
registry *conduitregistry.Registry
}
// existingMigrationVerions retrieves a list of already applied migration versions.
func (m *Migrator) existingMigrationVerions(ctx context.Context, conn *pgx.Conn) ([]int64, error) {
ok, err := dbsqlc.New().DoesTableExist(ctx, conn, "conduitmigrations")
if err != nil {
return nil, fmt.Errorf("conduit: failed to fetch from migrations table: %w", err)
}
if !ok {
d("conduitmigrations table is not found")
return []int64{}, nil
}
versions, err := dbsqlc.New().AllExistingMigrationVersions(ctx, conn, m.registry.Namespace)
if err != nil {
return nil, fmt.Errorf("conduit: failed to fetch existing versions: %w", err)
}
return versions, nil
}
// Migrate applies migrations in the specified direction (up or down).
//
// It uses a Postgres advisory lock before running migrations.
//
// By default, it applies all pending migrations when rolling up, and
// only one migration when rolling back. Use MigrateOptions.Step to control
// the number of migrations, or set it to -1 to migrate all.
//
// If a migration is registered in transaction mode, it creates a new transaction
// before applying the migration.
func (m *Migrator) Migrate(
ctx context.Context,
dir Direction,
conn *pgx.Conn,
opts *MigrateOptions,
) (result *MigrateResult, err error) {
debug.Assert(conn != nil, "expected conn to be defined")
if opts == nil {
opts = &MigrateOptions{Steps: DefaultUpStep}
if dir == DirectionDown {
opts.Steps = DefaultDownStep
}
d("opts is ommitted, using the default one: %v", opts)
}
if err := opts.validate(); err != nil {
return nil, err
}
lockNum := pgLockNum(m.registry.Namespace)
if err := dbsqlc.New().AcquireLock(ctx, conn, lockNum); err != nil {
return nil, fmt.Errorf("conduit: failed to acquire a lock: %w", err)
}
defer dbsqlc.New().ReleaseLock(ctx, conn, lockNum)
switch dir {
case DirectionUp:
result, err = m.migrateUp(ctx, conn, opts)
case DirectionDown:
result, err = m.migrateDown(ctx, conn, opts)
default:
return nil, direction.ErrUnknownDirection
}
if err != nil {
return nil, err
}
return result, nil
}
// migrateUp applies pending migrations in the up direction.
//
// Migrations are rolled up in ascending order.
func (m *Migrator) migrateUp(
ctx context.Context,
conn *pgx.Conn,
opts *MigrateOptions,
) (*MigrateResult, error) {
existingMigrationVersions, err := m.existingMigrationVerions(ctx, conn)
if err != nil {
return nil, err
}
targetMigrations := m.registry.CloneMigrations()
for _, existingVersion := range existingMigrationVersions {
delete(targetMigrations, existingVersion)
}
migrations := slices.Collect(maps.Values(targetMigrations))
slices.SortFunc(migrations, func(a, b *Migration) int {
return int(a.Version() - b.Version())
})
return m.applyMigrations(ctx, migrations, DirectionUp, conn, opts)
}
// migrateDown rolls back applied migrations in the down direction.
//
// Migrations are rolled back in descending order.
func (m *Migrator) migrateDown(
ctx context.Context,
conn *pgx.Conn,
opts *MigrateOptions,
) (*MigrateResult, error) {
existingMigrations, err := m.existingMigrationVerions(ctx, conn)
if err != nil {
return nil, err
}
// Filter only applied migrations.
existingMigrationsMap := sliceutil.KeyBy(existingMigrations, func(e int64) int64 { return e })
targetMigrations := m.registry.CloneMigrations()
for _, m := range targetMigrations {
if _, ok := existingMigrationsMap[m.Version()]; !ok {
delete(targetMigrations, m.Version())
}
}
// Sort in descending order, as we need to roll back starting from the
// last applied migration to the first one.
migrations := slices.Collect(maps.Values(targetMigrations))
slices.SortFunc(migrations, func(a, b *Migration) int {
return int(b.Version() - a.Version())
})
return m.applyMigrations(ctx, migrations, DirectionDown, conn, opts)
}
// applyMigrations executes the given migrations in the specified direction.]
//
// It assumes the passed migrations are already sorted in the necessary order.
func (m *Migrator) applyMigrations(
ctx context.Context,
migrations []*conduitregistry.Migration,
dir Direction,
conn *pgx.Conn,
opts *MigrateOptions,
) (result *MigrateResult, err error) {
if opts.Steps != AllSteps {
migrations = migrations[0:min(opts.Steps, len(migrations))]
}
results := make([]MigrationResult, len(migrations))
for i, migration := range migrations {
var tx pgx.Tx
inTx := must.Must(migration.UseTx(dir))
m.logger.Debug(
"applying migration",
slog.String("direction", string(dir)),
slog.Group(
"migration",
slog.Int64("version", migration.Version()),
slog.String("name", migration.Name()),
),
slog.Bool("transacting", inTx),
)
if inTx {
tx, err = conn.Begin(ctx)
if err != nil {
return nil, fmt.Errorf(
"conduit: failed to open transaction: %w",
err,
)
}
defer tx.Rollback(ctx)
}
start := time.Now()
if err := migration.Apply(ctx, dir, conn, tx); err != nil {
return nil, fmt.Errorf(
"conduit: failed to apply migration %d: %w",
migration.Version(),
err,
)
}
duration := time.Since(start)
migrationResult := MigrationResult{
DurationTotal: duration,
Version: migration.Version(),
Name: migration.Name(),
Namespace: m.registry.Namespace,
}
results[i] = migrationResult
switch dir {
case DirectionDown:
err = dbsqlc.New().RollbackMigration(ctx, conn, dbsqlc.RollbackMigrationParams{
Version: migrationResult.Version,
Namespace: migrationResult.Namespace,
})
case DirectionUp:
err = dbsqlc.New().ApplyMigration(ctx, conn, dbsqlc.ApplyMigrationParams{
ID: uuidv7.Must(),
Version: migrationResult.Version,
Namespace: migrationResult.Namespace,
Name: migrationResult.Name,
})
}
if err != nil {
return nil, fmt.Errorf("conduit: failed to update migrations table %v: %w", dir, err)
}
_ = dbsqlc.New().ResetConn(ctx, conn)
if inTx {
if err := tx.Commit(ctx); err != nil {
return nil, fmt.Errorf(
"conduit: failed to commit transaction for migration %d: %w",
migration.Version(),
err,
)
}
}
}
result = &MigrateResult{
MigrationResults: results,
Direction: DirectionDown,
}
return result, err
}
// pgLockNum computes a lock number for a PostgreSQL advisory lock.
//
// The input string is typically a registry namespace.
func pgLockNum(s string) int64 {
h := fnv.New64()
h.Write([]byte(s))
n := int64(h.Sum64())
d("generated advisory lock id: %d", n)
return n
}