2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-29 23:20:49 +00:00
restic/internal/index/index.go

294 lines
7.0 KiB
Go
Raw Normal View History

2016-08-07 15:19:00 +00:00
// Package index contains various data structures for indexing content in a repository or backend.
package index
import (
2017-06-04 09:16:55 +00:00
"context"
2016-08-07 15:19:00 +00:00
"fmt"
"os"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/list"
"github.com/restic/restic/internal/pack"
2017-07-24 15:42:25 +00:00
"github.com/restic/restic/internal/restic"
2017-07-23 12:21:03 +00:00
"github.com/restic/restic/internal/worker"
"github.com/restic/restic/internal/errors"
2016-08-07 15:19:00 +00:00
)
// Pack contains information about the contents of a pack.
type Pack struct {
ID restic.ID
2016-08-07 19:56:42 +00:00
Size int64
2016-08-31 21:07:50 +00:00
Entries []restic.Blob
2016-08-07 15:19:00 +00:00
}
// Index contains information about blobs and packs stored in a repo.
type Index struct {
2016-08-31 21:07:50 +00:00
Packs map[restic.ID]Pack
IndexIDs restic.IDSet
2016-08-07 15:19:00 +00:00
}
func newIndex() *Index {
return &Index{
2016-08-31 21:07:50 +00:00
Packs: make(map[restic.ID]Pack),
IndexIDs: restic.NewIDSet(),
2016-08-07 15:19:00 +00:00
}
}
// New creates a new index for repo from scratch. InvalidFiles contains all IDs
// of files that cannot be listed successfully.
func New(ctx context.Context, repo restic.Repository, ignorePacks restic.IDSet, p *restic.Progress) (idx *Index, invalidFiles restic.IDs, err error) {
2016-08-15 19:10:12 +00:00
p.Start()
defer p.Done()
2016-08-07 15:19:00 +00:00
ch := make(chan worker.Job)
go list.AllPacks(ctx, repo, ignorePacks, ch)
2016-08-07 15:19:00 +00:00
idx = newIndex()
2016-08-07 15:19:00 +00:00
for job := range ch {
2016-08-15 19:10:12 +00:00
p.Report(restic.Stat{Blobs: 1})
2016-08-31 21:07:50 +00:00
packID := job.Data.(restic.ID)
2016-08-07 15:19:00 +00:00
if job.Error != nil {
cause := errors.Cause(job.Error)
if _, ok := cause.(pack.InvalidFileError); ok {
invalidFiles = append(invalidFiles, packID)
continue
}
fmt.Fprintf(os.Stderr, "pack file cannot be listed %v: %v\n", packID.Str(), job.Error)
2016-08-07 15:19:00 +00:00
continue
}
2016-08-14 15:59:20 +00:00
j := job.Result.(list.Result)
2016-08-07 15:19:00 +00:00
2016-09-27 20:35:08 +00:00
debug.Log("pack %v contains %d blobs", packID.Str(), len(j.Entries()))
2016-08-07 15:19:00 +00:00
2016-08-14 14:11:59 +00:00
err := idx.AddPack(packID, j.Size(), j.Entries())
2016-08-07 20:18:20 +00:00
if err != nil {
return nil, nil, err
2016-08-07 15:19:00 +00:00
}
}
return idx, invalidFiles, nil
2016-08-07 15:19:00 +00:00
}
type packJSON struct {
2016-08-31 21:07:50 +00:00
ID restic.ID `json:"id"`
2016-08-07 15:19:00 +00:00
Blobs []blobJSON `json:"blobs"`
}
type blobJSON struct {
2016-08-31 21:07:50 +00:00
ID restic.ID `json:"id"`
Type restic.BlobType `json:"type"`
Offset uint `json:"offset"`
Length uint `json:"length"`
2016-08-07 15:19:00 +00:00
}
type indexJSON struct {
2016-08-31 21:07:50 +00:00
Supersedes restic.IDs `json:"supersedes,omitempty"`
2016-08-07 15:19:00 +00:00
Packs []*packJSON `json:"packs"`
}
2017-06-04 09:16:55 +00:00
func loadIndexJSON(ctx context.Context, repo restic.Repository, id restic.ID) (*indexJSON, error) {
2016-09-27 20:35:08 +00:00
debug.Log("process index %v\n", id.Str())
2016-08-07 15:19:00 +00:00
var idx indexJSON
2017-06-04 09:16:55 +00:00
err := repo.LoadJSONUnpacked(ctx, restic.IndexFile, id, &idx)
2016-08-07 15:19:00 +00:00
if err != nil {
return nil, err
}
return &idx, nil
}
// Load creates an index by loading all index files from the repo.
2017-06-04 09:16:55 +00:00
func Load(ctx context.Context, repo restic.Repository, p *restic.Progress) (*Index, error) {
2016-09-27 20:35:08 +00:00
debug.Log("loading indexes")
2016-08-07 15:19:00 +00:00
2016-08-15 19:10:12 +00:00
p.Start()
defer p.Done()
2016-08-31 21:07:50 +00:00
supersedes := make(map[restic.ID]restic.IDSet)
results := make(map[restic.ID]map[restic.ID]Pack)
2016-08-07 15:19:00 +00:00
2016-08-07 20:18:20 +00:00
index := newIndex()
2017-06-04 09:16:55 +00:00
for id := range repo.List(ctx, restic.IndexFile) {
2016-08-15 19:10:12 +00:00
p.Report(restic.Stat{Blobs: 1})
2016-09-27 20:35:08 +00:00
debug.Log("Load index %v", id.Str())
2017-06-04 09:16:55 +00:00
idx, err := loadIndexJSON(ctx, repo, id)
2016-08-07 15:19:00 +00:00
if err != nil {
return nil, err
}
2016-08-31 21:07:50 +00:00
res := make(map[restic.ID]Pack)
supersedes[id] = restic.NewIDSet()
2016-08-07 15:19:00 +00:00
for _, sid := range idx.Supersedes {
2016-09-27 20:35:08 +00:00
debug.Log(" index %v supersedes %v", id.Str(), sid)
2016-08-07 15:19:00 +00:00
supersedes[id].Insert(sid)
}
for _, jpack := range idx.Packs {
2016-08-31 21:07:50 +00:00
entries := make([]restic.Blob, 0, len(jpack.Blobs))
2016-08-07 15:19:00 +00:00
for _, blob := range jpack.Blobs {
2016-08-31 21:07:50 +00:00
entry := restic.Blob{
2016-08-07 15:19:00 +00:00
ID: blob.ID,
Type: blob.Type,
Offset: blob.Offset,
Length: blob.Length,
2016-08-07 16:45:25 +00:00
}
2016-08-07 20:18:20 +00:00
entries = append(entries, entry)
}
if err = index.AddPack(jpack.ID, 0, entries); err != nil {
return nil, err
2016-08-07 15:19:00 +00:00
}
}
results[id] = res
index.IndexIDs.Insert(id)
2016-08-07 15:19:00 +00:00
}
for superID, list := range supersedes {
for indexID := range list {
if _, ok := results[indexID]; !ok {
continue
}
2016-09-27 20:35:08 +00:00
debug.Log(" removing index %v, superseded by %v", indexID.Str(), superID.Str())
fmt.Fprintf(os.Stderr, "index %v can be removed, superseded by index %v\n", indexID.Str(), superID.Str())
2016-08-07 15:19:00 +00:00
delete(results, indexID)
}
}
2016-08-07 20:18:20 +00:00
return index, nil
}
// AddPack adds a pack to the index. If this pack is already in the index, an
// error is returned.
2016-08-31 21:07:50 +00:00
func (idx *Index) AddPack(id restic.ID, size int64, entries []restic.Blob) error {
2016-08-07 20:18:20 +00:00
if _, ok := idx.Packs[id]; ok {
return errors.Errorf("pack %v already present in the index", id.Str())
2016-08-07 20:18:20 +00:00
}
2017-01-22 21:10:36 +00:00
idx.Packs[id] = Pack{ID: id, Size: size, Entries: entries}
2016-08-07 20:18:20 +00:00
return nil
2016-08-07 15:19:00 +00:00
}
2016-08-07 19:57:31 +00:00
2016-08-15 16:55:52 +00:00
// RemovePack deletes a pack from the index.
2016-08-31 21:07:50 +00:00
func (idx *Index) RemovePack(id restic.ID) error {
2016-08-15 16:55:52 +00:00
if _, ok := idx.Packs[id]; !ok {
return errors.Errorf("pack %v not found in the index", id.Str())
2016-08-15 16:55:52 +00:00
}
delete(idx.Packs, id)
return nil
}
2016-08-07 19:57:31 +00:00
// DuplicateBlobs returns a list of blobs that are stored more than once in the
// repo.
2016-08-31 21:07:50 +00:00
func (idx *Index) DuplicateBlobs() (dups restic.BlobSet) {
dups = restic.NewBlobSet()
seen := restic.NewBlobSet()
2016-08-07 19:57:31 +00:00
for _, p := range idx.Packs {
for _, entry := range p.Entries {
2016-08-31 21:07:50 +00:00
h := restic.BlobHandle{ID: entry.ID, Type: entry.Type}
2016-08-07 19:57:31 +00:00
if seen.Has(h) {
2016-08-07 20:18:20 +00:00
dups.Insert(h)
2016-08-07 19:57:31 +00:00
}
seen.Insert(h)
}
}
return dups
}
2016-08-07 20:18:20 +00:00
// PacksForBlobs returns the set of packs in which the blobs are contained.
2016-08-31 21:07:50 +00:00
func (idx *Index) PacksForBlobs(blobs restic.BlobSet) (packs restic.IDSet) {
packs = restic.NewIDSet()
2016-08-07 20:18:20 +00:00
for id, p := range idx.Packs {
for _, entry := range p.Entries {
if blobs.Has(restic.BlobHandle{ID: entry.ID, Type: entry.Type}) {
packs.Insert(id)
}
2016-08-07 20:18:20 +00:00
}
}
return packs
}
// Location describes the location of a blob in a pack.
type Location struct {
2016-08-31 21:07:50 +00:00
PackID restic.ID
restic.Blob
}
// ErrBlobNotFound is return by FindBlob when the blob could not be found in
// the index.
var ErrBlobNotFound = errors.New("blob not found in index")
// FindBlob returns a list of packs and positions the blob can be found in.
func (idx *Index) FindBlob(h restic.BlobHandle) (result []Location, err error) {
for id, p := range idx.Packs {
for _, entry := range p.Entries {
if entry.ID.Equal(h.ID) && entry.Type == h.Type {
result = append(result, Location{
PackID: id,
Blob: entry,
})
}
}
}
if len(result) == 0 {
return nil, ErrBlobNotFound
}
return result, nil
}
// Save writes the complete index to the repo.
2017-06-04 09:16:55 +00:00
func (idx *Index) Save(ctx context.Context, repo restic.Repository, supersedes restic.IDs) (restic.ID, error) {
2016-08-31 21:07:50 +00:00
packs := make(map[restic.ID][]restic.Blob, len(idx.Packs))
2016-08-15 18:46:14 +00:00
for id, p := range idx.Packs {
packs[id] = p.Entries
}
2017-06-04 09:16:55 +00:00
return Save(ctx, repo, packs, supersedes)
2016-08-15 18:46:14 +00:00
}
// Save writes a new index containing the given packs.
2017-06-04 09:16:55 +00:00
func Save(ctx context.Context, repo restic.Repository, packs map[restic.ID][]restic.Blob, supersedes restic.IDs) (restic.ID, error) {
idx := &indexJSON{
Supersedes: supersedes,
Packs: make([]*packJSON, 0, len(packs)),
}
for packID, blobs := range packs {
b := make([]blobJSON, 0, len(blobs))
for _, blob := range blobs {
b = append(b, blobJSON{
ID: blob.ID,
Type: blob.Type,
Offset: blob.Offset,
Length: blob.Length,
})
}
p := &packJSON{
ID: packID,
Blobs: b,
}
idx.Packs = append(idx.Packs, p)
}
2017-06-04 09:16:55 +00:00
return repo.SaveJSONUnpacked(ctx, restic.IndexFile, idx)
}