seaweedfs/weed/filer2/filer_client_util.go

104 lines
2.2 KiB
Go
Raw Normal View History

2019-05-03 07:24:35 +00:00
package filer2
import (
"context"
"fmt"
"io"
"math"
2019-05-03 07:24:35 +00:00
"strings"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
)
func VolumeId(fileId string) string {
lastCommaIndex := strings.LastIndex(fileId, ",")
if lastCommaIndex > 0 {
return fileId[:lastCommaIndex]
}
return fileId
}
type FilerClient interface {
WithFilerClient(fn func(filer_pb.SeaweedFilerClient) error) error
AdjustedUrl(hostAndPort string) string
2019-05-03 07:24:35 +00:00
}
func GetEntry(filerClient FilerClient, fullFilePath FullPath) (entry *filer_pb.Entry, err error) {
2019-05-03 07:24:35 +00:00
2020-01-20 07:59:46 +00:00
dir, name := fullFilePath.DirAndName()
2019-05-03 07:24:35 +00:00
err = filerClient.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
2019-05-03 07:24:35 +00:00
request := &filer_pb.LookupDirectoryEntryRequest{
Directory: dir,
Name: name,
}
2020-01-25 08:31:53 +00:00
// glog.V(3).Infof("read %s request: %v", fullFilePath, request)
resp, err := filer_pb.LookupEntry(client, request)
2019-05-03 07:24:35 +00:00
if err != nil {
2020-03-08 01:01:39 +00:00
if err == filer_pb.ErrNotFound {
2019-05-03 21:12:51 +00:00
return nil
2019-05-03 07:24:35 +00:00
}
2020-01-25 08:31:53 +00:00
glog.V(3).Infof("read %s %v: %v", fullFilePath, resp, err)
2019-05-03 07:24:35 +00:00
return err
}
2019-12-11 07:13:14 +00:00
if resp.Entry == nil {
2020-01-25 08:31:53 +00:00
// glog.V(3).Infof("read %s entry: %v", fullFilePath, entry)
2019-12-11 07:13:14 +00:00
return nil
2019-05-03 07:24:35 +00:00
}
2019-12-11 07:13:14 +00:00
entry = resp.Entry
2019-05-03 07:24:35 +00:00
return nil
})
return
}
func ReadDirAllEntries(filerClient FilerClient, fullDirPath FullPath, prefix string, fn func(entry *filer_pb.Entry, isLast bool)) (err error) {
2019-05-03 07:24:35 +00:00
err = filerClient.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
2019-05-03 07:24:35 +00:00
lastEntryName := ""
request := &filer_pb.ListEntriesRequest{
2020-01-20 07:59:46 +00:00
Directory: string(fullDirPath),
Prefix: prefix,
StartFromFileName: lastEntryName,
Limit: math.MaxUint32,
}
2019-05-03 07:24:35 +00:00
glog.V(3).Infof("read directory: %v", request)
stream, err := client.ListEntries(context.Background(), request)
if err != nil {
return fmt.Errorf("list %s: %v", fullDirPath, err)
}
2019-05-03 07:24:35 +00:00
var prevEntry *filer_pb.Entry
for {
resp, recvErr := stream.Recv()
if recvErr != nil {
if recvErr == io.EOF {
if prevEntry != nil {
fn(prevEntry, true)
}
break
} else {
return recvErr
}
2019-05-03 07:24:35 +00:00
}
if prevEntry != nil {
fn(prevEntry, false)
2019-05-03 07:24:35 +00:00
}
prevEntry = resp.Entry
2019-05-03 07:24:35 +00:00
}
return nil
})
return
}