2018-05-26 06:27:06 +00:00
|
|
|
package filer2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
|
2018-05-27 18:52:26 +00:00
|
|
|
"fmt"
|
2018-05-26 06:27:06 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2019-02-19 02:03:16 +00:00
|
|
|
"github.com/golang/protobuf/proto"
|
2018-05-26 06:27:06 +00:00
|
|
|
)
|
|
|
|
|
2018-05-26 10:49:46 +00:00
|
|
|
func (entry *Entry) EncodeAttributesAndChunks() ([]byte, error) {
|
2018-05-26 06:27:06 +00:00
|
|
|
message := &filer_pb.Entry{
|
2018-06-10 23:57:32 +00:00
|
|
|
Attributes: EntryAttributeToPb(entry),
|
|
|
|
Chunks: entry.Chunks,
|
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{}
|
|
|
|
|
|
|
|
if err := proto.UnmarshalMerge(blob, message); err != nil {
|
|
|
|
return fmt.Errorf("decoding value blob for %s: %v", entry.FullPath, err)
|
|
|
|
}
|
|
|
|
|
2018-06-10 23:57:32 +00:00
|
|
|
entry.Attr = PbToEntryAttribute(message.Attributes)
|
2018-05-26 06:27:06 +00:00
|
|
|
|
|
|
|
entry.Chunks = message.Chunks
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2018-06-10 23:57:32 +00:00
|
|
|
|
|
|
|
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,
|
|
|
|
Collection: entry.Attr.Collection,
|
|
|
|
Replication: entry.Attr.Replication,
|
|
|
|
TtlSec: entry.Attr.TtlSec,
|
|
|
|
UserName: entry.Attr.UserName,
|
|
|
|
GroupName: entry.Attr.GroupNames,
|
|
|
|
SymlinkTarget: entry.Attr.SymlinkTarget,
|
2018-06-10 23:57:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func PbToEntryAttribute(attr *filer_pb.FuseAttributes) Attr {
|
|
|
|
|
|
|
|
t := Attr{}
|
|
|
|
|
|
|
|
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.Collection = attr.Collection
|
|
|
|
t.Replication = attr.Replication
|
|
|
|
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
|
2018-06-10 23:57:32 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < len(a.Chunks); i++ {
|
|
|
|
if !proto.Equal(a.Chunks[i], b.Chunks[i]) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|