mirror of https://github.com/minio/minio.git
ObjectDescription is now more exact, only exposes necessary details.
This commit is contained in:
parent
8ff7fea4ac
commit
dd7cd11c9c
|
@ -139,8 +139,7 @@ func (aStorage *appendStorage) List() ([]storage.ObjectDescription, error) {
|
|||
var objectDescription storage.ObjectDescription
|
||||
objectDescription.Name = objectName
|
||||
objectDescription.Md5sum = ""
|
||||
objectDescription.Hash = ""
|
||||
objectDescription.Protectionlevel = ""
|
||||
objectDescription.Murmur3 = ""
|
||||
objectDescList = append(objectDescList, objectDescription)
|
||||
}
|
||||
if len(objectDescList) == 0 {
|
||||
|
|
|
@ -120,11 +120,10 @@ func (eStorage *encodedStorage) List() ([]storage.ObjectDescription, error) {
|
|||
var objectDescList []storage.ObjectDescription
|
||||
for objectName, objectEntry := range eStorage.objects {
|
||||
var objectDescription storage.ObjectDescription
|
||||
protectionLevel := strconv.Itoa(objectEntry.Encoderparams.K) + "," + strconv.Itoa(objectEntry.Encoderparams.M)
|
||||
//protectionLevel := strconv.Itoa(objectEntry.Encoderparams.K) + "," + strconv.Itoa(objectEntry.Encoderparams.M)
|
||||
objectDescription.Name = objectName
|
||||
objectDescription.Md5sum = hex.EncodeToString(objectEntry.Md5sum)
|
||||
objectDescription.Hash = strconv.FormatUint(objectEntry.Murmurhash, 16)
|
||||
objectDescription.Protectionlevel = protectionLevel
|
||||
objectDescription.Murmur3 = strconv.FormatUint(objectEntry.Murmurhash, 16)
|
||||
objectDescList = append(objectDescList, objectDescription)
|
||||
}
|
||||
if len(objectDescList) == 0 {
|
||||
|
|
|
@ -84,8 +84,7 @@ func (fsStorage *fileSystemStorage) List() ([]storage.ObjectDescription, error)
|
|||
var objectDescription storage.ObjectDescription
|
||||
objectDescription.Name = objectName
|
||||
objectDescription.Md5sum = hex.EncodeToString(objectEntry.Md5sum)
|
||||
objectDescription.Hash = strconv.FormatUint(objectEntry.Murmurhash, 16)
|
||||
objectDescription.Protectionlevel = ""
|
||||
objectDescription.Murmur3 = strconv.FormatUint(objectEntry.Murmurhash, 16)
|
||||
objectDescList = append(objectDescList, objectDescription)
|
||||
}
|
||||
if len(objectDescList) == 0 {
|
||||
|
|
|
@ -10,8 +10,7 @@ type ObjectStorage interface {
|
|||
}
|
||||
|
||||
type ObjectDescription struct {
|
||||
Name string
|
||||
Md5sum string
|
||||
Protectionlevel string
|
||||
Hash string
|
||||
Name string
|
||||
Md5sum string
|
||||
Murmur3 string
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue