seaweedfs/weed/replication/source/filer_source.go

116 lines
2.8 KiB
Go
Raw Normal View History

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"
"google.golang.org/grpc"
2020-03-04 08:39:47 +00:00
"github.com/chrislusf/seaweedfs/weed/pb"
"github.com/chrislusf/seaweedfs/weed/security"
2018-09-21 08:56:43 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/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
2018-09-17 07:27:56 +00:00
}
func (fs *FilerSource) Initialize(configuration util.Configuration, prefix string) error {
2018-09-17 07:27:56 +00:00
return fs.initialize(
configuration.GetString(prefix+"grpcAddress"),
configuration.GetString(prefix+"directory"),
2018-09-17 07:27:56 +00:00
)
}
2018-09-17 08:37:24 +00:00
func (fs *FilerSource) initialize(grpcAddress string, dir string) (err error) {
2018-09-17 07:27:56 +00:00
fs.grpcAddress = grpcAddress
2018-09-17 08:37:24 +00:00
fs.Dir = dir
fs.grpcDialOption = security.LoadClientTLS(util.GetViper(), "grpc.client")
2018-09-17 07:27:56 +00:00
return nil
}
func (fs *FilerSource) LookupFileId(part string) (fileUrl string, err error) {
2018-09-17 07:27:56 +00:00
vid2Locations := make(map[string]*filer_pb.Locations)
vid := volumeId(part)
2020-04-29 20:26:02 +00:00
err = fs.WithFilerClient(func(client filer_pb.SeaweedFilerClient) error {
2018-09-17 07:27:56 +00:00
glog.V(4).Infof("read lookup volume id locations: %v", vid)
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)
return "", 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)
return "", fmt.Errorf("LookupFileId locate volume id %s: %v", vid, err)
2018-09-17 07:27:56 +00:00
}
2018-10-04 06:36:52 +00:00
fileUrl = fmt.Sprintf("http://%s/%s", locations.Locations[0].Url, part)
return
}
func (fs *FilerSource) ReadPart(part string) (filename string, header http.Header, readCloser io.ReadCloser, err error) {
2018-10-04 06:36:52 +00:00
fileUrl, err := fs.LookupFileId(part)
2018-10-04 06:36:52 +00:00
if err != nil {
return "", nil, nil, err
}
2018-09-17 07:27:56 +00:00
2018-09-21 08:54:29 +00:00
filename, header, readCloser, err = util.DownloadFile(fileUrl)
2018-09-17 07:27:56 +00:00
2018-09-21 08:54:29 +00:00
return filename, header, readCloser, err
2018-09-17 07:27:56 +00:00
}
2020-04-29 20:26:02 +00:00
var _ = filer_pb.FilerClient(&FilerSource{})
func (fs *FilerSource) WithFilerClient(fn func(filer_pb.SeaweedFilerClient) error) error {
2018-09-17 07:27:56 +00:00
2020-03-04 08:39:47 +00:00
return pb.WithCachedGrpcClient(func(grpcConnection *grpc.ClientConn) error {
2019-04-06 03:31:58 +00:00
client := filer_pb.NewSeaweedFilerClient(grpcConnection)
return fn(client)
2019-04-06 03:31:58 +00:00
}, fs.grpcAddress, fs.grpcDialOption)
2018-09-17 07:27:56 +00:00
}
2020-04-29 20:26:02 +00:00
func (fs *FilerSource) AdjustedUrl(hostAndPort string) string {
return hostAndPort
}
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
}