2018-09-17 07:27:56 +00:00
|
|
|
package source
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2018-09-21 08:56:43 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2018-09-21 08:54:29 +00:00
|
|
|
"net/http"
|
2018-09-21 08:56:43 +00:00
|
|
|
"strings"
|
|
|
|
|
2020-01-29 17:09:55 +00:00
|
|
|
"google.golang.org/grpc"
|
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/security"
|
2020-01-29 17:09:55 +00:00
|
|
|
|
2022-07-29 07:17:28 +00:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/glog"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/util"
|
2018-09-17 07:27:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ReplicationSource interface {
|
|
|
|
ReadPart(part string) io.ReadCloser
|
|
|
|
}
|
|
|
|
|
|
|
|
type FilerSource struct {
|
2019-02-18 20:11:52 +00:00
|
|
|
grpcAddress string
|
|
|
|
grpcDialOption grpc.DialOption
|
|
|
|
Dir string
|
2021-01-24 08:01:44 +00:00
|
|
|
address string
|
|
|
|
proxyByFiler bool
|
2018-09-17 07:27:56 +00:00
|
|
|
}
|
|
|
|
|
2020-01-29 17:09:55 +00:00
|
|
|
func (fs *FilerSource) Initialize(configuration util.Configuration, prefix string) error {
|
2020-09-09 18:21:23 +00:00
|
|
|
return fs.DoInitialize(
|
2021-01-24 08:01:44 +00:00
|
|
|
"",
|
2020-01-29 17:09:55 +00:00
|
|
|
configuration.GetString(prefix+"grpcAddress"),
|
|
|
|
configuration.GetString(prefix+"directory"),
|
2021-01-24 08:01:44 +00:00
|
|
|
false,
|
2018-09-17 07:27:56 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-01-24 08:01:44 +00:00
|
|
|
func (fs *FilerSource) DoInitialize(address, grpcAddress string, dir string, readChunkFromFiler bool) (err error) {
|
|
|
|
fs.address = address
|
|
|
|
if fs.address == "" {
|
|
|
|
fs.address = pb.GrpcAddressToServerAddress(grpcAddress)
|
|
|
|
}
|
2018-09-17 07:27:56 +00:00
|
|
|
fs.grpcAddress = grpcAddress
|
2018-09-17 08:37:24 +00:00
|
|
|
fs.Dir = dir
|
2020-01-29 17:09:55 +00:00
|
|
|
fs.grpcDialOption = security.LoadClientTLS(util.GetViper(), "grpc.client")
|
2021-01-24 08:01:44 +00:00
|
|
|
fs.proxyByFiler = readChunkFromFiler
|
2018-09-17 07:27:56 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-10-08 05:49:04 +00:00
|
|
|
func (fs *FilerSource) LookupFileId(part string) (fileUrls []string, err error) {
|
2018-09-17 07:27:56 +00:00
|
|
|
|
|
|
|
vid2Locations := make(map[string]*filer_pb.Locations)
|
|
|
|
|
|
|
|
vid := volumeId(part)
|
|
|
|
|
2021-12-26 08:15:03 +00:00
|
|
|
err = fs.WithFilerClient(false, func(client filer_pb.SeaweedFilerClient) error {
|
2018-09-17 07:27:56 +00:00
|
|
|
|
2020-02-26 05:50:12 +00:00
|
|
|
resp, err := client.LookupVolume(context.Background(), &filer_pb.LookupVolumeRequest{
|
2018-09-17 07:27:56 +00:00
|
|
|
VolumeIds: []string{vid},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
vid2Locations = resp.LocationsMap
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
2018-10-04 06:36:52 +00:00
|
|
|
glog.V(1).Infof("LookupFileId volume id %s: %v", vid, err)
|
2020-10-08 05:49:04 +00:00
|
|
|
return nil, fmt.Errorf("LookupFileId volume id %s: %v", vid, err)
|
2018-09-17 07:27:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
locations := vid2Locations[vid]
|
|
|
|
|
|
|
|
if locations == nil || len(locations.Locations) == 0 {
|
2018-10-04 06:36:52 +00:00
|
|
|
glog.V(1).Infof("LookupFileId locate volume id %s: %v", vid, err)
|
2020-10-08 05:49:04 +00:00
|
|
|
return nil, fmt.Errorf("LookupFileId locate volume id %s: %v", vid, err)
|
2018-09-17 07:27:56 +00:00
|
|
|
}
|
|
|
|
|
2021-03-01 00:19:47 +00:00
|
|
|
if !fs.proxyByFiler {
|
|
|
|
for _, loc := range locations.Locations {
|
|
|
|
fileUrls = append(fileUrls, fmt.Sprintf("http://%s/%s?readDeleted=true", loc.Url, part))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
fileUrls = append(fileUrls, fmt.Sprintf("http://%s/?proxyChunkId=%s", fs.address, part))
|
2020-10-08 05:49:04 +00:00
|
|
|
}
|
2018-10-04 06:36:52 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-24 08:01:44 +00:00
|
|
|
func (fs *FilerSource) ReadPart(fileId string) (filename string, header http.Header, resp *http.Response, err error) {
|
|
|
|
|
|
|
|
if fs.proxyByFiler {
|
2021-08-14 09:55:44 +00:00
|
|
|
return util.DownloadFile("http://"+fs.address+"/?proxyChunkId="+fileId, "")
|
2021-01-24 08:01:44 +00:00
|
|
|
}
|
2018-10-04 06:36:52 +00:00
|
|
|
|
2021-01-24 08:01:44 +00:00
|
|
|
fileUrls, err := fs.LookupFileId(fileId)
|
2018-10-04 06:36:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", nil, nil, err
|
|
|
|
}
|
2018-09-17 07:27:56 +00:00
|
|
|
|
2020-10-08 05:49:04 +00:00
|
|
|
for _, fileUrl := range fileUrls {
|
2021-08-13 04:40:33 +00:00
|
|
|
filename, header, resp, err = util.DownloadFile(fileUrl, "")
|
2020-10-08 05:49:04 +00:00
|
|
|
if err != nil {
|
|
|
|
glog.V(1).Infof("fail to read from %s: %v", fileUrl, err)
|
|
|
|
} else {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2018-09-17 07:27:56 +00:00
|
|
|
|
2020-09-09 10:53:09 +00:00
|
|
|
return filename, header, resp, err
|
2018-09-17 07:27:56 +00:00
|
|
|
}
|
|
|
|
|
2020-04-29 20:26:02 +00:00
|
|
|
var _ = filer_pb.FilerClient(&FilerSource{})
|
|
|
|
|
2021-12-26 08:15:03 +00:00
|
|
|
func (fs *FilerSource) WithFilerClient(streamingMode bool, fn func(filer_pb.SeaweedFilerClient) error) error {
|
2018-09-17 07:27:56 +00:00
|
|
|
|
2021-12-26 08:15:03 +00:00
|
|
|
return pb.WithGrpcClient(streamingMode, func(grpcConnection *grpc.ClientConn) error {
|
2019-04-06 03:31:58 +00:00
|
|
|
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
|
2020-02-26 05:50:12 +00:00
|
|
|
return fn(client)
|
2019-04-06 03:31:58 +00:00
|
|
|
}, fs.grpcAddress, fs.grpcDialOption)
|
2018-09-17 07:27:56 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-28 22:36:29 +00:00
|
|
|
func (fs *FilerSource) AdjustedUrl(location *filer_pb.Location) string {
|
|
|
|
return location.Url
|
|
|
|
}
|
|
|
|
|
2018-09-17 07:27:56 +00:00
|
|
|
func volumeId(fileId string) string {
|
|
|
|
lastCommaIndex := strings.LastIndex(fileId, ",")
|
|
|
|
if lastCommaIndex > 0 {
|
|
|
|
return fileId[:lastCommaIndex]
|
|
|
|
}
|
|
|
|
return fileId
|
|
|
|
}
|