-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Diff zoekt git settings #635
Open
xvandish
wants to merge
2
commits into
sourcegraph:main
Choose a base branch
from
xvandish:diff-zoekt-git-settings-for-upstream
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,30 +22,81 @@ import ( | |
"os/exec" | ||
"path/filepath" | ||
"sort" | ||
"strings" | ||
|
||
git "github.com/go-git/go-git/v5" | ||
"github.com/go-git/go-git/v5/config" | ||
) | ||
|
||
// returns a list of all the git zoekt settings that have changed or are | ||
// new. To do this it gets the current config, turns into into a map and diffs | ||
// against the new settings map | ||
func getZoektSettingsToUpdate(repoDest string, newSettings map[string]string, newSettingsKeys []string) ([]string, error) { | ||
cmd := exec.Command("git", "-C", repoDest, "config", "--local", "--get-regexp", "zoekt") | ||
outBuf := &bytes.Buffer{} | ||
errBuf := &bytes.Buffer{} | ||
cmd.Stdout = outBuf | ||
cmd.Stderr = errBuf | ||
|
||
if err := cmd.Run(); err != nil { | ||
log.Printf("error getting settings\n") | ||
return nil, err | ||
} | ||
|
||
// collect every current setting and put it into a map | ||
oldSettings := make(map[string]string) | ||
for _, cl := range bytes.Split(outBuf.Bytes(), []byte{'\n'}) { | ||
if len(cl) == 0 { | ||
continue | ||
} | ||
|
||
parts := bytes.SplitN(cl, []byte{' '}, 2) | ||
if len(parts) != 2 { | ||
return nil, fmt.Errorf("more parts than expected in git config key/v line") | ||
} | ||
oldSettings[string(parts[0])] = strings.TrimSpace(string(parts[1])) | ||
} | ||
|
||
// get the list of settings that have changed, or are new | ||
var settingsToUpdate []string | ||
for _, k := range newSettingsKeys { | ||
oldVal, oldHasSetting := oldSettings[k] | ||
if (!oldHasSetting && newSettings[k] != "") || oldVal != newSettings[k] { | ||
settingsToUpdate = append(settingsToUpdate, k) | ||
} | ||
} | ||
|
||
return settingsToUpdate, nil | ||
} | ||
|
||
// Updates the zoekt.* git config options after a repo is cloned. | ||
// Once a repo is cloned, we can no longer use the --config flag to update all | ||
// of it's zoekt.* settings at once. `git config` is limited to one option at once. | ||
func updateZoektGitConfig(repoDest string, settings map[string]string) error { | ||
func updateZoektGitConfig(repoDest string, settings map[string]string) (bool, error) { | ||
var keys []string | ||
for k := range settings { | ||
keys = append(keys, k) | ||
} | ||
sort.Strings(keys) | ||
|
||
for _, k := range keys { | ||
settingsToUpdate, err := getZoektSettingsToUpdate(repoDest, settings, keys) | ||
if err != nil { | ||
return false, err | ||
} | ||
Comment on lines
+82
to
+85
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if this fails do you maybe wanna fallback to just updating everything? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah sure that makes sense, good idea |
||
|
||
if len(settingsToUpdate) == 0 { | ||
return false, nil | ||
} | ||
|
||
for _, k := range settingsToUpdate { | ||
if settings[k] != "" { | ||
if err := exec.Command("git", "-C", repoDest, "config", k, settings[k]).Run(); err != nil { | ||
return err | ||
return false, err | ||
} | ||
} | ||
} | ||
|
||
return nil | ||
return true, nil | ||
} | ||
|
||
// CloneRepo clones one repository, adding the given config | ||
|
@@ -61,9 +112,13 @@ func CloneRepo(destDir, name, cloneURL string, settings map[string]string) (stri | |
repoDest := filepath.Join(parent, filepath.Base(name)+".git") | ||
if _, err := os.Lstat(repoDest); err == nil { | ||
// Repository exists, ensure settings are in sync | ||
if err := updateZoektGitConfig(repoDest, settings); err != nil { | ||
hadUpdate, err := updateZoektGitConfig(repoDest, settings) | ||
if err != nil { | ||
return "", fmt.Errorf("failed to update repository settings: %w", err) | ||
} | ||
if hadUpdate { | ||
return repoDest, nil | ||
} | ||
return "", nil | ||
} | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you don't use errBuf