package tree
import (
"bytes"
"errors"
"fmt"
"slices"
"lindenii.org/go/furgit/object/tree/mode"
)
// ErrInvalidTree indicates a malformed tree object or tree entry.
var ErrInvalidTree = errors.New("object/tree: invalid tree")
// Insert adds an entry to the tree while preserving Git tree ordering.
//
// It rejects entries with an invalid name or mode,
// and entries whose name conflicts with one already present.
func (tree *Tree) Insert(entry Entry) error {
err := validateName(entry.Name)
if err != nil {
return err
}
if !entry.Mode.IsValid() {
return fmt.Errorf("%w: entry %q has invalid mode", ErrInvalidTree, entry.Name)
}
if _, found := tree.Find(entry.Name); found {
return fmt.Errorf("%w: entry %q already exists", ErrInvalidTree, entry.Name)
}
isTree := entry.Mode == mode.Directory
insertAt, _ := slices.BinarySearchFunc(tree.entries, entry, func(existing Entry, target Entry) int {
return nameCompare(existing.Name, existing.Mode == mode.Directory, target.Name, isTree)
})
tree.entries = slices.Insert(tree.entries, insertAt, entry)
return nil
}
// validateName checks that name is a structurally valid tree entry name.
func validateName(name []byte) error {
if len(name) == 0 {
return fmt.Errorf("%w: empty entry name", ErrInvalidTree)
}
if bytes.IndexByte(name, 0) >= 0 {
return fmt.Errorf("%w: entry name %q contains NUL", ErrInvalidTree, name)
}
if bytes.IndexByte(name, '/') >= 0 {
return fmt.Errorf("%w: entry name %q contains '/'", ErrInvalidTree, name)
}
return nil
}