2022-06-14 18:03:38 +00:00
|
|
|
package sealer
|
2021-11-26 16:40:43 +00:00
|
|
|
|
|
|
|
import (
|
2021-12-03 19:11:52 +00:00
|
|
|
"bufio"
|
2021-11-26 16:40:43 +00:00
|
|
|
"context"
|
|
|
|
"io"
|
2022-03-29 14:11:06 +00:00
|
|
|
"sync"
|
2021-11-26 16:40:43 +00:00
|
|
|
|
|
|
|
"github.com/ipfs/go-cid"
|
2021-12-03 19:11:52 +00:00
|
|
|
"go.opencensus.io/stats"
|
2021-11-26 16:40:43 +00:00
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/dagstore/mount"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2022-06-14 15:00:51 +00:00
|
|
|
|
2021-12-03 19:11:52 +00:00
|
|
|
"github.com/filecoin-project/lotus/metrics"
|
2021-11-26 16:40:43 +00:00
|
|
|
)
|
|
|
|
|
2021-11-26 17:49:41 +00:00
|
|
|
// For small read skips, it's faster to "burn" some bytes than to setup new sector reader.
|
|
|
|
// Assuming 1ms stream seek latency, and 1G/s stream rate, we're willing to discard up to 1 MiB.
|
|
|
|
var MaxPieceReaderBurnBytes int64 = 1 << 20 // 1M
|
2021-12-03 19:11:52 +00:00
|
|
|
var ReadBuf = 128 * (127 * 8) // unpadded(128k)
|
2021-11-26 16:40:43 +00:00
|
|
|
|
2021-12-08 22:16:27 +00:00
|
|
|
type pieceGetter func(ctx context.Context, offset uint64) (io.ReadCloser, error)
|
|
|
|
|
2021-11-26 16:40:43 +00:00
|
|
|
type pieceReader struct {
|
2021-12-08 22:16:27 +00:00
|
|
|
ctx context.Context
|
|
|
|
getReader pieceGetter
|
|
|
|
pieceCid cid.Cid
|
|
|
|
len abi.UnpaddedPieceSize
|
|
|
|
onClose context.CancelFunc
|
2021-11-26 16:40:43 +00:00
|
|
|
|
|
|
|
closed bool
|
|
|
|
seqAt int64 // next byte to be read by io.Reader
|
|
|
|
|
2022-03-29 14:11:06 +00:00
|
|
|
mu sync.Mutex
|
2021-11-26 16:40:43 +00:00
|
|
|
r io.ReadCloser
|
2021-12-03 19:11:52 +00:00
|
|
|
br *bufio.Reader
|
2021-11-26 16:40:43 +00:00
|
|
|
rAt int64
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *pieceReader) init() (_ *pieceReader, err error) {
|
2021-12-03 16:07:14 +00:00
|
|
|
stats.Record(p.ctx, metrics.DagStorePRInitCount.M(1))
|
|
|
|
|
2021-11-26 16:40:43 +00:00
|
|
|
p.rAt = 0
|
2021-12-08 22:16:27 +00:00
|
|
|
p.r, err = p.getReader(p.ctx, uint64(p.rAt))
|
2021-11-26 16:40:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-12-08 22:16:27 +00:00
|
|
|
if p.r == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-12-03 19:11:52 +00:00
|
|
|
p.br = bufio.NewReaderSize(p.r, ReadBuf)
|
2021-11-26 16:40:43 +00:00
|
|
|
|
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *pieceReader) check() error {
|
|
|
|
if p.closed {
|
|
|
|
return xerrors.Errorf("reader closed")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *pieceReader) Close() error {
|
2022-03-29 14:11:06 +00:00
|
|
|
p.mu.Lock()
|
|
|
|
defer p.mu.Unlock()
|
|
|
|
|
2021-11-26 16:40:43 +00:00
|
|
|
if err := p.check(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if p.r != nil {
|
2021-12-09 13:52:33 +00:00
|
|
|
if err := p.r.Close(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-26 16:40:43 +00:00
|
|
|
if err := p.r.Close(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.r = nil
|
|
|
|
}
|
|
|
|
|
2021-12-08 22:16:27 +00:00
|
|
|
p.onClose()
|
|
|
|
|
|
|
|
p.closed = true
|
|
|
|
|
2021-11-26 16:40:43 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *pieceReader) Read(b []byte) (int, error) {
|
2022-03-29 14:11:06 +00:00
|
|
|
p.mu.Lock()
|
|
|
|
defer p.mu.Unlock()
|
|
|
|
|
2021-11-26 16:40:43 +00:00
|
|
|
if err := p.check(); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2022-03-29 14:11:06 +00:00
|
|
|
n, err := p.readAtUnlocked(b, p.seqAt)
|
2021-11-26 16:40:43 +00:00
|
|
|
p.seqAt += int64(n)
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *pieceReader) Seek(offset int64, whence int) (int64, error) {
|
2022-03-29 14:11:06 +00:00
|
|
|
p.mu.Lock()
|
|
|
|
defer p.mu.Unlock()
|
|
|
|
|
2021-11-26 16:40:43 +00:00
|
|
|
if err := p.check(); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
switch whence {
|
|
|
|
case io.SeekStart:
|
|
|
|
p.seqAt = offset
|
|
|
|
case io.SeekCurrent:
|
|
|
|
p.seqAt += offset
|
|
|
|
case io.SeekEnd:
|
|
|
|
p.seqAt = int64(p.len) + offset
|
|
|
|
default:
|
|
|
|
return 0, xerrors.Errorf("bad whence")
|
|
|
|
}
|
|
|
|
|
|
|
|
return p.seqAt, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *pieceReader) ReadAt(b []byte, off int64) (n int, err error) {
|
2022-03-29 14:11:06 +00:00
|
|
|
p.mu.Lock()
|
|
|
|
defer p.mu.Unlock()
|
|
|
|
|
|
|
|
return p.readAtUnlocked(b, off)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *pieceReader) readAtUnlocked(b []byte, off int64) (n int, err error) {
|
2021-11-26 16:40:43 +00:00
|
|
|
if err := p.check(); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2021-12-03 16:07:14 +00:00
|
|
|
stats.Record(p.ctx, metrics.DagStorePRBytesRequested.M(int64(len(b))))
|
|
|
|
|
2021-11-29 14:32:27 +00:00
|
|
|
// 1. Get the backing reader into the correct position
|
2021-11-26 16:40:43 +00:00
|
|
|
|
|
|
|
// if the backing reader is ahead of the offset we want, or more than
|
|
|
|
// MaxPieceReaderBurnBytes behind, reset the reader
|
2021-11-29 14:32:27 +00:00
|
|
|
if p.r == nil || p.rAt > off || p.rAt+MaxPieceReaderBurnBytes < off {
|
2021-11-26 16:40:43 +00:00
|
|
|
if p.r != nil {
|
|
|
|
if err := p.r.Close(); err != nil {
|
|
|
|
return 0, xerrors.Errorf("closing backing reader: %w", err)
|
|
|
|
}
|
|
|
|
p.r = nil
|
2021-12-03 19:11:52 +00:00
|
|
|
p.br = nil
|
2021-11-26 16:40:43 +00:00
|
|
|
}
|
|
|
|
|
2021-12-03 19:11:52 +00:00
|
|
|
log.Debugw("pieceReader new stream", "piece", p.pieceCid, "at", p.rAt, "off", off-p.rAt, "n", len(b))
|
2021-11-26 19:21:09 +00:00
|
|
|
|
2021-12-03 16:07:14 +00:00
|
|
|
if off > p.rAt {
|
|
|
|
stats.Record(p.ctx, metrics.DagStorePRSeekForwardBytes.M(off-p.rAt), metrics.DagStorePRSeekForwardCount.M(1))
|
|
|
|
} else {
|
|
|
|
stats.Record(p.ctx, metrics.DagStorePRSeekBackBytes.M(p.rAt-off), metrics.DagStorePRSeekBackCount.M(1))
|
|
|
|
}
|
|
|
|
|
2021-11-26 16:40:43 +00:00
|
|
|
p.rAt = off
|
2021-12-08 22:16:27 +00:00
|
|
|
p.r, err = p.getReader(p.ctx, uint64(p.rAt))
|
2021-12-03 19:11:52 +00:00
|
|
|
p.br = bufio.NewReaderSize(p.r, ReadBuf)
|
2021-11-26 16:40:43 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, xerrors.Errorf("getting backing reader: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-29 14:32:27 +00:00
|
|
|
// 2. Check if we need to burn some bytes
|
2021-11-26 16:40:43 +00:00
|
|
|
if off > p.rAt {
|
2021-12-03 16:07:14 +00:00
|
|
|
stats.Record(p.ctx, metrics.DagStorePRBytesDiscarded.M(off-p.rAt), metrics.DagStorePRDiscardCount.M(1))
|
|
|
|
|
2021-12-03 19:11:52 +00:00
|
|
|
n, err := io.CopyN(io.Discard, p.br, off-p.rAt)
|
2021-11-26 17:01:09 +00:00
|
|
|
p.rAt += n
|
|
|
|
if err != nil {
|
2021-11-26 16:40:43 +00:00
|
|
|
return 0, xerrors.Errorf("discarding read gap: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-29 14:32:27 +00:00
|
|
|
// 3. Sanity check
|
2021-11-26 17:01:09 +00:00
|
|
|
if off != p.rAt {
|
|
|
|
return 0, xerrors.Errorf("bad reader offset; requested %d; at %d", off, p.rAt)
|
|
|
|
}
|
|
|
|
|
2021-11-29 14:32:27 +00:00
|
|
|
// 4. Read!
|
2021-12-03 19:11:52 +00:00
|
|
|
n, err = io.ReadFull(p.br, b)
|
|
|
|
if n < len(b) {
|
|
|
|
log.Debugw("pieceReader short read", "piece", p.pieceCid, "at", p.rAt, "toEnd", int64(p.len)-p.rAt, "n", len(b), "read", n, "err", err)
|
|
|
|
}
|
2021-12-03 22:36:36 +00:00
|
|
|
if err == io.ErrUnexpectedEOF {
|
|
|
|
err = io.EOF
|
|
|
|
}
|
2021-12-03 19:11:52 +00:00
|
|
|
|
2021-11-26 16:40:43 +00:00
|
|
|
p.rAt += int64(n)
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ mount.Reader = (*pieceReader)(nil)
|