@@ -25,14 +25,25 @@ func NewBlob(ns Namespace, data []byte, shareVersion uint8, signer []byte) (*Blo
25
25
if len (data ) == 0 {
26
26
return nil , errors .New ("data can not be empty" )
27
27
}
28
- if shareVersion == 0 && signer != nil {
29
- return nil , errors .New ("share version 0 does not support signer " )
28
+ if ns . IsEmpty () {
29
+ return nil , errors .New ("namespace can not be empty " )
30
30
}
31
- if shareVersion == 1 && len ( signer ) != SignerSize {
32
- return nil , fmt .Errorf ("share version 1 requires signer of size %d bytes " , SignerSize )
31
+ if ns . Version ( ) != NamespaceVersionZero {
32
+ return nil , fmt .Errorf ("namespace version must be %d got %d " , NamespaceVersionZero , ns . Version () )
33
33
}
34
- if shareVersion > MaxShareVersion {
35
- return nil , fmt .Errorf ("share version can not be greater than MaxShareVersion %d" , MaxShareVersion )
34
+ switch shareVersion {
35
+ case ShareVersionZero :
36
+ if signer != nil {
37
+ return nil , errors .New ("share version 0 does not support signer" )
38
+ }
39
+ case ShareVersionOne :
40
+ if len (signer ) != SignerSize {
41
+ return nil , fmt .Errorf ("share version 1 requires signer of size %d bytes" , SignerSize )
42
+ }
43
+ // Note that we don't specifically check that shareVersion is less than 128 as this is caught
44
+ // by the default case
45
+ default :
46
+ return nil , fmt .Errorf ("share version %d not supported. Please use 0 or 1" , shareVersion )
36
47
}
37
48
return & Blob {
38
49
namespace : ns ,
@@ -79,8 +90,8 @@ func NewBlobFromProto(pb *v1.BlobProto) (*Blob, error) {
79
90
if pb .NamespaceVersion > NamespaceVersionMax {
80
91
return nil , errors .New ("namespace version can not be greater than MaxNamespaceVersion" )
81
92
}
82
- if len ( pb .Data ) == 0 {
83
- return nil , errors . New ( "blob data can not be empty" )
93
+ if pb .ShareVersion > MaxShareVersion {
94
+ return nil , fmt . Errorf ( "share version can not be greater than MaxShareVersion %d" , MaxShareVersion )
84
95
}
85
96
ns , err := NewNamespace (uint8 (pb .NamespaceVersion ), pb .NamespaceId )
86
97
if err != nil {
@@ -124,6 +135,14 @@ func (b *Blob) Compare(other *Blob) int {
124
135
return b .namespace .Compare (other .namespace )
125
136
}
126
137
138
+ // IsEmpty returns true if the blob is empty. This is an invalid
139
+ // construction that can only occur if using the nil value. We
140
+ // only check that the data is empty but this also implies that
141
+ // all other fields would have their zero value
142
+ func (b * Blob ) IsEmpty () bool {
143
+ return len (b .data ) == 0
144
+ }
145
+
127
146
// Sort sorts the blobs by their namespace.
128
147
func SortBlobs (blobs []* Blob ) {
129
148
sort .SliceStable (blobs , func (i , j int ) bool {
0 commit comments