rewrite: Add structs for tracking metadata changes

Adds

  * snapshotMetadataArgs, which holds the new metadata as strings parsed from
    the command line

  * snapshotMetadata, which holds the new metadata converted to the
    correct types
This commit is contained in:
Gabriel Kabbe 2023-11-27 21:04:24 +01:00 committed by Michael Eischer
parent 1196c72819
commit 3026baea07
1 changed files with 15 additions and 2 deletions

View File

@ -3,6 +3,7 @@ package main
import (
"context"
"fmt"
"time"
"github.com/spf13/cobra"
"golang.org/x/sync/errgroup"
@ -46,16 +47,28 @@ Exit status is 0 if the command was successful, and non-zero if there was any er
},
}
type snapshotMetadata struct {
Hostname string
Time *time.Time
}
type SnapshotMetadataArgs struct {
Hostname string
Time string
}
// RewriteOptions collects all options for the rewrite command.
type RewriteOptions struct {
Forget bool
DryRun bool
Forget bool
DryRun bool
Metadata *SnapshotMetadataArgs
restic.SnapshotFilter
excludePatternOptions
}
var rewriteOptions RewriteOptions
var metadataOptions SnapshotMetadataArgs
func init() {
cmdRoot.AddCommand(cmdRewrite)