2019-05-17 09:03:23 +00:00
|
|
|
package filer_pb
|
|
|
|
|
|
|
|
import (
|
2020-01-25 17:17:19 +00:00
|
|
|
"context"
|
2020-03-08 01:01:39 +00:00
|
|
|
"errors"
|
2020-01-25 17:17:19 +00:00
|
|
|
"fmt"
|
2020-03-08 00:51:46 +00:00
|
|
|
"strings"
|
2020-01-25 17:17:19 +00:00
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2019-05-17 09:03:23 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/storage/needle"
|
|
|
|
)
|
|
|
|
|
2019-06-22 19:30:08 +00:00
|
|
|
func toFileIdObject(fileIdStr string) (*FileId, error) {
|
2019-05-17 09:03:23 +00:00
|
|
|
t, err := needle.ParseFileIdFromString(fileIdStr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &FileId{
|
|
|
|
VolumeId: uint32(t.VolumeId),
|
|
|
|
Cookie: uint32(t.Cookie),
|
|
|
|
FileKey: uint64(t.Key),
|
|
|
|
}, nil
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-06-22 19:30:08 +00:00
|
|
|
func (fid *FileId) toFileIdString() string {
|
2019-05-17 09:03:23 +00:00
|
|
|
return needle.NewFileId(needle.VolumeId(fid.VolumeId), fid.FileKey, fid.Cookie).String()
|
|
|
|
}
|
|
|
|
|
2019-06-22 19:30:08 +00:00
|
|
|
func (c *FileChunk) GetFileIdString() string {
|
|
|
|
if c.FileId != "" {
|
|
|
|
return c.FileId
|
|
|
|
}
|
|
|
|
if c.Fid != nil {
|
|
|
|
c.FileId = c.Fid.toFileIdString()
|
|
|
|
return c.FileId
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-05-17 09:03:23 +00:00
|
|
|
func BeforeEntrySerialization(chunks []*FileChunk) {
|
|
|
|
|
|
|
|
for _, chunk := range chunks {
|
|
|
|
|
|
|
|
if chunk.FileId != "" {
|
2019-06-22 19:30:08 +00:00
|
|
|
if fid, err := toFileIdObject(chunk.FileId); err == nil {
|
2019-05-17 09:03:23 +00:00
|
|
|
chunk.Fid = fid
|
|
|
|
chunk.FileId = ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if chunk.SourceFileId != "" {
|
2019-06-22 19:30:08 +00:00
|
|
|
if fid, err := toFileIdObject(chunk.SourceFileId); err == nil {
|
2019-05-17 09:03:23 +00:00
|
|
|
chunk.SourceFid = fid
|
|
|
|
chunk.SourceFileId = ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func AfterEntryDeserialization(chunks []*FileChunk) {
|
|
|
|
|
|
|
|
for _, chunk := range chunks {
|
|
|
|
|
|
|
|
if chunk.Fid != nil && chunk.FileId == "" {
|
2019-06-22 19:30:08 +00:00
|
|
|
chunk.FileId = chunk.Fid.toFileIdString()
|
2019-05-17 09:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if chunk.SourceFid != nil && chunk.SourceFileId == "" {
|
2019-06-22 19:30:08 +00:00
|
|
|
chunk.SourceFileId = chunk.SourceFid.toFileIdString()
|
2019-05-17 09:03:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2020-01-25 17:17:19 +00:00
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
func CreateEntry(client SeaweedFilerClient, request *CreateEntryRequest) error {
|
|
|
|
resp, err := client.CreateEntry(context.Background(), request)
|
2020-01-25 17:17:19 +00:00
|
|
|
if err != nil {
|
2020-02-26 05:50:12 +00:00
|
|
|
glog.V(1).Infof("create entry %s/%s %v: %v", request.Directory, request.Entry.Name, request.OExcl, err)
|
2020-01-25 17:17:19 +00:00
|
|
|
return fmt.Errorf("CreateEntry: %v", err)
|
|
|
|
}
|
2020-02-26 01:15:09 +00:00
|
|
|
if resp.Error != "" {
|
2020-02-26 05:50:12 +00:00
|
|
|
glog.V(1).Infof("create entry %s/%s %v: %v", request.Directory, request.Entry.Name, request.OExcl, err)
|
2020-02-26 01:24:08 +00:00
|
|
|
return fmt.Errorf("CreateEntry : %v", resp.Error)
|
2020-02-26 01:15:09 +00:00
|
|
|
}
|
2020-02-26 05:50:12 +00:00
|
|
|
return nil
|
2020-01-25 17:17:19 +00:00
|
|
|
}
|
2020-03-08 00:51:46 +00:00
|
|
|
|
|
|
|
func LookupEntry(client SeaweedFilerClient, request *LookupDirectoryEntryRequest) (*LookupDirectoryEntryResponse, error) {
|
2020-03-08 01:01:39 +00:00
|
|
|
resp, err := client.LookupDirectoryEntry(context.Background(), request)
|
2020-03-08 00:51:46 +00:00
|
|
|
if err != nil {
|
2020-03-08 01:01:39 +00:00
|
|
|
if err == ErrNotFound || strings.Contains(err.Error(), ErrNotFound.Error()) {
|
|
|
|
return nil, ErrNotFound
|
2020-03-08 00:51:46 +00:00
|
|
|
}
|
2020-03-08 01:01:39 +00:00
|
|
|
glog.V(3).Infof("read %s/%v: %v", request.Directory, request.Name, err)
|
2020-03-08 00:51:46 +00:00
|
|
|
return nil, fmt.Errorf("LookupEntry1: %v", err)
|
|
|
|
}
|
|
|
|
if resp.Entry == nil {
|
2020-03-08 01:01:39 +00:00
|
|
|
return nil, ErrNotFound
|
2020-03-08 00:51:46 +00:00
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
2020-03-08 01:01:39 +00:00
|
|
|
|
|
|
|
var ErrNotFound = errors.New("filer: no entry is found in filer store")
|