netmap

package
v1.25.1-0...-2fdc35d Latest Latest
Warning

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

Go to latest
Published: Jul 15, 2021 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

Package netmap provides routines for working with netmap and placement policy. Work is done in 4 steps: 1. Create context containing results shared between steps. 2. Processing filters. 3. Processing selectors. 4. Processing replicas.

Each step depends only on previous ones.

Index

Constants

View Source
const (
	// AttrPrice is a key to the node attribute that indicates the
	// price in GAS tokens for storing one GB of data during one Epoch.
	AttrPrice = "Price"

	// AttrCapacity is a key to the node attribute that indicates the
	// total available disk space in Gigabytes.
	AttrCapacity = "Capacity"

	// AttrSubnet is a key to the node attribute that indicates the
	// string ID of node's storage subnet.
	AttrSubnet = "Subnet"

	// AttrUNLOCODE is a key to the node attribute that indicates the
	// node's geographic location in UN/LOCODE format.
	AttrUNLOCODE = "UN-LOCODE"

	// AttrCountryCode is a key to the node attribute that indicates the
	// Country code in ISO 3166-1_alpha-2 format.
	AttrCountryCode = "CountryCode"

	// AttrCountry is a key to the node attribute that indicates the
	// country short name in English, as defined in ISO-3166.
	AttrCountry = "Country"

	// AttrLocation is a key to the node attribute that indicates the
	// place name of the node location.
	AttrLocation = "Location"

	// AttrSubDivCode is a key to the node attribute that indicates the
	// country's administrative subdivision where node is located
	// in ISO 3166-2 format.
	AttrSubDivCode = "SubDivCode"

	// AttrSubDiv is a key to the node attribute that indicates the
	// country's administrative subdivision name, as defined in
	// ISO 3166-2.
	AttrSubDiv = "SubDiv"

	// AttrContinent is a key to the node attribute that indicates the
	// node's continent name according to the Seven-Continent model.
	AttrContinent = "Continent"
)

Enumeration of well-known attributes.

View Source
const MainFilterName = "*"

MainFilterName is a name of the filter which points to the whole netmap.

Variables

View Source
var (
	ErrMissingField      = errors.New("netmap: nil field")
	ErrInvalidFilterName = errors.New("netmap: filter name is invalid")
	ErrInvalidNumber     = errors.New("netmap: number value expected")
	ErrInvalidFilterOp   = errors.New("netmap: invalid filter operation")
	ErrFilterNotFound    = errors.New("netmap: filter not found")
	ErrNonEmptyFilters   = errors.New("netmap: simple filter must no contain sub-filters")
	ErrNotEnoughNodes    = errors.New("netmap: not enough nodes to SELECT from")
	ErrSelectorNotFound  = errors.New("netmap: selector not found")
	ErrUnnamedTopFilter  = errors.New("netmap: all filters on top level must be named")
)

Various validation errors.

Functions

func GetBucketWeight

func GetBucketWeight(ns Nodes, a aggregator, wf weightFunc) float64

GetBucketWeight computes weight for a Bucket.

func GetDefaultWeightFunc

func GetDefaultWeightFunc(ns Nodes) weightFunc

GetDefaultWeightFunc returns default weighting function.

func GetNodesCount

func GetNodesCount(_ *PlacementPolicy, s *Selector) (int, int)

GetNodesCount returns amount of buckets and minimum number of nodes in every bucket for the given selector.

func IterateAllAddresses

func IterateAllAddresses(i *NodeInfo, f func(string))

IterateAllAddresses is a helper function to unconditionally iterate over all node addresses.

Types

type Clause

type Clause uint32

Clause is an enumeration of selector modifiers that shows how the node set will be formed.

const (
	ClauseUnspecified Clause = iota

	// ClauseSame is a selector modifier to select only nodes having the same value of bucket attribute.
	ClauseSame

	// ClauseDistinct is a selector modifier to select nodes having different values of bucket attribute.
	ClauseDistinct
)

func ClauseFromV2

func ClauseFromV2(c netmap.Clause) Clause

ClauseFromV2 converts v2 Clause to Clause.

func (*Clause) FromString

func (c *Clause) FromString(s string) bool

FromString parses Clause from a string representation. It is a reverse action to String().

Returns true if s was parsed successfully.

func (Clause) String

func (c Clause) String() string

String returns string representation of Clause.

String mapping:

  • ClauseDistinct: DISTINCT;
  • ClauseSame: SAME;
  • ClauseUnspecified, default: CLAUSE_UNSPECIFIED.

func (Clause) ToV2

func (c Clause) ToV2() netmap.Clause

ToV2 converts Clause to v2 Clause.

type ContainerNodes

type ContainerNodes interface {
	Replicas() []Nodes
	Flatten() Nodes
}

ContainerNodes represents nodes in the container.

type Context

type Context struct {
	// Netmap is a netmap structure to operate on.
	Netmap *Netmap
	// Filters stores processed filters.
	Filters map[string]*Filter
	// Selectors stores processed selectors.
	Selectors map[string]*Selector
	// Selections stores result of selector processing.
	Selections map[string][]Nodes
	// contains filtered or unexported fields
}

Context contains references to named filters and cached numeric values.

func NewContext

func NewContext(nm *Netmap) *Context

NewContext creates new context. It contains various caches. In future it may create hierarchical netmap structure to work with.

type Filter

type Filter netmap.Filter

Filter represents v2-compatible netmap filter.

func NewFilter

func NewFilter() *Filter

NewFilter creates and returns new Filter instance.

Defaults:

  • name: "";
  • key: "";
  • value: "";
  • operation: 0;
  • filters: nil.

func NewFilterFromV2

func NewFilterFromV2(f *netmap.Filter) *Filter

NewFilterFromV2 converts v2 Filter to Filter.

Nil netmap.Filter converts to nil.

func (*Filter) InnerFilters

func (f *Filter) InnerFilters() []*Filter

InnerFilters returns list of inner filters.

func (*Filter) Key

func (f *Filter) Key() string

Key returns key to filter.

func (*Filter) Marshal

func (f *Filter) Marshal(b ...[]byte) ([]byte, error)

Marshal marshals Filter into a protobuf binary form.

Buffer is allocated when the argument is empty. Otherwise, the first buffer is used.

func (*Filter) MarshalJSON

func (f *Filter) MarshalJSON() ([]byte, error)

MarshalJSON encodes Filter to protobuf JSON format.

func (*Filter) Name

func (f *Filter) Name() string

Name returns filter name.

func (*Filter) Operation

func (f *Filter) Operation() Operation

Operation returns filtering operation.

func (*Filter) SetInnerFilters

func (f *Filter) SetInnerFilters(fs ...*Filter)

SetInnerFilters sets list of inner filters.

func (*Filter) SetKey

func (f *Filter) SetKey(key string)

SetKey sets key to filter.

func (*Filter) SetName

func (f *Filter) SetName(name string)

SetName sets filter name.

func (*Filter) SetOperation

func (f *Filter) SetOperation(op Operation)

SetOperation sets filtering operation.

func (*Filter) SetValue

func (f *Filter) SetValue(val string)

SetValue sets value to match.

func (*Filter) ToV2

func (f *Filter) ToV2() *netmap.Filter

ToV2 converts Filter to v2 Filter.

Nil Filter converts to nil.

func (*Filter) Unmarshal

func (f *Filter) Unmarshal(data []byte) error

Unmarshal unmarshals protobuf binary representation of Filter.

func (*Filter) UnmarshalJSON

func (f *Filter) UnmarshalJSON(data []byte) error

UnmarshalJSON decodes Filter from protobuf JSON format.

func (*Filter) Value

func (f *Filter) Value() string

Value returns value to match.

type Netmap

type Netmap struct {
	Nodes Nodes
}

Netmap represents netmap which contains preprocessed nodes.

func NewNetmap

func NewNetmap(nodes Nodes) (*Netmap, error)

NewNetmap constructs netmap from the list of raw nodes.

func (*Netmap) GetContainerNodes

func (m *Netmap) GetContainerNodes(p *PlacementPolicy, pivot []byte) (ContainerNodes, error)

GetContainerNodes returns nodes corresponding to each replica. Order of returned nodes corresponds to order of replicas in p. pivot is a seed for HRW sorting.

func (*Netmap) GetPlacementVectors

func (m *Netmap) GetPlacementVectors(cnt ContainerNodes, pivot []byte) ([]Nodes, error)

GetPlacementVectors returns placement vectors for an object given containerNodes cnt.

type NetworkInfo

type NetworkInfo netmap.NetworkInfo

NetworkInfo represents v2-compatible structure with information about NeoFS network.

func NewNetworkInfo

func NewNetworkInfo() *NetworkInfo

NewNetworkInfo creates and initializes blank NetworkInfo.

Defaults:

  • curEpoch: 0;
  • magicNum: 0.

func NewNetworkInfoFromV2

func NewNetworkInfoFromV2(iV2 *netmap.NetworkInfo) *NetworkInfo

NewNetworkInfoFromV2 wraps v2 NetworkInfo message to NetworkInfo.

Nil netmap.NetworkInfo converts to nil.

func (*NetworkInfo) CurrentEpoch

func (i *NetworkInfo) CurrentEpoch() uint64

CurrentEpoch returns current epoch of the NeoFS network.

func (*NetworkInfo) MagicNumber

func (i *NetworkInfo) MagicNumber() uint64

MagicNumber returns magic number of the sidechain.

func (*NetworkInfo) Marshal

func (i *NetworkInfo) Marshal(b ...[]byte) ([]byte, error)

Marshal marshals NetworkInfo into a protobuf binary form.

Buffer is allocated when the argument is empty. Otherwise, the first buffer is used.

func (*NetworkInfo) MarshalJSON

func (i *NetworkInfo) MarshalJSON() ([]byte, error)

MarshalJSON encodes NetworkInfo to protobuf JSON format.

func (*NetworkInfo) SetCurrentEpoch

func (i *NetworkInfo) SetCurrentEpoch(epoch uint64)

SetCurrentEpoch sets current epoch of the NeoFS network.

func (*NetworkInfo) SetMagicNumber

func (i *NetworkInfo) SetMagicNumber(epoch uint64)

SetMagicNumber sets magic number of the sidechain.

func (*NetworkInfo) ToV2

func (i *NetworkInfo) ToV2() *netmap.NetworkInfo

ToV2 converts NetworkInfo to v2 NetworkInfo.

Nil NetworkInfo converts to nil.

func (*NetworkInfo) Unmarshal

func (i *NetworkInfo) Unmarshal(data []byte) error

Unmarshal unmarshals protobuf binary representation of NetworkInfo.

func (*NetworkInfo) UnmarshalJSON

func (i *NetworkInfo) UnmarshalJSON(data []byte) error

UnmarshalJSON decodes NetworkInfo from protobuf JSON format.

type Node

type Node struct {
	ID       uint64
	Index    int
	Capacity uint64
	Price    uint64
	AttrMap  map[string]string

	*NodeInfo
}

Node is a wrapper over NodeInfo.

func (*Node) Attribute

func (n *Node) Attribute(k string) string

Attribute returns value of attribute k.

func (Node) Hash

func (n Node) Hash() uint64

Hash is a function from hrw.Hasher interface. It is implemented to support weighted hrw therefore sort function sorts nodes based on their `N` value.

type NodeAttribute

type NodeAttribute netmap.Attribute

NodeAttribute represents v2 compatible attribute of the NeoFS Storage Node.

func NewNodeAttribute

func NewNodeAttribute() *NodeAttribute

NewNodeAttribute creates and returns new NodeAttribute instance.

Defaults:

  • key: "";
  • value: "";
  • parents: nil.

func NewNodeAttributeFromV2

func NewNodeAttributeFromV2(a *netmap.Attribute) *NodeAttribute

NodeAttributeFromV2 converts v2 node Attribute to NodeAttribute.

Nil netmap.Attribute converts to nil.

func (*NodeAttribute) Key

func (a *NodeAttribute) Key() string

Key returns key to the node attribute.

func (*NodeAttribute) Marshal

func (a *NodeAttribute) Marshal(b ...[]byte) ([]byte, error)

Marshal marshals NodeAttribute into a protobuf binary form.

Buffer is allocated when the argument is empty. Otherwise, the first buffer is used.

func (*NodeAttribute) MarshalJSON

func (a *NodeAttribute) MarshalJSON() ([]byte, error)

MarshalJSON encodes NodeAttribute to protobuf JSON format.

func (*NodeAttribute) ParentKeys

func (a *NodeAttribute) ParentKeys() []string

ParentKeys returns list of parent keys.

func (*NodeAttribute) SetKey

func (a *NodeAttribute) SetKey(key string)

SetKey sets key to the node attribute.

func (*NodeAttribute) SetParentKeys

func (a *NodeAttribute) SetParentKeys(keys ...string)

SetParentKeys sets list of parent keys.

func (*NodeAttribute) SetValue

func (a *NodeAttribute) SetValue(val string)

SetValue sets value of the node attribute.

func (*NodeAttribute) ToV2

func (a *NodeAttribute) ToV2() *netmap.Attribute

ToV2 converts NodeAttribute to v2 node Attribute.

Nil NodeAttribute converts to nil.

func (*NodeAttribute) Unmarshal

func (a *NodeAttribute) Unmarshal(data []byte) error

Unmarshal unmarshals protobuf binary representation of NodeAttribute.

func (*NodeAttribute) UnmarshalJSON

func (a *NodeAttribute) UnmarshalJSON(data []byte) error

UnmarshalJSON decodes NodeAttribute from protobuf JSON format.

func (*NodeAttribute) Value

func (a *NodeAttribute) Value() string

Value returns value of the node attribute.

type NodeInfo

type NodeInfo netmap.NodeInfo

NodeInfo represents v2 compatible descriptor of the NeoFS node.

func NewNodeInfo

func NewNodeInfo() *NodeInfo

NewNodeInfo creates and returns new NodeInfo instance.

Defaults:

  • publicKey: nil;
  • address: "";
  • attributes nil;
  • state: 0.

func NewNodeInfoFromV2

func NewNodeInfoFromV2(i *netmap.NodeInfo) *NodeInfo

NewNodeInfoFromV2 converts v2 NodeInfo to NodeInfo.

Nil netmap.NodeInfo converts to nil.

func (*NodeInfo) Address deprecated

func (i *NodeInfo) Address() (addr string)

Address returns network endpoint address of the node.

Deprecated: use IterateAddresses method.

func (*NodeInfo) Attributes

func (i *NodeInfo) Attributes() []*NodeAttribute

Attributes returns list of the node attributes.

func (*NodeInfo) IterateAddresses

func (i *NodeInfo) IterateAddresses(f func(string) bool)

IterateAddresses iterates over network addresses of the node. Breaks iteration on f's true return.

Handler should not be nil.

func (*NodeInfo) Marshal

func (i *NodeInfo) Marshal(b ...[]byte) ([]byte, error)

Marshal marshals NodeInfo into a protobuf binary form.

Buffer is allocated when the argument is empty. Otherwise, the first buffer is used.

func (*NodeInfo) MarshalJSON

func (i *NodeInfo) MarshalJSON() ([]byte, error)

MarshalJSON encodes NodeInfo to protobuf JSON format.

func (*NodeInfo) NumberOfAddresses

func (i *NodeInfo) NumberOfAddresses() int

NumberOfAddresses returns number of network addresses of the node.

func (*NodeInfo) PublicKey

func (i *NodeInfo) PublicKey() []byte

PublicKey returns public key of the node in a binary format.

func (*NodeInfo) SetAddress deprecated

func (i *NodeInfo) SetAddress(addr string)

SetAddress sets network endpoint address of the node.

Deprecated: use SetAddresses method.

func (*NodeInfo) SetAddresses

func (i *NodeInfo) SetAddresses(v ...string)

SetAddresses sets list of network addresses of the node.

func (*NodeInfo) SetAttributes

func (i *NodeInfo) SetAttributes(as ...*NodeAttribute)

SetAttributes sets list of the node attributes.

func (*NodeInfo) SetPublicKey

func (i *NodeInfo) SetPublicKey(key []byte)

SetPublicKey sets public key of the node in a binary format.

func (*NodeInfo) SetState

func (i *NodeInfo) SetState(s NodeState)

SetState sets node state.

func (*NodeInfo) State

func (i *NodeInfo) State() NodeState

State returns node state.

func (*NodeInfo) ToV2

func (i *NodeInfo) ToV2() *netmap.NodeInfo

ToV2 converts NodeInfo to v2 NodeInfo.

Nil NodeInfo converts to nil.

func (*NodeInfo) Unmarshal

func (i *NodeInfo) Unmarshal(data []byte) error

Unmarshal unmarshals protobuf binary representation of NodeInfo.

func (*NodeInfo) UnmarshalJSON

func (i *NodeInfo) UnmarshalJSON(data []byte) error

UnmarshalJSON decodes NodeInfo from protobuf JSON format.

type NodeState

type NodeState uint32

NodeState is an enumeration of various states of the NeoFS node.

const (

	// NodeStateOffline is network unavailable state.
	NodeStateOffline NodeState

	// NodeStateOnline is an active state in the network.
	NodeStateOnline
)

func NodeStateFromV2

func NodeStateFromV2(s netmap.NodeState) NodeState

NodeStateFromV2 converts v2 NodeState to NodeState.

func (*NodeState) FromString

func (s *NodeState) FromString(str string) bool

FromString parses NodeState from a string representation. It is a reverse action to String().

Returns true if s was parsed successfully.

func (NodeState) String

func (s NodeState) String() string

String returns string representation of NodeState.

String mapping:

  • NodeStateOnline: ONLINE;
  • NodeStateOffline: OFFLINE;
  • default: UNSPECIFIED.

func (NodeState) ToV2

func (s NodeState) ToV2() netmap.NodeState

ToV2 converts NodeState to v2 NodeState.

type Nodes

type Nodes []*Node

Nodes represents slice of graph leafs.

func NodesFromInfo

func NodesFromInfo(infos []NodeInfo) Nodes

NodesFromInfo converts slice of NodeInfo to a generic node slice.

func (Nodes) Weights

func (n Nodes) Weights(wf weightFunc) []float64

Weights returns slice of nodes weights W.

type Operation

type Operation uint32

Operation is an enumeration of v2-compatible filtering operations.

const (

	// OpEQ is an "Equal" operation.
	OpEQ Operation

	// OpNE is a "Not equal" operation.
	OpNE

	// OpGT is a "Greater than" operation.
	OpGT

	// OpGE is a "Greater than or equal to" operation.
	OpGE

	// OpLT is a "Less than" operation.
	OpLT

	// OpLE is a "Less than or equal to" operation.
	OpLE

	// OpOR is an "OR" operation.
	OpOR

	// OpAND is an "AND" operation.
	OpAND
)

func OperationFromV2

func OperationFromV2(op netmap.Operation) Operation

OperationFromV2 converts v2 Operation to Operation.

func (*Operation) FromString

func (op *Operation) FromString(s string) bool

FromString parses Operation from a string representation. It is a reverse action to String().

Returns true if s was parsed successfully.

func (Operation) String

func (op Operation) String() string

String returns string representation of Operation.

String mapping:

  • OpNE: NE;
  • OpEQ: EQ;
  • OpLT: LT;
  • OpLE: LE;
  • OpGT: GT;
  • OpGE: GE;
  • OpAND: AND;
  • OpOR: OR;
  • default: OPERATION_UNSPECIFIED.

func (Operation) ToV2

func (op Operation) ToV2() netmap.Operation

ToV2 converts Operation to v2 Operation.

type PlacementPolicy

type PlacementPolicy netmap.PlacementPolicy

PlacementPolicy represents v2-compatible placement policy.

func NewPlacementPolicy

func NewPlacementPolicy() *PlacementPolicy

NewPlacementPolicy creates and returns new PlacementPolicy instance.

Defaults:

  • backupFactor: 0;
  • replicas nil;
  • selectors nil;
  • filters nil.

func NewPlacementPolicyFromV2

func NewPlacementPolicyFromV2(f *netmap.PlacementPolicy) *PlacementPolicy

NewPlacementPolicyFromV2 converts v2 PlacementPolicy to PlacementPolicy.

Nil netmap.PlacementPolicy converts to nil.

func (*PlacementPolicy) ContainerBackupFactor

func (p *PlacementPolicy) ContainerBackupFactor() uint32

ContainerBackupFactor returns container backup factor.

func (*PlacementPolicy) Filters

func (p *PlacementPolicy) Filters() []*Filter

Filters returns list of named filters to reference in selectors.

func (*PlacementPolicy) Marshal

func (p *PlacementPolicy) Marshal(b ...[]byte) ([]byte, error)

Marshal marshals PlacementPolicy into a protobuf binary form.

Buffer is allocated when the argument is empty. Otherwise, the first buffer is used.

func (*PlacementPolicy) MarshalJSON

func (p *PlacementPolicy) MarshalJSON() ([]byte, error)

MarshalJSON encodes PlacementPolicy to protobuf JSON format.

func (*PlacementPolicy) Replicas

func (p *PlacementPolicy) Replicas() []*Replica

Replicas returns list of object replica descriptors.

func (*PlacementPolicy) Selectors

func (p *PlacementPolicy) Selectors() []*Selector

Selector returns set of selectors to form the container's nodes subset.

func (*PlacementPolicy) SetContainerBackupFactor

func (p *PlacementPolicy) SetContainerBackupFactor(f uint32)

SetContainerBackupFactor sets container backup factor.

func (*PlacementPolicy) SetFilters

func (p *PlacementPolicy) SetFilters(fs ...*Filter)

SetFilters sets list of named filters to reference in selectors.

func (*PlacementPolicy) SetReplicas

func (p *PlacementPolicy) SetReplicas(rs ...*Replica)

SetReplicas sets list of object replica descriptors.

func (*PlacementPolicy) SetSelectors

func (p *PlacementPolicy) SetSelectors(ss ...*Selector)

SetSelectors sets set of selectors to form the container's nodes subset.

func (*PlacementPolicy) ToV2

ToV2 converts PlacementPolicy to v2 PlacementPolicy.

Nil PlacementPolicy converts to nil.

func (*PlacementPolicy) Unmarshal

func (p *PlacementPolicy) Unmarshal(data []byte) error

Unmarshal unmarshals protobuf binary representation of PlacementPolicy.

func (*PlacementPolicy) UnmarshalJSON

func (p *PlacementPolicy) UnmarshalJSON(data []byte) error

UnmarshalJSON decodes PlacementPolicy from protobuf JSON format.

type Replica

type Replica netmap.Replica

Replica represents v2-compatible object replica descriptor.

func NewReplica

func NewReplica() *Replica

NewReplica creates and returns new Replica instance.

Defaults:

  • count: 0;
  • selector: "".

func NewReplicaFromV2

func NewReplicaFromV2(f *netmap.Replica) *Replica

NewReplicaFromV2 converts v2 Replica to Replica.

Nil netmap.Replica converts to nil.

func (*Replica) Count

func (r *Replica) Count() uint32

Count returns number of object replicas.

func (*Replica) Marshal

func (r *Replica) Marshal(b ...[]byte) ([]byte, error)

Marshal marshals Replica into a protobuf binary form.

Buffer is allocated when the argument is empty. Otherwise, the first buffer is used.

func (*Replica) MarshalJSON

func (r *Replica) MarshalJSON() ([]byte, error)

MarshalJSON encodes Replica to protobuf JSON format.

func (*Replica) Selector

func (r *Replica) Selector() string

Selector returns name of selector bucket to put replicas.

func (*Replica) SetCount

func (r *Replica) SetCount(c uint32)

SetCount sets number of object replicas.

func (*Replica) SetSelector

func (r *Replica) SetSelector(s string)

SetSelector sets name of selector bucket to put replicas.

func (*Replica) ToV2

func (r *Replica) ToV2() *netmap.Replica

ToV2 converts Replica to v2 Replica.

Nil Replica converts to nil.

func (*Replica) Unmarshal

func (r *Replica) Unmarshal(data []byte) error

Unmarshal unmarshals protobuf binary representation of Replica.

func (*Replica) UnmarshalJSON

func (r *Replica) UnmarshalJSON(data []byte) error

UnmarshalJSON decodes Replica from protobuf JSON format.

type Selector

type Selector netmap.Selector

Selector represents v2-compatible netmap selector.

func NewSelector

func NewSelector() *Selector

NewSelector creates and returns new Selector instance.

Defaults:

  • name: "";
  • attribute: "";
  • filter: "";
  • clause: ClauseUnspecified;
  • count: 0.

func NewSelectorFromV2

func NewSelectorFromV2(f *netmap.Selector) *Selector

NewSelectorFromV2 converts v2 Selector to Selector.

Nil netmap.Selector converts to nil.

func (*Selector) Attribute

func (s *Selector) Attribute() string

Attribute returns attribute bucket to select from.

func (*Selector) Clause

func (s *Selector) Clause() Clause

Clause returns modifier showing how to form a bucket.

func (*Selector) Count

func (s *Selector) Count() uint32

Count returns count of nodes to select from bucket.

func (*Selector) Filter

func (s *Selector) Filter() string

Filter returns filter reference to select from.

func (*Selector) Marshal

func (s *Selector) Marshal(b ...[]byte) ([]byte, error)

Marshal marshals Selector into a protobuf binary form.

Buffer is allocated when the argument is empty. Otherwise, the first buffer is used.

func (*Selector) MarshalJSON

func (s *Selector) MarshalJSON() ([]byte, error)

MarshalJSON encodes Selector to protobuf JSON format.

func (*Selector) Name

func (s *Selector) Name() string

Name returns selector name.

func (*Selector) SetAttribute

func (s *Selector) SetAttribute(a string)

SetAttribute sets attribute bucket to select from.

func (*Selector) SetClause

func (s *Selector) SetClause(c Clause)

SetClause sets modifier showing how to form a bucket.

func (*Selector) SetCount

func (s *Selector) SetCount(c uint32)

SetCount sets count of nodes to select from bucket.

func (*Selector) SetFilter

func (s *Selector) SetFilter(f string)

SetFilter sets filter reference to select from.

func (*Selector) SetName

func (s *Selector) SetName(name string)

SetName sets selector name.

func (*Selector) ToV2

func (s *Selector) ToV2() *netmap.Selector

ToV2 converts Selector to v2 Selector.

Nil Selector converts to nil.

func (*Selector) Unmarshal

func (s *Selector) Unmarshal(data []byte) error

Unmarshal unmarshals protobuf binary representation of Selector.

func (*Selector) UnmarshalJSON

func (s *Selector) UnmarshalJSON(data []byte) error

UnmarshalJSON decodes Selector from protobuf JSON format.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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