summaryrefslogtreecommitdiff
path: root/conf/parser.go
blob: cc85054e95da23b9d02dcbbf6a925b9452f2e98c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
// grammar of the config file
//
// Notes: We parse exactly three modules ("input", "filter", "output")
// in our configuration. Each module consists of two name-object pairs
// that are nested. We don't want to allow limitless recursion here.
//
// config = module module module
// module = name object name object
// name = 'input' | 'filter' | 'output' | etc.
// object = '{' keyvalue | keyvalue | ... '}'
// keyvalue = statement '=>' value
// statement = name | if
// value = literal | '[' literal ']'
// literal = '"' name '"'

package conf

import (
	"fmt"
	"io"
	"os"
)

// Having a Config to Manager function could be nice?  Or we could just
// return a Manager from here which may be even better...
type Config struct {
}

type parser struct {
	s    scanner
	last token
	cur  token
}

func newParser(s *scanner) *parser {
	p := &parser{
		s: *s,
	}

	return p
}

func NewConfig(r io.Reader) *Config {
	p := newParser(newScanner(r))
	p.startparsing()

	return &Config{}
}

func (p *parser) startparsing() {
	p.module("input")

	p.module("filter")

}

func (p *parser) advanceOneToken(place string) {
	var err error

	p.last = p.cur
	p.cur, err = p.s.Scan()
	if err != nil {
		fmt.Fprintf(os.Stderr, "error when parsing %s. Scanner returned an error %v.\n", place, err)
		os.Exit(1)
	}
}

func (p *parser) module(firstname string) {
	p.advanceOneToken("module")

	fmt.Fprintf(os.Stderr, "tokentype: %d, token: %q\n", p.cur.Type, p.cur.Lit)

	if p.cur.Lit != firstname {
		fmt.Fprintf(os.Stderr, "error when parsing module. We were expecting name %q but got %q at line %d offset %d.\n", firstname, p.cur.Lit, p.cur.LineNr, p.cur.Offset)
	}

	p.advanceOneToken("module")
	if p.cur.Type != ObjectDelimiter {
		fmt.Fprintf(os.Stderr, "error when parsing module. We were expecting an opening bracket but got %q at line %d offset %d.\n", p.cur.Lit, p.cur.LineNr, p.cur.Offset)
	}

	p.advanceOneToken("module")
	if p.cur.Type != Name {
		fmt.Fprintf(os.Stderr, "error when parsing module. We were expecting another name but got %q at line %d offset %d.\n", p.cur.Lit, p.cur.LineNr, p.cur.Offset)
	}
	p.object()

	p.advanceOneToken("module")
	if p.cur.Lit[0] != '}' {
		fmt.Fprintf(os.Stderr, "error when parsing module. Was expecting a closing bracket but got %s at line %d offset %d.\n", p.cur.Lit, p.cur.LineNr, p.cur.Offset)
	}

}

func (p *parser) object() {
	p.advanceOneToken("object")

	if p.cur.Lit[0] != '{' {
		fmt.Fprintf(os.Stderr, "error when parsing object. Was expecting an opening bracket but got %s at line %d offset %d.\n", p.cur.Lit, p.cur.LineNr, p.cur.Offset)
	}
	// hack to deal with case where there is no white space between
	// the delimiters.
	if p.cur.Lit == "{}" {
		return
	}

	for {
		more := p.keyvalue()
		if !more {
			break
		}
	}

}

func (p *parser) keyvalue() bool {
	p.advanceOneToken("keyvalue")

	fmt.Fprintf(os.Stderr, "keyvalue: tokentype: %d, token: %q\n", p.cur.Type, p.cur.Lit)
	if p.cur.Type != Literal {
		fmt.Fprintf(os.Stderr, "error when parsing keyvalue. Was expecting a name but got %q at line %d offset %d.\n", p.cur.Lit, p.cur.LineNr, p.cur.Offset)
	}

	p.advanceOneToken("keyvalue")
	if p.cur.Lit != "=>" {
		fmt.Fprintf(os.Stderr, "error when parsing keyvalue. Was expecting a '=>' but got %q at line %d offset %d.\n", p.cur.Lit, p.cur.LineNr, p.cur.Offset)
	}

	p.advanceOneToken("keyvalue")
	if p.cur.Type != Literal && p.cur.Type != Name {
		fmt.Fprintf(os.Stderr, "error when parsing keyvalue. Was expecting a literal or a name but got %q at line %d offset %d.\n", p.cur.Lit, p.cur.LineNr, p.cur.Offset)
	}

	tok, err := p.s.Peek()
	if err != nil {
		fmt.Fprintf(os.Stderr, "error when parsing keyvalue. Got an error when checking if there are more keyvalues: %v.\n", err)
		return false
	}

	fmt.Fprintf(os.Stderr, "peeked %q (type %d) at line %d offset %d.\n", tok.Lit, tok.Type, tok.LineNr, tok.Offset)
	if tok.Type == ObjectDelimiter {
		p.advanceOneToken("keyvaluelast")
		return false
	}

	return true
}