-
Notifications
You must be signed in to change notification settings - Fork 83
/
tombstones.go
95 lines (77 loc) · 2.29 KB
/
tombstones.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
package zoekt
import (
"encoding/json"
"fmt"
"os"
"path/filepath"
)
var mockRepos []*Repository
// SetTombstone idempotently sets a tombstone for repoName in .meta.
func SetTombstone(shardPath string, repoID uint32) error {
return setTombstone(shardPath, repoID, true)
}
// UnsetTombstone idempotently removes a tombstones for reopName in .meta.
func UnsetTombstone(shardPath string, repoID uint32) error {
return setTombstone(shardPath, repoID, false)
}
func setTombstone(shardPath string, repoID uint32, tombstone bool) error {
var repos []*Repository
var err error
if mockRepos != nil {
repos = mockRepos
} else {
repos, _, err = ReadMetadataPath(shardPath)
if err != nil {
return err
}
}
for _, repo := range repos {
if repo.ID == repoID {
repo.Tombstone = tombstone
}
}
tempPath, finalPath, err := JsonMarshalRepoMetaTemp(shardPath, repos)
if err != nil {
return err
}
err = os.Rename(tempPath, finalPath)
if err != nil {
os.Remove(tempPath)
}
return nil
}
// JsonMarshalRepoMetaTemp writes the json encoding of the given repository metadata to a temporary file
// in the same directory as the given shard path. It returns both the path of the temporary file and the
// path of the final file that the caller should use.
//
// The caller is responsible for renaming the temporary file to the final file path, or removing
// the temporary file if it is no longer needed.
// TODO: Should we stick this in a util package?
func JsonMarshalRepoMetaTemp(shardPath string, repositoryMetadata interface{}) (tempPath, finalPath string, err error) {
finalPath = shardPath + ".meta"
b, err := json.Marshal(repositoryMetadata)
if err != nil {
return "", "", fmt.Errorf("marshalling json: %w", err)
}
f, err := os.CreateTemp(filepath.Dir(finalPath), filepath.Base(finalPath)+".*.tmp")
if err != nil {
return "", "", fmt.Errorf("writing temporary file: %s", err)
}
defer func() {
f.Close()
if err != nil {
_ = os.Remove(f.Name())
}
}()
err = f.Chmod(0o666 &^ umask)
if err != nil {
return "", "", fmt.Errorf("chmoding temporary file: %s", err)
}
_, err = f.Write(b)
if err != nil {
return "", "", fmt.Errorf("writing json to temporary file: %s", err)
}
return f.Name(), finalPath, nil
}
// umask holds the Umask of the current process
var umask os.FileMode