|
|
@ -5,10 +5,7 @@ |
|
|
|
package git |
|
|
|
package git |
|
|
|
|
|
|
|
|
|
|
|
import ( |
|
|
|
import ( |
|
|
|
"fmt" |
|
|
|
|
|
|
|
"path" |
|
|
|
|
|
|
|
"path/filepath" |
|
|
|
"path/filepath" |
|
|
|
"runtime" |
|
|
|
|
|
|
|
"sort" |
|
|
|
"sort" |
|
|
|
"strconv" |
|
|
|
"strconv" |
|
|
|
"strings" |
|
|
|
"strings" |
|
|
@ -147,112 +144,147 @@ func (tes Entries) Sort() { |
|
|
|
sort.Sort(tes) |
|
|
|
sort.Sort(tes) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
type commitInfo struct { |
|
|
|
// getCommitInfoState transient state for getting commit info for entries
|
|
|
|
entryName string |
|
|
|
type getCommitInfoState struct { |
|
|
|
infos []interface{} |
|
|
|
entries map[string]*TreeEntry // map from filepath to entry
|
|
|
|
err error |
|
|
|
commits map[string]*Commit // map from entry name to commit
|
|
|
|
|
|
|
|
lastCommitHash string |
|
|
|
|
|
|
|
lastCommit *Commit |
|
|
|
|
|
|
|
treePath string |
|
|
|
|
|
|
|
headCommit *Commit |
|
|
|
|
|
|
|
nextSearchSize int // next number of commits to search for
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// GetCommitsInfo takes advantages of concurrency to speed up getting information
|
|
|
|
func initGetCommitInfoState(entries Entries, headCommit *Commit, treePath string) *getCommitInfoState { |
|
|
|
// of all commits that are corresponding to these entries. This method will automatically
|
|
|
|
entriesByPath := make(map[string]*TreeEntry, len(entries)) |
|
|
|
// choose the right number of goroutine (concurrency) to use related of the host CPU.
|
|
|
|
for _, entry := range entries { |
|
|
|
|
|
|
|
entriesByPath[filepath.Join(treePath, entry.Name())] = entry |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return &getCommitInfoState{ |
|
|
|
|
|
|
|
entries: entriesByPath, |
|
|
|
|
|
|
|
commits: make(map[string]*Commit, len(entriesByPath)), |
|
|
|
|
|
|
|
treePath: treePath, |
|
|
|
|
|
|
|
headCommit: headCommit, |
|
|
|
|
|
|
|
nextSearchSize: 16, |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// GetCommitsInfo gets information of all commits that are corresponding to these entries
|
|
|
|
func (tes Entries) GetCommitsInfo(commit *Commit, treePath string) ([][]interface{}, error) { |
|
|
|
func (tes Entries) GetCommitsInfo(commit *Commit, treePath string) ([][]interface{}, error) { |
|
|
|
return tes.GetCommitsInfoWithCustomConcurrency(commit, treePath, 0) |
|
|
|
state := initGetCommitInfoState(tes, commit, treePath) |
|
|
|
|
|
|
|
if err := getCommitsInfo(state); err != nil { |
|
|
|
|
|
|
|
return nil, err |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
commitsInfo := make([][]interface{}, len(tes)) |
|
|
|
|
|
|
|
for i, entry := range tes { |
|
|
|
|
|
|
|
commit = state.commits[filepath.Join(treePath, entry.Name())] |
|
|
|
|
|
|
|
switch entry.Type { |
|
|
|
|
|
|
|
case ObjectCommit: |
|
|
|
|
|
|
|
subModuleURL := "" |
|
|
|
|
|
|
|
if subModule, err := state.headCommit.GetSubModule(entry.Name()); err != nil { |
|
|
|
|
|
|
|
return nil, err |
|
|
|
|
|
|
|
} else if subModule != nil { |
|
|
|
|
|
|
|
subModuleURL = subModule.URL |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
subModuleFile := NewSubModuleFile(commit, subModuleURL, entry.ID.String()) |
|
|
|
|
|
|
|
commitsInfo[i] = []interface{}{entry, subModuleFile} |
|
|
|
|
|
|
|
default: |
|
|
|
|
|
|
|
commitsInfo[i] = []interface{}{entry, commit} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return commitsInfo, nil |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// GetCommitsInfoWithCustomConcurrency takes advantages of concurrency to speed up getting information
|
|
|
|
func (state *getCommitInfoState) nextCommit(hash string) { |
|
|
|
// of all commits that are corresponding to these entries. If the given maxConcurrency is negative or
|
|
|
|
state.lastCommitHash = hash |
|
|
|
// equal to zero: the right number of goroutine (concurrency) to use will be chosen related of the
|
|
|
|
state.lastCommit = nil |
|
|
|
// host CPU.
|
|
|
|
} |
|
|
|
func (tes Entries) GetCommitsInfoWithCustomConcurrency(commit *Commit, treePath string, maxConcurrency int) ([][]interface{}, error) { |
|
|
|
|
|
|
|
if len(tes) == 0 { |
|
|
|
func (state *getCommitInfoState) commit() (*Commit, error) { |
|
|
|
return nil, nil |
|
|
|
var err error |
|
|
|
|
|
|
|
if state.lastCommit == nil { |
|
|
|
|
|
|
|
state.lastCommit, err = state.headCommit.repo.GetCommit(state.lastCommitHash) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return state.lastCommit, err |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if maxConcurrency <= 0 { |
|
|
|
func (state *getCommitInfoState) update(path string) error { |
|
|
|
maxConcurrency = runtime.NumCPU() |
|
|
|
relPath, err := filepath.Rel(state.treePath, path) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
return nil |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
var entryPath string |
|
|
|
|
|
|
|
if index := strings.IndexRune(relPath, '/'); index >= 0 { |
|
|
|
|
|
|
|
entryPath = filepath.Join(state.treePath, relPath[:index]) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
entryPath = path |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if _, ok := state.entries[entryPath]; !ok { |
|
|
|
|
|
|
|
return nil |
|
|
|
|
|
|
|
} else if _, ok := state.commits[entryPath]; ok { |
|
|
|
|
|
|
|
return nil |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
state.commits[entryPath], err = state.commit() |
|
|
|
|
|
|
|
return err |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Length of taskChan determines how many goroutines (subprocesses) can run at the same time.
|
|
|
|
func getCommitsInfo(state *getCommitInfoState) error { |
|
|
|
// The length of revChan should be same as taskChan so goroutines whoever finished job can
|
|
|
|
for len(state.entries) > len(state.commits) { |
|
|
|
// exit as early as possible, only store data inside channel.
|
|
|
|
if err := getNextCommitInfos(state); err != nil { |
|
|
|
taskChan := make(chan bool, maxConcurrency) |
|
|
|
return err |
|
|
|
revChan := make(chan commitInfo, maxConcurrency) |
|
|
|
} |
|
|
|
doneChan := make(chan error) |
|
|
|
} |
|
|
|
|
|
|
|
return nil |
|
|
|
// Receive loop will exit when it collects same number of data pieces as tree entries.
|
|
|
|
} |
|
|
|
// It notifies doneChan before exits or notify early with possible error.
|
|
|
|
|
|
|
|
infoMap := make(map[string][]interface{}, len(tes)) |
|
|
|
|
|
|
|
go func() { |
|
|
|
|
|
|
|
i := 0 |
|
|
|
|
|
|
|
for info := range revChan { |
|
|
|
|
|
|
|
if info.err != nil { |
|
|
|
|
|
|
|
doneChan <- info.err |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
infoMap[info.entryName] = info.infos |
|
|
|
func getNextCommitInfos(state *getCommitInfoState) error { |
|
|
|
i++ |
|
|
|
logOutput, err := logCommand(state.lastCommitHash, state).RunInDir(state.headCommit.repo.Path) |
|
|
|
if i == len(tes) { |
|
|
|
if err != nil { |
|
|
|
|
|
|
|
return err |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
lines := strings.Split(logOutput, "\n") |
|
|
|
|
|
|
|
i := 0 |
|
|
|
|
|
|
|
for i < len(lines) { |
|
|
|
|
|
|
|
state.nextCommit(lines[i]) |
|
|
|
|
|
|
|
i++ |
|
|
|
|
|
|
|
for ; i < len(lines); i++ { |
|
|
|
|
|
|
|
path := lines[i] |
|
|
|
|
|
|
|
if path == "" { |
|
|
|
break |
|
|
|
break |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
state.update(path) |
|
|
|
} |
|
|
|
} |
|
|
|
doneChan <- nil |
|
|
|
i++ // skip blank line
|
|
|
|
}() |
|
|
|
if len(state.entries) == len(state.commits) { |
|
|
|
|
|
|
|
break |
|
|
|
for i := range tes { |
|
|
|
|
|
|
|
// When taskChan is idle (or has empty slots), put operation will not block.
|
|
|
|
|
|
|
|
// However when taskChan is full, code will block and wait any running goroutines to finish.
|
|
|
|
|
|
|
|
taskChan <- true |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if tes[i].Type != ObjectCommit { |
|
|
|
|
|
|
|
go func(i int) { |
|
|
|
|
|
|
|
cinfo := commitInfo{entryName: tes[i].Name()} |
|
|
|
|
|
|
|
c, err := commit.GetCommitByPath(filepath.Join(treePath, tes[i].Name())) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
cinfo.err = fmt.Errorf("GetCommitByPath (%s/%s): %v", treePath, tes[i].Name(), err) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
cinfo.infos = []interface{}{tes[i], c} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
revChan <- cinfo |
|
|
|
|
|
|
|
<-taskChan // Clear one slot from taskChan to allow new goroutines to start.
|
|
|
|
|
|
|
|
}(i) |
|
|
|
|
|
|
|
continue |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Handle submodule
|
|
|
|
|
|
|
|
go func(i int) { |
|
|
|
|
|
|
|
cinfo := commitInfo{entryName: tes[i].Name()} |
|
|
|
|
|
|
|
sm, err := commit.GetSubModule(path.Join(treePath, tes[i].Name())) |
|
|
|
|
|
|
|
if err != nil && !IsErrNotExist(err) { |
|
|
|
|
|
|
|
cinfo.err = fmt.Errorf("GetSubModule (%s/%s): %v", treePath, tes[i].Name(), err) |
|
|
|
|
|
|
|
revChan <- cinfo |
|
|
|
|
|
|
|
return |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
smURL := "" |
|
|
|
|
|
|
|
if sm != nil { |
|
|
|
|
|
|
|
smURL = sm.URL |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
c, err := commit.GetCommitByPath(filepath.Join(treePath, tes[i].Name())) |
|
|
|
|
|
|
|
if err != nil { |
|
|
|
|
|
|
|
cinfo.err = fmt.Errorf("GetCommitByPath (%s/%s): %v", treePath, tes[i].Name(), err) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
cinfo.infos = []interface{}{tes[i], NewSubModuleFile(c, smURL, tes[i].ID.String())} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
revChan <- cinfo |
|
|
|
|
|
|
|
<-taskChan |
|
|
|
|
|
|
|
}(i) |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return nil |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if err := <-doneChan; err != nil { |
|
|
|
func logCommand(exclusiveStartHash string, state *getCommitInfoState) *Command { |
|
|
|
return nil, err |
|
|
|
var commitHash string |
|
|
|
|
|
|
|
if len(exclusiveStartHash) == 0 { |
|
|
|
|
|
|
|
commitHash = "HEAD" |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
commitHash = exclusiveStartHash + "^" |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
var command *Command |
|
|
|
commitsInfo := make([][]interface{}, len(tes)) |
|
|
|
numRemainingEntries := len(state.entries) - len(state.commits) |
|
|
|
for i := 0; i < len(tes); i++ { |
|
|
|
if numRemainingEntries < 32 { |
|
|
|
commitsInfo[i] = infoMap[tes[i].Name()] |
|
|
|
searchSize := (numRemainingEntries + 1) / 2 |
|
|
|
|
|
|
|
command = NewCommand("log", prettyLogFormat, "--name-only", |
|
|
|
|
|
|
|
"-"+strconv.Itoa(searchSize), commitHash, "--") |
|
|
|
|
|
|
|
for path, entry := range state.entries { |
|
|
|
|
|
|
|
if _, ok := state.commits[entry.Name()]; !ok { |
|
|
|
|
|
|
|
command.AddArguments(path) |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
command = NewCommand("log", prettyLogFormat, "--name-only", |
|
|
|
|
|
|
|
"-"+strconv.Itoa(state.nextSearchSize), commitHash, "--", state.treePath) |
|
|
|
} |
|
|
|
} |
|
|
|
return commitsInfo, nil |
|
|
|
state.nextSearchSize += state.nextSearchSize |
|
|
|
|
|
|
|
return command |
|
|
|
} |
|
|
|
} |
|
|
|