-
Notifications
You must be signed in to change notification settings - Fork 66
/
flock_example_test.go
88 lines (67 loc) · 1.73 KB
/
flock_example_test.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
// Copyright 2015 Tim Heckman. All rights reserved.
// Copyright 2018-2024 The Gofrs. All rights reserved.
// Use of this source code is governed by the BSD 3-Clause
// license that can be found in the LICENSE file.
//go:build !js && !plan9 && !wasip1
package flock_test
import (
"context"
"fmt"
"os"
"path/filepath"
"time"
"github.com/gofrs/flock"
)
func ExampleFlock_Locked() {
f := flock.New(filepath.Join(os.TempDir(), "go-lock.lock"))
_, err := f.TryLock()
if err != nil {
// handle locking error
panic(err)
}
fmt.Printf("locked: %v\n", f.Locked())
err = f.Unlock()
if err != nil {
// handle locking error
panic(err)
}
fmt.Printf("locked: %v\n", f.Locked())
// Output: locked: true
// locked: false
}
func ExampleFlock_TryLock() {
// should probably put these in /var/lock
f := flock.New(filepath.Join(os.TempDir(), "go-lock.lock"))
locked, err := f.TryLock()
if err != nil {
// handle locking error
panic(err)
}
if locked {
fmt.Printf("path: %s; locked: %v\n", f.Path(), f.Locked())
if err := f.Unlock(); err != nil {
// handle unlock error
panic(err)
}
}
fmt.Printf("path: %s; locked: %v\n", f.Path(), f.Locked())
}
func ExampleFlock_TryLockContext() {
// should probably put these in /var/lock
f := flock.New(filepath.Join(os.TempDir(), "go-lock.lock"))
lockCtx, cancel := context.WithTimeout(context.Background(), 30*time.Second)
defer cancel()
locked, err := f.TryLockContext(lockCtx, 678*time.Millisecond)
if err != nil {
// handle locking error
panic(err)
}
if locked {
fmt.Printf("path: %s; locked: %v\n", f.Path(), f.Locked())
if err := f.Unlock(); err != nil {
// handle unlock error
panic(err)
}
}
fmt.Printf("path: %s; locked: %v\n", f.Path(), f.Locked())
}