file

package
v2.1.21 Latest Latest
Warning

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

Go to latest
Published: Jul 29, 2026 License: Apache-2.0 Imports: 16 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ResolvedFile

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

ResolvedFile - used for caching the already resolved files

type Resolver

type Resolver struct {
	ResolvedFiles        map[string]model.ResolvedFile
	Extension            []string
	ScanSourcePaths      []string
	StrictSourceResolver bool // if true, the resolver will avoid path traversal via resolvers trying to access paths outside scan scope
	// contains filtered or unexported fields
}

Resolver - replace or modifies in-memory content before parsing

func NewResolver

func NewResolver(
	unmarshler func(fileContent []byte, v any) error,
	marshler func(v any) ([]byte, error),
	ext []string, scanSourcePaths []string, strictSourceResolver bool,
) *Resolver

NewResolver returns a new Resolver

func (*Resolver) Resolve

func (r *Resolver) Resolve(fileContent []byte, path string, resolvingStatus ResolvingStatus) ([]byte, bool)

Resolve - replace or modifies in-memory content before parsing returns the resolved file content, and a boolean indicating if the file can be cached

type ResolvingStatus added in v2.1.8

type ResolvingStatus struct {
	CurrentDepth          int
	MaxDepth              int
	ResolvedFilesCache    map[string]ResolvedFile
	CurrentResolutionPath []string
	ResolveReferences     bool
}

Jump to

Keyboard shortcuts

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