seaweedfs/weed/filer/entry.go

143 lines
3.3 KiB
Go
Raw Normal View History

2020-09-01 07:21:19 +00:00
package filer
2018-05-26 06:27:06 +00:00
import (
"os"
"time"
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
"github.com/seaweedfs/seaweedfs/weed/util"
2018-05-26 06:27:06 +00:00
)
type Attr struct {
2018-12-26 06:45:44 +00:00
Mtime time.Time // time of last modification
Crtime time.Time // time of creation (OS X only)
Mode os.FileMode // file mode
Uid uint32 // owner uid
Gid uint32 // group gid
Mime string // mime type
TtlSec int32 // ttl in seconds
UserName string
GroupNames []string
SymlinkTarget string
Md5 []byte
FileSize uint64
2022-02-24 22:51:25 +00:00
Rdev uint32
2022-02-25 08:53:27 +00:00
Inode uint64
2018-05-26 06:27:06 +00:00
}
2018-05-27 18:52:26 +00:00
func (attr Attr) IsDirectory() bool {
2018-05-26 06:27:06 +00:00
return attr.Mode&os.ModeDir > 0
}
type Entry struct {
2020-03-23 07:01:34 +00:00
util.FullPath
2018-05-26 06:27:06 +00:00
Attr
2019-12-18 05:10:26 +00:00
Extended map[string][]byte
2018-05-26 06:27:06 +00:00
// the following is for files
Chunks []*filer_pb.FileChunk `json:"chunks,omitempty"`
2020-09-24 10:06:44 +00:00
HardLinkId HardLinkId
HardLinkCounter int32
2020-11-30 12:34:04 +00:00
Content []byte
2021-07-27 05:53:44 +00:00
Remote *filer_pb.RemoteEntry
Quota int64
2018-05-26 06:27:06 +00:00
}
func (entry *Entry) Size() uint64 {
return maxUint64(maxUint64(TotalSize(entry.GetChunks()), entry.FileSize), uint64(len(entry.Content)))
2018-05-26 06:27:06 +00:00
}
func (entry *Entry) Timestamp() time.Time {
2018-05-26 06:27:06 +00:00
if entry.IsDirectory() {
return entry.Crtime
} else {
return entry.Mtime
}
}
2021-08-09 21:35:18 +00:00
func (entry *Entry) ShallowClone() *Entry {
if entry == nil {
return nil
}
newEntry := &Entry{}
newEntry.FullPath = entry.FullPath
newEntry.Attr = entry.Attr
newEntry.Chunks = entry.Chunks
newEntry.Extended = entry.Extended
newEntry.HardLinkId = entry.HardLinkId
newEntry.HardLinkCounter = entry.HardLinkCounter
newEntry.Content = entry.Content
newEntry.Remote = entry.Remote
newEntry.Quota = entry.Quota
2021-08-09 21:35:18 +00:00
return newEntry
}
func (entry *Entry) ToProtoEntry() *filer_pb.Entry {
if entry == nil {
return nil
}
message := &filer_pb.Entry{}
message.Name = entry.FullPath.Name()
entry.ToExistingProtoEntry(message)
return message
}
func (entry *Entry) ToExistingProtoEntry(message *filer_pb.Entry) {
if entry == nil {
return
}
message.IsDirectory = entry.IsDirectory()
message.Attributes = EntryAttributeToPb(entry)
message.Chunks = entry.GetChunks()
message.Extended = entry.Extended
message.HardLinkId = entry.HardLinkId
message.HardLinkCounter = entry.HardLinkCounter
message.Content = entry.Content
2021-07-27 05:53:44 +00:00
message.RemoteEntry = entry.Remote
message.Quota = entry.Quota
}
func FromPbEntryToExistingEntry(message *filer_pb.Entry, fsEntry *Entry) {
fsEntry.Attr = PbToEntryAttribute(message.Attributes)
fsEntry.Chunks = message.Chunks
fsEntry.Extended = message.Extended
fsEntry.HardLinkId = HardLinkId(message.HardLinkId)
fsEntry.HardLinkCounter = message.HardLinkCounter
fsEntry.Content = message.Content
2021-07-27 05:53:44 +00:00
fsEntry.Remote = message.RemoteEntry
fsEntry.Quota = message.Quota
2022-09-19 04:42:13 +00:00
fsEntry.FileSize = FileSize(message)
}
func (entry *Entry) ToProtoFullEntry() *filer_pb.FullEntry {
if entry == nil {
return nil
}
dir, _ := entry.FullPath.DirAndName()
return &filer_pb.FullEntry{
Dir: dir,
Entry: entry.ToProtoEntry(),
}
}
func (entry *Entry) GetChunks() []*filer_pb.FileChunk {
return entry.Chunks
}
func FromPbEntry(dir string, entry *filer_pb.Entry) *Entry {
t := &Entry{}
t.FullPath = util.NewFullPath(dir, entry.Name)
FromPbEntryToExistingEntry(entry, t)
return t
}
func maxUint64(x, y uint64) uint64 {
if x > y {
return x
}
return y
}