packages

package
v1.21.11 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 16, 2024 License: MIT Imports: 15 Imported by: 30

Documentation

Index

Constants

View Source
const DefaultMemorySize = 32 * 1024 * 1024

Variables

This section is empty.

Functions

func KeyToRelativePath added in v1.17.1

func KeyToRelativePath(key BlobHash256Key) string

KeyToRelativePath converts the sha256 key aabb000000... to aa/bb/aabb000000...

Types

type BlobHash256Key

type BlobHash256Key string

BlobHash256Key is the key to address a blob content

func RelativePathToKey added in v1.17.4

func RelativePathToKey(relativePath string) (BlobHash256Key, error)

RelativePathToKey converts a relative path aa/bb/aabb000000... to the sha256 key aabb000000...

type ContentStore

type ContentStore struct {
	// contains filtered or unexported fields
}

ContentStore is a wrapper around ObjectStorage

func NewContentStore

func NewContentStore() *ContentStore

NewContentStore creates the default package store

func (*ContentStore) Delete

func (s *ContentStore) Delete(key BlobHash256Key) error

Delete deletes a package blob

func (*ContentStore) Get

Get gets a package blob

func (*ContentStore) GetServeDirectURL added in v1.21.0

func (s *ContentStore) GetServeDirectURL(key BlobHash256Key, filename string) (*url.URL, error)

func (*ContentStore) Has added in v1.17.4

func (s *ContentStore) Has(key BlobHash256Key) error

FIXME: Workaround to be removed in v1.20 https://github.com/go-gitea/gitea/issues/19586

func (*ContentStore) Save

func (s *ContentStore) Save(key BlobHash256Key, r io.Reader, size int64) error

Save stores a package blob

func (*ContentStore) ShouldServeDirect added in v1.21.0

func (s *ContentStore) ShouldServeDirect() bool

type HashSummer

type HashSummer interface {
	Sums() (hashMD5, hashSHA1, hashSHA256, hashSHA512 []byte)
}

HashSummer provide a Sums method

type HashedBuffer

type HashedBuffer struct {
	*filebuffer.FileBackedBuffer
	// contains filtered or unexported fields
}

HashedBuffer is buffer which calculates multiple checksums

func CreateHashedBufferFromReader

func CreateHashedBufferFromReader(r io.Reader) (*HashedBuffer, error)

CreateHashedBufferFromReader creates a hashed buffer with the default memory size and copies the provided reader data into it.

func CreateHashedBufferFromReaderWithSize added in v1.20.0

func CreateHashedBufferFromReaderWithSize(r io.Reader, maxMemorySize int) (*HashedBuffer, error)

CreateHashedBufferFromReaderWithSize creates a hashed buffer and copies the provided reader data into it.

func NewHashedBuffer

func NewHashedBuffer() (*HashedBuffer, error)

NewHashedBuffer creates a hashed buffer with the default memory size

func NewHashedBufferWithSize added in v1.20.0

func NewHashedBufferWithSize(maxMemorySize int) (*HashedBuffer, error)

NewHashedBufferWithSize creates a hashed buffer with a specific memory size

func (*HashedBuffer) Sums

func (b *HashedBuffer) Sums() (hashMD5, hashSHA1, hashSHA256, hashSHA512 []byte)

Sums gets the MD5, SHA1, SHA256 and SHA512 checksums of the data

func (*HashedBuffer) Write

func (b *HashedBuffer) Write(p []byte) (int, error)

Write implements io.Writer

type HashedSizeReader

type HashedSizeReader interface {
	io.Reader
	HashSummer
	Size() int64
}

HashedSizeReader provide methods to read, sum hashes and a Size method

type MultiHasher

type MultiHasher struct {
	// contains filtered or unexported fields
}

MultiHasher calculates multiple checksums

func NewMultiHasher

func NewMultiHasher() *MultiHasher

NewMultiHasher creates a multi hasher

func (*MultiHasher) MarshalBinary

func (h *MultiHasher) MarshalBinary() ([]byte, error)

MarshalBinary implements encoding.BinaryMarshaler

func (*MultiHasher) Sums

func (h *MultiHasher) Sums() (hashMD5, hashSHA1, hashSHA256, hashSHA512 []byte)

Sums gets the MD5, SHA1, SHA256 and SHA512 checksums of the data

func (*MultiHasher) UnmarshalBinary

func (h *MultiHasher) UnmarshalBinary(b []byte) error

UnmarshalBinary implements encoding.BinaryUnmarshaler

func (*MultiHasher) Write

func (h *MultiHasher) Write(p []byte) (int, error)

Write implements io.Writer

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL