-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathparser.go
346 lines (293 loc) · 6.46 KB
/
parser.go
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
// Package parser is the package which parses our input.
//
// Given a lexer, wrapping a given input-file, we parse tokens from
// it into a series of statements which we then return for processing.
package parser
import (
"fmt"
"github.com/skx/deployr/statement"
"github.com/skx/deployr/token"
)
// tokenizer is the interface for our tokenzier.
//
// We expect to consume tokens from our Lexer, but we use a layer
// of indirection by constructing our parser with an interface
// instead.
//
// This allows us to create a `FakeLexer` which satisfies the
// interface for testing-purposes.
//
type tokenizer interface {
// Our tokenizer interface requires anything we
// use to implement the NextToken() method - which
// should return the next token in the stream.
NextToken() token.Token
}
// Parser holds our internal state.
type Parser struct {
// Our tokenizer.
Tokenizer tokenizer
}
// New returns a new Parser object, consuming tokens from the specified
// tokenizer-interface.
func New(tk tokenizer) *Parser {
l := &Parser{Tokenizer: tk}
return l
}
// Parse the given program, catching errors.
func (p *Parser) Parse() ([]statement.Statement, error) {
var result []statement.Statement
//
// Does the next command use Sudo?
//
sudo := false
//
// We have a lexer, so we process each token in-turn until we
// hit the end-of-file.
//
run := true
for run {
//
// Get the next token.
//
tok := p.Tokenizer.NextToken()
//
// Process each token-type appropriately.
//
// Basically we're performing validation here that there
// are arguments of the appropriate type.
//
switch tok.Type {
case "ILLEGAL":
//
// If we encounter an illegal-token that means
// the lexer itself found something invalid.
//
// That might be a bogus number (if we supported numbers),
// or an unterminated string.
//
return result, fmt.Errorf("error received from the lexer - %s", tok.Literal)
case "IDENT":
//
// If we find a bare-ident which is not an argument
// then we're either out of sync with reality or
// the user has tried to run a bogus-program:
//
// /usr/bin/id
// Run "/usr/bin/id"
//
// Either way this is an error.
//
return result, fmt.Errorf("found unexpected identifier '%s'", tok.Literal)
case "STRING":
//
// If we find a bare-string which is not an argument
// then we're either out of sync with reality or
// the user has tried to run a bogus-program:
//
// "Test"
// Run "/usr/bin/id"
//
// Either way this is an error.
//
return result, fmt.Errorf("found unexpected string '%s'", tok.Literal)
case "CopyTemplate":
//
// We should have two arguments to CopyTemplate:
//
// 1. IDENT
// 2. IDENT
//
// (Here IDENT means "path".)
//
expected := []token.Token{
{Type: "IDENT"},
{Type: "IDENT"},
}
//
// Get the arguments, validating types.
//
args, err := p.GetArguments(expected)
//
// Error?
//
if err != nil {
return result, err
}
//
// Otherwise we can store this statement.
//
s := statement.Statement{Token: tok}
s.Arguments = args
result = append(result, s)
case "CopyFile":
//
// We should have two arguments to CopyFile:
//
// 1. IDENT
// 2. IDENT
//
// (Here IDENT means "path".)
//
expected := []token.Token{
{Type: "IDENT"},
{Type: "IDENT"},
}
//
// Get the arguments, validating types.
//
args, err := p.GetArguments(expected)
//
// Error?
//
if err != nil {
return result, err
}
//
// Otherwise we can store this statement.
//
s := statement.Statement{Token: tok}
s.Arguments = args
result = append(result, s)
case "DeployTo":
//
// We should have one arguments to DeployTo:
//
// 1. IDENT
//
expected := []token.Token{
{Type: "IDENT"},
}
//
// Get the arguments, validating types.
//
args, err := p.GetArguments(expected)
//
// Error?
//
if err != nil {
return result, err
}
//
// Otherwise we can store this statement.
//
s := statement.Statement{Token: tok}
s.Arguments = args
result = append(result, s)
case "IfChanged":
//
// We should have one arguments to IfChanged:
//
// 1. String
//
expected := []token.Token{
{Type: "STRING"},
}
//
// Get the arguments, validating types.
//
args, err := p.GetArguments(expected)
//
// Error?
//
if err != nil {
return result, err
}
//
// Otherwise we can store this statement.
//
s := statement.Statement{Token: tok}
s.Arguments = args
//
// Preserve the SUDO state
//
s.Sudo = sudo
sudo = false
result = append(result, s)
case "Run":
//
// We should have one arguments to Run:
//
// 1. String
//
expected := []token.Token{
{Type: "STRING"},
}
//
// Get the arguments, validating types.
//
args, err := p.GetArguments(expected)
//
// Error?
//
if err != nil {
return result, err
}
//
// Otherwise we can store this statement.
//
s := statement.Statement{Token: tok}
s.Arguments = args
//
// Preserve the SUDO state
//
s.Sudo = sudo
sudo = false
result = append(result, s)
case "Set":
//
// We should have two arguments to set:
//
// 1. Ident.
// 2. String
//
expected := []token.Token{
{Type: "IDENT"},
{Type: "STRING"},
}
//
// Get the arguments, validating types.
//
args, err := p.GetArguments(expected)
//
// Error?
//
if err != nil {
return result, err
}
//
// Otherwise we can store this statement.
//
s := statement.Statement{Token: tok}
s.Arguments = args
result = append(result, s)
case "Sudo":
sudo = true
case "EOF":
//
// This causes our parsing-loop to terminate.
//
run = false
default:
//
// If we hit this point there is a token-type we
// did not handle.
//
return nil, fmt.Errorf("unhandled statement - %v", tok)
}
}
return result, nil
}
// GetArguments fetches arguments from the lexer, ensuring they're
// the expected types.
func (p *Parser) GetArguments(expected []token.Token) ([]token.Token, error) {
var ret []token.Token
for i, arg := range expected {
next := p.Tokenizer.NextToken()
if next.Type != arg.Type {
return nil, fmt.Errorf("expected %v as argument %d - Got %v", arg.Type, i+1, next.Type)
}
ret = append(ret, next)
}
return ret, nil
}