1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-10 05:52:20 +08:00

block service

This commit is contained in:
Juan Batiz-Benet
2014-07-05 15:32:08 -07:00
parent 61ac7191c4
commit a5241b767b
2 changed files with 116 additions and 5 deletions

View File

@ -1,14 +1,63 @@
package blocks
import (
"github.com/jbenet/go-ipfs/bitswap"
"github.com/jbenet/go-ipfs/storage"
"fmt"
ds "github.com/jbenet/datastore.go"
u "github.com/jbenet/go-ipfs/util"
mh "github.com/jbenet/go-multihash"
)
// Blocks is the ipfs blocks service. It is the way
// to retrieve blocks by the higher level ipfs modules
type BlockService struct {
Local *storage.Storage
Remote *bitswap.BitSwap
type Block struct {
Multihash mh.Multihash
Data []byte
}
func NewBlock(data []byte) (*Block, error) {
h, err := u.Hash(data)
if err != nil {
return nil, err
}
return &Block{Data: data, Multihash: h}, nil
}
func (b *Block) Key() u.Key {
return u.Key(b.Multihash)
}
type BlockService struct {
Datastore ds.Datastore
// Remote *bitswap.BitSwap // eventually.
}
func NewBlockService(d ds.Datastore) (*BlockService, error) {
if d == nil {
return nil, fmt.Errorf("BlockService requires valid datastore")
}
return &BlockService{Datastore: d}, nil
}
func (s *BlockService) AddBlock(b *Block) error {
dsk := ds.NewKey(string(b.Key()))
return s.Datastore.Put(dsk, b.Data)
}
func (s *BlockService) GetBlock(k u.Key) (*Block, error) {
dsk := ds.NewKey(string(k))
datai, err := s.Datastore.Get(dsk)
if err != nil {
return nil, err
}
data, ok := datai.([]byte)
if !ok {
return nil, fmt.Errorf("data associated with %s is not a []byte", k)
}
return &Block{
Multihash: mh.Multihash(k),
Data: data,
}, nil
}