restic/cmd/restic/cmd_list.go

75 lines
1.6 KiB
Go
Raw Permalink Normal View History

2014-08-01 22:20:28 +02:00
package main
2016-09-01 22:17:37 +02:00
import (
"context"
2017-07-23 14:21:03 +02:00
"github.com/restic/restic/internal/errors"
"github.com/restic/restic/internal/index"
2017-07-24 17:42:25 +02:00
"github.com/restic/restic/internal/restic"
2016-09-17 12:36:05 +02:00
"github.com/spf13/cobra"
2016-09-01 22:17:37 +02:00
)
2014-08-01 22:20:28 +02:00
2016-09-17 12:36:05 +02:00
var cmdList = &cobra.Command{
Use: "list [flags] [blobs|packs|index|snapshots|keys|locks]",
Short: "List objects in the repository",
2016-09-17 12:36:05 +02: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 12:36:05 +02:00
`,
DisableAutoGenTag: true,
2016-09-17 12:36:05 +02:00
RunE: func(cmd *cobra.Command, args []string) error {
return runList(cmd.Context(), globalOptions, args)
2016-09-17 12:36:05 +02:00
},
2014-11-30 22:39:58 +01:00
}
2016-09-17 12:36:05 +02:00
func init() {
cmdRoot.AddCommand(cmdList)
2014-12-07 16:30:52 +01:00
}
func runList(ctx context.Context, gopts GlobalOptions, args []string) error {
2014-10-05 14:44:59 +02:00
if len(args) != 1 {
return errors.Fatal("type not specified")
2014-12-07 16:30:52 +01:00
}
ctx, repo, unlock, err := openWithReadLock(ctx, gopts, gopts.NoLock || args[0] == "locks")
2014-12-07 16:30:52 +01:00
if err != nil {
return err
2014-10-05 14:44:59 +02:00
}
defer unlock()
2015-06-27 14:40:18 +02:00
2016-09-01 16:04:29 +02:00
var t restic.FileType
2014-10-05 14:44:59 +02:00
switch args[0] {
case "packs":
t = restic.PackFile
case "index":
2016-09-01 16:04:29 +02:00
t = restic.IndexFile
2014-10-05 14:44:59 +02:00
case "snapshots":
2016-09-01 16:04:29 +02:00
t = restic.SnapshotFile
2014-10-05 14:44:59 +02:00
case "keys":
2016-09-01 16:04:29 +02:00
t = restic.KeyFile
2014-10-05 14:44:59 +02:00
case "locks":
2016-09-01 16:04:29 +02:00
t = restic.LockFile
2017-01-30 10:28:17 +01:00
case "blobs":
2024-02-10 22:58:10 +01:00
return index.ForAllIndexes(ctx, repo, repo, func(_ restic.ID, idx *index.Index, _ bool, err error) error {
if err != nil {
return err
2017-01-30 10:28:17 +01:00
}
return idx.Each(ctx, func(blobs restic.PackedBlob) {
Printf("%v %v\n", blobs.Type, blobs.ID)
})
})
2014-10-05 14:44:59 +02:00
default:
2016-09-01 22:17:37 +02:00
return errors.Fatal("invalid type")
2014-10-05 14:44:59 +02:00
}
2014-08-01 22:20:28 +02:00
2024-02-10 22:58:10 +01:00
return repo.List(ctx, t, func(id restic.ID, _ int64) error {
2016-09-17 12:36:05 +02:00
Printf("%s\n", id)
return nil
})
2014-08-01 22:20:28 +02:00
}