mirror of
https://github.com/kopia/kopia.git
synced 2025-12-23 22:57:50 -05:00
* cli: fixed remaining testability indirections for output and logging * cli: added cli.RunSubcommand() which is used in testing to execute a subcommand in the same process * tests: refactored most e2e tests to invoke kopia subcommands in-process * Makefile: enable code coverage for cli/ and internal/ * testing: pass 'testing' tag to unit tests which uses much faster (insecure) password hashing scheme * Makefile: push coverage from PRs again * tests: disable buffer management to reduce memory usage on ARM * cli: fixed misaligned atomic field on ARMHF also temporarily fixed statup-time benign race condition when setting default on the timeZone variable, which is the last global variable.
61 lines
1.4 KiB
Go
61 lines
1.4 KiB
Go
package cli
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/json"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/kopia/kopia/repo"
|
|
"github.com/kopia/kopia/repo/manifest"
|
|
)
|
|
|
|
type commandManifestShow struct {
|
|
manifestShowItems []string
|
|
|
|
out textOutput
|
|
}
|
|
|
|
func (c *commandManifestShow) setup(svc appServices, parent commandParent) {
|
|
cmd := parent.Command("show", "Show manifest items")
|
|
cmd.Arg("item", "List of items").Required().StringsVar(&c.manifestShowItems)
|
|
cmd.Action(svc.repositoryReaderAction(c.showManifestItems))
|
|
c.out.setup(svc)
|
|
}
|
|
|
|
func toManifestIDs(s []string) []manifest.ID {
|
|
var result []manifest.ID
|
|
|
|
for _, it := range s {
|
|
result = append(result, manifest.ID(it))
|
|
}
|
|
|
|
return result
|
|
}
|
|
|
|
func (c *commandManifestShow) showManifestItems(ctx context.Context, rep repo.Repository) error {
|
|
for _, it := range toManifestIDs(c.manifestShowItems) {
|
|
var b json.RawMessage
|
|
|
|
md, err := rep.GetManifest(ctx, it, &b)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error getting metadata for %q", it)
|
|
}
|
|
|
|
c.out.printStdout("// id: %v\n", it)
|
|
c.out.printStdout("// length: %v\n", md.Length)
|
|
c.out.printStdout("// modified: %v\n", formatTimestamp(md.ModTime))
|
|
|
|
for k, v := range md.Labels {
|
|
c.out.printStdout("// label %v:%v\n", k, v)
|
|
}
|
|
|
|
if showerr := showContentWithFlags(c.out.stdout(), bytes.NewReader(b), false, true); showerr != nil {
|
|
return showerr
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|