-
Notifications
You must be signed in to change notification settings - Fork 0
/
filelock.go
86 lines (69 loc) · 1.59 KB
/
filelock.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
package filelock
import (
"errors"
"os"
"time"
)
var ErrLockTimeout = errors.New("timeout obtaining lock")
var ErrNotLocked = errors.New("not locked")
type FileLock struct {
Path string
Timeout time.Duration
file *os.File // open file holding the lock
}
func (l *FileLock) Lock() error {
// Try to open the lock file
file, err := os.OpenFile(l.Path, os.O_RDWR|os.O_CREATE, 0660)
if err != nil {
return err
}
// Create channels for the timeout and receiving the flock result
timeoutChan := time.After(l.Timeout)
flockChan := make(chan error, 1)
// Start the blocking flock call in a goroutine
go func() { flockChan <- flock(file) }()
select {
case <-timeoutChan:
// We hit the timeout without successfully getting the lock.
// The goroutine blocked on syscall.Flock() is still running
// and will eventually return at some point in the future.
// When the lock is eventually obtained, it needs to be immediately
// released.
go func() {
if err := <-flockChan; err == nil {
releaseFlock(file)
l.file = nil
}
}()
l.file = nil
return ErrLockTimeout
case err := <-flockChan:
if err != nil {
return err
}
// Store the file descriptor holding the lock
l.file = file
return nil
}
}
func (l *FileLock) Unlock() error {
if l.file == nil {
return ErrNotLocked
}
err := releaseFlock(l.file)
if err != nil {
return err
}
err = l.file.Close()
if err != nil {
return err
}
l.file = nil
return nil
}
func flock(file *os.File) error {
return lockFile(int(file.Fd()))
}
func releaseFlock(file *os.File) error {
return unlockFile(int(file.Fd()))
}