You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

repo_commitgraph_gogit.go 1003B

1234567891011121314151617181920212223242526272829303132333435363738
  1. // Copyright 2019 The Gitea Authors.
  2. // All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. //go:build gogit
  6. package git
  7. import (
  8. "os"
  9. "path"
  10. gitealog "code.gitea.io/gitea/modules/log"
  11. "github.com/go-git/go-git/v5/plumbing/format/commitgraph"
  12. cgobject "github.com/go-git/go-git/v5/plumbing/object/commitgraph"
  13. )
  14. // CommitNodeIndex returns the index for walking commit graph
  15. func (r *Repository) CommitNodeIndex() (cgobject.CommitNodeIndex, *os.File) {
  16. indexPath := path.Join(r.Path, "objects", "info", "commit-graph")
  17. file, err := os.Open(indexPath)
  18. if err == nil {
  19. var index commitgraph.Index
  20. index, err = commitgraph.OpenFileIndex(file)
  21. if err == nil {
  22. return cgobject.NewGraphCommitNodeIndex(index, r.gogitRepo.Storer), file
  23. }
  24. }
  25. if !os.IsNotExist(err) {
  26. gitealog.Warn("Unable to read commit-graph for %s: %v", r.Path, err)
  27. }
  28. return cgobject.NewObjectCommitNodeIndex(r.gogitRepo.Storer), nil
  29. }