GoSBHPF/SBHPFv1/streamed_serializer.go
2025-02-14 01:40:36 +01:00

19 lines
488 B
Go

package sbhpfv1
import (
"bytes"
"io"
)
// SerializeNodeStream serializes a node object into a SBHPF node.
// It is a wrapper around SerializeNode that temporarily stores the serialized nodes in a memory buffer.
// This is less efficient, but also works with writers that lack seeking support.
func SerializeNodeStream(w io.Writer, node *Node) error {
buf := &bytes.Buffer{}
if err := SerializeNode(buf, node); err != nil {
return err
}
_, err := io.Copy(w, buf)
return err
}