frostfs-node/pkg/morph/event/frostfs/config.go
Evgenii Stratonikov 69cb591c12
Some checks failed
Vulncheck / Vulncheck (pull_request) Successful in 2m46s
DCO action / DCO (pull_request) Failing after 4m44s
Pre-commit hooks / Pre-commit (pull_request) Successful in 5m4s
Tests and linters / gopls check (pull_request) Successful in 5m26s
Build / Build Components (pull_request) Successful in 6m32s
Tests and linters / Run gofumpt (pull_request) Successful in 6m36s
Tests and linters / Staticcheck (pull_request) Successful in 6m45s
Tests and linters / Lint (pull_request) Successful in 7m14s
Tests and linters / Tests (pull_request) Successful in 7m44s
Tests and linters / Tests with -race (pull_request) Successful in 8m3s
morph/event: Simplify frostfs contract event parsing
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
2024-12-06 13:59:15 +03:00

50 lines
1.2 KiB
Go

package frostfs
import (
"fmt"
"git.frostfs.info/TrueCloudLab/frostfs-contract/rpcclient/frostfs"
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/morph/event"
"github.com/nspcc-dev/neo-go/pkg/core/state"
"github.com/nspcc-dev/neo-go/pkg/util"
)
type Config struct {
KeyValue []byte
ValueValue []byte
IDValue []byte
// TxHashValue is used in notary environmental
// for calculating unique but same for
// all notification receivers values.
TxHashValue util.Uint256
}
// TxHash returns hash of the TX with new epoch
// notification.
func (u Config) TxHash() util.Uint256 {
return u.TxHashValue
}
// MorphEvent implements Neo:Morph Event interface.
func (Config) MorphEvent() {}
func (u Config) ID() []byte { return u.IDValue }
func (u Config) Key() []byte { return u.KeyValue }
func (u Config) Value() []byte { return u.ValueValue }
func ParseConfig(e *state.ContainedNotificationEvent) (event.Event, error) {
var sce frostfs.SetConfigEvent
if err := sce.FromStackItem(e.Item); err != nil {
return nil, fmt.Errorf("parse frostfs.SetConfigEvent: %w", err)
}
return Config{
KeyValue: sce.Key,
ValueValue: sce.Value,
IDValue: sce.Id,
TxHashValue: e.Container,
}, nil
}