hostdb

package
v0.0.0-...-c98baff Latest Latest
Warning

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

Go to latest
Published: Mar 30, 2020 License: MIT Imports: 21 Imported by: 0

README

HostDB

Coming Soon...

Weight Function

The hostdb gets initialized with an allowance that can be modified. The allowance is used to build a weight function that the hosttree depends on to determine the weight of a host. Currently, managedCalculateHostWeightFn is used to create a hosttree.WeightFunc for the hostdb. The weight function that is returned accesses fields of the hostdb when called to calculate a weight for an entry. This means that the hostdb lock must be held when calling the weight function.

Documentation

Overview

Package hostdb provides a HostDB object that implements the renter.hostDB interface. The blockchain is scanned for host announcements and hosts that are found get added to the host database. The database continually scans the set of hosts it has found and updates who is online.

Index

Constants

This section is empty.

Variables

View Source
var (
	// ErrInitialScanIncomplete is returned whenever an operation is not
	// allowed to be executed before the initial host scan has finished.
	ErrInitialScanIncomplete = errors.New("initial hostdb scan is not yet completed")
)

Functions

This section is empty.

Types

type HostDB

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

The HostDB is a database of potential hosts. It assigns a weight to each host based on their hosting parameters, and then can select hosts at random for uploading files.

func New

func New(g modules.Gateway, cs modules.ConsensusSet, tpool modules.TransactionPool, persistDir string) (*HostDB, <-chan error)

New returns a new HostDB.

func NewCustomHostDB

func NewCustomHostDB(g modules.Gateway, cs modules.ConsensusSet, tpool modules.TransactionPool, persistDir string, deps modules.Dependencies) (*HostDB, <-chan error)

NewCustomHostDB creates a HostDB using the provided dependencies. It loads the old persistence data, spawns the HostDB's scanning threads, and subscribes it to the consensusSet.

func (*HostDB) ActiveHosts

func (hdb *HostDB) ActiveHosts() (activeHosts []modules.HostDBEntry, err error)

ActiveHosts returns a list of hosts that are currently online, sorted by weight. If hostdb is in black or white list mode, then only active hosts from the filteredTree will be returned

func (*HostDB) Alerts

func (hdb *HostDB) Alerts() []modules.Alert

Alerts implements the modules.Alerter interface for the hostdb. It returns all alerts of the hostdb.

func (*HostDB) AllHosts

func (hdb *HostDB) AllHosts() (allHosts []modules.HostDBEntry, err error)

AllHosts returns all of the hosts known to the hostdb, including the inactive ones. AllHosts is not filtered by blacklist or whitelist mode.

func (*HostDB) CheckForIPViolations

func (hdb *HostDB) CheckForIPViolations(hosts []types.I3vPublicKey) ([]types.I3vPublicKey, error)

CheckForIPViolations accepts a number of host public keys and returns the ones that violate the rules of the addressFilter.

func (*HostDB) Close

func (hdb *HostDB) Close() error

Close closes the hostdb, terminating its scanning threads

func (*HostDB) EstimateHostScore

func (hdb *HostDB) EstimateHostScore(entry modules.HostDBEntry, allowance modules.Allowance) (modules.HostScoreBreakdown, error)

EstimateHostScore takes a HostExternalSettings and returns the estimated score of that host in the hostdb, assuming no penalties for age or uptime.

func (*HostDB) Filter

func (hdb *HostDB) Filter() (modules.FilterMode, map[string]types.I3vPublicKey, error)

Filter returns the hostdb's filterMode and filteredHosts

func (*HostDB) Host

func (hdb *HostDB) Host(spk types.I3vPublicKey) (modules.HostDBEntry, bool, error)

Host returns the HostSettings associated with the specified pubkey. If no matching host is found, Host returns false. For black and white list modes, the Filtered field for the HostDBEntry is set to indicate it the host is being filtered from the filtered hosttree

func (*HostDB) IPViolationsCheck

func (hdb *HostDB) IPViolationsCheck() (bool, error)

IPViolationsCheck returns a boolean indicating if the IP violation check is enabled or not.

func (*HostDB) IncrementFailedInteractions

func (hdb *HostDB) IncrementFailedInteractions(key types.I3vPublicKey) error

IncrementFailedInteractions increments the number of failed interactions with a host for a given key

func (*HostDB) IncrementSuccessfulInteractions

func (hdb *HostDB) IncrementSuccessfulInteractions(key types.I3vPublicKey) error

IncrementSuccessfulInteractions increments the number of successful interactions with a host for a given key

func (*HostDB) InitialScanComplete

func (hdb *HostDB) InitialScanComplete() (complete bool, err error)

InitialScanComplete returns a boolean indicating if the initial scan of the hostdb is completed.

func (*HostDB) ProcessConsensusChange

func (hdb *HostDB) 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 (*HostDB) RandomHosts

func (hdb *HostDB) RandomHosts(n int, blacklist, addressBlacklist []types.I3vPublicKey) ([]modules.HostDBEntry, error)

RandomHosts implements the HostDB interface's RandomHosts() method. It takes a number of hosts to return, and a slice of netaddresses to ignore, and returns a slice of entries. If the IP violation check was disabled, the addressBlacklist is ignored.

func (*HostDB) RandomHostsWithAllowance

func (hdb *HostDB) RandomHostsWithAllowance(n int, blacklist, addressBlacklist []types.I3vPublicKey, allowance modules.Allowance) ([]modules.HostDBEntry, error)

RandomHostsWithAllowance works as RandomHosts but uses a temporary hosttree created from the specified allowance. This is a very expensive call and should be used with caution.

func (*HostDB) ScoreBreakdown

func (hdb *HostDB) ScoreBreakdown(entry modules.HostDBEntry) (modules.HostScoreBreakdown, error)

ScoreBreakdown provdes a detailed set of scalars and bools indicating elements of the host's overall score.

func (*HostDB) SetAllowance

func (hdb *HostDB) SetAllowance(allowance modules.Allowance) error

SetAllowance updates the allowance used by the hostdb for weighing hosts by updating the host weight function. It will completely rebuild the hosttree so it should be used with care.

func (*HostDB) SetFilterMode

func (hdb *HostDB) SetFilterMode(fm modules.FilterMode, hosts []types.I3vPublicKey) error

SetFilterMode sets the hostdb filter mode

func (*HostDB) SetIPViolationCheck

func (hdb *HostDB) SetIPViolationCheck(enabled bool) error

SetIPViolationCheck enables or disables the IP violation check. If disabled, CheckForIPViolations won't return bad hosts and RandomHosts will return the address blacklist.

func (*HostDB) UpdateContracts

func (hdb *HostDB) UpdateContracts(contracts []modules.RenterContract) error

UpdateContracts rebuilds the knownContracts of the HostBD using the provided contracts.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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