2020-12-17 07:00:47 -07:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2021-08-24 10:47:09 -06:00
|
|
|
//go:build !gogit
|
2020-12-17 07:00:47 -07:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
2021-06-06 17:44:58 -06:00
|
|
|
"context"
|
2020-12-17 07:00:47 -07:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"path"
|
|
|
|
"sort"
|
2021-06-25 10:54:08 -06:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2020-12-17 07:00:47 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetCommitsInfo gets information of all commits that are corresponding to these entries
|
2021-06-06 17:44:58 -06:00
|
|
|
func (tes Entries) GetCommitsInfo(ctx context.Context, commit *Commit, treePath string, cache *LastCommitCache) ([]CommitInfo, *Commit, error) {
|
2020-12-17 07:00:47 -07:00
|
|
|
entryPaths := make([]string, len(tes)+1)
|
|
|
|
// Get the commit for the treePath itself
|
|
|
|
entryPaths[0] = ""
|
|
|
|
for i, entry := range tes {
|
|
|
|
entryPaths[i+1] = entry.Name()
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
|
|
|
|
|
|
|
var revs map[string]*Commit
|
|
|
|
if cache != nil {
|
|
|
|
var unHitPaths []string
|
2021-06-06 17:44:58 -06:00
|
|
|
revs, unHitPaths, err = getLastCommitForPathsByCache(ctx, commit.ID.String(), treePath, entryPaths, cache)
|
2020-12-17 07:00:47 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if len(unHitPaths) > 0 {
|
|
|
|
sort.Strings(unHitPaths)
|
2021-10-08 07:08:22 -06:00
|
|
|
commits, err := GetLastCommitForPaths(ctx, cache, commit, treePath, unHitPaths)
|
2020-12-17 07:00:47 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2021-06-20 16:00:46 -06:00
|
|
|
for pth, found := range commits {
|
|
|
|
revs[pth] = found
|
2020-12-17 07:00:47 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sort.Strings(entryPaths)
|
2021-10-08 07:08:22 -06:00
|
|
|
revs, err = GetLastCommitForPaths(ctx, nil, commit, treePath, entryPaths)
|
2020-12-17 07:00:47 -07:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
commitsInfo := make([]CommitInfo, len(tes))
|
|
|
|
for i, entry := range tes {
|
|
|
|
commitsInfo[i] = CommitInfo{
|
|
|
|
Entry: entry,
|
|
|
|
}
|
2021-10-08 07:08:22 -06:00
|
|
|
|
|
|
|
// Check if we have found a commit for this entry in time
|
2020-12-17 07:00:47 -07:00
|
|
|
if entryCommit, ok := revs[entry.Name()]; ok {
|
|
|
|
commitsInfo[i].Commit = entryCommit
|
2021-06-20 16:00:46 -06:00
|
|
|
} else {
|
2021-06-25 10:54:08 -06:00
|
|
|
log.Debug("missing commit for %s", entry.Name())
|
2020-12-17 07:00:47 -07:00
|
|
|
}
|
2021-10-08 07:08:22 -06:00
|
|
|
|
|
|
|
// If the entry if a submodule add a submodule file for this
|
|
|
|
if entry.IsSubModule() {
|
|
|
|
subModuleURL := ""
|
|
|
|
var fullPath string
|
|
|
|
if len(treePath) > 0 {
|
|
|
|
fullPath = treePath + "/" + entry.Name()
|
|
|
|
} else {
|
|
|
|
fullPath = entry.Name()
|
|
|
|
}
|
|
|
|
if subModule, err := commit.GetSubModule(fullPath); err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
} else if subModule != nil {
|
|
|
|
subModuleURL = subModule.URL
|
|
|
|
}
|
|
|
|
subModuleFile := NewSubModuleFile(commitsInfo[i].Commit, subModuleURL, entry.ID.String())
|
|
|
|
commitsInfo[i].SubModuleFile = subModuleFile
|
|
|
|
}
|
2020-12-17 07:00:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve the commit for the treePath itself (see above). We basically
|
|
|
|
// get it for free during the tree traversal and it's used for listing
|
|
|
|
// pages to display information about newest commit for a given path.
|
|
|
|
var treeCommit *Commit
|
|
|
|
var ok bool
|
|
|
|
if treePath == "" {
|
|
|
|
treeCommit = commit
|
|
|
|
} else if treeCommit, ok = revs[""]; ok {
|
|
|
|
treeCommit.repo = commit.repo
|
|
|
|
}
|
|
|
|
return commitsInfo, treeCommit, nil
|
|
|
|
}
|
|
|
|
|
2021-06-06 17:44:58 -06:00
|
|
|
func getLastCommitForPathsByCache(ctx context.Context, commitID, treePath string, paths []string, cache *LastCommitCache) (map[string]*Commit, []string, error) {
|
2021-11-30 13:06:32 -07:00
|
|
|
wr, rd, cancel := cache.repo.CatFileBatch(ctx)
|
2021-05-01 19:16:08 -06:00
|
|
|
defer cancel()
|
|
|
|
|
2020-12-17 07:00:47 -07:00
|
|
|
var unHitEntryPaths []string
|
2022-01-20 10:46:10 -07:00
|
|
|
results := make(map[string]*Commit)
|
2020-12-17 07:00:47 -07:00
|
|
|
for _, p := range paths {
|
2021-05-01 19:16:08 -06:00
|
|
|
lastCommit, err := cache.Get(commitID, path.Join(treePath, p), wr, rd)
|
2020-12-17 07:00:47 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
if lastCommit != nil {
|
|
|
|
results[p] = lastCommit.(*Commit)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
unHitEntryPaths = append(unHitEntryPaths, p)
|
|
|
|
}
|
|
|
|
|
|
|
|
return results, unHitEntryPaths, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetLastCommitForPaths returns last commit information
|
2021-10-08 07:08:22 -06:00
|
|
|
func GetLastCommitForPaths(ctx context.Context, cache *LastCommitCache, commit *Commit, treePath string, paths []string) (map[string]*Commit, error) {
|
2020-12-17 07:00:47 -07:00
|
|
|
// We read backwards from the commit to obtain all of the commits
|
2021-10-08 07:08:22 -06:00
|
|
|
revs, err := WalkGitLog(ctx, cache, commit.repo, commit, treePath, paths...)
|
2021-06-20 16:00:46 -06:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-12-17 07:00:47 -07:00
|
|
|
|
2021-11-30 13:06:32 -07:00
|
|
|
batchStdinWriter, batchReader, cancel := commit.repo.CatFileBatch(ctx)
|
2021-03-03 19:57:01 -07:00
|
|
|
defer cancel()
|
2020-12-17 07:00:47 -07:00
|
|
|
|
2021-06-20 16:00:46 -06:00
|
|
|
commitsMap := map[string]*Commit{}
|
2020-12-17 07:00:47 -07:00
|
|
|
commitsMap[commit.ID.String()] = commit
|
|
|
|
|
2021-06-20 16:00:46 -06:00
|
|
|
commitCommits := map[string]*Commit{}
|
|
|
|
for path, commitID := range revs {
|
2020-12-17 07:00:47 -07:00
|
|
|
c, ok := commitsMap[commitID]
|
|
|
|
if ok {
|
2021-06-20 16:00:46 -06:00
|
|
|
commitCommits[path] = c
|
2020-12-17 07:00:47 -07:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(commitID) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err := batchStdinWriter.Write([]byte(commitID + "\n"))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
_, typ, size, err := ReadBatchLine(batchReader)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if typ != "commit" {
|
|
|
|
return nil, fmt.Errorf("unexpected type: %s for commit id: %s", typ, commitID)
|
|
|
|
}
|
|
|
|
c, err = CommitFromReader(commit.repo, MustIDFromString(string(commitID)), io.LimitReader(batchReader, int64(size)))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-05-09 19:27:03 -06:00
|
|
|
if _, err := batchReader.Discard(1); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-06-20 16:00:46 -06:00
|
|
|
commitCommits[path] = c
|
2020-12-17 07:00:47 -07:00
|
|
|
}
|
|
|
|
|
2021-06-20 16:00:46 -06:00
|
|
|
return commitCommits, nil
|
2020-12-17 07:00:47 -07:00
|
|
|
}
|