restic/cmd/restic/cmd_list.go

84 lines
1.8 KiB
Go
Raw Normal View History

2014-08-01 20:20:28 +00:00
package main
2016-09-01 20:17:37 +00:00
import (
"context"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/repository"
2017-07-24 15:42:25 +00:00
"github.com/restic/restic/internal/restic"
2016-09-17 10:36:05 +00:00
"github.com/spf13/cobra"
2016-09-01 20:17:37 +00:00
)
2014-08-01 20:20:28 +00:00
2016-09-17 10:36:05 +00:00
var cmdList = &cobra.Command{
Use: "list [flags] [blobs|packs|index|snapshots|keys|locks]",
Short: "List objects in the repository",
2016-09-17 10:36:05 +00:00
Long: `
The "list" command allows listing objects in the repository based on type.
EXIT STATUS
===========
Exit status is 0 if the command was successful, and non-zero if there was any error.
2016-09-17 10:36:05 +00:00
`,
DisableAutoGenTag: true,
2016-09-17 10:36:05 +00:00
RunE: func(cmd *cobra.Command, args []string) error {
2022-10-02 21:24:37 +00:00
return runList(cmd.Context(), cmd, globalOptions, args)
2016-09-17 10:36:05 +00:00
},
2014-11-30 21:39:58 +00:00
}
2016-09-17 10:36:05 +00:00
func init() {
cmdRoot.AddCommand(cmdList)
2014-12-07 15:30:52 +00:00
}
func runList(ctx context.Context, cmd *cobra.Command, opts GlobalOptions, args []string) error {
2014-10-05 12:44:59 +00:00
if len(args) != 1 {
return errors.Fatal("type not specified, usage: " + cmd.Use)
2014-12-07 15:30:52 +00:00
}
repo, err := OpenRepository(ctx, opts)
2014-12-07 15:30:52 +00:00
if err != nil {
return err
2014-10-05 12:44:59 +00:00
}
2014-08-01 20:20:28 +00:00
if !opts.NoLock && args[0] != "locks" {
var lock *restic.Lock
lock, ctx, err = lockRepo(ctx, repo)
defer unlockRepo(lock)
if err != nil {
return err
}
2015-06-27 12:40:18 +00:00
}
2016-09-01 14:04:29 +00:00
var t restic.FileType
2014-10-05 12:44:59 +00:00
switch args[0] {
case "packs":
t = restic.PackFile
case "index":
2016-09-01 14:04:29 +00:00
t = restic.IndexFile
2014-10-05 12:44:59 +00:00
case "snapshots":
2016-09-01 14:04:29 +00:00
t = restic.SnapshotFile
2014-10-05 12:44:59 +00:00
case "keys":
2016-09-01 14:04:29 +00:00
t = restic.KeyFile
2014-10-05 12:44:59 +00:00
case "locks":
2016-09-01 14:04:29 +00:00
t = restic.LockFile
2017-01-30 09:28:17 +00:00
case "blobs":
return repository.ForAllIndexes(ctx, repo, func(id restic.ID, idx *repository.Index, oldFormat bool, err error) error {
if err != nil {
return err
2017-01-30 09:28:17 +00:00
}
idx.Each(ctx, func(blobs restic.PackedBlob) {
Printf("%v %v\n", blobs.Type, blobs.ID)
})
return nil
})
2014-10-05 12:44:59 +00:00
default:
2016-09-01 20:17:37 +00:00
return errors.Fatal("invalid type")
2014-10-05 12:44:59 +00:00
}
2014-08-01 20:20:28 +00:00
return repo.List(ctx, t, func(id restic.ID, size int64) error {
2016-09-17 10:36:05 +00:00
Printf("%s\n", id)
return nil
})
2014-08-01 20:20:28 +00:00
}