package client import ( "context" "errors" "fmt" "strings" "github.com/containerd/errdefs" "github.com/docker/compose/v2/pkg/progress" "github.com/docker/docker/api/types/container" "github.com/docker/docker/pkg/jsonmessage" "github.com/docker/docker/pkg/stringid" "github.com/psviderski/uncloud/internal/docker" machinedocker "github.com/psviderski/uncloud/internal/machine/docker" "github.com/psviderski/uncloud/internal/secret" "github.com/psviderski/uncloud/pkg/api" "google.golang.org/grpc/status" ) // CreateContainer creates a new container for the given service on the specified machine. func (cli *Client) CreateContainer( ctx context.Context, serviceID string, spec api.ServiceSpec, machineID string, ) (container.CreateResponse, error) { var resp container.CreateResponse spec = spec.SetDefaults() if err := spec.Validate(); err != nil { return resp, fmt.Errorf("invalid service spec: %w", err) } // TODO: validate spec.Name is consistent with serviceID if this is not the first container in the service. machine, err := cli.InspectMachine(ctx, machineID) if err != nil { return resp, fmt.Errorf("inspect machine '%s': %w", machineID, err) } suffix, err := secret.RandomAlphaNumeric(4) if err != nil { return resp, fmt.Errorf("generate random suffix: %w", err) } containerName := fmt.Sprintf("%s-%s", spec.Name, suffix) // Proxy Docker gRPC requests to the selected machine. ctx = proxyToMachine(ctx, machine.Machine) pw := progress.ContextWriter(ctx) eventID := fmt.Sprintf("Container %s on %s", containerName, machine.Machine.Name) pw.Event(progress.CreatingEvent(eventID)) if spec.Container.PullPolicy == api.PullPolicyAlways { if err = cli.pullImageWithProgress(ctx, spec.Container.Image, machine.Machine.Name, eventID); err != nil { return resp, err } } resp, err = cli.Docker.CreateServiceContainer(ctx, serviceID, spec, containerName) if err != nil { switch spec.Container.PullPolicy { case api.PullPolicyAlways, api.PullPolicyNever: return resp, err case api.PullPolicyMissing: default: return resp, fmt.Errorf("unsupported pull policy: '%s'", spec.Container.PullPolicy) } // NotFound (No such image) error is expected if the image is missing. if !errdefs.IsNotFound(err) || !strings.Contains(err.Error(), "No such image") { return resp, err } // Pull the missing image and create the container again. if err = cli.pullImageWithProgress(ctx, spec.Container.Image, machine.Machine.Name, eventID); err != nil { return resp, err } if resp, err = cli.Docker.CreateServiceContainer(ctx, serviceID, spec, containerName); err != nil { return resp, err } } pw.Event(progress.CreatedEvent(eventID)) return resp, nil } func (cli *Client) pullImageWithProgress(ctx context.Context, image, machineName, parentEventID string) error { pw := progress.ContextWriter(ctx) eventID := fmt.Sprintf("Image %s on %s", image, machineName) pw.Event(progress.Event{ ID: eventID, ParentID: parentEventID, Status: progress.Working, StatusText: "Pulling", }) opts := machinedocker.PullOptions{} // Try to retrieve the authentication token for the image from the default local Docker config file. if encodedAuth, err := docker.RetrieveLocalDockerRegistryAuth(image); err == nil { // If RegistryAuth is empty, Uncloud daemon will try to retrieve the credentials from its own Docker config. opts.RegistryAuth = encodedAuth } pullCh, err := cli.Docker.PullImage(ctx, image, opts) if err != nil { statusErr := status.Convert(err) pw.Event(progress.Event{ ID: eventID, ParentID: parentEventID, Text: "Error", Status: progress.Error, StatusText: statusErr.Message(), }) return fmt.Errorf("pull image: %w", errors.New(statusErr.Message())) } // Wait for pull to complete by reading all progress messages and converting them to events. for msg := range pullCh { if msg.Err != nil { err = msg.Err } else { if msg.Message.Error != nil { err = errors.New(msg.Message.Error.Message) } } if err != nil { statusErr := status.Convert(err) pw.Event(progress.Event{ ID: eventID, ParentID: parentEventID, Text: "Error", Status: progress.Error, StatusText: statusErr.Message(), }) return fmt.Errorf("pull image: %w", errors.New(statusErr.Message())) } // TODO: add like in compose: --quiet-pull Pull without printing progress information e := toPullProgressEvent(msg.Message) if e != nil { e.ID = fmt.Sprintf("%s on %s", e.ID, machineName) e.ParentID = eventID // Grand children events are not printed by the tty progress writer but they are still required // to calculate the progress line of their parent. pw.Event(*e) } } pw.Event(progress.Event{ ID: eventID, ParentID: parentEventID, Status: progress.Done, StatusText: "Pulled", }) return nil } // toPullProgressEvent converts a JSON progress message from the Docker API to a progress event. // It's based on toPullProgressEvent from Docker Compose. func toPullProgressEvent(jm jsonmessage.JSONMessage) *progress.Event { if jm.ID == "" || jm.Progress == nil { return nil } var ( total int64 percent int current int64 ) text := jm.Progress.String() stat := progress.Working switch jm.Status { case "Preparing", "Waiting", "Pulling fs layer": percent = 0 case "Downloading", "Extracting", "Verifying Checksum": current = jm.Progress.Current total = jm.Progress.Total if jm.Progress.Total > 0 { percent = int(jm.Progress.Current * 100 / jm.Progress.Total) } case "Download complete", "Already exists", "Pull complete": stat = progress.Done percent = 100 } if strings.Contains(jm.Status, "Image is up to date") || strings.Contains(jm.Status, "Downloaded newer image") { stat = progress.Done percent = 100 } return &progress.Event{ ID: jm.ID, Current: current, Total: total, Percent: percent, Text: jm.Status, Status: stat, StatusText: text, } } // InspectContainer returns the information about the specified container within the service. // containerNameOrID can be name, ID, or truncated ID of the container. func (cli *Client) InspectContainer( ctx context.Context, serviceNameOrID, containerNameOrID string, ) (api.MachineServiceContainer, error) { svc, err := cli.InspectService(ctx, serviceNameOrID) if err != nil { return api.MachineServiceContainer{}, fmt.Errorf("inspect service: %w", err) } // TODO: support matching by any prefix of the container ID for _, c := range svc.Containers { if c.Container.ID == containerNameOrID || c.Container.Name == containerNameOrID || stringid.TruncateID(c.Container.ID) == containerNameOrID { return c, nil } } return api.MachineServiceContainer{}, api.ErrNotFound } // StartContainer starts the specified container within the service. func (cli *Client) StartContainer(ctx context.Context, serviceNameOrID, containerNameOrID string) error { ctr, err := cli.InspectContainer(ctx, serviceNameOrID, containerNameOrID) if err != nil { return err } machine, err := cli.InspectMachine(ctx, ctr.MachineID) if err != nil { return fmt.Errorf("inspect machine '%s': %w", ctr.MachineID, err) } ctx = proxyToMachine(ctx, machine.Machine) pw := progress.ContextWriter(ctx) eventID := fmt.Sprintf("Container %s on %s", ctr.Container.Name, machine.Machine.Name) pw.Event(progress.StartingEvent(eventID)) if err = cli.Docker.StartContainer(ctx, ctr.Container.ID, container.StartOptions{}); err != nil { return err } pw.Event(progress.StartedEvent(eventID)) return nil } // StopContainer stops the specified container within the service. func (cli *Client) StopContainer( ctx context.Context, serviceNameOrID, containerNameOrID string, opts container.StopOptions, ) error { ctr, err := cli.InspectContainer(ctx, serviceNameOrID, containerNameOrID) if err != nil { return err } machine, err := cli.InspectMachine(ctx, ctr.MachineID) if err != nil { return fmt.Errorf("inspect machine '%s': %w", ctr.MachineID, err) } ctx = proxyToMachine(ctx, machine.Machine) pw := progress.ContextWriter(ctx) eventID := fmt.Sprintf("Container %s on %s", ctr.Container.Name, machine.Machine.Name) pw.Event(progress.StoppingEvent(eventID)) if err = cli.Docker.StopContainer(ctx, ctr.Container.ID, opts); err != nil { return err } pw.Event(progress.StoppedEvent(eventID)) return nil } // RemoveContainer removes the specified container within the service. func (cli *Client) RemoveContainer( ctx context.Context, serviceNameOrID, containerNameOrID string, opts container.RemoveOptions, ) error { ctr, err := cli.InspectContainer(ctx, serviceNameOrID, containerNameOrID) if err != nil { return err } machine, err := cli.InspectMachine(ctx, ctr.MachineID) if err != nil { return fmt.Errorf("inspect machine '%s': %w", ctr.MachineID, err) } ctx = proxyToMachine(ctx, machine.Machine) pw := progress.ContextWriter(ctx) eventID := fmt.Sprintf("Container %s on %s", ctr.Container.Name, machine.Machine.Name) pw.Event(progress.RemovingEvent(eventID)) if err = cli.Docker.RemoveServiceContainer(ctx, ctr.Container.ID, opts); err != nil { return err } pw.Event(progress.RemovedEvent(eventID)) return nil }