aboutsummaryrefslogtreecommitdiffstats
path: root/core/reference.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-08-12 12:49:46 +0200
committerMáximo Cuadros <mcuadros@gmail.com>2016-08-12 12:49:46 +0200
commite1f7b169aaa99d07fe8ad8e71a0cba2322e7d35f (patch)
tree50f195024fa492120db0c9822111cc84b0c659ce /core/reference.go
parent8948d4b48acfc39462f0c75525bc6b53c1ac59b2 (diff)
downloadgo-git-e1f7b169aaa99d07fe8ad8e71a0cba2322e7d35f.tar.gz
small improvements
Diffstat (limited to 'core/reference.go')
-rw-r--r--core/reference.go62
1 files changed, 45 insertions, 17 deletions
diff --git a/core/reference.go b/core/reference.go
index 9114b58..ec00787 100644
--- a/core/reference.go
+++ b/core/reference.go
@@ -1,6 +1,10 @@
package core
-import "strings"
+import (
+ "errors"
+ "io"
+ "strings"
+)
const (
refPrefix = "refs/"
@@ -11,6 +15,10 @@ const (
symrefPrefix = "ref: "
)
+var (
+ ErrReferenceNotFound = errors.New("reference not found")
+)
+
// ReferenceType reference type's
type ReferenceType int8
@@ -39,17 +47,14 @@ type Reference struct {
// the resulting reference can be a SymbolicReference or a HashReference base
// on the target provided
func NewReferenceFromStrings(name, target string) *Reference {
- r := &Reference{n: ReferenceName(name)}
+ n := ReferenceName(name)
if strings.HasPrefix(target, symrefPrefix) {
- r.t = SymbolicReference
- r.target = ReferenceName(target[len(symrefPrefix):])
- return r
+ target := ReferenceName(target[len(symrefPrefix):])
+ return NewSymbolicReference(n, target)
}
- r.t = HashReference
- r.h = NewHash(target)
- return r
+ return NewHashReference(n, NewHash(target))
}
// NewSymbolicReference creates a new SymbolicReference reference
@@ -110,15 +115,38 @@ func (r *Reference) IsTag() bool {
return strings.HasPrefix(string(r.n), refTagPrefix)
}
-// ReferenceStorage generic storage of references
-type ReferenceStorage interface {
- Set(Reference) error
- Get(ReferenceName) (Reference, error)
- Iter(ObjectType) (ReferenceIter, error)
+// ReferenceSliceIter implements ReferenceIter. It iterates over a series of
+// references stored in a slice and yields each one in turn when Next() is
+// called.
+//
+// The ReferenceSliceIter must be closed with a call to Close() when it is no
+// longer needed.
+type ReferenceSliceIter struct {
+ series []*Reference
+ pos int
+}
+
+// NewReferenceSliceIter returns a reference iterator for the given slice of
+// objects.
+func NewReferenceSliceIter(series []*Reference) *ReferenceSliceIter {
+ return &ReferenceSliceIter{
+ series: series,
+ }
+}
+
+// Next returns the next reference from the iterator. If the iterator has
+// reached the end it will return io.EOF as an error.
+func (iter *ReferenceSliceIter) Next() (*Reference, error) {
+ if iter.pos >= len(iter.series) {
+ return nil, io.EOF
+ }
+
+ obj := iter.series[iter.pos]
+ iter.pos++
+ return obj, nil
}
-// ReferenceIter is a generic closable interface for iterating over references
-type ReferenceIter interface {
- Next() (Reference, error)
- Close()
+// Close releases any resources used by the iterator.
+func (iter *ReferenceSliceIter) Close() {
+ iter.pos = len(iter.series)
}