0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00
caddy/config/dispenser.go

178 lines
4.4 KiB
Go
Raw Normal View History

package config
import (
"errors"
"fmt"
)
// dispenser is a type that gets exposed to middleware
// generators so that they can parse tokens to configure
// their instance.
type dispenser struct {
2015-01-21 14:09:49 -05:00
parser *parser
cursor int
nesting int
tokens []token
//err error
}
// newDispenser returns a new dispenser.
func newDispenser(p *parser) *dispenser {
d := new(dispenser)
2015-01-21 14:09:49 -05:00
d.cursor = -1
d.parser = p
return d
}
// Next loads the next token. Returns true if a token
// was loaded; false otherwise. If false, all tokens
// have been consumed.
// TODO: Have the other Next functions call this one...?
func (d *dispenser) Next() bool {
2015-01-21 14:09:49 -05:00
if d.cursor >= len(d.tokens)-1 {
return false
} else {
2015-01-21 14:09:49 -05:00
d.cursor++
return true
}
}
// NextArg loads the next token if it is on the same
// line. Returns true if a token was loaded; false
// otherwise. If false, all tokens on the line have
// been consumed.
func (d *dispenser) NextArg() bool {
2015-01-21 14:09:49 -05:00
if d.cursor < 0 {
d.cursor++
return true
}
2015-01-21 14:09:49 -05:00
if d.cursor >= len(d.tokens) {
return false
}
2015-01-21 14:09:49 -05:00
if d.cursor < len(d.tokens)-1 &&
d.tokens[d.cursor].line == d.tokens[d.cursor+1].line {
d.cursor++
return true
}
return false
}
2015-01-21 14:09:49 -05:00
// TODO: Assert that there's a line break and only advance
// the token if that's the case? (store an error otherwise)
func (d *dispenser) NextLine() bool {
2015-01-21 14:09:49 -05:00
if d.cursor < 0 {
d.cursor++
return true
}
2015-01-21 14:09:49 -05:00
if d.cursor >= len(d.tokens) {
return false
}
2015-01-21 14:09:49 -05:00
if d.cursor < len(d.tokens)-1 &&
d.tokens[d.cursor].line < d.tokens[d.cursor+1].line {
d.cursor++
return true
}
return false
}
2015-01-21 14:09:49 -05:00
// NextBlock advances the cursor to the next token only
// if the current token is an open curly brace on the
// same line. If so, that token is consumed and this
// function will return true until the closing curly
// brace is consumed by this method.
func (d *dispenser) NextBlock() bool {
if d.nesting > 0 {
d.Next()
if d.Val() == "}" {
d.nesting--
d.Next() // consume closing brace
return false
}
return true
2015-01-21 14:09:49 -05:00
}
if !d.NextArg() {
return false
}
2015-01-21 14:09:49 -05:00
if d.Val() != "{" {
d.cursor-- // roll back if not opening brace
return false
}
2015-01-21 14:09:49 -05:00
d.Next()
d.nesting++
return true
}
// Val gets the text of the current token.
func (d *dispenser) Val() string {
2015-01-21 14:09:49 -05:00
if d.cursor < 0 || d.cursor >= len(d.tokens) {
return ""
} else {
2015-01-21 14:09:49 -05:00
return d.tokens[d.cursor].text
}
}
// ArgErr generates an argument error, meaning that another
// argument was expected but not found. The error is saved
// within the dispenser, but this function returns nil for
2015-01-21 14:09:49 -05:00
// convenience in practice.
func (d *dispenser) ArgErr() error {
if d.Val() == "{" {
return d.Err("Unexpected token '{', expecting argument")
}
return d.Err("Unexpected line break after '" + d.Val() + "' (missing arguments?)")
}
2015-01-21 14:09:49 -05:00
// Err generates a custom parse error with a message of msg.
// TODO: Update the docs of all these Err methods!
2015-01-21 14:09:49 -05:00
// This function returns nil for convenience, but loads the
// error into the dispenser so it can be reported. The caller
// of the middleware preparator is responsible for checking
// the error in the dispenser after the middleware preparator
// is finished.
func (d *dispenser) Err(msg string) error {
2015-01-21 14:09:49 -05:00
msg = fmt.Sprintf("%s:%d - Parse error: %s", d.parser.filename, d.tokens[d.cursor].line, msg)
return errors.New(msg)
}
// Args is a convenience function that loads the next arguments
// (tokens on the same line) into an arbitrary number of strings
// pointed to in targets. If there are fewer tokens available
2015-01-21 19:51:47 -05:00
// than string pointers, the remaining strings will not be changed
// and false will be returned. If there were enough tokens available
// to fill the arguments, then true will be returned.
func (d *dispenser) Args(targets ...*string) bool {
enough := true
for i := 0; i < len(targets); i++ {
if !d.NextArg() {
enough = false
break
}
*targets[i] = d.Val()
}
2015-01-21 19:51:47 -05:00
return enough
}
// Startup registers a function to execute when the server starts.
func (d *dispenser) Startup(fn func() error) {
d.parser.cfg.Startup = append(d.parser.cfg.Startup, fn)
}
// Root returns the server root file path.
func (d *dispenser) Root() string {
if d.parser.cfg.Root == "" {
return "."
} else {
return d.parser.cfg.Root
}
}
// Host returns the hostname the server is bound to.
func (d *dispenser) Host() string {
return d.parser.cfg.Host
}
// Port returns the port that the server is listening on.
func (d *dispenser) Port() string {
return d.parser.cfg.Port
}