seaweedfs/weed/filer/entry_codec.go

138 lines
2.6 KiB
Go
Raw Permalink Normal View History

2020-09-01 07:21:19 +00:00
package filer
2018-05-26 06:27:06 +00:00
import (
2019-12-18 05:10:26 +00:00
"bytes"
"fmt"
2018-05-26 06:27:06 +00:00
"os"
"time"
2022-08-17 19:05:07 +00:00
"google.golang.org/protobuf/proto"
2019-12-18 05:10:26 +00:00
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
2018-05-26 06:27:06 +00:00
)
func (entry *Entry) EncodeAttributesAndChunks() ([]byte, error) {
message := &filer_pb.Entry{}
entry.ToExistingProtoEntry(message)
2018-05-26 06:27:06 +00:00
return proto.Marshal(message)
}
2018-05-27 18:52:26 +00:00
func (entry *Entry) DecodeAttributesAndChunks(blob []byte) error {
2018-05-26 06:27:06 +00:00
message := &filer_pb.Entry{}
2022-08-17 19:42:03 +00:00
if err := proto.Unmarshal(blob, message); err != nil {
2018-05-26 06:27:06 +00:00
return fmt.Errorf("decoding value blob for %s: %v", entry.FullPath, err)
}
FromPbEntryToExistingEntry(message, entry)
2020-09-24 10:06:44 +00:00
2018-05-26 06:27:06 +00:00
return nil
}
func EntryAttributeToPb(entry *Entry) *filer_pb.FuseAttributes {
return &filer_pb.FuseAttributes{
2018-12-26 06:45:44 +00:00
Crtime: entry.Attr.Crtime.Unix(),
Mtime: entry.Attr.Mtime.Unix(),
FileMode: uint32(entry.Attr.Mode),
Uid: entry.Uid,
Gid: entry.Gid,
Mime: entry.Mime,
TtlSec: entry.Attr.TtlSec,
UserName: entry.Attr.UserName,
GroupName: entry.Attr.GroupNames,
SymlinkTarget: entry.Attr.SymlinkTarget,
Md5: entry.Attr.Md5,
FileSize: entry.Attr.FileSize,
2022-02-24 22:51:25 +00:00
Rdev: entry.Attr.Rdev,
2022-02-25 08:53:27 +00:00
Inode: entry.Attr.Inode,
}
}
func PbToEntryAttribute(attr *filer_pb.FuseAttributes) Attr {
t := Attr{}
2020-09-24 10:06:44 +00:00
if attr == nil {
return t
}
t.Crtime = time.Unix(attr.Crtime, 0)
t.Mtime = time.Unix(attr.Mtime, 0)
t.Mode = os.FileMode(attr.FileMode)
t.Uid = attr.Uid
t.Gid = attr.Gid
t.Mime = attr.Mime
t.TtlSec = attr.TtlSec
2018-12-04 08:13:40 +00:00
t.UserName = attr.UserName
t.GroupNames = attr.GroupName
2018-12-26 06:45:44 +00:00
t.SymlinkTarget = attr.SymlinkTarget
t.Md5 = attr.Md5
t.FileSize = attr.FileSize
2022-02-24 22:51:25 +00:00
t.Rdev = attr.Rdev
2022-02-25 08:53:27 +00:00
t.Inode = attr.Inode
return t
}
2018-08-13 08:20:49 +00:00
func EqualEntry(a, b *Entry) bool {
if a == b {
return true
}
if a == nil && b != nil || a != nil && b == nil {
return false
}
if !proto.Equal(EntryAttributeToPb(a), EntryAttributeToPb(b)) {
return false
}
if len(a.Chunks) != len(b.Chunks) {
return false
}
2019-12-18 05:10:26 +00:00
if !eq(a.Extended, b.Extended) {
return false
}
if !bytes.Equal(a.Md5, b.Md5) {
return false
}
2018-08-13 08:20:49 +00:00
for i := 0; i < len(a.Chunks); i++ {
if !proto.Equal(a.Chunks[i], b.Chunks[i]) {
return false
}
}
2020-09-24 10:06:44 +00:00
2020-09-24 18:11:42 +00:00
if !bytes.Equal(a.HardLinkId, b.HardLinkId) {
2020-09-24 10:06:44 +00:00
return false
}
if a.HardLinkCounter != b.HardLinkCounter {
return false
}
2020-11-30 12:34:04 +00:00
if !bytes.Equal(a.Content, b.Content) {
return false
}
if !proto.Equal(a.Remote, b.Remote) {
return false
}
if a.Quota != b.Quota {
return false
}
2018-08-13 08:20:49 +00:00
return true
}
2019-12-18 05:10:26 +00:00
func eq(a, b map[string][]byte) bool {
if len(a) != len(b) {
return false
}
for k, v := range a {
2019-12-18 05:15:28 +00:00
if w, ok := b[k]; !ok || !bytes.Equal(v, w) {
2019-12-18 05:10:26 +00:00
return false
}
}
return true
}