2017-05-15 17:13:34 -04:00
|
|
|
package filesync
|
|
|
|
|
|
|
|
import (
|
2017-09-29 06:32:26 -04:00
|
|
|
"fmt"
|
2017-05-15 17:13:34 -04:00
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
|
2017-08-07 05:52:40 -04:00
|
|
|
"github.com/moby/buildkit/session"
|
2017-05-15 17:13:34 -04:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/tonistiigi/fsutil"
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
"google.golang.org/grpc"
|
|
|
|
"google.golang.org/grpc/metadata"
|
|
|
|
)
|
|
|
|
|
2017-08-07 05:52:40 -04:00
|
|
|
const (
|
|
|
|
keyOverrideExcludes = "override-excludes"
|
|
|
|
keyIncludePatterns = "include-patterns"
|
2017-09-29 06:32:26 -04:00
|
|
|
keyDirName = "dir-name"
|
2017-08-07 05:52:40 -04:00
|
|
|
)
|
|
|
|
|
2017-05-15 17:13:34 -04:00
|
|
|
type fsSyncProvider struct {
|
2017-09-29 06:32:26 -04:00
|
|
|
dirs map[string]SyncedDir
|
|
|
|
p progressCb
|
|
|
|
doneCh chan error
|
|
|
|
}
|
|
|
|
|
|
|
|
type SyncedDir struct {
|
|
|
|
Name string
|
|
|
|
Dir string
|
|
|
|
Excludes []string
|
|
|
|
Map func(*fsutil.Stat) bool
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewFSSyncProvider creates a new provider for sending files from client
|
2017-09-29 06:32:26 -04:00
|
|
|
func NewFSSyncProvider(dirs []SyncedDir) session.Attachable {
|
2017-05-15 17:13:34 -04:00
|
|
|
p := &fsSyncProvider{
|
2017-09-29 06:32:26 -04:00
|
|
|
dirs: map[string]SyncedDir{},
|
|
|
|
}
|
|
|
|
for _, d := range dirs {
|
|
|
|
p.dirs[d.Name] = d
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncProvider) Register(server *grpc.Server) {
|
|
|
|
RegisterFileSyncServer(server, sp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncProvider) DiffCopy(stream FileSync_DiffCopyServer) error {
|
|
|
|
return sp.handle("diffcopy", stream)
|
|
|
|
}
|
|
|
|
func (sp *fsSyncProvider) TarStream(stream FileSync_TarStreamServer) error {
|
|
|
|
return sp.handle("tarstream", stream)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncProvider) handle(method string, stream grpc.ServerStream) error {
|
|
|
|
var pr *protocol
|
|
|
|
for _, p := range supportedProtocols {
|
|
|
|
if method == p.name && isProtoSupported(p.name) {
|
|
|
|
pr = &p
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pr == nil {
|
|
|
|
return errors.New("failed to negotiate protocol")
|
|
|
|
}
|
|
|
|
|
|
|
|
opts, _ := metadata.FromContext(stream.Context()) // if no metadata continue with empty object
|
|
|
|
|
2017-09-29 06:32:26 -04:00
|
|
|
name, ok := opts[keyDirName]
|
|
|
|
if !ok || len(name) != 1 {
|
|
|
|
return errors.New("no dir name in request")
|
|
|
|
}
|
|
|
|
|
|
|
|
dir, ok := sp.dirs[name[0]]
|
|
|
|
if !ok {
|
|
|
|
return errors.Errorf("no access allowed to dir %q", name[0])
|
|
|
|
}
|
|
|
|
|
2017-05-15 17:13:34 -04:00
|
|
|
var excludes []string
|
2017-08-07 05:52:40 -04:00
|
|
|
if len(opts[keyOverrideExcludes]) == 0 || opts[keyOverrideExcludes][0] != "true" {
|
2017-09-29 06:32:26 -04:00
|
|
|
excludes = dir.Excludes
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
2017-08-07 05:52:40 -04:00
|
|
|
includes := opts[keyIncludePatterns]
|
2017-05-15 17:13:34 -04:00
|
|
|
|
|
|
|
var progress progressCb
|
|
|
|
if sp.p != nil {
|
|
|
|
progress = sp.p
|
|
|
|
sp.p = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var doneCh chan error
|
|
|
|
if sp.doneCh != nil {
|
|
|
|
doneCh = sp.doneCh
|
|
|
|
sp.doneCh = nil
|
|
|
|
}
|
2017-09-29 06:32:26 -04:00
|
|
|
err := pr.sendFn(stream, dir.Dir, includes, excludes, progress, dir.Map)
|
2017-05-15 17:13:34 -04:00
|
|
|
if doneCh != nil {
|
|
|
|
if err != nil {
|
|
|
|
doneCh <- err
|
|
|
|
}
|
|
|
|
close(doneCh)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncProvider) SetNextProgressCallback(f func(int, bool), doneCh chan error) {
|
|
|
|
sp.p = f
|
|
|
|
sp.doneCh = doneCh
|
|
|
|
}
|
|
|
|
|
|
|
|
type progressCb func(int, bool)
|
|
|
|
|
|
|
|
type protocol struct {
|
|
|
|
name string
|
2017-09-29 06:32:26 -04:00
|
|
|
sendFn func(stream grpc.Stream, srcDir string, includes, excludes []string, progress progressCb, _map func(*fsutil.Stat) bool) error
|
|
|
|
recvFn func(stream grpc.Stream, destDir string, cu CacheUpdater, progress progressCb) error
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func isProtoSupported(p string) bool {
|
|
|
|
// TODO: this should be removed after testing if stability is confirmed
|
|
|
|
if override := os.Getenv("BUILD_STREAM_PROTOCOL"); override != "" {
|
|
|
|
return strings.EqualFold(p, override)
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
var supportedProtocols = []protocol{
|
|
|
|
{
|
|
|
|
name: "diffcopy",
|
|
|
|
sendFn: sendDiffCopy,
|
|
|
|
recvFn: recvDiffCopy,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
// FSSendRequestOpt defines options for FSSend request
|
|
|
|
type FSSendRequestOpt struct {
|
2017-09-29 06:32:26 -04:00
|
|
|
Name string
|
2017-08-07 05:52:40 -04:00
|
|
|
IncludePatterns []string
|
2017-05-15 17:13:34 -04:00
|
|
|
OverrideExcludes bool
|
|
|
|
DestDir string
|
|
|
|
CacheUpdater CacheUpdater
|
2017-09-29 06:32:26 -04:00
|
|
|
ProgressCb func(int, bool)
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// CacheUpdater is an object capable of sending notifications for the cache hash changes
|
|
|
|
type CacheUpdater interface {
|
|
|
|
MarkSupported(bool)
|
|
|
|
HandleChange(fsutil.ChangeKind, string, os.FileInfo, error) error
|
2017-09-29 06:32:26 -04:00
|
|
|
ContentHasher() fsutil.ContentHasher
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// FSSync initializes a transfer of files
|
|
|
|
func FSSync(ctx context.Context, c session.Caller, opt FSSendRequestOpt) error {
|
|
|
|
var pr *protocol
|
|
|
|
for _, p := range supportedProtocols {
|
|
|
|
if isProtoSupported(p.name) && c.Supports(session.MethodURL(_FileSync_serviceDesc.ServiceName, p.name)) {
|
|
|
|
pr = &p
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if pr == nil {
|
|
|
|
return errors.New("no fssync handlers")
|
|
|
|
}
|
|
|
|
|
|
|
|
opts := make(map[string][]string)
|
|
|
|
if opt.OverrideExcludes {
|
2017-08-07 05:52:40 -04:00
|
|
|
opts[keyOverrideExcludes] = []string{"true"}
|
|
|
|
}
|
|
|
|
|
|
|
|
if opt.IncludePatterns != nil {
|
|
|
|
opts[keyIncludePatterns] = opt.IncludePatterns
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
2017-09-29 06:32:26 -04:00
|
|
|
opts[keyDirName] = []string{opt.Name}
|
|
|
|
|
2017-05-15 17:13:34 -04:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
defer cancel()
|
|
|
|
|
|
|
|
client := NewFileSyncClient(c.Conn())
|
|
|
|
|
|
|
|
var stream grpc.ClientStream
|
|
|
|
|
|
|
|
ctx = metadata.NewContext(ctx, opts)
|
|
|
|
|
|
|
|
switch pr.name {
|
|
|
|
case "tarstream":
|
|
|
|
cc, err := client.TarStream(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stream = cc
|
|
|
|
case "diffcopy":
|
|
|
|
cc, err := client.DiffCopy(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stream = cc
|
2017-09-29 06:32:26 -04:00
|
|
|
default:
|
|
|
|
panic(fmt.Sprintf("invalid protocol: %q", pr.name))
|
|
|
|
}
|
|
|
|
|
|
|
|
return pr.recvFn(stream, opt.DestDir, opt.CacheUpdater, opt.ProgressCb)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewFSSyncTarget allows writing into a directory
|
|
|
|
func NewFSSyncTarget(outdir string) session.Attachable {
|
|
|
|
p := &fsSyncTarget{
|
|
|
|
outdir: outdir,
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
type fsSyncTarget struct {
|
|
|
|
outdir string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncTarget) Register(server *grpc.Server) {
|
|
|
|
RegisterFileSendServer(server, sp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (sp *fsSyncTarget) DiffCopy(stream FileSend_DiffCopyServer) error {
|
|
|
|
return syncTargetDiffCopy(stream, sp.outdir)
|
|
|
|
}
|
|
|
|
|
|
|
|
func CopyToCaller(ctx context.Context, srcPath string, c session.Caller, progress func(int, bool)) error {
|
|
|
|
method := session.MethodURL(_FileSend_serviceDesc.ServiceName, "diffcopy")
|
|
|
|
if !c.Supports(method) {
|
|
|
|
return errors.Errorf("method %s not supported by the client", method)
|
|
|
|
}
|
|
|
|
|
|
|
|
client := NewFileSendClient(c.Conn())
|
|
|
|
|
|
|
|
cc, err := client.DiffCopy(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|
|
|
|
|
2017-09-29 06:32:26 -04:00
|
|
|
return sendDiffCopy(cc, srcPath, nil, nil, progress, nil)
|
2017-05-15 17:13:34 -04:00
|
|
|
}
|