You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
570 B
23 lines
570 B
3 years ago
|
package metadata
|
||
|
|
||
|
import (
|
||
|
"regexp"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
type parentSnapshotIDExtractor struct {
|
||
|
re *regexp.Regexp
|
||
|
}
|
||
|
|
||
|
func (e parentSnapshotIDExtractor) Matches(line string) bool {
|
||
|
return e.re.MatchString(line)
|
||
|
}
|
||
|
func (e parentSnapshotIDExtractor) Extract(metadata *BackupLogMetadata, line string) {
|
||
|
// Sample line: "using parent snapshot c65d9310"
|
||
|
metadata.ParentSnapshotID = strings.TrimSpace(e.re.ReplaceAllString(line, ""))
|
||
|
}
|
||
|
|
||
|
func NewParentSnapshotIDExtractor() MetadatExtractor {
|
||
|
return parentSnapshotIDExtractor{regexp.MustCompile(`(?i)^using parent snapshot`)}
|
||
|
}
|