2016-12-29 00:44:32 +01:00
// Copyright 2016 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.
2019-11-16 08:47:57 +08:00
package gitgraph
2016-12-29 00:44:32 +01:00
import (
2020-07-16 20:24:36 +01:00
"bufio"
"bytes"
"context"
2016-12-29 00:44:32 +01:00
"fmt"
2020-07-16 20:24:36 +01:00
"os"
2016-12-29 00:44:32 +01:00
"strings"
2019-03-27 17:33:00 +08:00
"code.gitea.io/gitea/modules/git"
2018-07-23 16:12:06 +02:00
"code.gitea.io/gitea/modules/setting"
2016-12-29 00:44:32 +01:00
)
// GetCommitGraph return a list of commit (GraphItems) from all branches
2021-12-20 05:41:31 +01:00
func GetCommitGraph ( r * git . Repository , page , maxAllowedColors int , hidePRRefs bool , branches , files [ ] string ) ( * Graph , error ) {
2020-11-08 17:21:54 +00:00
format := "DATA:%D|%H|%ad|%h|%s"
2016-12-29 00:44:32 +01:00
2020-07-16 20:24:36 +01:00
if page == 0 {
page = 1
}
2022-10-15 18:49:26 +08:00
graphCmd := git . NewCommand ( r . Ctx , "log" , "--graph" , "--date-order" , "--decorate=full" )
2020-11-08 17:21:54 +00:00
if hidePRRefs {
2022-10-15 18:49:26 +08:00
graphCmd . AddArguments ( "--exclude=" + git . PullPrefix + "*" )
2020-11-08 17:21:54 +00:00
}
if len ( branches ) == 0 {
2022-10-15 18:49:26 +08:00
graphCmd . AddArguments ( "--all" )
2020-11-08 17:21:54 +00:00
}
2022-10-15 18:49:26 +08:00
graphCmd . AddArguments (
2016-12-29 00:44:32 +01:00
"-C" ,
"-M" ,
2022-10-23 22:44:45 +08:00
git . CmdArg ( fmt . Sprintf ( "-n %d" , setting . UI . GraphMaxCommitNum * page ) ) ,
2016-12-29 00:44:32 +01:00
"--date=iso" ,
2022-10-23 22:44:45 +08:00
git . CmdArg ( fmt . Sprintf ( "--pretty=format:%s" , format ) ) )
2020-11-08 17:21:54 +00:00
if len ( branches ) > 0 {
2022-10-15 18:49:26 +08:00
graphCmd . AddDynamicArguments ( branches ... )
2020-11-08 17:21:54 +00:00
}
if len ( files ) > 0 {
2022-10-23 22:44:45 +08:00
graphCmd . AddDashesAndList ( files ... )
2020-11-08 17:21:54 +00:00
}
2020-08-06 09:04:08 +01:00
graph := NewGraph ( )
2020-07-16 20:24:36 +01:00
stderr := new ( strings . Builder )
stdoutReader , stdoutWriter , err := os . Pipe ( )
2016-12-29 00:44:32 +01:00
if err != nil {
2020-07-16 20:24:36 +01:00
return nil , err
2016-12-29 00:44:32 +01:00
}
2020-07-16 20:24:36 +01:00
commitsToSkip := setting . UI . GraphMaxCommitNum * ( page - 1 )
scanner := bufio . NewScanner ( stdoutReader )
2022-04-01 10:55:30 +08:00
if err := graphCmd . Run ( & git . RunOpts {
Dir : r . Path ,
Stdout : stdoutWriter ,
Stderr : stderr ,
2022-02-11 13:47:22 +01:00
PipelineFunc : func ( ctx context . Context , cancel context . CancelFunc ) error {
_ = stdoutWriter . Close ( )
defer stdoutReader . Close ( )
parser := & Parser { }
parser . firstInUse = - 1
parser . maxAllowedColors = maxAllowedColors
if maxAllowedColors > 0 {
parser . availableColors = make ( [ ] int , maxAllowedColors )
for i := range parser . availableColors {
parser . availableColors [ i ] = i + 1
}
} else {
parser . availableColors = [ ] int { 1 , 2 }
2020-08-06 09:04:08 +01:00
}
2022-02-11 13:47:22 +01:00
for commitsToSkip > 0 && scanner . Scan ( ) {
line := scanner . Bytes ( )
dataIdx := bytes . Index ( line , [ ] byte ( "DATA:" ) )
if dataIdx < 0 {
dataIdx = len ( line )
}
starIdx := bytes . IndexByte ( line , '*' )
if starIdx >= 0 && starIdx < dataIdx {
commitsToSkip --
}
parser . ParseGlyphs ( line [ : dataIdx ] )
2020-07-16 20:24:36 +01:00
}
2020-08-06 09:04:08 +01:00
2022-02-11 13:47:22 +01:00
row := 0
// Skip initial non-commit lines
for scanner . Scan ( ) {
line := scanner . Bytes ( )
if bytes . IndexByte ( line , '*' ) >= 0 {
if err := parser . AddLineToGraph ( graph , row , line ) ; err != nil {
cancel ( )
return err
}
break
}
parser . ParseGlyphs ( line )
}
2020-08-06 09:04:08 +01:00
2022-02-11 13:47:22 +01:00
for scanner . Scan ( ) {
row ++
line := scanner . Bytes ( )
2020-08-06 09:04:08 +01:00
if err := parser . AddLineToGraph ( graph , row , line ) ; err != nil {
2020-07-16 20:24:36 +01:00
cancel ( )
return err
}
}
2022-02-11 13:47:22 +01:00
return scanner . Err ( )
} ,
2020-07-16 20:24:36 +01:00
} ) ; err != nil {
2020-08-06 09:04:08 +01:00
return graph , err
2016-12-29 00:44:32 +01:00
}
2020-08-06 09:04:08 +01:00
return graph , nil
2016-12-29 00:44:32 +01:00
}