vendor: update github.com/gogits/git-module

This commit is contained in:
Unknwon
2018-03-02 02:17:04 -05:00
parent 6f2347fc71
commit 17d2a9c435
4 changed files with 14 additions and 9 deletions

View File

@@ -18,11 +18,16 @@ type Blob struct {
// Data gets content of blob all at once and wrap it as io.Reader.
// This can be very slow and memory consuming for huge content.
func (b *Blob) Data() (io.Reader, error) {
stdout, err := NewCommand("show", b.ID.String()).RunInDirBytes(b.repo.Path)
if err != nil {
return nil, err
stdout := new(bytes.Buffer)
stderr := new(bytes.Buffer)
// Preallocate memory to save ~50% memory usage on big files.
stdout.Grow(int(b.Size() + 2048))
if err := b.DataPipeline(stdout, stderr); err != nil {
return nil, concatenateError(err, stderr.String())
}
return bytes.NewBuffer(stdout), nil
return stdout, nil
}
func (b *Blob) DataPipeline(stdout, stderr io.Writer) error {