Documentation ¶
Overview ¶
Package container provides functionality related to the FrostFS containers.
The base type is Container. To create new container in the FrostFS network Container instance should be initialized
var cnr Container cnr.Init() // fill all the fields // encode cnr and send
After the container is persisted in the FrostFS network, applications can process it using the instance of Container types
// recv binary container var cnr Container err := cnr.Unmarshal(bin) // ... // process the container data
Instances can be also used to process FrostFS API V2 protocol messages (see neo.fs.v2.container package in https://git.frostfs.info/TrueCloudLab/frostfs-api).
On client side:
import "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/api/container" var msg container.Container cnr.WriteToV2(&msg) // send msg
On server side:
// recv msg var cnr Container cnr.ReadFromV2(msg) // process cnr
Using package types in an application is recommended to potentially work with different protocol versions with which these types are compatible.
Index ¶
- func ApplyNetworkConfig(cnr *Container, cfg netmap.NetworkInfo)
- func AssertID(id cid.ID, cnr Container) bool
- func AssertNetworkConfig(cnr Container, cfg netmap.NetworkInfo) bool
- func CalculateID(dst *cid.ID, cnr Container)
- func CalculateIDFromBinary(dst *cid.ID, cnr []byte)
- func CalculateSignature(dst *frostfscrypto.Signature, cnr Container, signer ecdsa.PrivateKey) error
- func CreatedAt(cnr Container) time.Time
- func DisableHomomorphicHashing(cnr *Container)
- func IsHomomorphicHashingDisabled(cnr Container) bool
- func Name(cnr Container) string
- func SetCreationTime(cnr *Container, t time.Time)
- func SetName(cnr *Container, name string)
- func VerifySignature(sig frostfscrypto.Signature, cnr Container) bool
- func WriteDomain(cnr *Container, domain Domain)
- type Container
- func (x Container) Attribute(key string) string
- func (x Container) BasicACL() (res acl.Basic)
- func (x *Container) Init()
- func (x Container) IterateAttributes(f func(key, val string))
- func (x Container) IterateUserAttributes(f func(key, val string))
- func (x Container) Marshal() []byte
- func (x Container) MarshalJSON() ([]byte, error)
- func (x Container) Owner() (res user.ID)
- func (x Container) PlacementPolicy() (res netmap.PlacementPolicy)
- func (x *Container) ReadFromV2(m container.Container) error
- func (x *Container) SetAttribute(key, value string)
- func (x *Container) SetBasicACL(basicACL acl.Basic)
- func (x *Container) SetOwner(owner user.ID)
- func (x *Container) SetPlacementPolicy(policy netmap.PlacementPolicy)
- func (x *Container) Unmarshal(data []byte) error
- func (x *Container) UnmarshalJSON(data []byte) error
- func (x Container) WriteToV2(m *container.Container)
- type Domain
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ApplyNetworkConfig ¶
func ApplyNetworkConfig(cnr *Container, cfg netmap.NetworkInfo)
ApplyNetworkConfig applies network configuration to the container. Changes the container if it does not satisfy network configuration.
func AssertID ¶
AssertID checks if the given Container matches its identifier in CAS of the FrostFS containers.
See also CalculateID.
func AssertNetworkConfig ¶
func AssertNetworkConfig(cnr Container, cfg netmap.NetworkInfo) bool
AssertNetworkConfig checks if a container matches passed network configuration.
func CalculateID ¶
CalculateID encodes the given Container and passes the result into CalculateIDFromBinary.
See also Container.Marshal, AssertID.
func CalculateIDFromBinary ¶
CalculateIDFromBinary calculates identifier of the binary-encoded container in CAS of the FrostFS containers and writes it into dst. ID instance MUST NOT be nil.
See also CalculateID, AssertID.
func CalculateSignature ¶
func CalculateSignature(dst *frostfscrypto.Signature, cnr Container, signer ecdsa.PrivateKey) error
CalculateSignature calculates signature of the Container using provided signer and writes it into dst. Signature instance MUST NOT be nil. CalculateSignature is expected to be called after all the Container data is filled and before saving the Container in the FrostFS network. Note that мany subsequent change will most likely break the signature.
See also VerifySignature.
func CreatedAt ¶
CreatedAt returns container's creation time set using SetCreationTime.
Zero Container has zero timestamp (in seconds).
func DisableHomomorphicHashing ¶
func DisableHomomorphicHashing(cnr *Container)
DisableHomomorphicHashing sets flag to disable homomorphic hashing of the Container data.
See also IsHomomorphicHashingDisabled.
func IsHomomorphicHashingDisabled ¶
IsHomomorphicHashingDisabled checks if DisableHomomorphicHashing was called.
Zero Container has enabled hashing.
func SetCreationTime ¶
SetCreationTime writes container's creation time in Unix Timestamp format.
See also CreatedAt.
func SetName ¶
SetName sets human-readable name of the Container. Name MUST NOT be empty.
See also Name.
func VerifySignature ¶
func VerifySignature(sig frostfscrypto.Signature, cnr Container) bool
VerifySignature verifies Container signature calculated using CalculateSignature. Result means signature correctness.
func WriteDomain ¶
WriteDomain writes Domain into the Container. Name MUST NOT be empty.
Types ¶
type Container ¶
type Container struct {
// contains filtered or unexported fields
}
Container represents descriptor of the FrostFS container. Container logically stores FrostFS objects. Container is one of the basic and at the same time necessary data storage units in the FrostFS. Container includes data about the owner, rules for placing objects and other information necessary for the system functioning.
Container type instances can represent different container states in the system, depending on the context. To create new container in FrostFS zero instance SHOULD be declared, initialized using Init method and filled using dedicated methods. Once container is saved in the FrostFS network, it can't be changed: containers stored in the system are immutable, and FrostFS is a CAS of containers that are identified by a fixed length value (see cid.ID type). Instances for existing containers can be initialized using decoding methods (e.g Unmarshal).
Container is mutually compatible with git.frostfs.info/TrueCloudLab/frostfs-sdk-go/api/container.Container message. See ReadFromV2 / WriteToV2 methods.
func (Container) Attribute ¶
Attribute reads value of the Container attribute by key. Empty result means attribute absence.
See also SetAttribute, IterateAttributes, IterateUserAttributes.
func (Container) BasicACL ¶
BasicACL returns basic ACL set using SetBasicACL.
Zero Container has zero basic ACL which structurally correct but doesn't make sense since it denies any access to any party.
func (*Container) Init ¶
func (x *Container) Init()
Init initializes all internal data of the Container required by FrostFS API protocol. Init MUST be called when creating a new container. Init SHOULD NOT be called multiple times. Init SHOULD NOT be called if the Container instance is used for decoding only.
func (Container) IterateAttributes ¶
IterateAttributes iterates over all Container attributes and passes them into f. The handler MUST NOT be nil.
See also SetAttribute, Attribute.
func (Container) IterateUserAttributes ¶
IterateUserAttributes iterates over user Container attributes and passes them into f. The handler MUST NOT be nil.
See also SetAttribute, Attribute.
func (Container) Marshal ¶
Marshal encodes Container into a binary format of the FrostFS API protocol (Protocol Buffers with direct field order).
See also Unmarshal.
func (Container) MarshalJSON ¶
MarshalJSON encodes Container into a JSON format of the FrostFS API protocol (Protocol Buffers JSON).
See also UnmarshalJSON.
func (Container) Owner ¶
Owner returns owner of the Container set using SetOwner.
Zero Container has no owner which is incorrect according to FrostFS API protocol.
func (Container) PlacementPolicy ¶
func (x Container) PlacementPolicy() (res netmap.PlacementPolicy)
PlacementPolicy returns placement policy set using SetPlacementPolicy.
Zero Container has no placement policy which is incorrect according to FrostFS API protocol.
func (*Container) ReadFromV2 ¶
ReadFromV2 reads Container from the container.Container message. Checks if the message conforms to FrostFS API V2 protocol.
See also WriteToV2.
func (*Container) SetAttribute ¶
SetAttribute sets Container attribute value by key. Both key and value MUST NOT be empty. Attributes set by the creator (owner) are most commonly ignored by the FrostFS system and used for application layer. Some attributes are so-called system or well-known attributes: they are reserved for system needs. System attributes SHOULD NOT be modified using SetAttribute, use corresponding methods/functions. List of the reserved keys is documented in the particular protocol version.
SetAttribute overwrites existing attribute value.
See also Attribute, IterateAttributes, IterateUserAttributes.
func (*Container) SetBasicACL ¶
SetBasicACL specifies basic part of the Container ACL. Basic ACL is used to control access inside container storage.
See also BasicACL.
func (*Container) SetOwner ¶
SetOwner specifies the owner of the Container. Each Container has exactly one owner, so SetOwner MUST be called for instances to be saved in the FrostFS.
See also Owner.
func (*Container) SetPlacementPolicy ¶
func (x *Container) SetPlacementPolicy(policy netmap.PlacementPolicy)
SetPlacementPolicy sets placement policy for the objects within the Container. FrostFS storage layer strives to follow the specified policy.
See also PlacementPolicy.
func (*Container) Unmarshal ¶
Unmarshal decodes FrostFS API protocol binary format into the Container (Protocol Buffers with direct field order). Returns an error describing a format violation.
See also Marshal.
func (*Container) UnmarshalJSON ¶
UnmarshalJSON decodes FrostFS API protocol JSON format into the Container (Protocol Buffers JSON). Returns an error describing a format violation.
See also MarshalJSON.
type Domain ¶
type Domain struct {
// contains filtered or unexported fields
}
Domain represents information about container domain registered in the NNS contract deployed in the FrostFS network.
func ReadDomain ¶
ReadDomain reads Domain from the Container. Returns value with empty name if domain is not specified.
Directories ¶
Path | Synopsis |
---|---|
Package acl provides functionality to control access to data and operations on them in FrostFS containers.
|
Package acl provides functionality to control access to data and operations on them in FrostFS containers. |
Package cid provides primitives to work with container identification in FrostFS.
|
Package cid provides primitives to work with container identification in FrostFS. |
test
Package cidtest provides functions for convenient testing of cid package API.
|
Package cidtest provides functions for convenient testing of cid package API. |