Documentation ¶
Index ¶
- func Parse(filename string, b []byte, opts ...Option) (interface{}, error)
- func ParseFile(filename string, opts ...Option) (i interface{}, err error)
- func ParseReader(filename string, r io.Reader, opts ...Option) (interface{}, error)
- type ArrayExpression
- type Assignment
- type Attribute
- type BinaryExpression
- type Block
- type BooleanExpression
- type Cloner
- type Comment
- type Context
- type Define
- type Dir
- type DocType
- type Each
- type Expression
- type Extend
- type FieldExpression
- type FileFindWalker
- type FileFinder
- type FinderFS
- type FloatExpression
- type FsDir
- type FunctionCallExpression
- type GraphNode
- type If
- type Import
- type IndexExpression
- type IntegerExpression
- type Interpolation
- type List
- type MemberExpression
- type Mixin
- type MixinArgument
- type MixinCall
- type NilExpression
- type Node
- type ObjectExpression
- type Option
- func AllowInvalidUTF8(b bool) Option
- func Debug(b bool) Option
- func Entrypoint(ruleName string) Option
- func GlobalStore(key string, value interface{}) Option
- func InitState(key string, value interface{}) Option
- func MaxExpressions(maxExprCnt uint64) Option
- func Memoize(b bool) Option
- func Recover(b bool) Option
- func Statistics(stats *Stats, choiceNoMatch string) Option
- type Position
- type Root
- type Scope
- type Stats
- type StringExpression
- type StringInputDir
- type Tag
- type Text
- type TextList
- type UnaryExpression
- type Variable
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ArrayExpression ¶
type ArrayExpression struct { *GraphNode Expressions []Expression }
type Assignment ¶
type Assignment struct { *GraphNode Variable *Variable Expression Expression }
type BinaryExpression ¶
type BinaryExpression struct { *GraphNode Op string X Expression Y Expression }
type Block ¶
type BooleanExpression ¶
type Cloner ¶
type Cloner interface {
Clone() interface{}
}
Cloner is implemented by any value that has a Clone method, which returns a copy of the value. This is mainly used for types which are not passed by value (e.g map, slice, chan) or structs that contain such types.
This is used in conjunction with the global state feature to create proper copies of the state to allow the parser to properly restore the state in the case of backtracking.
type Context ¶
type Context interface { ParseFile(name string) (*Root, error) ParseReader(name string, reader io.Reader) (*Root, error) ReadFile(name string) (data []byte, templateName string, err error) CompileFile(name string) (string, error) Compile(root *Root) (_ string, err error) String() string WriteTo(io.Writer) (int64, error) FileExtension() string // contains filtered or unexported methods }
func NewContext ¶
func NewContext(finder FileFinder, indentString string) Context
type Dir ¶
A Dir implements FileSystem using the native file system restricted to a specific directory tree. While the FileSystem.Open method takes '/'-separated paths, a Dir's string value is a filename on the native file system, not a URL, so it is separated by filepath.Separator, which isn't necessarily '/'.
type Each ¶
type Each struct { *GraphNode IndexVariable *Variable ElementVariable *Variable Container Expression Block Node }
type FieldExpression ¶
type FileFindWalker ¶
type FileFinder ¶
type FloatExpression ¶
type FunctionCallExpression ¶
type FunctionCallExpression struct { *GraphNode X Expression Arguments []Expression }
type IndexExpression ¶
type IndexExpression struct { *GraphNode X Expression Index Expression }
type IntegerExpression ¶
type Interpolation ¶
type Interpolation struct { *GraphNode Expr Expression Unescaped bool }
type MemberExpression ¶
type MemberExpression struct { *GraphNode X Expression Name string }
type MixinArgument ¶
type MixinArgument struct { *GraphNode Name *Variable Default Expression }
type MixinCall ¶
type MixinCall struct { *GraphNode Name string Arguments []Expression }
type NilExpression ¶
type NilExpression struct {
*GraphNode
}
type ObjectExpression ¶
type ObjectExpression struct { *GraphNode Expressions map[string]Expression }
type Option ¶
type Option func(*parser) Option
Option is a function that can set an option on the parser. It returns the previous setting as an Option.
func AllowInvalidUTF8 ¶
AllowInvalidUTF8 creates an Option to allow invalid UTF-8 bytes. Every invalid UTF-8 byte is treated as a utf8.RuneError (U+FFFD) by character class matchers and is matched by the any matcher. The returned matched value, c.text and c.offset are NOT affected.
The default is false.
func Debug ¶
Debug creates an Option to set the debug flag to b. When set to true, debugging information is printed to stdout while parsing.
The default is false.
func Entrypoint ¶
Entrypoint creates an Option to set the rule name to use as entrypoint. The rule name must have been specified in the -alternate-entrypoints if generating the parser with the -optimize-grammar flag, otherwise it may have been optimized out. Passing an empty string sets the entrypoint to the first rule in the grammar.
The default is to start parsing at the first rule in the grammar.
func GlobalStore ¶
GlobalStore creates an Option to set a key to a certain value in the globalStore.
func InitState ¶
InitState creates an Option to set a key to a certain value in the global "state" store.
func MaxExpressions ¶
MaxExpressions creates an Option to stop parsing after the provided number of expressions have been parsed, if the value is 0 then the parser will parse for as many steps as needed (possibly an infinite number).
The default for maxExprCnt is 0.
func Memoize ¶
Memoize creates an Option to set the memoize flag to b. When set to true, the parser will cache all results so each expression is evaluated only once. This guarantees linear parsing time even for pathological cases, at the expense of more memory and slower times for typical cases.
The default is false.
func Recover ¶
Recover creates an Option to set the recover flag to b. When set to true, this causes the parser to recover from panics and convert it to an error. Setting it to false can be useful while debugging to access the full stack trace.
The default is true.
func Statistics ¶
Statistics adds a user provided Stats struct to the parser to allow the user to process the results after the parsing has finished. Also the key for the "no match" counter is set.
Example usage:
input := "input" stats := Stats{} _, err := Parse("input-file", []byte(input), Statistics(&stats, "no match")) if err != nil { log.Panicln(err) } b, err := json.MarshalIndent(stats.ChoiceAltCnt, "", " ") if err != nil { log.Panicln(err) } fmt.Println(string(b))
type Stats ¶
type Stats struct { // ExprCnt counts the number of expressions processed during parsing // This value is compared to the maximum number of expressions allowed // (set by the MaxExpressions option). ExprCnt uint64 // ChoiceAltCnt is used to count for each ordered choice expression, // which alternative is used how may times. // These numbers allow to optimize the order of the ordered choice expression // to increase the performance of the parser // // The outer key of ChoiceAltCnt is composed of the name of the rule as well // as the line and the column of the ordered choice. // The inner key of ChoiceAltCnt is the number (one-based) of the matching alternative. // For each alternative the number of matches are counted. If an ordered choice does not // match, a special counter is incremented. The name of this counter is set with // the parser option Statistics. // For an alternative to be included in ChoiceAltCnt, it has to match at least once. ChoiceAltCnt map[string]map[string]int }
Stats stores some statistics, gathered during parsing
type StringExpression ¶
type Tag ¶
type UnaryExpression ¶
type UnaryExpression struct { *GraphNode Op string X Expression }