forked from TrueCloudLab/frostfs-node
9a961e21b1
This function already reused in different storage engine parts so it makes sense to keep it in separate package. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
21 lines
463 B
Go
21 lines
463 B
Go
package util
|
|
|
|
import (
|
|
objectSDK "github.com/nspcc-dev/neofs-api-go/pkg/object"
|
|
)
|
|
|
|
// MergeSplitInfo ignores conflicts and rewrites `to` with non empty values
|
|
// from `from`.
|
|
func MergeSplitInfo(from, to *objectSDK.SplitInfo) *objectSDK.SplitInfo {
|
|
to.SetSplitID(from.SplitID()) // overwrite SplitID and ignore conflicts
|
|
|
|
if lp := from.LastPart(); lp != nil {
|
|
to.SetLastPart(lp)
|
|
}
|
|
|
|
if link := from.Link(); link != nil {
|
|
to.SetLink(link)
|
|
}
|
|
|
|
return to
|
|
}
|