diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2018-12-10 20:18:50 +0100 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2018-12-10 20:18:50 +0100 |
commit | 12dc3ef13e5c783b9e304aa8b6a2f7097880ab87 (patch) | |
tree | 9425626a16f47f73fc7dd2128d1ea51b5d1be5a3 /storage/transactional/shallow.go | |
parent | a2b39f540e5b07cf361b530e19de30707b8ca0d7 (diff) | |
download | go-git-12dc3ef13e5c783b9e304aa8b6a2f7097880ab87.tar.gz |
storage: transactional, new storage with transactional capabilities
Signed-off-by: Máximo Cuadros <mcuadros@gmail.com>
Diffstat (limited to 'storage/transactional/shallow.go')
-rw-r--r-- | storage/transactional/shallow.go | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/storage/transactional/shallow.go b/storage/transactional/shallow.go new file mode 100644 index 0000000..07663d4 --- /dev/null +++ b/storage/transactional/shallow.go @@ -0,0 +1,44 @@ +package transactional + +import ( + "gopkg.in/src-d/go-git.v4/plumbing" + "gopkg.in/src-d/go-git.v4/plumbing/storer" +) + +type ShallowStorage struct { + storer.ShallowStorer + temporal storer.ShallowStorer +} + +func NewShallowStorage(s, temporal storer.ShallowStorer) *ShallowStorage { + return &ShallowStorage{ + ShallowStorer: s, + temporal: temporal, + } +} + +func (s *ShallowStorage) SetShallow(commits []plumbing.Hash) error { + return s.temporal.SetShallow(commits) +} + +func (s *ShallowStorage) Shallow() ([]plumbing.Hash, error) { + shallow, err := s.temporal.Shallow() + if err != nil { + return nil, err + } + + if len(shallow) != 0 { + return shallow, nil + } + + return s.ShallowStorer.Shallow() +} + +func (s *ShallowStorage) Commit() error { + commits, err := s.temporal.Shallow() + if err != nil || len(commits) == 0 { + return err + } + + return s.ShallowStorer.SetShallow(commits) +} |