83 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package diff
 | 
						|
 | 
						|
import (
 | 
						|
	diffapi "github.com/containerd/containerd/api/services/diff/v1"
 | 
						|
	"github.com/containerd/containerd/api/types"
 | 
						|
	"github.com/containerd/containerd/errdefs"
 | 
						|
	"github.com/containerd/containerd/mount"
 | 
						|
	"github.com/containerd/containerd/plugin"
 | 
						|
	"golang.org/x/net/context"
 | 
						|
	"google.golang.org/grpc"
 | 
						|
)
 | 
						|
 | 
						|
func init() {
 | 
						|
	plugin.Register(&plugin.Registration{
 | 
						|
		Type: plugin.GRPCPlugin,
 | 
						|
		ID:   "diff",
 | 
						|
		Requires: []plugin.PluginType{
 | 
						|
			plugin.DiffPlugin,
 | 
						|
		},
 | 
						|
		Init: func(ic *plugin.InitContext) (interface{}, error) {
 | 
						|
			d, err := ic.Get(plugin.DiffPlugin)
 | 
						|
			if err != nil {
 | 
						|
				return nil, err
 | 
						|
			}
 | 
						|
			return &service{
 | 
						|
				diff: d.(plugin.Differ),
 | 
						|
			}, nil
 | 
						|
		},
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
type service struct {
 | 
						|
	diff plugin.Differ
 | 
						|
}
 | 
						|
 | 
						|
func (s *service) Register(gs *grpc.Server) error {
 | 
						|
	diffapi.RegisterDiffServer(gs, s)
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (s *service) Apply(ctx context.Context, er *diffapi.ApplyRequest) (*diffapi.ApplyResponse, error) {
 | 
						|
	desc := toDescriptor(er.Diff)
 | 
						|
	// TODO: Check for supported media types
 | 
						|
 | 
						|
	mounts := toMounts(er.Mounts)
 | 
						|
 | 
						|
	ocidesc, err := s.diff.Apply(ctx, desc, mounts)
 | 
						|
	if err != nil {
 | 
						|
		return nil, errdefs.ToGRPC(err)
 | 
						|
	}
 | 
						|
 | 
						|
	return &diffapi.ApplyResponse{
 | 
						|
		Applied: fromDescriptor(ocidesc),
 | 
						|
	}, nil
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
func (s *service) Diff(ctx context.Context, dr *diffapi.DiffRequest) (*diffapi.DiffResponse, error) {
 | 
						|
	aMounts := toMounts(dr.Left)
 | 
						|
	bMounts := toMounts(dr.Right)
 | 
						|
 | 
						|
	ocidesc, err := s.diff.DiffMounts(ctx, aMounts, bMounts, dr.MediaType, dr.Ref)
 | 
						|
	if err != nil {
 | 
						|
		return nil, errdefs.ToGRPC(err)
 | 
						|
	}
 | 
						|
 | 
						|
	return &diffapi.DiffResponse{
 | 
						|
		Diff: fromDescriptor(ocidesc),
 | 
						|
	}, nil
 | 
						|
}
 | 
						|
 | 
						|
func toMounts(apim []*types.Mount) []mount.Mount {
 | 
						|
	mounts := make([]mount.Mount, len(apim))
 | 
						|
	for i, m := range apim {
 | 
						|
		mounts[i] = mount.Mount{
 | 
						|
			Type:    m.Type,
 | 
						|
			Source:  m.Source,
 | 
						|
			Options: m.Options,
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return mounts
 | 
						|
}
 |