mirror of
https://github.com/ipfs/kubo.git
synced 2025-09-09 19:32:24 +08:00
175 lines
4.1 KiB
Go
175 lines
4.1 KiB
Go
// package blockstore implements a thin wrapper over a datastore, giving a
|
|
// clean interface for Getting and Putting block objects.
|
|
package blockstore
|
|
|
|
import (
|
|
"errors"
|
|
|
|
ds "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore"
|
|
dsns "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore/namespace"
|
|
dsq "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-datastore/query"
|
|
mh "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multihash"
|
|
context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
|
|
blocks "github.com/ipfs/go-ipfs/blocks"
|
|
key "github.com/ipfs/go-ipfs/blocks/key"
|
|
logging "github.com/ipfs/go-ipfs/vendor/QmTBXYb6y2ZcJmoXVKk3pf9rzSEjbCg7tQaJW7RSuH14nv/go-log"
|
|
)
|
|
|
|
var log = logging.Logger("blockstore")
|
|
|
|
// BlockPrefix namespaces blockstore datastores
|
|
var BlockPrefix = ds.NewKey("blocks")
|
|
|
|
var ValueTypeMismatch = errors.New("The retrieved value is not a Block")
|
|
|
|
var ErrNotFound = errors.New("blockstore: block not found")
|
|
|
|
// Blockstore wraps a ThreadSafeDatastore
|
|
type Blockstore interface {
|
|
DeleteBlock(key.Key) error
|
|
Has(key.Key) (bool, error)
|
|
Get(key.Key) (*blocks.Block, error)
|
|
Put(*blocks.Block) error
|
|
PutMany([]*blocks.Block) error
|
|
|
|
AllKeysChan(ctx context.Context) (<-chan key.Key, error)
|
|
}
|
|
|
|
func NewBlockstore(d ds.ThreadSafeDatastore) Blockstore {
|
|
dd := dsns.Wrap(d, BlockPrefix)
|
|
return &blockstore{
|
|
datastore: dd,
|
|
}
|
|
}
|
|
|
|
type blockstore struct {
|
|
datastore ds.Batching
|
|
// cant be ThreadSafeDatastore cause namespace.Datastore doesnt support it.
|
|
// we do check it on `NewBlockstore` though.
|
|
}
|
|
|
|
func (bs *blockstore) Get(k key.Key) (*blocks.Block, error) {
|
|
maybeData, err := bs.datastore.Get(k.DsKey())
|
|
if err == ds.ErrNotFound {
|
|
return nil, ErrNotFound
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
bdata, ok := maybeData.([]byte)
|
|
if !ok {
|
|
return nil, ValueTypeMismatch
|
|
}
|
|
|
|
return blocks.NewBlockWithHash(bdata, mh.Multihash(k))
|
|
}
|
|
|
|
func (bs *blockstore) Put(block *blocks.Block) error {
|
|
k := block.Key().DsKey()
|
|
|
|
// Has is cheaper than Put, so see if we already have it
|
|
exists, err := bs.datastore.Has(k)
|
|
if err == nil && exists {
|
|
return nil // already stored.
|
|
}
|
|
return bs.datastore.Put(k, block.Data)
|
|
}
|
|
|
|
func (bs *blockstore) PutMany(blocks []*blocks.Block) error {
|
|
t, err := bs.datastore.Batch()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, b := range blocks {
|
|
k := b.Key().DsKey()
|
|
exists, err := bs.datastore.Has(k)
|
|
if err == nil && exists {
|
|
continue
|
|
}
|
|
|
|
err = t.Put(k, b.Data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return t.Commit()
|
|
}
|
|
|
|
func (bs *blockstore) Has(k key.Key) (bool, error) {
|
|
return bs.datastore.Has(k.DsKey())
|
|
}
|
|
|
|
func (s *blockstore) DeleteBlock(k key.Key) error {
|
|
return s.datastore.Delete(k.DsKey())
|
|
}
|
|
|
|
// AllKeysChan runs a query for keys from the blockstore.
|
|
// this is very simplistic, in the future, take dsq.Query as a param?
|
|
//
|
|
// AllKeysChan respects context
|
|
func (bs *blockstore) AllKeysChan(ctx context.Context) (<-chan key.Key, error) {
|
|
|
|
// KeysOnly, because that would be _a lot_ of data.
|
|
q := dsq.Query{KeysOnly: true}
|
|
// datastore/namespace does *NOT* fix up Query.Prefix
|
|
q.Prefix = BlockPrefix.String()
|
|
res, err := bs.datastore.Query(q)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// this function is here to compartmentalize
|
|
get := func() (k key.Key, ok bool) {
|
|
select {
|
|
case <-ctx.Done():
|
|
return k, false
|
|
case e, more := <-res.Next():
|
|
if !more {
|
|
return k, false
|
|
}
|
|
if e.Error != nil {
|
|
log.Debug("blockstore.AllKeysChan got err:", e.Error)
|
|
return k, false
|
|
}
|
|
|
|
// need to convert to key.Key using key.KeyFromDsKey.
|
|
k = key.KeyFromDsKey(ds.NewKey(e.Key))
|
|
log.Debug("blockstore: query got key", k)
|
|
|
|
// key must be a multihash. else ignore it.
|
|
_, err := mh.Cast([]byte(k))
|
|
if err != nil {
|
|
return "", true
|
|
}
|
|
|
|
return k, true
|
|
}
|
|
}
|
|
|
|
output := make(chan key.Key)
|
|
go func() {
|
|
defer func() {
|
|
res.Process().Close() // ensure exit (signals early exit, too)
|
|
close(output)
|
|
}()
|
|
|
|
for {
|
|
k, ok := get()
|
|
if !ok {
|
|
return
|
|
}
|
|
if k == "" {
|
|
continue
|
|
}
|
|
|
|
select {
|
|
case <-ctx.Done():
|
|
return
|
|
case output <- k:
|
|
}
|
|
}
|
|
}()
|
|
|
|
return output, nil
|
|
}
|