2019-07-02 07:45:14 +05:30
// Copyright 2019 The Gitea Authors.
// All rights reserved.
2022-11-27 23:50:29 +05:30
// SPDX-License-Identifier: MIT
2019-07-02 07:45:14 +05:30
2021-08-24 22:17:09 +05:30
//go:build gogit
2020-12-17 19:30:47 +05:30
2019-07-02 07:45:14 +05:30
package git
import (
"os"
"path"
gitealog "code.gitea.io/gitea/modules/log"
2019-08-23 22:10:30 +05:30
2020-03-17 21:49:58 +05:30
"github.com/go-git/go-git/v5/plumbing/format/commitgraph"
cgobject "github.com/go-git/go-git/v5/plumbing/object/commitgraph"
2019-07-02 07:45:14 +05:30
)
// CommitNodeIndex returns the index for walking commit graph
func ( r * Repository ) CommitNodeIndex ( ) ( cgobject . CommitNodeIndex , * os . File ) {
indexPath := path . Join ( r . Path , "objects" , "info" , "commit-graph" )
file , err := os . Open ( indexPath )
if err == nil {
2023-12-19 06:48:42 +05:30
var index commitgraph . Index // TODO: in newer go-git, it might need to use "github.com/go-git/go-git/v5/plumbing/format/commitgraph/v2" package to compile
2019-07-02 07:45:14 +05:30
index , err = commitgraph . OpenFileIndex ( file )
if err == nil {
return cgobject . NewGraphCommitNodeIndex ( index , r . gogitRepo . Storer ) , file
}
}
if ! os . IsNotExist ( err ) {
gitealog . Warn ( "Unable to read commit-graph for %s: %v" , r . Path , err )
}
return cgobject . NewObjectCommitNodeIndex ( r . gogitRepo . Storer ) , nil
}