Update transfer proxy to support ttrpc
Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
parent
ec04e4f638
commit
05a3171bb4
@ -19,7 +19,6 @@ package client
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
|
||||||
transferapi "github.com/containerd/containerd/api/services/transfer/v1"
|
|
||||||
"github.com/containerd/containerd/v2/core/streaming"
|
"github.com/containerd/containerd/v2/core/streaming"
|
||||||
streamproxy "github.com/containerd/containerd/v2/core/streaming/proxy"
|
streamproxy "github.com/containerd/containerd/v2/core/streaming/proxy"
|
||||||
"github.com/containerd/containerd/v2/core/transfer"
|
"github.com/containerd/containerd/v2/core/transfer"
|
||||||
@ -33,7 +32,7 @@ func (c *Client) Transfer(ctx context.Context, src interface{}, dest interface{}
|
|||||||
}
|
}
|
||||||
defer done(ctx)
|
defer done(ctx)
|
||||||
|
|
||||||
return proxy.NewTransferrer(transferapi.NewTransferClient(c.conn), c.streamCreator()).Transfer(ctx, src, dest, opts...)
|
return proxy.NewTransferrer(c.conn, c.streamCreator()).Transfer(ctx, src, dest, opts...)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) streamCreator() streaming.StreamCreator {
|
func (c *Client) streamCreator() streaming.StreamCreator {
|
||||||
|
@ -19,9 +19,12 @@ package proxy
|
|||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
|
||||||
|
"google.golang.org/grpc"
|
||||||
"google.golang.org/protobuf/types/known/anypb"
|
"google.golang.org/protobuf/types/known/anypb"
|
||||||
|
"google.golang.org/protobuf/types/known/emptypb"
|
||||||
|
|
||||||
transferapi "github.com/containerd/containerd/api/services/transfer/v1"
|
transferapi "github.com/containerd/containerd/api/services/transfer/v1"
|
||||||
transfertypes "github.com/containerd/containerd/api/types/transfer"
|
transfertypes "github.com/containerd/containerd/api/types/transfer"
|
||||||
@ -29,25 +32,57 @@ import (
|
|||||||
"github.com/containerd/containerd/v2/core/transfer"
|
"github.com/containerd/containerd/v2/core/transfer"
|
||||||
tstreaming "github.com/containerd/containerd/v2/core/transfer/streaming"
|
tstreaming "github.com/containerd/containerd/v2/core/transfer/streaming"
|
||||||
"github.com/containerd/containerd/v2/pkg/oci"
|
"github.com/containerd/containerd/v2/pkg/oci"
|
||||||
|
"github.com/containerd/errdefs"
|
||||||
"github.com/containerd/log"
|
"github.com/containerd/log"
|
||||||
|
"github.com/containerd/ttrpc"
|
||||||
"github.com/containerd/typeurl/v2"
|
"github.com/containerd/typeurl/v2"
|
||||||
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
type proxyTransferrer struct {
|
type proxyTransferrer struct {
|
||||||
client transferapi.TransferClient
|
client transferapi.TTRPCTransferService
|
||||||
streamCreator streaming.StreamCreator
|
streamCreator streaming.StreamCreator
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewTransferrer returns a new transferrer which communicates over a GRPC
|
// NewTransferrer returns a new transferrer which can communicate over a GRPC
|
||||||
// connection using the containerd transfer API
|
// or TTRPC connection using the containerd transfer API
|
||||||
func NewTransferrer(client transferapi.TransferClient, sc streaming.StreamCreator) transfer.Transferrer {
|
func NewTransferrer(client any, sc streaming.StreamCreator) transfer.Transferrer {
|
||||||
return &proxyTransferrer{
|
switch c := client.(type) {
|
||||||
client: client,
|
case transferapi.TransferClient:
|
||||||
streamCreator: sc,
|
return &proxyTransferrer{
|
||||||
|
client: convertClient{c},
|
||||||
|
streamCreator: sc,
|
||||||
|
}
|
||||||
|
case grpc.ClientConnInterface:
|
||||||
|
return &proxyTransferrer{
|
||||||
|
client: convertClient{transferapi.NewTransferClient(c)},
|
||||||
|
streamCreator: sc,
|
||||||
|
}
|
||||||
|
case transferapi.TTRPCTransferService:
|
||||||
|
return &proxyTransferrer{
|
||||||
|
client: c,
|
||||||
|
streamCreator: sc,
|
||||||
|
}
|
||||||
|
case *ttrpc.Client:
|
||||||
|
return &proxyTransferrer{
|
||||||
|
client: transferapi.NewTTRPCTransferClient(c),
|
||||||
|
streamCreator: sc,
|
||||||
|
}
|
||||||
|
case transfer.Transferrer:
|
||||||
|
return c
|
||||||
|
default:
|
||||||
|
panic(fmt.Errorf("unsupported stream client %T: %w", client, errdefs.ErrNotImplemented))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type convertClient struct {
|
||||||
|
transferapi.TransferClient
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c convertClient) Transfer(ctx context.Context, r *transferapi.TransferRequest) (*emptypb.Empty, error) {
|
||||||
|
return c.TransferClient.Transfer(ctx, r)
|
||||||
|
}
|
||||||
|
|
||||||
func (p *proxyTransferrer) Transfer(ctx context.Context, src interface{}, dst interface{}, opts ...transfer.Opt) error {
|
func (p *proxyTransferrer) Transfer(ctx context.Context, src interface{}, dst interface{}, opts ...transfer.Opt) error {
|
||||||
o := &transfer.Config{}
|
o := &transfer.Config{}
|
||||||
for _, opt := range opts {
|
for _, opt := range opts {
|
||||||
|
Loading…
Reference in New Issue
Block a user