seaweedfs/weed/filer/filechunks.go

202 lines
5 KiB
Go
Raw Normal View History

2020-09-01 07:21:19 +00:00
package filer
2018-05-13 07:11:26 +00:00
2018-05-21 00:06:09 +00:00
import (
"bytes"
2018-09-09 23:26:11 +00:00
"fmt"
2018-05-21 00:08:54 +00:00
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/util"
2021-10-16 23:06:12 +00:00
"github.com/chrislusf/seaweedfs/weed/wdclient"
"math"
2018-05-21 00:06:09 +00:00
)
2018-05-21 00:06:09 +00:00
func TotalSize(chunks []*filer_pb.FileChunk) (size uint64) {
2018-05-13 07:11:26 +00:00
for _, c := range chunks {
t := uint64(c.Offset + int64(c.Size))
if size < t {
size = t
}
}
return
}
func FileSize(entry *filer_pb.Entry) (size uint64) {
return maxUint64(TotalSize(entry.Chunks), entry.Attributes.FileSize)
}
func ETag(entry *filer_pb.Entry) (etag string) {
if entry.Attributes == nil || entry.Attributes.Md5 == nil {
return ETagChunks(entry.Chunks)
}
return fmt.Sprintf("%x", entry.Attributes.Md5)
}
func ETagEntry(entry *Entry) (etag string) {
if entry.Attr.Md5 == nil {
return ETagChunks(entry.Chunks)
}
return fmt.Sprintf("%x", entry.Attr.Md5)
}
func ETagChunks(chunks []*filer_pb.FileChunk) (etag string) {
2018-09-09 23:25:43 +00:00
if len(chunks) == 1 {
2021-04-28 17:28:05 +00:00
return fmt.Sprintf("%x", util.Base64Md5ToBytes(chunks[0].ETag))
2018-09-09 23:25:43 +00:00
}
md5_digests := [][]byte{}
2018-09-09 23:25:43 +00:00
for _, c := range chunks {
2021-04-28 17:28:05 +00:00
md5_digests = append(md5_digests, util.Base64Md5ToBytes(c.ETag))
2018-09-09 23:25:43 +00:00
}
return fmt.Sprintf("%x-%d", util.Md5(bytes.Join(md5_digests, nil)), len(chunks))
2018-09-09 23:25:43 +00:00
}
func CompactFileChunks(lookupFileIdFn wdclient.LookupFileIdFunctionType, chunks []*filer_pb.FileChunk) (compacted, garbage []*filer_pb.FileChunk) {
visibles, _ := NonOverlappingVisibleIntervals(lookupFileIdFn, chunks, 0, math.MaxInt64)
fileIds := make(map[string]bool)
for _, interval := range visibles {
fileIds[interval.fileId] = true
}
for _, chunk := range chunks {
2019-06-23 03:04:56 +00:00
if _, found := fileIds[chunk.GetFileIdString()]; found {
compacted = append(compacted, chunk)
} else {
garbage = append(garbage, chunk)
}
}
2018-05-21 00:06:09 +00:00
return
2018-05-13 07:11:26 +00:00
}
2018-05-21 00:06:09 +00:00
func MinusChunks(lookupFileIdFn wdclient.LookupFileIdFunctionType, as, bs []*filer_pb.FileChunk) (delta []*filer_pb.FileChunk, err error) {
aData, aMeta, aErr := ResolveChunkManifest(lookupFileIdFn, as, 0, math.MaxInt64)
if aErr != nil {
return nil, aErr
}
bData, bMeta, bErr := ResolveChunkManifest(lookupFileIdFn, bs, 0, math.MaxInt64)
if bErr != nil {
return nil, bErr
}
delta = append(delta, DoMinusChunks(aData, bData)...)
delta = append(delta, DoMinusChunks(aMeta, bMeta)...)
return
}
func DoMinusChunks(as, bs []*filer_pb.FileChunk) (delta []*filer_pb.FileChunk) {
fileIds := make(map[string]bool)
2019-06-23 03:04:56 +00:00
for _, interval := range bs {
fileIds[interval.GetFileIdString()] = true
}
2019-06-23 03:04:56 +00:00
for _, chunk := range as {
if _, found := fileIds[chunk.GetFileIdString()]; !found {
delta = append(delta, chunk)
}
}
return
}
type ChunkView struct {
FileId string
Offset int64
Size uint64
2020-08-16 22:16:46 +00:00
LogicOffset int64 // actual offset in the file, for the data specified via [offset, offset+size) in current chunk
2020-04-14 04:58:10 +00:00
ChunkSize uint64
CipherKey []byte
2020-03-28 20:42:35 +00:00
IsGzipped bool
}
2020-04-14 04:58:10 +00:00
func (cv *ChunkView) IsFullChunk() bool {
return cv.Size == cv.ChunkSize
}
func ViewFromChunks(lookupFileIdFn wdclient.LookupFileIdFunctionType, chunks []*filer_pb.FileChunk, offset int64, size int64) (views []*ChunkView) {
visibles, _ := NonOverlappingVisibleIntervals(lookupFileIdFn, chunks, offset, offset+size)
return ViewFromVisibleIntervals(visibles, offset, size)
}
2020-03-22 08:37:46 +00:00
func ViewFromVisibleIntervals(visibles []VisibleInterval, offset int64, size int64) (views []*ChunkView) {
2020-03-22 08:37:46 +00:00
stop := offset + size
2020-03-27 11:35:31 +00:00
if size == math.MaxInt64 {
stop = math.MaxInt64
}
if stop < offset {
stop = math.MaxInt64
}
for _, chunk := range visibles {
2020-08-16 07:49:26 +00:00
chunkStart, chunkStop := max(offset, chunk.start), min(stop, chunk.stop)
if chunkStart < chunkStop {
views = append(views, &ChunkView{
FileId: chunk.fileId,
2020-08-16 22:16:46 +00:00
Offset: chunkStart - chunk.start + chunk.chunkOffset,
2020-08-16 07:49:26 +00:00
Size: uint64(chunkStop - chunkStart),
2020-08-16 08:35:52 +00:00
LogicOffset: chunkStart,
2020-04-14 04:58:10 +00:00
ChunkSize: chunk.chunkSize,
CipherKey: chunk.cipherKey,
2020-03-28 20:42:35 +00:00
IsGzipped: chunk.isGzipped,
})
}
}
return views
}
2018-12-31 23:10:14 +00:00
func logPrintf(name string, visibles []VisibleInterval) {
2020-08-17 04:06:03 +00:00
2018-05-27 18:56:49 +00:00
/*
2020-08-17 04:06:03 +00:00
glog.V(0).Infof("%s len %d", name, len(visibles))
2018-11-23 08:26:15 +00:00
for _, v := range visibles {
glog.V(0).Infof("%s: [%d,%d) %s %d", name, v.start, v.stop, v.fileId, v.chunkOffset)
2018-11-23 08:26:15 +00:00
}
2020-08-30 05:28:33 +00:00
*/
2018-05-13 07:11:26 +00:00
}
2018-05-21 00:06:09 +00:00
// NonOverlappingVisibleIntervals translates the file chunk into VisibleInterval in memory
// If the file chunk content is a chunk manifest
func NonOverlappingVisibleIntervals(lookupFileIdFn wdclient.LookupFileIdFunctionType, chunks []*filer_pb.FileChunk, startOffset int64, stopOffset int64) (visibles []VisibleInterval, err error) {
chunks, _, err = ResolveChunkManifest(lookupFileIdFn, chunks, startOffset, stopOffset)
2018-05-21 00:06:09 +00:00
2021-10-16 23:06:12 +00:00
visibles = readResolvedChunks(chunks)
2021-10-16 23:03:16 +00:00
2018-05-21 00:06:09 +00:00
return
2021-10-16 23:03:16 +00:00
}
2018-05-21 00:06:09 +00:00
// find non-overlapping visible intervals
// visible interval map to one file chunk
type VisibleInterval struct {
2018-05-21 00:06:09 +00:00
start int64
stop int64
modifiedTime int64
fileId string
2020-08-16 22:16:46 +00:00
chunkOffset int64
2020-04-14 04:58:10 +00:00
chunkSize uint64
cipherKey []byte
isGzipped bool
2018-05-21 00:06:09 +00:00
}
func min(x, y int64) int64 {
if x <= y {
return x
}
return y
}
2020-08-16 07:49:26 +00:00
func max(x, y int64) int64 {
if x <= y {
return y
}
return x
}