parser

package
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: Mar 6, 2026 License: Apache-2.0, BSD-3-Clause Imports: 3 Imported by: 0

Documentation

Overview

Package parser turns shell input into a validated AST of pipeline segments.

Index

Constants

View Source
const (
	MaxCommandLength  = 65536 // 64KB max total command length
	MaxPipeSegments   = 32    // max pipeline segments (|, &&, ||)
	MaxArgsPerSegment = 1024  // max arguments per command segment
)

Input size limits.

Variables

This section is empty.

Functions

This section is empty.

Types

type ParseError

type ParseError struct {
	Message string
}

func (*ParseError) Error

func (e *ParseError) Error() string

type Pipeline

type Pipeline struct {
	Segments []PipelineSegment
}

func Parse

func Parse(command string) (*Pipeline, error)

type PipelineSegment

type PipelineSegment struct {
	Command  string
	Args     []string
	Operator string
}

Jump to

Keyboard shortcuts

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