mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-23 00:43:51 +01:00
51af880701
refs #34
37 lines
850 B
Go
37 lines
850 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"github.com/zrepl/zrepl/zfs"
|
|
"strings"
|
|
)
|
|
|
|
type PrefixFilter struct {
|
|
prefix string
|
|
fstype zfs.VersionType
|
|
fstypeSet bool // optionals anyone?
|
|
}
|
|
|
|
func NewPrefixFilter(prefix string) *PrefixFilter {
|
|
return &PrefixFilter{prefix: prefix}
|
|
}
|
|
|
|
func NewTypedPrefixFilter(prefix string, versionType zfs.VersionType) *PrefixFilter {
|
|
return &PrefixFilter{prefix, versionType, true}
|
|
}
|
|
|
|
func parseSnapshotPrefix(i string) (p string, err error) {
|
|
if len(i) <= 0 {
|
|
err = errors.Errorf("snapshot prefix must not be empty string")
|
|
return
|
|
}
|
|
p = i
|
|
return
|
|
}
|
|
|
|
func (f *PrefixFilter) Filter(fsv zfs.FilesystemVersion) (accept bool, err error) {
|
|
fstypeMatches := (!f.fstypeSet || fsv.Type == f.fstype)
|
|
prefixMatches := strings.HasPrefix(fsv.Name, f.prefix)
|
|
return fstypeMatches && prefixMatches, nil
|
|
}
|