d7f3a5f811
* internal,lib,uplink: add monkit task to missing places Change-Id: I490053eee4ed517502f9fe00c6394f0095bd13d0 * Include Monkit * Add missing context * Another missing ctx * More ctx missing * Linting * go imports Change-Id: Ibf0ed072eba339f027727ed8039f7bce1f223fa7 * fix semantic merge conflict Change-Id: I67fb1f4e7b6cd5e89d69987ed7b3966b7d30ee37
91 lines
2.2 KiB
Go
91 lines
2.2 KiB
Go
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
package piecestore
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/zeebo/errs"
|
|
"go.uber.org/zap"
|
|
"google.golang.org/grpc"
|
|
|
|
"storj.io/storj/internal/memory"
|
|
"storj.io/storj/pkg/auth/signing"
|
|
"storj.io/storj/pkg/pb"
|
|
)
|
|
|
|
// Error is the default error class for piecestore client.
|
|
var Error = errs.Class("piecestore")
|
|
|
|
// Config defines piecestore client parameters fro upload and download.
|
|
type Config struct {
|
|
UploadBufferSize int64
|
|
DownloadBufferSize int64
|
|
|
|
InitialStep int64
|
|
MaximumStep int64
|
|
}
|
|
|
|
// DefaultConfig are the default params used for upload and download.
|
|
var DefaultConfig = Config{
|
|
UploadBufferSize: 256 * memory.KiB.Int64(),
|
|
DownloadBufferSize: 256 * memory.KiB.Int64(),
|
|
|
|
InitialStep: 64 * memory.KiB.Int64(),
|
|
MaximumStep: 1 * memory.MiB.Int64(),
|
|
}
|
|
|
|
// Client implements uploading, downloading and deleting content from a piecestore.
|
|
type Client struct {
|
|
log *zap.Logger
|
|
signer signing.Signer
|
|
conn *grpc.ClientConn
|
|
client pb.PiecestoreClient
|
|
config Config
|
|
}
|
|
|
|
// NewClient creates a new piecestore client from a grpc client connection.
|
|
func NewClient(log *zap.Logger, signer signing.Signer, conn *grpc.ClientConn, config Config) *Client {
|
|
return &Client{
|
|
log: log,
|
|
signer: signer,
|
|
conn: conn,
|
|
client: pb.NewPiecestoreClient(conn),
|
|
config: config,
|
|
}
|
|
}
|
|
|
|
// Delete uses delete order limit to delete a piece on piece store.
|
|
func (client *Client) Delete(ctx context.Context, limit *pb.OrderLimit2) (err error) {
|
|
defer mon.Task()(&ctx)(&err)
|
|
_, err = client.client.Delete(ctx, &pb.PieceDeleteRequest{
|
|
Limit: limit,
|
|
})
|
|
return Error.Wrap(err)
|
|
}
|
|
|
|
// Close closes the underlying connection.
|
|
func (client *Client) Close() error {
|
|
return client.conn.Close()
|
|
}
|
|
|
|
// next allocation step find the next trusted step.
|
|
func (client *Client) nextAllocationStep(previous int64) int64 {
|
|
// TODO: ensure that this is frame idependent
|
|
next := previous * 3 / 2
|
|
if next > client.config.MaximumStep {
|
|
next = client.config.MaximumStep
|
|
}
|
|
return next
|
|
}
|
|
|
|
// ignoreEOF is an utility func for ignoring EOF error, when it's not important.
|
|
func ignoreEOF(err error) error {
|
|
if err == io.EOF {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|