2021-07-29 05:43:12 +00:00
|
|
|
package filer
|
|
|
|
|
|
|
|
import (
|
2021-08-09 21:35:18 +00:00
|
|
|
"context"
|
2021-07-29 09:08:55 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
|
2021-08-26 22:18:34 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/pb/remote_pb"
|
2021-08-09 21:35:18 +00:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2021-07-29 05:43:12 +00:00
|
|
|
)
|
|
|
|
|
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-07-29 05:43:12 +00:00
|
|
|
}
|
|
|
|
|
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-07-29 09:08:55 +00:00
|
|
|
}
|
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-07-29 05:43:12 +00:00
|
|
|
|
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-08-26 22:18:34 +00:00
|
|
|
func DownloadToLocal(filerClient filer_pb.FilerClient, remoteConf *remote_pb.RemoteConf, remoteLocation *remote_pb.RemoteStorageLocation, parent util.FullPath, entry *filer_pb.Entry) error {
|
2021-08-09 21:35:18 +00:00
|
|
|
return filerClient.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
|
|
|
|
_, err := client.DownloadToLocal(context.Background(), &filer_pb.DownloadToLocalRequest{
|
|
|
|
Directory: string(parent),
|
|
|
|
Name: entry.Name,
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
})
|
2021-07-29 05:43:12 +00:00
|
|
|
}
|