mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 19:07:48 +08:00
68 lines
1.6 KiB
Go
68 lines
1.6 KiB
Go
// package blocks contains the lowest level of ipfs data structures,
|
|
// the raw block with a checksum.
|
|
package blocks
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
key "github.com/ipfs/go-ipfs/blocks/key"
|
|
mh "gx/ipfs/QmYf7ng2hG5XBtJA3tN34DQ2GUN5HNksEw1rLDkmr6vGku/go-multihash"
|
|
u "gx/ipfs/QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1/go-ipfs-util"
|
|
)
|
|
|
|
type Block interface {
|
|
Multihash() mh.Multihash
|
|
Data() []byte
|
|
Key() key.Key
|
|
String() string
|
|
Loggable() map[string]interface{}
|
|
}
|
|
|
|
// Block is a singular block of data in ipfs
|
|
type BasicBlock struct {
|
|
multihash mh.Multihash
|
|
data []byte
|
|
}
|
|
|
|
// NewBlock creates a Block object from opaque data. It will hash the data.
|
|
func NewBlock(data []byte) *BasicBlock {
|
|
return &BasicBlock{data: data, multihash: u.Hash(data)}
|
|
}
|
|
|
|
// NewBlockWithHash creates a new block when the hash of the data
|
|
// is already known, this is used to save time in situations where
|
|
// we are able to be confident that the data is correct
|
|
func NewBlockWithHash(data []byte, h mh.Multihash) (*BasicBlock, error) {
|
|
if u.Debug {
|
|
chk := u.Hash(data)
|
|
if string(chk) != string(h) {
|
|
return nil, errors.New("Data did not match given hash!")
|
|
}
|
|
}
|
|
return &BasicBlock{data: data, multihash: h}, nil
|
|
}
|
|
|
|
func (b *BasicBlock) Multihash() mh.Multihash {
|
|
return b.multihash
|
|
}
|
|
|
|
func (b *BasicBlock) Data() []byte {
|
|
return b.data
|
|
}
|
|
|
|
// Key returns the block's Multihash as a Key value.
|
|
func (b *BasicBlock) Key() key.Key {
|
|
return key.Key(b.multihash)
|
|
}
|
|
|
|
func (b *BasicBlock) String() string {
|
|
return fmt.Sprintf("[Block %s]", b.Key())
|
|
}
|
|
|
|
func (b *BasicBlock) Loggable() map[string]interface{} {
|
|
return map[string]interface{}{
|
|
"block": b.Key().String(),
|
|
}
|
|
}
|