GoSBHPF/SBHPFv1/buffered_serializer.go
zervo b2cc3359a8 Add SerializeBuffered function
Add a SerializeBuffered function to provide full tree serialization support to non-seeking writers.
2025-02-14 16:55:10 +01:00

33 lines
1 KiB
Go

package sbhpfv1
import (
"io"
"git.zervo.org/FLUX/GoSBHPF/pkg/seekablebuffer"
)
// SerializeNodeBuffered serializes a node object into a SBHPF node.
// It is a wrapper around SerializeNode that temporarily stores the serialized nodes in a seekable memory buffer.
// This provides serialization compatibility with non-seekable writers, at the cost of increased memory usage.
func SerializeNodeBuffered(w io.Writer, node *Node) error {
buf := &seekablebuffer.Buffer{}
if err := SerializeNode(buf, node); err != nil {
return err
}
_, err := io.Copy(w, buf)
return err
}
// SerializeBuffered serializes a root node object into a complete SBHPF tree.
// It is a wrapper around Serialize that temporarily stores the serialized data in a seekable memory buffer.
// This provides serialization compatibility with non-seekable writers, at the cost of increased memory usage.
func SerializeBuffered(w io.Writer, node *Node) error {
buf := &seekablebuffer.Buffer{}
if err := Serialize(buf, node); err != nil {
return err
}
_, err := io.Copy(w, buf)
return err
}