forked from golang/review
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreview.go
393 lines (347 loc) · 9.29 KB
/
review.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
// Copyright 2014 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"flag"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"regexp"
"strings"
"sync"
)
var (
hookFile = filepath.FromSlash(".git/hooks/commit-msg")
verbose = flag.Bool("v", false, "verbose output")
)
const usage = `Usage: %s [-v] <command>
Type "%s help" for more information.
`
const help = `Usage: %s [-v] <command>
The review command is a wrapper for the git command that provides a simple
interface to the "single-commit feature branch" development model.
Available comands:
create <name>
Create a local branch with the provided name
and commit the staged changes to it.
commit
Amend local branch HEAD commit with the staged changes.
diff
View differences between remote branch HEAD and
the local branch HEAD.
(The differences introduced by this change.)
upload
Upload HEAD commit to the code review server.
sync
Fetch changes from the remote repository and merge them to the
current branch, rebasing the HEAD commit (if any) on top of
them. If the HEAD commit has been submitted, switch back to the
master branch and delete the feature branch.
pending
Show local branches and their head commits.
`
func main() {
flag.Usage = func() {
fmt.Fprintf(os.Stderr, usage, os.Args[0], os.Args[0])
os.Exit(2)
}
flag.Parse()
goToRepoRoot()
installHook()
switch flag.Arg(0) {
case "help":
fmt.Fprintf(os.Stdout, help, os.Args[0])
case "create", "cr":
name := flag.Arg(1)
if name == "" {
flag.Usage()
}
create(name)
case "commit", "co":
commit()
case "diff", "d":
diff()
case "upload", "u":
upload()
case "sync", "s":
doSync()
case "pending", "p":
pending()
default:
flag.Usage()
}
}
func create(name string) {
if !hasStagedChanges() {
dief("No staged changes. Did you forget to \"git add\" your files?\n")
}
if currentBranch() != "master" {
dief("You must run create from the master branch.\n" +
"(Try \"review sync\" or \"git checkout master\" first.)\n")
}
run("git", "checkout", "-q", "-b", name)
if err := runErr("git", "commit", "-q"); err != nil {
verbosef("Commit failed: %v\nSwitching back to master.\n", err)
run("git", "checkout", "-q", "master")
run("git", "branch", "-q", "-d", name)
}
// TODO(adg): check style of commit message
}
func commit() {
if !hasStagedChanges() {
dief("No staged changes. Did you forget to \"git add\" your files?\n")
}
if currentBranch() == "master" {
dief("Can't commit to master branch.\n")
}
run("git", "commit", "-q", "--amend", "-C", "HEAD")
}
func diff() {
run("git", "diff", "HEAD^", "HEAD")
}
func upload() {
if currentBranch() == "master" {
dief("Can't upload from master branch.\n")
}
run("git", "push", "-q", "origin", "HEAD:refs/for/master")
}
func doSync() {
run("git", "fetch", "-q")
// If we're on master, just fast-forward.
branch := currentBranch()
if branch == "master" {
run("git", "merge", "-q", "--ff-only", "origin/master")
return
}
// Check that exactly this commit was submitted to master. If so,
// switch back to master, fast-forward, delete the feature branch.
if branchContains("origin/master", "HEAD") {
run("git", "checkout", "-q", "master")
run("git", "merge", "-q", "--ff-only", "origin/master")
run("git", "branch", "-q", "-d", branch)
return
}
// Check whether a rebased version of this commit was submitted to
// master. If so, switch back to master, fast-forward, and
// provide instructions for deleting the feature branch.
// (We're not 100% sure that the feature branch HEAD was submitted,
// so be cautious.)
if headSubmitted(branch) {
run("git", "checkout", "-q", "master")
run("git", "merge", "-q", "--ff-only", "origin/master")
fmt.Fprintf(os.Stderr, "Switched back to master from %q, "+
"which I think has been submitted.\n"+
"If you agree, and no longer need branch %q, run:\n"+
"\tgit branch -D %v\n",
branch, branch, branch)
return
}
// Bump master HEAD to that of origin/master, just in case the user
// switches back to master with "git checkout master" later.
// TODO(adg): maybe we shouldn't do this at all?
if !branchContains("origin/master", "master") {
run("git", "branch", "-f", "master", "origin/master")
}
// We have un-submitted changes on this feature branch; rebase.
run("git", "rebase", "-q", "origin/master")
}
func pending() {
var (
wg sync.WaitGroup
origin = originURL()
current = currentBranch()
)
if current == "master" {
fmt.Println("On master branch.")
}
for _, branch := range localBranches() {
if branch == "master" {
// TODO(adg): check if it's remote tracking instead
continue
}
wg.Add(1)
go func(branch string) {
defer wg.Done()
p := ""
if branch == current {
p = "* "
}
id := headChangeId(branch)
c, err := getChange(origin, id)
switch err {
case notFound:
// TODO(adg): read local commit msg
var msg string
fmt.Printf("%v%v:\n\t%v\n\t(not uploaded)\n",
p, branch, msg)
case nil:
status := ""
switch c.Status {
case "MERGED":
status += " [submitted]"
case "ABANDONED":
status += " [abandoned]"
}
fmt.Printf("%v%v%v:\n\t%v\n\t%v\n",
p, branch, status, c.Subject, c.URL)
// TODO(adg): print votes
default:
fmt.Fprintf(os.Stderr, "fetching change for %q: %v\n", branch, err)
}
}(branch)
}
wg.Wait()
}
func originURL() string {
for _, s := range runLines("git", "remote", "-v") {
f := strings.Fields(s)
if f[0] != "origin" || len(f) < 2 {
continue
}
if !strings.HasPrefix(f[1], "https://") {
continue
}
return f[1]
}
dief("Could not find URL for 'origin' remote.\n" +
"Did you check out from the right place?\n")
panic("unreachable")
}
func localBranches() (branches []string) {
for _, s := range runLines("git", "branch", "-l", "-q") {
s = strings.TrimSpace(strings.TrimPrefix(s, "* "))
if s != "" {
branches = append(branches, s)
}
}
return branches
}
func branchContains(branch, rev string) bool {
for _, s := range runLines("git", "branch", "-r", "--contains", rev) {
if strings.TrimSpace(s) == branch {
return true
}
}
return false
}
var stagedRe = regexp.MustCompile(`^[ACDMR] `)
func hasStagedChanges() bool {
for _, s := range gitStatus() {
if stagedRe.MatchString(s) {
return true
}
}
return false
}
func currentBranch() string {
const p = "## "
for _, s := range gitStatus() {
if strings.HasPrefix(s, p) {
return strings.TrimPrefix(s, p)
}
}
dief("Could not find current branch with 'git status'.\n")
panic("unreachable")
}
func gitStatus() []string {
return runLines("git", "status", "-b", "--porcelain")
}
func headSubmitted(branch string) bool {
s := "Change-Id: " + headChangeId(branch)
return len(runOutput("git", "log", "--grep", s, "origin/master")) > 0
}
func headChangeId(branch string) string {
const (
p = "Change-Id: "
f = "--format=format:%b"
)
for _, s := range runLines("git", "log", "-n", "1", f, branch, "--") {
if strings.HasPrefix(s, p) {
return strings.TrimSpace(strings.TrimPrefix(s, p))
}
}
dief("No Change-Id line found in HEAD commit.\n")
panic("unreachable")
}
func goToRepoRoot() {
prevDir, err := os.Getwd()
if err != nil {
dief("could not get current directory: %v\n", err)
}
for {
if _, err := os.Stat(".git"); err == nil {
return
}
if err := os.Chdir(".."); err != nil {
dief("could not chdir: %v\n", err)
}
currentDir, err := os.Getwd()
if err != nil {
dief("could not get current directory: %v\n", err)
}
if currentDir == prevDir {
dief("Git root not found. Run from within the Git tree please.\n")
}
prevDir = currentDir
}
}
func installHook() {
_, err := os.Stat(hookFile)
if err == nil {
return
}
if !os.IsNotExist(err) {
dief("checking for hook file: %v\n", err)
}
verbosef("Presubmit hook to add Change-Id to commit messages is missing.\n"+
"Automatically creating it at %v.\n", hookFile)
hookContent := []byte(commitMsgHook)
if err := ioutil.WriteFile(hookFile, hookContent, 0700); err != nil {
dief("writing hook file: %v\n", err)
}
}
func dief(format string, args ...interface{}) {
fmt.Fprintf(os.Stderr, format, args...)
os.Exit(1)
}
func run(command string, args ...string) {
if err := runErr(command, args...); err != nil {
if !*verbose {
// If we're not in verbose mode, print the command
// before dying to give context to the failure.
fmt.Fprintln(os.Stderr, commandString(command, args))
}
dief("%v\n", err)
}
}
func runErr(command string, args ...string) error {
if *verbose {
fmt.Fprintln(os.Stderr, commandString(command, args))
}
cmd := exec.Command(command, args...)
cmd.Stdin = os.Stdin
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
return cmd.Run()
}
func verbosef(format string, args ...interface{}) {
if *verbose {
fmt.Fprintf(os.Stderr, format, args...)
}
}
func runOutput(command string, args ...string) string {
b, err := exec.Command(command, args...).CombinedOutput()
if err != nil {
dief("%v\n%s\nerror: %v\n", b, commandString(command, args), err)
}
return string(b)
}
func runLines(command string, args ...string) []string {
return strings.Split(runOutput(command, args...), "\n")
}
func commandString(command string, args []string) string {
return strings.Join(append([]string{command}, args...), " ")
}