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 (
|
2020-10-05 09:43:32 +00:00
|
|
|
"bytes"
|
2018-09-09 23:26:11 +00:00
|
|
|
"fmt"
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/wdclient"
|
2022-06-19 08:54:04 +00:00
|
|
|
"golang.org/x/exp/slices"
|
2022-07-08 05:26:03 +00:00
|
|
|
"math"
|
2022-06-19 08:54:04 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2018-05-21 00:06:09 +00:00
|
|
|
)
|
2018-05-16 07:08:44 +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
|
|
|
|
}
|
|
|
|
|
2020-08-15 16:32:47 +00:00
|
|
|
func FileSize(entry *filer_pb.Entry) (size uint64) {
|
2022-04-05 17:49:17 +00:00
|
|
|
if entry == nil || entry.Attributes == nil {
|
|
|
|
return 0
|
|
|
|
}
|
2022-03-21 09:09:54 +00:00
|
|
|
fileSize := entry.Attributes.FileSize
|
|
|
|
if entry.RemoteEntry != nil {
|
|
|
|
if entry.RemoteEntry.RemoteMtime > entry.Attributes.Mtime {
|
|
|
|
fileSize = maxUint64(fileSize, uint64(entry.RemoteEntry.RemoteSize))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return maxUint64(TotalSize(entry.Chunks), fileSize)
|
2020-08-15 16:32:47 +00:00
|
|
|
}
|
|
|
|
|
2020-04-08 15:12:00 +00:00
|
|
|
func ETag(entry *filer_pb.Entry) (etag string) {
|
|
|
|
if entry.Attributes == nil || entry.Attributes.Md5 == nil {
|
2020-04-08 16:13:26 +00:00
|
|
|
return ETagChunks(entry.Chunks)
|
2020-04-08 15:12:00 +00:00
|
|
|
}
|
|
|
|
return fmt.Sprintf("%x", entry.Attributes.Md5)
|
|
|
|
}
|
|
|
|
|
|
|
|
func ETagEntry(entry *Entry) (etag string) {
|
|
|
|
if entry.Attr.Md5 == nil {
|
2020-04-08 16:13:26 +00:00
|
|
|
return ETagChunks(entry.Chunks)
|
2020-04-08 15:12:00 +00:00
|
|
|
}
|
|
|
|
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
|
|
|
}
|
2022-07-08 05:27:24 +00:00
|
|
|
var md5Digests [][]byte
|
2018-09-09 23:25:43 +00:00
|
|
|
for _, c := range chunks {
|
2022-07-08 05:27:24 +00:00
|
|
|
md5Digests = append(md5Digests, util.Base64Md5ToBytes(c.ETag))
|
2018-09-09 23:25:43 +00:00
|
|
|
}
|
2022-07-08 05:27:24 +00:00
|
|
|
return fmt.Sprintf("%x-%d", util.Md5(bytes.Join(md5Digests, nil)), len(chunks))
|
2018-09-09 23:25:43 +00:00
|
|
|
}
|
|
|
|
|
2021-01-06 12:21:34 +00:00
|
|
|
func CompactFileChunks(lookupFileIdFn wdclient.LookupFileIdFunctionType, chunks []*filer_pb.FileChunk) (compacted, garbage []*filer_pb.FileChunk) {
|
2018-05-21 07:00:28 +00:00
|
|
|
|
2021-07-20 06:07:22 +00:00
|
|
|
visibles, _ := NonOverlappingVisibleIntervals(lookupFileIdFn, chunks, 0, math.MaxInt64)
|
2018-05-21 07:00:28 +00:00
|
|
|
|
|
|
|
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 {
|
2018-05-21 07:00:28 +00:00
|
|
|
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
|
|
|
|
2021-01-06 12:21:34 +00:00
|
|
|
func MinusChunks(lookupFileIdFn wdclient.LookupFileIdFunctionType, as, bs []*filer_pb.FileChunk) (delta []*filer_pb.FileChunk, err error) {
|
2020-07-20 00:59:43 +00:00
|
|
|
|
2021-07-20 06:07:22 +00:00
|
|
|
aData, aMeta, aErr := ResolveChunkManifest(lookupFileIdFn, as, 0, math.MaxInt64)
|
2020-07-20 00:59:43 +00:00
|
|
|
if aErr != nil {
|
|
|
|
return nil, aErr
|
|
|
|
}
|
2021-07-20 06:07:22 +00:00
|
|
|
bData, bMeta, bErr := ResolveChunkManifest(lookupFileIdFn, bs, 0, math.MaxInt64)
|
2020-07-20 00:59:43 +00:00
|
|
|
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) {
|
2018-05-22 10:26:38 +00:00
|
|
|
|
|
|
|
fileIds := make(map[string]bool)
|
2019-06-23 03:04:56 +00:00
|
|
|
for _, interval := range bs {
|
|
|
|
fileIds[interval.GetFileIdString()] = true
|
2018-05-22 10:26:38 +00:00
|
|
|
}
|
2019-06-23 03:04:56 +00:00
|
|
|
for _, chunk := range as {
|
|
|
|
if _, found := fileIds[chunk.GetFileIdString()]; !found {
|
|
|
|
delta = append(delta, chunk)
|
2018-05-22 10:26:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-02-07 11:46:28 +00:00
|
|
|
func DoMinusChunksBySourceFileId(as, bs []*filer_pb.FileChunk) (delta []*filer_pb.FileChunk) {
|
|
|
|
|
|
|
|
fileIds := make(map[string]bool)
|
|
|
|
for _, interval := range bs {
|
|
|
|
fileIds[interval.GetFileIdString()] = true
|
2022-08-01 07:06:18 +00:00
|
|
|
fileIds[interval.GetSourceFileId()] = true
|
2022-02-07 11:46:28 +00:00
|
|
|
}
|
|
|
|
for _, chunk := range as {
|
2022-08-01 07:06:18 +00:00
|
|
|
_, sourceFileIdFound := fileIds[chunk.GetSourceFileId()]
|
|
|
|
_, fileIdFound := fileIds[chunk.GetFileId()]
|
|
|
|
if !sourceFileIdFound && !fileIdFound {
|
2022-02-07 11:46:28 +00:00
|
|
|
delta = append(delta, chunk)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-24 08:22:37 +00:00
|
|
|
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
|
2020-03-06 08:49:47 +00:00
|
|
|
CipherKey []byte
|
2020-03-28 20:42:35 +00:00
|
|
|
IsGzipped bool
|
2018-05-24 08:22:37 +00:00
|
|
|
}
|
|
|
|
|
2020-04-14 04:58:10 +00:00
|
|
|
func (cv *ChunkView) IsFullChunk() bool {
|
|
|
|
return cv.Size == cv.ChunkSize
|
|
|
|
}
|
|
|
|
|
2021-01-06 12:21:34 +00:00
|
|
|
func ViewFromChunks(lookupFileIdFn wdclient.LookupFileIdFunctionType, chunks []*filer_pb.FileChunk, offset int64, size int64) (views []*ChunkView) {
|
2018-05-24 05:28:54 +00:00
|
|
|
|
2021-07-20 06:07:22 +00:00
|
|
|
visibles, _ := NonOverlappingVisibleIntervals(lookupFileIdFn, chunks, offset, offset+size)
|
2018-12-30 08:51:44 +00:00
|
|
|
|
|
|
|
return ViewFromVisibleIntervals(visibles, offset, size)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-03-22 08:37:46 +00:00
|
|
|
func ViewFromVisibleIntervals(visibles []VisibleInterval, offset int64, size int64) (views []*ChunkView) {
|
2018-05-24 05:28:54 +00:00
|
|
|
|
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
|
|
|
|
}
|
2018-05-24 05:28:54 +00:00
|
|
|
|
|
|
|
for _, chunk := range visibles {
|
2020-03-09 04:39:33 +00:00
|
|
|
|
2020-08-16 07:49:26 +00:00
|
|
|
chunkStart, chunkStop := max(offset, chunk.start), min(stop, chunk.stop)
|
|
|
|
|
|
|
|
if chunkStart < chunkStop {
|
2018-05-24 08:22:37 +00:00
|
|
|
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,
|
2020-03-06 08:49:47 +00:00
|
|
|
CipherKey: chunk.cipherKey,
|
2020-03-28 20:42:35 +00:00
|
|
|
IsGzipped: chunk.isGzipped,
|
2018-05-24 05:28:54 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2020-08-23 22:48:02 +00:00
|
|
|
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
|
|
|
|
2021-10-16 23:09:33 +00:00
|
|
|
func MergeIntoVisibles(visibles []VisibleInterval, chunk *filer_pb.FileChunk) (newVisibles []VisibleInterval) {
|
|
|
|
|
|
|
|
newV := newVisibleInterval(chunk.Offset, chunk.Offset+int64(chunk.Size), chunk.GetFileIdString(), chunk.Mtime, 0, chunk.Size, chunk.CipherKey, chunk.IsCompressed)
|
|
|
|
|
|
|
|
length := len(visibles)
|
|
|
|
if length == 0 {
|
|
|
|
return append(visibles, newV)
|
|
|
|
}
|
|
|
|
last := visibles[length-1]
|
|
|
|
if last.stop <= chunk.Offset {
|
|
|
|
return append(visibles, newV)
|
|
|
|
}
|
|
|
|
|
|
|
|
logPrintf(" before", visibles)
|
|
|
|
// glog.V(0).Infof("newVisibles %d adding chunk [%d,%d) %s size:%d", len(newVisibles), chunk.Offset, chunk.Offset+int64(chunk.Size), chunk.GetFileIdString(), chunk.Size)
|
|
|
|
chunkStop := chunk.Offset + int64(chunk.Size)
|
|
|
|
for _, v := range visibles {
|
|
|
|
if v.start < chunk.Offset && chunk.Offset < v.stop {
|
|
|
|
t := newVisibleInterval(v.start, chunk.Offset, v.fileId, v.modifiedTime, v.chunkOffset, v.chunkSize, v.cipherKey, v.isGzipped)
|
|
|
|
newVisibles = append(newVisibles, t)
|
|
|
|
// glog.V(0).Infof("visible %d [%d,%d) =1> [%d,%d)", i, v.start, v.stop, t.start, t.stop)
|
|
|
|
}
|
|
|
|
if v.start < chunkStop && chunkStop < v.stop {
|
|
|
|
t := newVisibleInterval(chunkStop, v.stop, v.fileId, v.modifiedTime, v.chunkOffset+(chunkStop-v.start), v.chunkSize, v.cipherKey, v.isGzipped)
|
|
|
|
newVisibles = append(newVisibles, t)
|
|
|
|
// glog.V(0).Infof("visible %d [%d,%d) =2> [%d,%d)", i, v.start, v.stop, t.start, t.stop)
|
|
|
|
}
|
|
|
|
if chunkStop <= v.start || v.stop <= chunk.Offset {
|
|
|
|
newVisibles = append(newVisibles, v)
|
|
|
|
// glog.V(0).Infof("visible %d [%d,%d) =3> [%d,%d)", i, v.start, v.stop, v.start, v.stop)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
newVisibles = append(newVisibles, newV)
|
|
|
|
|
|
|
|
logPrintf(" append", newVisibles)
|
|
|
|
|
|
|
|
for i := len(newVisibles) - 1; i >= 0; i-- {
|
|
|
|
if i > 0 && newV.start < newVisibles[i-1].start {
|
|
|
|
newVisibles[i] = newVisibles[i-1]
|
|
|
|
} else {
|
|
|
|
newVisibles[i] = newV
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
logPrintf(" sorted", newVisibles)
|
|
|
|
|
|
|
|
return newVisibles
|
|
|
|
}
|
|
|
|
|
2020-07-20 00:59:43 +00:00
|
|
|
// NonOverlappingVisibleIntervals translates the file chunk into VisibleInterval in memory
|
|
|
|
// If the file chunk content is a chunk manifest
|
2021-07-20 06:07:22 +00:00
|
|
|
func NonOverlappingVisibleIntervals(lookupFileIdFn wdclient.LookupFileIdFunctionType, chunks []*filer_pb.FileChunk, startOffset int64, stopOffset int64) (visibles []VisibleInterval, err error) {
|
2020-07-20 00:59:43 +00:00
|
|
|
|
2021-07-20 06:07:22 +00:00
|
|
|
chunks, _, err = ResolveChunkManifest(lookupFileIdFn, chunks, startOffset, stopOffset)
|
2022-06-19 08:54:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2018-05-21 00:06:09 +00:00
|
|
|
|
2021-10-16 23:09:33 +00:00
|
|
|
visibles2 := readResolvedChunks(chunks)
|
|
|
|
|
|
|
|
if true {
|
2021-10-17 06:35:20 +00:00
|
|
|
return visibles2, err
|
2021-10-16 23:09:33 +00:00
|
|
|
}
|
2022-04-18 02:35:43 +00:00
|
|
|
slices.SortFunc(chunks, func(a, b *filer_pb.FileChunk) bool {
|
|
|
|
if a.Mtime == b.Mtime {
|
|
|
|
filer_pb.EnsureFid(a)
|
|
|
|
filer_pb.EnsureFid(b)
|
|
|
|
if a.Fid == nil || b.Fid == nil {
|
2021-10-16 23:09:33 +00:00
|
|
|
return true
|
|
|
|
}
|
2022-04-18 02:35:43 +00:00
|
|
|
return a.Fid.FileKey < b.Fid.FileKey
|
2021-10-16 23:09:33 +00:00
|
|
|
}
|
2022-04-18 02:35:43 +00:00
|
|
|
return a.Mtime < b.Mtime
|
2021-10-16 23:09:33 +00:00
|
|
|
})
|
|
|
|
for _, chunk := range chunks {
|
|
|
|
|
|
|
|
// glog.V(0).Infof("merge [%d,%d)", chunk.Offset, chunk.Offset+int64(chunk.Size))
|
|
|
|
visibles = MergeIntoVisibles(visibles, chunk)
|
|
|
|
|
|
|
|
logPrintf("add", visibles)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(visibles) != len(visibles2) {
|
|
|
|
fmt.Printf("different visibles size %d : %d\n", len(visibles), len(visibles2))
|
|
|
|
} else {
|
|
|
|
for i := 0; i < len(visibles); i++ {
|
|
|
|
checkDifference(visibles[i], visibles2[i])
|
|
|
|
}
|
|
|
|
}
|
2021-10-16 23:03:16 +00:00
|
|
|
|
2018-05-21 00:06:09 +00:00
|
|
|
return
|
2021-10-16 23:09:33 +00:00
|
|
|
}
|
2018-05-21 00:06:09 +00:00
|
|
|
|
2021-10-16 23:09:33 +00:00
|
|
|
func checkDifference(x, y VisibleInterval) {
|
|
|
|
if x.start != y.start ||
|
|
|
|
x.stop != y.stop ||
|
|
|
|
x.fileId != y.fileId ||
|
|
|
|
x.modifiedTime != y.modifiedTime {
|
|
|
|
fmt.Printf("different visible %+v : %+v\n", x, y)
|
|
|
|
}
|
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
|
|
|
|
|
2018-12-30 08:51:44 +00:00
|
|
|
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
|
2020-03-06 08:49:47 +00:00
|
|
|
cipherKey []byte
|
2020-03-09 04:39:33 +00:00
|
|
|
isGzipped bool
|
2018-05-21 00:06:09 +00:00
|
|
|
}
|
|
|
|
|
2021-10-16 23:09:33 +00:00
|
|
|
func newVisibleInterval(start, stop int64, fileId string, modifiedTime int64, chunkOffset int64, chunkSize uint64, cipherKey []byte, isGzipped bool) VisibleInterval {
|
|
|
|
return VisibleInterval{
|
|
|
|
start: start,
|
|
|
|
stop: stop,
|
|
|
|
fileId: fileId,
|
|
|
|
modifiedTime: modifiedTime,
|
|
|
|
chunkOffset: chunkOffset, // the starting position in the chunk
|
|
|
|
chunkSize: chunkSize,
|
|
|
|
cipherKey: cipherKey,
|
|
|
|
isGzipped: isGzipped,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
}
|