2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-13 22:32:21 +00:00
restic/src/restic/repository/blob.go

48 lines
881 B
Go
Raw Normal View History

package repository
2015-02-03 20:07:55 +00:00
import (
"fmt"
"restic/backend"
2015-02-03 20:07:55 +00:00
)
type Blob struct {
ID *backend.ID `json:"id,omitempty"`
Size uint64 `json:"size,omitempty"`
Storage *backend.ID `json:"sid,omitempty"` // encrypted ID
StorageSize uint64 `json:"ssize,omitempty"` // encrypted Size
2015-02-03 20:07:55 +00:00
}
type Blobs []Blob
func (b Blob) Valid() bool {
if b.ID == nil || b.Storage == nil || b.StorageSize == 0 {
return false
}
return true
}
func (b Blob) String() string {
return fmt.Sprintf("Blob<%s (%d) -> %s (%d)>",
b.ID.Str(), b.Size,
b.Storage.Str(), b.StorageSize)
2015-02-03 20:07:55 +00:00
}
2015-04-26 12:46:15 +00:00
// Compare compares two blobs by comparing the ID and the size. It returns -1,
// 0, or 1.
func (b Blob) Compare(other Blob) int {
if res := b.ID.Compare(*other.ID); res != 0 {
2015-04-26 12:46:15 +00:00
return res
}
if b.Size < other.Size {
2015-04-26 12:46:15 +00:00
return -1
}
if b.Size > other.Size {
2015-04-26 12:46:15 +00:00
return 1
}
return 0
}