seaweedfs/weed/filer/read_remote.go

37 lines
1.5 KiB
Go
Raw Normal View History

package filer
import (
2021-08-09 21:35:18 +00:00
"context"
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
"github.com/seaweedfs/seaweedfs/weed/pb/remote_pb"
"github.com/seaweedfs/seaweedfs/weed/util"
)
2021-08-01 06:52:09 +00:00
func (entry *Entry) IsInRemoteOnly() bool {
2021-08-09 21:35:18 +00:00
return len(entry.Chunks) == 0 && entry.Remote != nil && entry.Remote.RemoteSize > 0
}
2021-08-26 22:18:34 +00:00
func MapFullPathToRemoteStorageLocation(localMountedDir util.FullPath, remoteMountedLocation *remote_pb.RemoteStorageLocation, fp util.FullPath) *remote_pb.RemoteStorageLocation {
remoteLocation := &remote_pb.RemoteStorageLocation{
2021-08-09 21:35:18 +00:00
Name: remoteMountedLocation.Name,
Bucket: remoteMountedLocation.Bucket,
Path: remoteMountedLocation.Path,
}
2021-08-15 08:53:46 +00:00
remoteLocation.Path = string(util.FullPath(remoteLocation.Path).Child(string(fp)[len(localMountedDir):]))
2021-08-09 21:35:18 +00:00
return remoteLocation
}
2021-09-01 09:45:42 +00:00
func MapRemoteStorageLocationPathToFullPath(localMountedDir util.FullPath, remoteMountedLocation *remote_pb.RemoteStorageLocation, remoteLocationPath string) (fp util.FullPath) {
2021-08-15 08:53:46 +00:00
return localMountedDir.Child(remoteLocationPath[len(remoteMountedLocation.Path):])
}
2021-10-31 02:27:25 +00:00
func CacheRemoteObjectToLocalCluster(filerClient filer_pb.FilerClient, remoteConf *remote_pb.RemoteConf, remoteLocation *remote_pb.RemoteStorageLocation, parent util.FullPath, entry *filer_pb.Entry) error {
return filerClient.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
2021-10-31 02:27:25 +00:00
_, err := client.CacheRemoteObjectToLocalCluster(context.Background(), &filer_pb.CacheRemoteObjectToLocalClusterRequest{
2021-08-09 21:35:18 +00:00
Directory: string(parent),
Name: entry.Name,
})
return err
})
}