Documentation ¶
Index ¶
- Constants
- Variables
- func NewRSCode(nData, nParity int) (modules.ErasureCoder, error)
- type Renter
- func (r *Renter) DeleteFile(nickname string) error
- func (r *Renter) Download(nickname, destination string) error
- func (r *Renter) DownloadQueue() []modules.DownloadInfo
- func (r *Renter) FileList() (files []modules.FileInfo)
- func (r *Renter) Info() (ri modules.RentInfo)
- func (r *Renter) LoadSharedFiles(filename string) ([]string, error)
- func (r *Renter) LoadSharedFilesAscii(asciiSia string) ([]string, error)
- func (r *Renter) ProcessConsensusChange(cc modules.ConsensusChange)
- func (r *Renter) RenameFile(currentName, newName string) error
- func (r *Renter) ShareFiles(nicknames []string, sharedest string) error
- func (r *Renter) ShareFilesAscii(nicknames []string) (string, error)
- func (r *Renter) Upload(up modules.FileUploadParams) error
Constants ¶
const ( PersistFilename = "renter.json" )
Variables ¶
var ( ErrUnknownNickname = errors.New("no file known by that nickname") ErrNicknameOverload = errors.New("a file with the proposed nickname already exists") )
Functions ¶
Types ¶
type Renter ¶
type Renter struct {
// contains filtered or unexported fields
}
A Renter is responsible for tracking all of the files that a user has uploaded to Sia, as well as the locations and health of these files.
func New ¶
func New(cs modules.ConsensusSet, hdb modules.HostDB, wallet modules.Wallet, tpool modules.TransactionPool, persistDir string) (*Renter, error)
New returns an empty renter.
func (*Renter) DeleteFile ¶ added in v0.3.1
DeleteFile removes a file entry from the renter.
func (*Renter) Download ¶
Download downloads a file, identified by its nickname, to the destination specified.
func (*Renter) DownloadQueue ¶
func (r *Renter) DownloadQueue() []modules.DownloadInfo
DownloadQueue returns the list of downloads in the queue.
func (*Renter) Info ¶
Info returns generic information about the renter and the files that are being rented.
func (*Renter) LoadSharedFiles ¶ added in v1.0.0
LoadSharedFiles loads a .sia file into the renter. It returns the nicknames of the loaded files.
func (*Renter) LoadSharedFilesAscii ¶ added in v0.3.1
LoadSharedFilesAscii loads an ASCII-encoded .sia file into the renter. It returns the nicknames of the loaded files.
func (*Renter) ProcessConsensusChange ¶ added in v1.3.1
func (r *Renter) ProcessConsensusChange(cc modules.ConsensusChange)
ProcessConsensusChange will be called by the consensus set every time there is a change in the blockchain. Updates will always be called in order.
func (*Renter) RenameFile ¶ added in v0.3.1
RenameFile takes an existing file and changes the nickname. The original file must exist, and there must not be any file that already has the replacement nickname.
func (*Renter) ShareFiles ¶ added in v0.3.1
ShareFile saves the specified files to sharedest.
func (*Renter) ShareFilesAscii ¶ added in v0.3.1
ShareFilesAscii returns the specified files in ASCII format.