Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func TypedDecryptStreamInfo ¶
func TypedDecryptStreamInfo(ctx context.Context, streamMetaBytes []byte, path Path, encStore *encryption.Store) ( streamInfo []byte, streamMeta pb.StreamMeta, err error)
TypedDecryptStreamInfo decrypts stream info
Types ¶
type EOFReader ¶
type EOFReader struct {
// contains filtered or unexported fields
}
EOFReader holds reader and status of EOF
func NewEOFReader ¶
NewEOFReader keeps track of the state, has the internal reader reached EOF
type Path ¶
type Path struct {
// contains filtered or unexported fields
}
Path is a representation of an object path within a bucket
func CreatePath ¶
func CreatePath(bucket string, unencPath paths.Unencrypted) (path Path)
CreatePath will create a Path for the provided information.
func (Path) UnencryptedPath ¶
func (p Path) UnencryptedPath() paths.Unencrypted
UnencryptedPath returns the unencrypted path part of the path.
type SizeReader ¶
type SizeReader struct {
// contains filtered or unexported fields
}
SizeReader holds reader and size read so far
func NewSizeReader ¶
func NewSizeReader(r io.Reader) *SizeReader
NewSizeReader keeps track of how much bytes are read from the reader
func (*SizeReader) Size ¶
func (r *SizeReader) Size() int64
Size returns the number of bytes read so far
type Store ¶
type Store interface { Meta(ctx context.Context, path storj.Path, pathCipher storj.CipherSuite) (Meta, error) Get(ctx context.Context, path storj.Path, pathCipher storj.CipherSuite) (ranger.Ranger, Meta, error) Put(ctx context.Context, path storj.Path, pathCipher storj.CipherSuite, data io.Reader, metadata []byte, expiration time.Time) (Meta, error) Delete(ctx context.Context, path storj.Path, pathCipher storj.CipherSuite) error List(ctx context.Context, prefix, startAfter, endBefore storj.Path, pathCipher storj.CipherSuite, recursive bool, limit int, metaFlags uint32) (items []ListItem, more bool, err error) }
Store interface methods for streams to satisfy to be a store
func NewStreamStore ¶
func NewStreamStore(segments segments.Store, segmentSize int64, encStore *encryption.Store, encBlockSize int, cipher storj.CipherSuite, inlineThreshold int) (Store, error)
NewStreamStore constructs a Store.
Click to show internal directories.
Click to hide internal directories.