mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 04:45:15 +00:00
Merge pull request #1538 from MJDSys/make_lookup_internal
repository/index: Avoid creating an error when checking if an id is in the index.
This commit is contained in:
commit
5632ca4f44
@ -169,12 +169,13 @@ func (idx *Index) ListPack(id restic.ID) (list []restic.PackedBlob) {
|
|||||||
|
|
||||||
// Has returns true iff the id is listed in the index.
|
// Has returns true iff the id is listed in the index.
|
||||||
func (idx *Index) Has(id restic.ID, tpe restic.BlobType) bool {
|
func (idx *Index) Has(id restic.ID, tpe restic.BlobType) bool {
|
||||||
_, err := idx.Lookup(id, tpe)
|
idx.m.Lock()
|
||||||
if err == nil {
|
defer idx.m.Unlock()
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
return false
|
h := restic.BlobHandle{ID: id, Type: tpe}
|
||||||
|
|
||||||
|
_, ok := idx.pack[h]
|
||||||
|
return ok
|
||||||
}
|
}
|
||||||
|
|
||||||
// LookupSize returns the length of the plaintext content of the blob with the
|
// LookupSize returns the length of the plaintext content of the blob with the
|
||||||
|
@ -2,6 +2,7 @@ package repository_test
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"math/rand"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/restic/restic/internal/repository"
|
"github.com/restic/restic/internal/repository"
|
||||||
@ -379,3 +380,106 @@ func TestIndexPacks(t *testing.T) {
|
|||||||
idxPacks := idx.Packs()
|
idxPacks := idx.Packs()
|
||||||
rtest.Assert(t, packs.Equals(idxPacks), "packs in index do not match packs added to index")
|
rtest.Assert(t, packs.Equals(idxPacks), "packs in index do not match packs added to index")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const maxPackSize = 16 * 1024 * 1024
|
||||||
|
|
||||||
|
func createRandomIndex() (idx *repository.Index, lookupID restic.ID) {
|
||||||
|
idx = repository.NewIndex()
|
||||||
|
|
||||||
|
// create index with 200k pack files
|
||||||
|
for i := 0; i < 200000; i++ {
|
||||||
|
packID := restic.NewRandomID()
|
||||||
|
offset := 0
|
||||||
|
for offset < maxPackSize {
|
||||||
|
size := 2000 + rand.Intn(4*1024*1024)
|
||||||
|
id := restic.NewRandomID()
|
||||||
|
idx.Store(restic.PackedBlob{
|
||||||
|
PackID: packID,
|
||||||
|
Blob: restic.Blob{
|
||||||
|
Type: restic.DataBlob,
|
||||||
|
ID: id,
|
||||||
|
Length: uint(size),
|
||||||
|
Offset: uint(offset),
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
offset += size
|
||||||
|
|
||||||
|
if rand.Float32() < 0.001 && lookupID.IsNull() {
|
||||||
|
lookupID = id
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return idx, lookupID
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkIndexHasUnknown(b *testing.B) {
|
||||||
|
idx, _ := createRandomIndex()
|
||||||
|
lookupID := restic.NewRandomID()
|
||||||
|
|
||||||
|
b.ResetTimer()
|
||||||
|
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
idx.Has(lookupID, restic.DataBlob)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkIndexHasKnown(b *testing.B) {
|
||||||
|
idx, lookupID := createRandomIndex()
|
||||||
|
|
||||||
|
b.ResetTimer()
|
||||||
|
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
idx.Has(lookupID, restic.DataBlob)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestIndexHas(t *testing.T) {
|
||||||
|
type testEntry struct {
|
||||||
|
id restic.ID
|
||||||
|
pack restic.ID
|
||||||
|
tpe restic.BlobType
|
||||||
|
offset, length uint
|
||||||
|
}
|
||||||
|
tests := []testEntry{}
|
||||||
|
|
||||||
|
idx := repository.NewIndex()
|
||||||
|
|
||||||
|
// create 50 packs with 20 blobs each
|
||||||
|
for i := 0; i < 50; i++ {
|
||||||
|
packID := restic.NewRandomID()
|
||||||
|
|
||||||
|
pos := uint(0)
|
||||||
|
for j := 0; j < 20; j++ {
|
||||||
|
id := restic.NewRandomID()
|
||||||
|
length := uint(i*100 + j)
|
||||||
|
idx.Store(restic.PackedBlob{
|
||||||
|
Blob: restic.Blob{
|
||||||
|
Type: restic.DataBlob,
|
||||||
|
ID: id,
|
||||||
|
Offset: pos,
|
||||||
|
Length: length,
|
||||||
|
},
|
||||||
|
PackID: packID,
|
||||||
|
})
|
||||||
|
|
||||||
|
tests = append(tests, testEntry{
|
||||||
|
id: id,
|
||||||
|
pack: packID,
|
||||||
|
tpe: restic.DataBlob,
|
||||||
|
offset: pos,
|
||||||
|
length: length,
|
||||||
|
})
|
||||||
|
|
||||||
|
pos += length
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, testBlob := range tests {
|
||||||
|
rtest.Assert(t, idx.Has(testBlob.id, testBlob.tpe), "Index reports not having data blob added to it")
|
||||||
|
}
|
||||||
|
|
||||||
|
rtest.Assert(t, !idx.Has(restic.NewRandomID(), restic.DataBlob), "Index reports having a data blob not added to it")
|
||||||
|
rtest.Assert(t, !idx.Has(tests[0].id, restic.TreeBlob), "Index reports having a tree blob added to it with the same id as a data blob")
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user