No description
Find a file
2026-02-27 19:05:51 +03:00
.github workflows: use windows-latest instead of windows-2022 2025-12-08 18:10:18 +03:00
accounting *: Refactor proto conversions of message types 2024-12-26 19:17:12 +03:00
bearer *: drop almost all deprecated functionality 2025-09-12 14:38:29 +03:00
checksum *: drop almost all deprecated functionality 2025-09-12 14:38:29 +03:00
client client: Deduplicate declaration of const field numbers 2026-02-24 13:57:20 +03:00
container container: Support initial placement policies 2026-02-26 17:15:00 +03:00
crypto container: Provide API for attribute management 2025-12-24 12:54:14 +03:00
docs docs: add minimalistic labels doc 2023-12-20 21:36:44 +03:00
eacl version: bump to protocol 2.22 2026-02-27 09:26:35 +03:00
internal *: use b.Loop() benchmarks 2025-09-25 23:24:55 +03:00
netmap *: apply make modernize 2026-02-27 18:57:58 +03:00
object *: apply make modernize 2026-02-27 18:57:58 +03:00
pool *: apply make modernize 2026-02-27 18:57:58 +03:00
proto container: Support initial placement policies 2026-02-26 17:15:00 +03:00
reputation *: drop almost all deprecated functionality 2025-09-12 14:38:29 +03:00
scripts Store protocol-related code in proto dir 2024-07-15 20:36:38 +04:00
session *: apply make modernize 2026-02-27 18:57:58 +03:00
stat container: Provide API for attribute management 2025-12-24 12:54:14 +03:00
user *: drop almost all deprecated functionality 2025-09-12 14:38:29 +03:00
version version: bump to protocol 2.22 2026-02-27 09:26:35 +03:00
waiter *: Do not stop timers and tickers 2025-03-04 11:20:16 +03:00
.gitattributes [#3] policy: use ANTLRv4 parser generator 2021-06-15 11:42:14 +03:00
.gitignore workflows: reuse org-wide linter job 2024-09-10 21:26:16 +03:00
CHANGELOG.md CHANGELOG: release RC17 2026-02-03 22:14:00 +03:00
go.mod go.mod: upgrade NeoGo dependency to current version 2026-02-03 19:04:17 +03:00
go.sum go.mod: upgrade NeoGo dependency to current version 2026-02-03 19:04:17 +03:00
LICENSE Initial commit 2021-02-25 11:35:04 +03:00
Makefile Makefile: specify .PHONY targets 2026-02-27 17:56:30 +03:00
README.md README: drop obsolete and long gone packages 2025-09-23 18:41:00 +03:00

codecov Report GitHub release (latest SemVer) License

neofs-sdk-go

Go implementation of NeoFS SDK. It contains high-level version-independent wrappers for structures from proto packages as well as helper functions for simplifying node/dApp implementations.

Repository structure

accounting

Contains fixed-point Decimal type for performing balance calculations.

eacl

Contains Extended ACL types for fine-grained access control. There is also a reference implementation of checking algorithm which is used in NeoFS node.

checksum

Contains Checksum type encapsulating checksum as well as it's kind. Currently Sha256 and Tillich-Zemor hashsum are in use.

bearer

Contains Bearer token type with several NeoFS-specific methods.

session

To help lightweight clients interact with NeoFS without sacrificing trust, NeoFS has a concept of session token. It is signed by client and allows any node with which a session is established to perform certain actions on behalf of the user.

client

Contains client for working with NeoFS.

var prmInit client.PrmInit
prmInit.SetDefaultPrivateKey(key) // private key for request signing

c, err := client.New(prmInit)
if err != nil {
    return
}

var prmDial client.PrmDial
prmDial.SetServerURI("grpcs://localhost:40005") // endpoint address

err := c.Dial(prmDial)
if err != nil {
    return
}
    
ctx, cancel := context.WithTimeout(context.Background(), 5 * time.Second)
defer cancel()

var prm client.PrmBalanceGet
prm.SetAccount(acc)

res, err := c.BalanceGet(ctx, prm)
if err != nil {
    return
}

fmt.Printf("Balance for %s: %v\n", acc, res.Amount())

Response status

In NeoFS every operation can fail on multiple levels, so a single error doesn't suffice, e.g. consider a case when object was put on 4 out of 5 replicas. Thus, all request execution details are contained in Status returned from every RPC call. dApp can inspect them if needed and perform any desired action. In the case above we may want to report these details to the user as well as retry an operation, possibly with different parameters. Status wire-format is extendable and each node can report any set of details it wants. The set of reserved status codes can be found in NeoFS API.

netmap

Contains CRUSH-like implementation of container node selection algorithm. Relevant details are described in this paper http://ceur-ws.org/Vol-2344/short10.pdf . Note that it can be outdated in some details.

netmap/json_tests subfolder contains language-agnostic tests for selection algorithm.

import (
    "github.com/nspcc-dev/neofs-sdk-go/netmap"
    "github.com/nspcc-dev/neofs-sdk-go/object"
)

func placementNodes(addr *object.Address, p *netmap.PlacementPolicy, neofsNodes []netmap.NodeInfo) {
    // Convert list of nodes in NeoFS API format to the intermediate representation.
    nodes := netmap.NodesFromInfo(nodes)

    // Create new netmap (errors are skipped for the sake of clarity). 
    nm, _ := NewNetmap(nodes)

    // Calculate nodes of container.
    cn, _ := nm.GetContainerNodes(p, addr.ContainerID().ToV2().GetValue())

    // Return list of nodes for each replica to place object on in the order of priority.
    return nm.GetPlacementVectors(cn, addr.ObjectID().ToV2().GetValue())
}

pool

Simple pool for managing connections to NeoFS nodes.

checksum, version

Contain simple API wrappers.

Development

NeoFS API protocol codegen

Go code for NeoFS protocol messages, client and server is in api directory. To compile source files from https://github.com/nspcc-dev/neofs-api repository, clone it first and then exec:

$ ./scripts/genapi.sh /path/to/neofs-api