2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-07 11:30:49 +00:00
restic/internal/filter/filter.go

123 lines
2.6 KiB
Go
Raw Normal View History

2015-07-13 20:05:21 +00:00
package filter
import (
"path/filepath"
"strings"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal/errors"
2015-07-13 20:05:21 +00:00
)
// ErrBadString is returned when Match is called with the empty string as the
// second argument.
var ErrBadString = errors.New("filter.Match: string is empty")
// Match returns true if str matches the pattern. When the pattern is
// malformed, filepath.ErrBadPattern is returned. The empty pattern matches
// everything, when str is the empty string ErrBadString is returned.
//
// Pattern can be a combination of patterns suitable for filepath.Match, joined
// by filepath.Separator.
func Match(pattern, str string) (matched bool, err error) {
if pattern == "" {
return true, nil
}
pattern = filepath.Clean(pattern)
2015-07-13 20:05:21 +00:00
if str == "" {
return false, ErrBadString
}
// convert file path separator to '/'
if filepath.Separator != '/' {
pattern = strings.Replace(pattern, string(filepath.Separator), "/", -1)
str = strings.Replace(str, string(filepath.Separator), "/", -1)
}
patterns := strings.Split(pattern, "/")
strs := strings.Split(str, "/")
2015-07-13 20:05:21 +00:00
return match(patterns, strs)
}
2015-07-13 20:51:35 +00:00
func hasDoubleWildcard(list []string) (ok bool, pos int) {
for i, item := range list {
if item == "**" {
return true, i
}
}
return false, 0
}
2015-07-13 20:05:21 +00:00
func match(patterns, strs []string) (matched bool, err error) {
2015-07-13 20:51:35 +00:00
if ok, pos := hasDoubleWildcard(patterns); ok {
// gradually expand '**' into separate wildcards
for i := 0; i <= len(strs)-len(patterns)+1; i++ {
newPat := make([]string, pos)
copy(newPat, patterns[:pos])
2015-07-13 20:51:35 +00:00
for k := 0; k < i; k++ {
newPat = append(newPat, "*")
}
newPat = append(newPat, patterns[pos+1:]...)
matched, err := match(newPat, strs)
if err != nil {
return false, err
}
if matched {
return true, nil
}
}
return false, nil
}
2015-07-13 20:05:21 +00:00
if len(patterns) == 0 && len(strs) == 0 {
return true, nil
}
if len(patterns) <= len(strs) {
outer:
for offset := len(strs) - len(patterns); offset >= 0; offset-- {
for i := len(patterns) - 1; i >= 0; i-- {
ok, err := filepath.Match(patterns[i], strs[offset+i])
if err != nil {
2016-08-29 20:16:58 +00:00
return false, errors.Wrap(err, "Match")
2015-07-13 20:05:21 +00:00
}
if !ok {
continue outer
}
}
return true, nil
}
}
return false, nil
}
2017-04-16 18:49:20 +00:00
// List returns true if str matches one of the patterns. Empty patterns are
// ignored.
func List(patterns []string, str string) (matched bool, err error) {
2015-07-13 20:05:21 +00:00
for _, pat := range patterns {
2017-04-16 18:49:20 +00:00
if pat == "" {
continue
}
2015-07-13 20:05:21 +00:00
matched, err = Match(pat, str)
if err != nil {
return false, err
}
if matched {
return true, nil
}
}
return false, nil
}