mirror of
https://github.com/kopia/kopia.git
synced 2025-12-31 10:37:55 -05:00
* refactor(repository): ensure we always parse content.ID and object.ID
This changes the types to be incompatible with string to prevent direct
conversion to and from string.
This has the additional benefit of reducing number of memory allocations
and bytes for all IDs.
content.ID went from 2 allocations to 1:
typical case 32 characters + 16 bytes per-string overhead
worst-case 65 characters + 16 bytes per-string overhead
now: 34 bytes
object.ID went from 2 allocations to 1:
typical case 32 characters + 16 bytes per-string overhead
worst-case 65 characters + 16 bytes per-string overhead
now: 36 bytes
* move index.{ID,IDRange} methods to separate files
* replaced index.IDFromHash with content.IDFromHash externally
* minor tweaks and additional tests
* Update repo/content/index/id_test.go
Co-authored-by: Julio Lopez <1953782+julio-lopez@users.noreply.github.com>
* Update repo/content/index/id_test.go
Co-authored-by: Julio Lopez <1953782+julio-lopez@users.noreply.github.com>
* pr feedback
* post-merge fixes
* pr feedback
* pr feedback
* fixed subtle regression in sortedContents()
This was actually not producing invalid results because of how base36
works, just not sorting as efficiently as it could.
Co-authored-by: Julio Lopez <1953782+julio-lopez@users.noreply.github.com>
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package cli
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"github.com/kopia/kopia/repo"
|
|
"github.com/kopia/kopia/repo/content"
|
|
)
|
|
|
|
type commandContentShow struct {
|
|
ids []string
|
|
indentJSON bool
|
|
decompress bool
|
|
|
|
out textOutput
|
|
}
|
|
|
|
func (c *commandContentShow) setup(svc appServices, parent commandParent) {
|
|
cmd := parent.Command("show", "Show contents by ID.").Alias("cat")
|
|
|
|
cmd.Arg("id", "IDs of contents to show").Required().StringsVar(&c.ids)
|
|
cmd.Flag("json", "Pretty-print JSON content").Short('j').BoolVar(&c.indentJSON)
|
|
cmd.Flag("unzip", "Transparently decompress the content").Short('z').BoolVar(&c.decompress)
|
|
cmd.Action(svc.directRepositoryReadAction(c.run))
|
|
|
|
c.out.setup(svc)
|
|
}
|
|
|
|
func (c *commandContentShow) run(ctx context.Context, rep repo.DirectRepository) error {
|
|
contentIDs, err := toContentIDs(c.ids)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, contentID := range contentIDs {
|
|
if err := c.contentShow(ctx, rep, contentID); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *commandContentShow) contentShow(ctx context.Context, r repo.DirectRepository, contentID content.ID) error {
|
|
data, err := r.ContentReader().GetContent(ctx, contentID)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error getting content %v", contentID)
|
|
}
|
|
|
|
return showContentWithFlags(c.out.stdout(), bytes.NewReader(data), c.decompress, c.indentJSON)
|
|
}
|