mirror of
https://github.com/go-gitea/gitea.git
synced 2026-07-26 10:41:55 +00:00
before: gitrepo vs git packages after: git package fully handle all git operations by the way, use `WithRepo(repo)` instead of `WithDir(repo.Path)` to hide path details. benefits: 1. remove all unnecessary wrappers, developers no need to struggle with "which package should be used" 2. simplify code, RepositoryFacade can (will) be used everywhere, all "path" details are (will be) hidden
59 lines
1.3 KiB
Go
59 lines
1.3 KiB
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package pipeline
|
|
|
|
import (
|
|
"bufio"
|
|
"context"
|
|
"errors"
|
|
"strings"
|
|
|
|
"gitea.dev/modules/git"
|
|
"gitea.dev/modules/git/gitcmd"
|
|
|
|
"golang.org/x/sync/errgroup"
|
|
)
|
|
|
|
func fillResultNameRev(ctx context.Context, repo git.RepositoryFacade, results []*LFSResult) error {
|
|
// Should really use a go-git function here but name-rev is not completed and recapitulating it is not simple
|
|
wg := errgroup.Group{}
|
|
cmd := gitcmd.NewCommand("name-rev", "--stdin", "--name-only", "--always").WithRepo(repo)
|
|
stdin, stdinClose := cmd.MakeStdinPipe()
|
|
stdout, stdoutClose := cmd.MakeStdoutPipe()
|
|
defer stdinClose()
|
|
defer stdoutClose()
|
|
|
|
wg.Go(func() error {
|
|
scanner := bufio.NewScanner(stdout)
|
|
i := 0
|
|
for scanner.Scan() {
|
|
line := scanner.Text()
|
|
if len(line) == 0 {
|
|
continue
|
|
}
|
|
result := results[i]
|
|
result.FullCommitName = line
|
|
result.BranchName = strings.Split(line, "~")[0]
|
|
i++
|
|
}
|
|
return scanner.Err()
|
|
})
|
|
wg.Go(func() error {
|
|
defer stdinClose()
|
|
for _, result := range results {
|
|
_, err := stdin.Write([]byte(result.SHA))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = stdin.Write([]byte{'\n'})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
err := cmd.RunWithStderr(ctx)
|
|
return errors.Join(err, wg.Wait())
|
|
}
|