mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-26 18:27:53 +00:00
Allow automatic generation for shell completion scripts with the internal cobra functions (requires v1.0.0+). This should replace the handwritten completion scripts and even adds support for fish. With this approach it is less likley that completions and code are out of sync. We can now create the scripts with - podman completion bash - podman completion zsh - podman completion fish To test the completion run: source <(podman completion bash) The same works for podman-remote and podman --remote and it will complete your remote containers/images with the correct endpoints values from --url/--connection. The completion logic is written in go and provided by the cobra library. The completion functions lives in `cmd/podman/completion/completion.go`. The unit test at cmd/podman/shell_completion_test.go checks if each command and flag has an autocompletion function set. This prevents that commands and flags have no shell completion set. This commit does not replace the current autocompletion scripts. Closes #6440 Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
70 lines
2.1 KiB
Go
70 lines
2.1 KiB
Go
package images
|
|
|
|
import (
|
|
"github.com/containers/common/pkg/report"
|
|
"github.com/containers/podman/v2/cmd/podman/common"
|
|
"github.com/containers/podman/v2/cmd/podman/registry"
|
|
"github.com/containers/podman/v2/pkg/domain/entities"
|
|
"github.com/pkg/errors"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
var (
|
|
// podman container _inspect_
|
|
diffCmd = &cobra.Command{
|
|
Use: "diff [options] IMAGE",
|
|
Args: cobra.ExactArgs(1),
|
|
Short: "Inspect changes to the image's file systems",
|
|
Long: `Displays changes to the image's filesystem. The image will be compared to its parent layer.`,
|
|
RunE: diff,
|
|
ValidArgsFunction: common.AutocompleteImages,
|
|
Example: `podman image diff myImage
|
|
podman image diff --format json redis:alpine`,
|
|
}
|
|
diffOpts *entities.DiffOptions
|
|
)
|
|
|
|
func init() {
|
|
registry.Commands = append(registry.Commands, registry.CliCommand{
|
|
Mode: []entities.EngineMode{entities.ABIMode, entities.TunnelMode},
|
|
Command: diffCmd,
|
|
Parent: imageCmd,
|
|
})
|
|
diffFlags(diffCmd.Flags())
|
|
}
|
|
|
|
func diffFlags(flags *pflag.FlagSet) {
|
|
diffOpts = &entities.DiffOptions{}
|
|
flags.BoolVar(&diffOpts.Archive, "archive", true, "Save the diff as a tar archive")
|
|
_ = flags.MarkDeprecated("archive", "Provided for backwards compatibility, has no impact on output.")
|
|
|
|
formatFlagName := "format"
|
|
flags.StringVar(&diffOpts.Format, formatFlagName, "", "Change the output format")
|
|
_ = diffCmd.RegisterFlagCompletionFunc(formatFlagName, common.AutocompleteJSONFormat)
|
|
}
|
|
|
|
func diff(cmd *cobra.Command, args []string) error {
|
|
if diffOpts.Latest {
|
|
return errors.New("image diff does not support --latest")
|
|
}
|
|
|
|
results, err := registry.ImageEngine().Diff(registry.GetContext(), args[0], *diffOpts)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
switch {
|
|
case report.IsJSON(diffOpts.Format):
|
|
return common.ChangesToJSON(results)
|
|
case diffOpts.Format == "":
|
|
return common.ChangesToTable(results)
|
|
default:
|
|
return errors.New("only supported value for '--format' is 'json'")
|
|
}
|
|
}
|
|
|
|
func Diff(cmd *cobra.Command, args []string, options entities.DiffOptions) error {
|
|
diffOpts = &options
|
|
return diff(cmd, args)
|
|
}
|