Skip to content

Commit 1bf98ca

Browse files
committed
fix imports, update license date
1 parent f5a42ee commit 1bf98ca

File tree

4 files changed

+31
-29
lines changed

4 files changed

+31
-29
lines changed

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020 Christoph Haas
1+
Copyright (c) 2022 Christoph Haas
22

33
Permission is hereby granted, free of charge, to any person obtaining
44
a copy of this software and associated documentation files (the

examples/example.go

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@ package main
22

33
import (
44
"context"
5+
"log"
6+
"os"
7+
"time"
8+
59
"github.com/h44z/lightmigrate"
610
"github.com/h44z/lightmigrate-mongodb/mongodb"
711
"go.mongodb.org/mongo-driver/mongo"
812
"go.mongodb.org/mongo-driver/mongo/options"
913
"go.mongodb.org/mongo-driver/mongo/readpref"
10-
"log"
11-
"os"
12-
"time"
1314
)
1415

1516
func main() {

mongodb/mongodb.go

+14-13
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@ package mongodb
33
import (
44
"context"
55
"fmt"
6-
"github.com/h44z/lightmigrate"
7-
"go.mongodb.org/mongo-driver/bson"
8-
"go.mongodb.org/mongo-driver/mongo"
9-
"go.mongodb.org/mongo-driver/mongo/options"
106
"io"
117
"io/ioutil"
128
"os"
139
"sync/atomic"
1410
"time"
11+
12+
"github.com/h44z/lightmigrate"
13+
"go.mongodb.org/mongo-driver/bson"
14+
"go.mongodb.org/mongo-driver/mongo"
15+
"go.mongodb.org/mongo-driver/mongo/options"
1516
)
1617

1718
type versionInfo struct {
@@ -31,10 +32,10 @@ type lockFilter struct {
3132
}
3233

3334
type driver struct {
34-
client *mongo.Client
35-
cfg *config
36-
migDb *mongo.Database // where migration info is stored
37-
lockFlag int32 // must be accessed by atomic.XXX functions!
35+
client *mongo.Client
36+
cfg *config
37+
migDb *mongo.Database // where migration info is stored
38+
reentrantLockFlag int32 // must be accessed by atomic.XXX functions!
3839

3940
logger lightmigrate.Logger
4041
verbose bool
@@ -128,7 +129,7 @@ func WithLocking(lockConfig LockingConfig) DriverOption {
128129
}
129130

130131
func (d *driver) Close() error {
131-
return nil // nothing to cleanup
132+
return nil // nothing to clean up
132133
}
133134

134135
// Lock utilizes advisory locking on the LockingConfig.CollectionName collection
@@ -139,7 +140,7 @@ func (d *driver) Lock() error {
139140
}
140141

141142
// check if already locked, if not, lock
142-
if !atomic.CompareAndSwapInt32(&d.lockFlag, 0, 1) {
143+
if !atomic.CompareAndSwapInt32(&d.reentrantLockFlag, 0, 1) {
143144
return nil // no swap happened, already locked
144145
}
145146

@@ -160,7 +161,7 @@ func (d *driver) Lock() error {
160161
defer cancelFunc()
161162
_, err = d.migDb.Collection(d.cfg.Locking.CollectionName).InsertOne(ctx, newLockObj)
162163
if err != nil {
163-
atomic.StoreInt32(&d.lockFlag, 0) // restore unlock flag
164+
atomic.StoreInt32(&d.reentrantLockFlag, 0) // restore unlock flag
164165
return ErrDatabaseLocked
165166
}
166167

@@ -173,7 +174,7 @@ func (d *driver) Unlock() error {
173174
}
174175

175176
// check if already unlocked, if not, unlock
176-
if !atomic.CompareAndSwapInt32(&d.lockFlag, 1, 0) {
177+
if !atomic.CompareAndSwapInt32(&d.reentrantLockFlag, 1, 0) {
177178
return nil // no swap happened, already unlocked
178179
}
179180

@@ -185,7 +186,7 @@ func (d *driver) Unlock() error {
185186
defer cancelFunc()
186187
_, err := d.migDb.Collection(d.cfg.Locking.CollectionName).DeleteMany(ctx, filter)
187188
if err != nil {
188-
atomic.StoreInt32(&d.lockFlag, 1) // restore lock flag
189+
atomic.StoreInt32(&d.reentrantLockFlag, 1) // restore lock flag
189190
return err
190191
}
191192

mongodb/mongodb_test.go

+12-12
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func Test_driver_Lock(t *testing.T) {
191191
}
192192

193193
// should be locked
194-
if atomic.LoadInt32(&d.(*driver).lockFlag) != 1 {
194+
if atomic.LoadInt32(&d.(*driver).reentrantLockFlag) != 1 {
195195
t.Fatalf("not locked")
196196
}
197197
})
@@ -215,7 +215,7 @@ func Test_driver_Lock(t *testing.T) {
215215
}
216216

217217
// should not be locked
218-
if atomic.LoadInt32(&d.(*driver).lockFlag) != 0 {
218+
if atomic.LoadInt32(&d.(*driver).reentrantLockFlag) != 0 {
219219
t.Fatalf("unexpected lock")
220220
}
221221
})
@@ -229,20 +229,20 @@ func Test_driver_Lock_Disabled(t *testing.T) {
229229
}
230230

231231
// should not be locked
232-
if atomic.LoadInt32(&d.lockFlag) == 1 {
232+
if atomic.LoadInt32(&d.reentrantLockFlag) == 1 {
233233
t.Fatalf("unexpected lock")
234234
}
235235
}
236236

237237
func Test_driver_Lock_AlreadyLocked(t *testing.T) {
238-
d := driver{cfg: &config{Locking: LockingConfig{Enabled: true}}, lockFlag: 1}
238+
d := driver{cfg: &config{Locking: LockingConfig{Enabled: true}}, reentrantLockFlag: 1}
239239
err := d.Lock()
240240
if err != nil {
241241
t.Fatalf("unexpected error: %v", err)
242242
}
243243

244244
// should be locked
245-
if atomic.LoadInt32(&d.lockFlag) != 1 {
245+
if atomic.LoadInt32(&d.reentrantLockFlag) != 1 {
246246
t.Fatalf("not locked")
247247
}
248248
}
@@ -408,7 +408,7 @@ func Test_driver_Unlock(t *testing.T) {
408408
if err != nil {
409409
t.Fatalf("unexpected error: %v", err)
410410
}
411-
d.(*driver).lockFlag = 1 // simulate locked driver
411+
d.(*driver).reentrantLockFlag = 1 // simulate locked driver
412412

413413
mt.AddMockResponses(bson.D{{Key: "ok", Value: 1}, {Key: "acknowledged", Value: true}, {Key: "n", Value: 1}}) // n = 1 doc deleted
414414

@@ -418,7 +418,7 @@ func Test_driver_Unlock(t *testing.T) {
418418
}
419419

420420
// should not be locked
421-
if atomic.LoadInt32(&d.(*driver).lockFlag) != 0 {
421+
if atomic.LoadInt32(&d.(*driver).reentrantLockFlag) != 0 {
422422
t.Fatalf("unexptected lock")
423423
}
424424
})
@@ -430,7 +430,7 @@ func Test_driver_Unlock(t *testing.T) {
430430
if err != nil {
431431
t.Fatalf("unexpected error: %v", err)
432432
}
433-
d.(*driver).lockFlag = 1 // simulate locked driver
433+
d.(*driver).reentrantLockFlag = 1 // simulate locked driver
434434

435435
mt.AddMockResponses(bson.D{{Key: "ok", Value: 0}, {Key: "acknowledged", Value: false}, {Key: "n", Value: 0}})
436436

@@ -440,7 +440,7 @@ func Test_driver_Unlock(t *testing.T) {
440440
}
441441

442442
// should still be locked
443-
if atomic.LoadInt32(&d.(*driver).lockFlag) != 1 {
443+
if atomic.LoadInt32(&d.(*driver).reentrantLockFlag) != 1 {
444444
t.Fatalf("not locked")
445445
}
446446
})
@@ -454,20 +454,20 @@ func Test_driver_Unlock_Disabled(t *testing.T) {
454454
}
455455

456456
// should not be locked
457-
if atomic.LoadInt32(&d.lockFlag) != 0 {
457+
if atomic.LoadInt32(&d.reentrantLockFlag) != 0 {
458458
t.Fatalf("unexptected lock")
459459
}
460460
}
461461

462462
func Test_driver_Unlock_AlreadyUnlocked(t *testing.T) {
463-
d := driver{cfg: &config{Locking: LockingConfig{Enabled: true}}, lockFlag: 0}
463+
d := driver{cfg: &config{Locking: LockingConfig{Enabled: true}}, reentrantLockFlag: 0}
464464
err := d.Unlock()
465465
if err != nil {
466466
t.Fatalf("unexpected error: %v", err)
467467
}
468468

469469
// should not be locked
470-
if atomic.LoadInt32(&d.lockFlag) != 0 {
470+
if atomic.LoadInt32(&d.reentrantLockFlag) != 0 {
471471
t.Fatalf("unexptected lock")
472472
}
473473
}

0 commit comments

Comments
 (0)