-
Notifications
You must be signed in to change notification settings - Fork 12
/
main.go
248 lines (204 loc) · 4.91 KB
/
main.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
package main
import (
"encoding/json"
"fmt"
"github.com/ejfitzgerald/clang-tidy-cache/caches"
"github.com/ejfitzgerald/clang-tidy-cache/clang"
"io"
"io/ioutil"
"os"
"os/exec"
"os/user"
"path"
)
const VERSION = "0.3.0"
type Configuration struct {
ClangTidyPath string `json:"clang_tidy_path"`
GcsConfig *caches.GcsConfiguration `json:"gcs,omitempty"`
}
func readConfigFile(cfg *Configuration) error {
usr, err := user.Current()
if err != nil {
return err
}
// define the configuration path
configPath := path.Join(usr.HomeDir, ".ctcache", "config.json")
// missing config file is fine: we simply use the defaults or env vars
if _, err := os.Stat(configPath); os.IsNotExist(err) {
return nil
}
// open the configuration file
jsonFile, err := os.Open(configPath)
if err != nil {
return err
}
// defer the closing of our jsonFile so that we can parse it later on
defer jsonFile.Close()
// read the contents
bytes, err := ioutil.ReadAll(jsonFile)
if err != nil {
return err
}
err = json.Unmarshal(bytes, cfg)
if err != nil {
return err
}
return nil
}
func readConfigEnv(cfg *Configuration) {
if envPath := os.Getenv("CLANG_TIDY_CACHE_BINARY"); len(envPath) > 0 {
cfg.ClangTidyPath = envPath
}
}
func loadConfiguration() (*Configuration, error) {
// lowest priority: built-in defaults
cfg := Configuration{ClangTidyPath: "clang-tidy"}
// higher priority: config file
err := readConfigFile(&cfg)
if err != nil {
return nil, err
}
// highest priority: environment variables
readConfigEnv(&cfg)
return &cfg, nil
}
func streamOutput(file *os.File, closer io.ReadCloser) {
defer closer.Close()
buffer := make([]byte, 1024)
for {
n, err := closer.Read(buffer)
if err != nil {
break
}
_, err = file.Write(buffer[:n])
if err != nil {
break
}
}
}
func runClangTidyCommand(cfg *Configuration, args []string) error {
cmd := exec.Command(cfg.ClangTidyPath, args...)
stdout, err := cmd.StdoutPipe()
if err != nil {
return err
}
stderr, err := cmd.StderrPipe()
if err != nil {
return err
}
// stream out the output of the command
go streamOutput(os.Stdout, stdout)
go streamOutput(os.Stderr, stderr)
err = cmd.Start()
if err != nil {
return err
}
err = cmd.Wait()
if err != nil {
return err
}
return nil
}
func shouldBypassCache(args []string) bool {
for _, arg := range args {
if arg == "-list-checks" || arg == "--version" {
return true
}
}
return false
}
func evaluateTidyCommand(cfg *Configuration, wd string, args []string, cache caches.Cacher) error {
bypassCache := shouldBypassCache(args)
// fingerprint
var fingerPrint []byte = nil
var invocation *clang.TidyInvocation = nil
if !bypassCache {
// evaluate the commands that have been provided
other, err := clang.ParseTidyCommand(args)
if err != nil {
return err
}
invocation = other
// compute the finger print for the file
computedFingerPrint, err := caches.ComputeFingerPrint(cfg.ClangTidyPath, invocation, wd, args)
if err != nil {
return err
}
fingerPrint = computedFingerPrint
// evaluate if this function is has already been completed
cacheContent, err := cache.FindEntry(fingerPrint)
if err != nil {
return err
}
if invocation.ExportFile != nil {
f, err := os.Create(*invocation.ExportFile)
if err != nil {
return err
}
defer f.Close()
f.Write(cacheContent)
}
// this is "hopefully" the general case where we get a cache hit and this means that we need to do nothing
// further
if cacheContent != nil {
return nil
}
}
// we need to run the command
err := runClangTidyCommand(cfg, args)
if err != nil {
return err
}
// if the file was clean then we should record this fact into the cache
if !bypassCache && fingerPrint != nil && invocation != nil {
content := []byte{}
if invocation.ExportFile != nil {
content, err = ioutil.ReadFile(*invocation.ExportFile)
if err != nil {
return err
}
}
err = cache.SaveEntry(fingerPrint, content)
if err != nil {
return err
}
}
return nil
}
func main() {
// we are only interested in the arguments for the command
args := os.Args[1:]
// handle version
if len(args) == 1 && args[0] == "version" {
fmt.Printf("clang-tidy-cache %s\n", VERSION)
os.Exit(1)
}
cfg, err := loadConfiguration()
if err != nil {
fmt.Printf("Failed to load configuration: %v\n", err)
os.Exit(1)
}
// find the working directory
wd, err := os.Getwd()
if err != nil {
os.Exit(1)
}
// attempt to load the Google Cloud cache
var cache caches.Cacher
if cfg.GcsConfig != nil {
candidate, err := caches.NewGcsCache(cfg.GcsConfig)
if err == nil {
cache = candidate
}
}
// if no other cache is configured then default to the FS cache
if cache == nil {
cache = caches.NewFsCache()
}
// evaluate the clang tidy command
err = evaluateTidyCommand(cfg, wd, args, cache)
if err != nil {
fmt.Printf("Failed to get commands: %v\n", err)
os.Exit(1)
}
}