adapters

package
v0.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 13, 2025 License: AGPL-3.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type InMemoryLoader

type InMemoryLoader struct {
	// contains filtered or unexported fields
}

InMemoryLoader is a simple implementation of ports.GraphLoader for testing.

func NewInMemoryLoader

func NewInMemoryLoader() *InMemoryLoader

NewInMemoryLoader creates a new empty loader.

func (*InMemoryLoader) AddNode

func (l *InMemoryLoader) AddNode(id string, data []byte)

AddNode allows pre-populating the loader for tests.

func (*InMemoryLoader) GetNode

func (l *InMemoryLoader) GetNode(id string) ([]byte, error)

GetNode retrieves a node from memory.

type LoamLoader

type LoamLoader struct {
	Repo *loam.TypedRepository[NodeMetadata]
}

LoamLoader adapts the Loam library to the Trellis GraphLoader interface.

func NewLoamLoader

func NewLoamLoader(repo *loam.TypedRepository[NodeMetadata]) *LoamLoader

NewLoamLoader creates a new Loam adapter.

func (*LoamLoader) GetNode

func (l *LoamLoader) GetNode(id string) ([]byte, error)

GetNode retrieves a node from the Loam repository using the direct Service API. Note: Loam Service.GetDocument is a direct convenience lookup.

type NodeMetadata

type NodeMetadata struct {
	ID          string              `json:"id"`
	Type        string              `json:"type"`
	Transitions []domain.Transition `json:"transitions"`
}

NodeMetadata represents the header/metadata of a Trellis Node. It matches the domain.Node fields minus Content.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL