Welcome to mirror list, hosted at ThFree Co, Russian Federation.

commits_helper.go « commit « service « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 83b07907030e1cf9f1c22aca2e711aa0c27fce9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package commit

import (
	"context"

	"github.com/grpc-ecosystem/go-grpc-middleware/logging/logrus"
	"gitlab.com/gitlab-org/gitaly-proto/go/gitalypb"
	"gitlab.com/gitlab-org/gitaly/internal/git/log"
)

type commitsSender interface {
	Send([]*gitalypb.GitCommit) error
}

const commitsPerChunk = 20

func sendCommits(ctx context.Context, sender commitsSender, repo *gitalypb.Repository, revisionRange []string, paths []string, extraArgs ...string) error {
	cmd, err := log.GitLogCommand(ctx, repo, revisionRange, paths, extraArgs...)
	if err != nil {
		return err
	}

	logParser, err := log.NewLogParser(ctx, repo, cmd)
	if err != nil {
		return err
	}

	var commits []*gitalypb.GitCommit

	for logParser.Parse() {
		commit := logParser.Commit()

		if len(commits) >= commitsPerChunk {
			if err := sender.Send(commits); err != nil {
				return err
			}
			commits = nil
		}

		commits = append(commits, commit)
	}

	if err := logParser.Err(); err != nil {
		return err
	}

	if err := sender.Send(commits); err != nil {
		return err
	}

	if err := cmd.Wait(); err != nil {
		// We expect this error to be caused by non-existing references. In that
		// case, we just log the error and send no commits to the `sender`.
		grpc_logrus.Extract(ctx).WithError(err).Info("ignoring git-log error")
	}

	return nil
}