2014-12-07 13:44:01 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-03-08 19:29:31 +00:00
|
|
|
"context"
|
2014-12-07 13:44:01 +00:00
|
|
|
"path/filepath"
|
2017-03-07 09:58:09 +00:00
|
|
|
"strings"
|
2014-12-07 15:30:52 +00:00
|
|
|
"time"
|
2014-12-07 13:44:01 +00:00
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
2016-02-14 14:29:28 +00:00
|
|
|
"restic"
|
|
|
|
"restic/debug"
|
2016-09-01 20:17:37 +00:00
|
|
|
"restic/errors"
|
2016-02-14 14:29:28 +00:00
|
|
|
"restic/repository"
|
2014-12-07 13:44:01 +00:00
|
|
|
)
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
var cmdFind = &cobra.Command{
|
|
|
|
Use: "find [flags] PATTERN",
|
|
|
|
Short: "find a file or directory",
|
|
|
|
Long: `
|
|
|
|
The "find" command searches for files or directories in snapshots stored in the
|
|
|
|
repo. `,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
return runFind(findOptions, globalOptions, args)
|
|
|
|
},
|
2014-12-07 13:44:01 +00:00
|
|
|
}
|
|
|
|
|
2017-03-08 19:09:24 +00:00
|
|
|
// FindOptions bundles all options for the find command.
|
2016-09-17 10:36:05 +00:00
|
|
|
type FindOptions struct {
|
2017-03-07 09:58:09 +00:00
|
|
|
Oldest string
|
|
|
|
Newest string
|
2017-03-08 19:29:31 +00:00
|
|
|
Snapshots []string
|
2017-03-07 09:58:09 +00:00
|
|
|
CaseInsensitive bool
|
2017-03-08 19:29:31 +00:00
|
|
|
ListLong bool
|
|
|
|
Host string
|
|
|
|
Paths []string
|
|
|
|
Tags []string
|
2016-09-17 10:36:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var findOptions FindOptions
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cmdRoot.AddCommand(cmdFind)
|
|
|
|
|
|
|
|
f := cmdFind.Flags()
|
2017-02-13 15:02:47 +00:00
|
|
|
f.StringVarP(&findOptions.Oldest, "oldest", "o", "", "oldest modification date/time")
|
|
|
|
f.StringVarP(&findOptions.Newest, "newest", "n", "", "newest modification date/time")
|
2017-03-08 19:29:31 +00:00
|
|
|
f.StringSliceVarP(&findOptions.Snapshots, "snapshot", "s", nil, "snapshot `id` to search in (can be given multiple times)")
|
2017-03-07 09:58:09 +00:00
|
|
|
f.BoolVarP(&findOptions.CaseInsensitive, "ignore-case", "i", false, "ignore case for pattern")
|
2017-03-08 19:29:31 +00:00
|
|
|
f.BoolVarP(&findOptions.ListLong, "long", "l", false, "use a long listing format showing size and mode")
|
|
|
|
|
|
|
|
f.StringVarP(&findOptions.Host, "host", "H", "", "only consider snapshots for this `host`, when no snapshot ID is given")
|
|
|
|
f.StringSliceVar(&findOptions.Tags, "tag", nil, "only consider snapshots which include this `tag`, when no snapshot-ID is given")
|
|
|
|
f.StringSliceVar(&findOptions.Paths, "path", nil, "only consider snapshots which include this (absolute) `path`, when no snapshot-ID is given")
|
2016-09-17 10:36:05 +00:00
|
|
|
}
|
2014-12-07 16:11:01 +00:00
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
type findPattern struct {
|
2014-12-07 16:11:01 +00:00
|
|
|
oldest, newest time.Time
|
|
|
|
pattern string
|
2017-03-07 09:58:09 +00:00
|
|
|
ignoreCase bool
|
2016-09-17 10:36:05 +00:00
|
|
|
}
|
|
|
|
|
2014-12-07 16:11:01 +00:00
|
|
|
var timeFormats = []string{
|
|
|
|
"2006-01-02",
|
|
|
|
"2006-01-02 15:04",
|
|
|
|
"2006-01-02 15:04:05",
|
|
|
|
"2006-01-02 15:04:05 -0700",
|
|
|
|
"2006-01-02 15:04:05 MST",
|
|
|
|
"02.01.2006",
|
|
|
|
"02.01.2006 15:04",
|
|
|
|
"02.01.2006 15:04:05",
|
|
|
|
"02.01.2006 15:04:05 -0700",
|
|
|
|
"02.01.2006 15:04:05 MST",
|
|
|
|
"Mon Jan 2 15:04:05 -0700 MST 2006",
|
2014-12-07 15:30:52 +00:00
|
|
|
}
|
|
|
|
|
2014-12-07 16:11:01 +00:00
|
|
|
func parseTime(str string) (time.Time, error) {
|
|
|
|
for _, fmt := range timeFormats {
|
|
|
|
if t, err := time.ParseInLocation(fmt, str, time.Local); err == nil {
|
|
|
|
return t, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-01 20:17:37 +00:00
|
|
|
return time.Time{}, errors.Fatalf("unable to parse time: %q", str)
|
2014-12-07 16:11:01 +00:00
|
|
|
}
|
|
|
|
|
2017-03-08 19:29:31 +00:00
|
|
|
func findInTree(repo *repository.Repository, pat findPattern, id restic.ID, prefix string, snapshotID *string) error {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log("checking tree %v\n", id)
|
2017-03-08 19:29:31 +00:00
|
|
|
|
2016-09-03 09:22:01 +00:00
|
|
|
tree, err := repo.LoadTree(id)
|
2014-12-07 13:44:01 +00:00
|
|
|
if err != nil {
|
2017-03-08 19:29:31 +00:00
|
|
|
return err
|
2014-12-07 13:44:01 +00:00
|
|
|
}
|
|
|
|
|
2015-01-10 22:40:10 +00:00
|
|
|
for _, node := range tree.Nodes {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log(" testing entry %q\n", node.Name)
|
2014-12-07 16:11:01 +00:00
|
|
|
|
2017-03-07 09:58:09 +00:00
|
|
|
name := node.Name
|
|
|
|
if pat.ignoreCase {
|
|
|
|
name = strings.ToLower(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
m, err := filepath.Match(pat.pattern, name)
|
2014-12-07 13:44:01 +00:00
|
|
|
if err != nil {
|
2017-03-08 19:29:31 +00:00
|
|
|
return err
|
2014-12-07 13:44:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if m {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log(" pattern matches\n")
|
2016-09-17 10:36:05 +00:00
|
|
|
if !pat.oldest.IsZero() && node.ModTime.Before(pat.oldest) {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log(" ModTime is older than %s\n", pat.oldest)
|
2014-12-07 16:11:01 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
if !pat.newest.IsZero() && node.ModTime.After(pat.newest) {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log(" ModTime is newer than %s\n", pat.newest)
|
2014-12-07 16:11:01 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-03-08 19:29:31 +00:00
|
|
|
if snapshotID != nil {
|
|
|
|
Verbosef("Found matching entries in snapshot %s\n", *snapshotID)
|
|
|
|
snapshotID = nil
|
|
|
|
}
|
|
|
|
Printf(formatNode(prefix, node, findOptions.ListLong) + "\n")
|
2014-12-07 16:11:01 +00:00
|
|
|
} else {
|
2016-09-27 20:35:08 +00:00
|
|
|
debug.Log(" pattern does not match\n")
|
2014-12-07 13:44:01 +00:00
|
|
|
}
|
|
|
|
|
2016-09-01 19:20:03 +00:00
|
|
|
if node.Type == "dir" {
|
2017-03-08 19:29:31 +00:00
|
|
|
if err := findInTree(repo, pat, *node.Subtree, filepath.Join(prefix, node.Name), snapshotID); err != nil {
|
|
|
|
return err
|
2014-12-07 13:44:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-08 19:29:31 +00:00
|
|
|
return nil
|
2014-12-07 13:44:01 +00:00
|
|
|
}
|
|
|
|
|
2017-03-08 19:29:31 +00:00
|
|
|
func findInSnapshot(repo *repository.Repository, sn *restic.Snapshot, pat findPattern) error {
|
|
|
|
debug.Log("searching in snapshot %s\n for entries within [%s %s]", sn.ID(), pat.oldest, pat.newest)
|
2014-12-07 13:44:01 +00:00
|
|
|
|
2017-03-08 19:29:31 +00:00
|
|
|
snapshotID := sn.ID().Str()
|
|
|
|
if err := findInTree(repo, pat, *sn.Tree, string(filepath.Separator), &snapshotID); err != nil {
|
2014-12-07 13:44:01 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
func runFind(opts FindOptions, gopts GlobalOptions, args []string) error {
|
2014-12-07 16:11:01 +00:00
|
|
|
if len(args) != 1 {
|
2017-02-10 18:39:49 +00:00
|
|
|
return errors.Fatal("wrong number of arguments")
|
2014-12-07 16:11:01 +00:00
|
|
|
}
|
|
|
|
|
2017-03-08 19:29:31 +00:00
|
|
|
var err error
|
|
|
|
pat := findPattern{pattern: args[0]}
|
|
|
|
if opts.CaseInsensitive {
|
|
|
|
pat.pattern = strings.ToLower(pat.pattern)
|
|
|
|
pat.ignoreCase = true
|
|
|
|
}
|
2014-12-07 16:11:01 +00:00
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
if opts.Oldest != "" {
|
2017-03-08 19:29:31 +00:00
|
|
|
if pat.oldest, err = parseTime(opts.Oldest); err != nil {
|
2014-12-07 16:11:01 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
if opts.Newest != "" {
|
2017-03-08 19:29:31 +00:00
|
|
|
if pat.newest, err = parseTime(opts.Newest); err != nil {
|
2014-12-07 16:11:01 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-12-07 15:30:52 +00:00
|
|
|
}
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
repo, err := OpenRepository(gopts)
|
2014-12-07 15:30:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2014-12-07 13:44:01 +00:00
|
|
|
}
|
|
|
|
|
2016-09-17 10:36:05 +00:00
|
|
|
if !gopts.NoLock {
|
|
|
|
lock, err := lockRepo(repo)
|
|
|
|
defer unlockRepo(lock)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-06-27 12:40:18 +00:00
|
|
|
}
|
|
|
|
|
2017-03-08 19:29:31 +00:00
|
|
|
if err = repo.LoadIndex(); err != nil {
|
2015-08-27 21:21:44 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-03-08 19:29:31 +00:00
|
|
|
ctx, cancel := context.WithCancel(gopts.ctx)
|
|
|
|
defer cancel()
|
|
|
|
for sn := range FindFilteredSnapshots(ctx, repo, opts.Host, opts.Tags, opts.Paths, opts.Snapshots) {
|
|
|
|
if err = findInSnapshot(repo, sn, pat); err != nil {
|
2014-12-07 13:44:01 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|