Unfortunately, this is a rather large diff, but perhaps worth a one-time "rip off the bandaid" for v2. This patch removes the use of "gocontext" as alias for stdLib's "context", and uses "cliContext" for uses of cli.context. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
		
			
				
	
	
		
			105 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
/*
 | 
						|
   Copyright The containerd Authors.
 | 
						|
 | 
						|
   Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
   you may not use this file except in compliance with the License.
 | 
						|
   You may obtain a copy of the License at
 | 
						|
 | 
						|
       http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
   Unless required by applicable law or agreed to in writing, software
 | 
						|
   distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
   See the License for the specific language governing permissions and
 | 
						|
   limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package tasks
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	"fmt"
 | 
						|
 | 
						|
	"github.com/containerd/containerd/api/types/runc/options"
 | 
						|
	containerd "github.com/containerd/containerd/v2/client"
 | 
						|
	"github.com/containerd/containerd/v2/cmd/ctr/commands"
 | 
						|
	"github.com/urfave/cli/v2"
 | 
						|
)
 | 
						|
 | 
						|
var checkpointCommand = &cli.Command{
 | 
						|
	Name:      "checkpoint",
 | 
						|
	Usage:     "Checkpoint a container",
 | 
						|
	ArgsUsage: "[flags] CONTAINER",
 | 
						|
	Flags: []cli.Flag{
 | 
						|
		&cli.BoolFlag{
 | 
						|
			Name:  "exit",
 | 
						|
			Usage: "Stop the container after the checkpoint",
 | 
						|
		},
 | 
						|
		&cli.StringFlag{
 | 
						|
			Name:  "image-path",
 | 
						|
			Usage: "Path to criu image files",
 | 
						|
		},
 | 
						|
		&cli.StringFlag{
 | 
						|
			Name:  "work-path",
 | 
						|
			Usage: "Path to criu work files and logs",
 | 
						|
		},
 | 
						|
	},
 | 
						|
	Action: func(cliContext *cli.Context) error {
 | 
						|
		id := cliContext.Args().First()
 | 
						|
		if id == "" {
 | 
						|
			return errors.New("container id must be provided")
 | 
						|
		}
 | 
						|
		client, ctx, cancel, err := commands.NewClient(cliContext, containerd.WithDefaultRuntime(cliContext.String("runtime")))
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		defer cancel()
 | 
						|
		container, err := client.LoadContainer(ctx, id)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		task, err := container.Task(ctx, nil)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		info, err := container.Info(ctx)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		opts := []containerd.CheckpointTaskOpts{withCheckpointOpts(info.Runtime.Name, cliContext)}
 | 
						|
		checkpoint, err := task.Checkpoint(ctx, opts...)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		if cliContext.String("image-path") == "" {
 | 
						|
			fmt.Println(checkpoint.Name())
 | 
						|
		}
 | 
						|
		return nil
 | 
						|
	},
 | 
						|
}
 | 
						|
 | 
						|
// withCheckpointOpts only suitable for runc runtime now
 | 
						|
func withCheckpointOpts(rt string, cliContext *cli.Context) containerd.CheckpointTaskOpts {
 | 
						|
	return func(r *containerd.CheckpointTaskInfo) error {
 | 
						|
		imagePath := cliContext.String("image-path")
 | 
						|
		workPath := cliContext.String("work-path")
 | 
						|
 | 
						|
		if r.Options == nil {
 | 
						|
			r.Options = &options.CheckpointOptions{}
 | 
						|
		}
 | 
						|
		opts, _ := r.Options.(*options.CheckpointOptions)
 | 
						|
 | 
						|
		if cliContext.Bool("exit") {
 | 
						|
			opts.Exit = true
 | 
						|
		}
 | 
						|
		if imagePath != "" {
 | 
						|
			opts.ImagePath = imagePath
 | 
						|
		}
 | 
						|
		if workPath != "" {
 | 
						|
			opts.WorkPath = workPath
 | 
						|
		}
 | 
						|
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
}
 |