mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-17 16:37:46 +08:00

Remove the controller grpc service along with associated code related to sessions or remote controllers. Data types that are still used with complicated dependency chains have been kept in the same package for a future refactor. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
package commands
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
|
|
cerrdefs "github.com/containerd/errdefs"
|
|
"github.com/docker/buildx/monitor/types"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
type AttachCmd struct {
|
|
m types.Monitor
|
|
|
|
stdout io.WriteCloser
|
|
}
|
|
|
|
func NewAttachCmd(m types.Monitor, stdout io.WriteCloser) types.Command {
|
|
return &AttachCmd{m, stdout}
|
|
}
|
|
|
|
func (cm *AttachCmd) Info() types.CommandInfo {
|
|
return types.CommandInfo{
|
|
Name: "attach",
|
|
HelpMessage: "attach to a process in the container",
|
|
HelpMessageLong: `
|
|
Usage:
|
|
attach PID
|
|
|
|
PID is for a process (visible via ps command).
|
|
Use Ctrl-a-c for switching the monitor to that process's STDIO.
|
|
`,
|
|
}
|
|
}
|
|
|
|
func (cm *AttachCmd) Exec(ctx context.Context, args []string) error {
|
|
if len(args) < 2 {
|
|
return errors.Errorf("PID of process must be passed")
|
|
}
|
|
pid := args[1]
|
|
|
|
infos, err := cm.m.ListProcesses(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, p := range infos {
|
|
if p.ProcessID == pid {
|
|
cm.m.Attach(ctx, pid)
|
|
fmt.Fprintf(cm.stdout, "Attached to process %q. Press Ctrl-a-c to switch to the new container\n", pid)
|
|
return nil
|
|
}
|
|
}
|
|
return errors.Wrapf(cerrdefs.ErrNotFound, "pid %s", pid)
|
|
}
|