Add SerializeBuffered function

Add a SerializeBuffered function to provide full tree serialization support to non-seeking writers.
This commit is contained in:
zervo 2025-02-14 16:55:10 +01:00
parent 54d958d480
commit b2cc3359a8
3 changed files with 36 additions and 22 deletions

View file

@ -0,0 +1,33 @@
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
}

View file

@ -6,8 +6,9 @@ import (
"io"
)
// Serialize writes a full binary property file from a root node object.
// Serialize serializes a root node object into a complete SBHPF tree.
// This includes the start headers necessary for proper deserialization of raw files.
// NOTE: Writer must support seeking. If this is not possible, use the SerializeBuffered wrapper.
func Serialize(w io.Writer, root *Node) error {
// Write file header (version + feature flag).
if err := binary.Write(w, binary.LittleEndian, uint8(FormatVersion)); err != nil {
@ -22,7 +23,7 @@ func Serialize(w io.Writer, root *Node) error {
}
// SerializeNode serializes a node object into a SBHPF node.
// NOTE: Writer must support seeking. If this is not possible, use SerializeNodeStream.
// NOTE: Writer must support seeking. If this is not possible, use the SerializeNodeBuffered wrapper.
func SerializeNode(w io.Writer, node *Node) error {
// Reserve space for node size ("Node Size" node header).
sizePos := getWriterPosition(w) // Save current position.

View file

@ -1,20 +0,0 @@
package sbhpfv1
import (
"io"
"git.zervo.org/FLUX/GoSBHPF/pkg/seekablebuffer"
)
// SerializeNodeStream 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 is less efficient, but provides compatibility with writers that lack seeking support.
func SerializeNodeStream(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
}