aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gogits
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2017-03-12 01:59:48 -0500
committerUnknwon <u@gogs.io>2017-03-12 01:59:48 -0500
commitbb19bb601e25201982b6b8d205d1a2d237ff22ad (patch)
tree35773ef2bdce0fbfc4189391c869a173c8dd3757 /vendor/github.com/gogits
parent05dbd3f7d78162bf06785faf0ea862fa2dc4f012 (diff)
repo: able to view size (#1158)
Diffstat (limited to 'vendor/github.com/gogits')
-rw-r--r--vendor/github.com/gogits/git-module/git.go2
-rw-r--r--vendor/github.com/gogits/git-module/repo.go59
2 files changed, 60 insertions, 1 deletions
diff --git a/vendor/github.com/gogits/git-module/git.go b/vendor/github.com/gogits/git-module/git.go
index 3eef5db5..28426acd 100644
--- a/vendor/github.com/gogits/git-module/git.go
+++ b/vendor/github.com/gogits/git-module/git.go
@@ -10,7 +10,7 @@ import (
"time"
)
-const _VERSION = "0.4.13"
+const _VERSION = "0.5.0"
func Version() string {
return _VERSION
diff --git a/vendor/github.com/gogits/git-module/repo.go b/vendor/github.com/gogits/git-module/repo.go
index 60105590..7a8e872b 100644
--- a/vendor/github.com/gogits/git-module/repo.go
+++ b/vendor/github.com/gogits/git-module/repo.go
@@ -11,7 +11,10 @@ import (
"os"
"path"
"path/filepath"
+ "strings"
"time"
+
+ "github.com/Unknwon/com"
)
// Repository represents a Git repository.
@@ -219,3 +222,59 @@ func MoveFile(repoPath, oldTreeName, newTreeName string) error {
_, err := NewCommand("mv").AddArguments(oldTreeName, newTreeName).RunInDir(repoPath)
return err
}
+
+// CountObject represents disk usage report of Git repository.
+type CountObject struct {
+ Count int64
+ Size int64
+ InPack int64
+ Packs int64
+ SizePack int64
+ PrunePackable int64
+ Garbage int64
+ SizeGarbage int64
+}
+
+const (
+ _STAT_COUNT = "count: "
+ _STAT_SIZE = "size: "
+ _STAT_IN_PACK = "in-pack: "
+ _STAT_PACKS = "packs: "
+ _STAT_SIZE_PACK = "size-pack: "
+ _STAT_PRUNE_PACKABLE = "prune-packable: "
+ _STAT_GARBAGE = "garbage: "
+ _STAT_SIZE_GARBAGE = "size-garbage: "
+)
+
+// GetRepoSize returns disk usage report of repository in given path.
+func GetRepoSize(repoPath string) (*CountObject, error) {
+ cmd := NewCommand("count-objects", "-v")
+ stdout, err := cmd.RunInDir(repoPath)
+ if err != nil {
+ return nil, err
+ }
+
+ countObject := new(CountObject)
+ for _, line := range strings.Split(stdout, "\n") {
+ switch {
+ case strings.HasPrefix(line, _STAT_COUNT):
+ countObject.Count = com.StrTo(line[7:]).MustInt64()
+ case strings.HasPrefix(line, _STAT_SIZE):
+ countObject.Size = com.StrTo(line[6:]).MustInt64() * 1024
+ case strings.HasPrefix(line, _STAT_IN_PACK):
+ countObject.InPack = com.StrTo(line[9:]).MustInt64() * 1024
+ case strings.HasPrefix(line, _STAT_PACKS):
+ countObject.Packs = com.StrTo(line[7:]).MustInt64()
+ case strings.HasPrefix(line, _STAT_SIZE_PACK):
+ countObject.SizePack = com.StrTo(line[11:]).MustInt64() * 1024
+ case strings.HasPrefix(line, _STAT_PRUNE_PACKABLE):
+ countObject.PrunePackable = com.StrTo(line[16:]).MustInt64()
+ case strings.HasPrefix(line, _STAT_GARBAGE):
+ countObject.Garbage = com.StrTo(line[9:]).MustInt64()
+ case strings.HasPrefix(line, _STAT_SIZE_GARBAGE):
+ countObject.SizeGarbage = com.StrTo(line[14:]).MustInt64() * 1024
+ }
+ }
+
+ return countObject, nil
+}