mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
// Copyright 2020 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
//go:build !gogit |
|
|
|
package git |
|
|
|
import "code.gitea.io/gitea/modules/log" |
|
|
|
// Size returns the size of the entry |
|
func (te *TreeEntry) Size() int64 { |
|
if te.IsDir() { |
|
return 0 |
|
} else if te.sized { |
|
return te.size |
|
} |
|
|
|
wr, rd, cancel, err := te.ptree.repo.CatFileBatchCheck(te.ptree.repo.Ctx) |
|
if err != nil { |
|
log.Debug("error whilst reading size for %s in %s. Error: %v", te.ID.String(), te.ptree.repo.Path, err) |
|
return 0 |
|
} |
|
defer cancel() |
|
_, err = wr.Write([]byte(te.ID.String() + "\n")) |
|
if err != nil { |
|
log.Debug("error whilst reading size for %s in %s. Error: %v", te.ID.String(), te.ptree.repo.Path, err) |
|
return 0 |
|
} |
|
_, _, te.size, err = ReadBatchLine(rd) |
|
if err != nil { |
|
log.Debug("error whilst reading size for %s in %s. Error: %v", te.ID.String(), te.ptree.repo.Path, err) |
|
return 0 |
|
} |
|
|
|
te.sized = true |
|
return te.size |
|
} |
|
|
|
// Blob returns the blob object the entry |
|
func (te *TreeEntry) Blob() *Blob { |
|
return &Blob{ |
|
ID: te.ID, |
|
name: te.Name(), |
|
size: te.size, |
|
gotSize: te.sized, |
|
repo: te.ptree.repo, |
|
} |
|
}
|
|
|