mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 01:53:42 +08:00 
			
		
		
		
	Removes gogo/protobuf from buildx and updates to a version of moby/buildkit where gogo is removed. This also changes how the proto files are generated. This is because newer versions of protobuf are more strict about name conflicts. If two files have the same name (even if they are relative paths) and are used in different protoc commands, they'll conflict in the registry. Since protobuf file generation doesn't work very well with `paths=source_relative`, this removes the `go:generate` expression and just relies on the dockerfile to perform the generation. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package control
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"io"
 | 
						|
 | 
						|
	"github.com/docker/buildx/build"
 | 
						|
	controllerapi "github.com/docker/buildx/controller/pb"
 | 
						|
	"github.com/docker/buildx/util/progress"
 | 
						|
	"github.com/moby/buildkit/client"
 | 
						|
)
 | 
						|
 | 
						|
type BuildxController interface {
 | 
						|
	Build(ctx context.Context, options *controllerapi.BuildOptions, in io.ReadCloser, progress progress.Writer) (ref string, resp *client.SolveResponse, inputs *build.Inputs, err error)
 | 
						|
	// Invoke starts an IO session into the specified process.
 | 
						|
	// If pid doesn't matche to any running processes, it starts a new process with the specified config.
 | 
						|
	// If there is no container running or InvokeConfig.Rollback is speicfied, the process will start in a newly created container.
 | 
						|
	// NOTE: If needed, in the future, we can split this API into three APIs (NewContainer, NewProcess and Attach).
 | 
						|
	Invoke(ctx context.Context, ref, pid string, options *controllerapi.InvokeConfig, ioIn io.ReadCloser, ioOut io.WriteCloser, ioErr io.WriteCloser) error
 | 
						|
	Kill(ctx context.Context) error
 | 
						|
	Close() error
 | 
						|
	List(ctx context.Context) (refs []string, _ error)
 | 
						|
	Disconnect(ctx context.Context, ref string) error
 | 
						|
	ListProcesses(ctx context.Context, ref string) (infos []*controllerapi.ProcessInfo, retErr error)
 | 
						|
	DisconnectProcess(ctx context.Context, ref, pid string) error
 | 
						|
	Inspect(ctx context.Context, ref string) (*controllerapi.InspectResponse, error)
 | 
						|
}
 | 
						|
 | 
						|
type ControlOptions struct {
 | 
						|
	ServerConfig string
 | 
						|
	Root         string
 | 
						|
	Detach       bool
 | 
						|
}
 |