-
Notifications
You must be signed in to change notification settings - Fork 2
/
parse.py
495 lines (405 loc) · 11.8 KB
/
parse.py
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# CAVEAT UTILITOR
#
# This file was automatically generated by Grako.
#
# https://pypi.python.org/pypi/grako/
#
# Any changes you make to it will be overwritten the next time
# the file is generated.
from __future__ import print_function, division, absolute_import, unicode_literals
from grako.parsing import graken, Parser
__version__ = (2015, 10, 23, 9, 14, 47, 4)
__all__ = [
'PPDDLsubParser',
'PPDDLsubSemantics',
'main'
]
class PPDDLsubParser(Parser):
def __init__(self, whitespace=None, nameguard=None, **kwargs):
super(PPDDLsubParser, self).__init__(
whitespace=whitespace,
nameguard=nameguard,
comments_re=None,
eol_comments_re=None,
ignorecase=None,
**kwargs
)
@graken()
def _start_(self):
self._program_()
@graken()
def _program_(self):
self._token('(define ')
self._problem_()
self.ast['problem'] = self.last_node
with self._optional():
self._init_()
self.ast['init'] = self.last_node
self._goal_()
self.ast['goal'] = self.last_node
with self._optional():
self._goal_reward_()
self.ast['extra'] = self.last_node
def block5():
self._action_()
self._closure(block5)
self.ast['actions'] = self.last_node
self._token(')')
self.ast._define(
['problem', 'init', 'goal', 'extra', 'actions'],
[]
)
@graken()
def _problem_(self):
self._token('(problem ')
self._atom_()
self.ast['problem_name'] = self.last_node
self._token(')')
self.ast._define(
['problem_name'],
[]
)
@graken()
def _init_(self):
self._token('(:init ')
self._negfreeconjunction_()
self.ast['conjunction'] = self.last_node
self._token(')')
self.ast._define(
['conjunction'],
[]
)
@graken()
def _goal_(self):
self._token('(:goal ')
self._dnf_()
self.ast['subgoals'] = self.last_node
self._token(')')
self.ast._define(
['subgoals'],
[]
)
@graken()
def _goal_reward_(self):
self._token('(:goal-reward ')
self._value_()
self.ast['goal_reward'] = self.last_node
self._token(')')
self.ast._define(
['goal_reward'],
[]
)
@graken()
def _action_(self):
self._token('(:action ')
self._atom_()
self.ast['name'] = self.last_node
with self._optional():
self._precondition_()
self.ast['precondition'] = self.last_node
with self._optional():
self._effect_()
self.ast['effect'] = self.last_node
self._token(')')
self.ast._define(
['name', 'precondition', 'effect'],
[]
)
@graken()
def _precondition_(self):
self._token(':precondition ')
self._dnf_()
self.ast['args'] = self.last_node
self.ast._define(
['args'],
[]
)
@graken()
def _effect_(self):
self._token(':effect ')
with self._group():
with self._choice():
with self._option():
self._effect_conjunction_()
with self._option():
self._probabilistic_()
self._error('no available options')
self.ast['args'] = self.last_node
self.ast._define(
['args'],
[]
)
@graken()
def _probabilistic_(self):
self._token('(probabilistic ')
def block1():
self._prob_effects_()
self._positive_closure(block1)
self.ast['prob_effects'] = self.last_node
self._token(')')
self.ast._define(
['prob_effects'],
[]
)
@graken()
def _prob_effects_(self):
self._value_()
self.ast['value'] = self.last_node
self._effect_conjunction_()
self.ast['conjunction'] = self.last_node
self.ast._define(
['value', 'conjunction'],
[]
)
@graken()
def _dnf_(self):
with self._choice():
with self._option():
self._conjunction_()
self.ast.setlist('disjunction', self.last_node)
with self._option():
self._token('(or ')
def block2():
self._conjunction_()
self._closure(block2)
self.ast['disjunction'] = self.last_node
self._token(')')
self._error('expecting one of: (or ')
self.ast._define(
['disjunction'],
['disjunction']
)
@graken()
def _effect_conjunction_(self):
with self._choice():
with self._option():
self._effect_term_()
self.ast.setlist('args', self.last_node)
with self._option():
self._token('(and ')
def block2():
self._effect_term_()
self._closure(block2)
self.ast['args'] = self.last_node
self._token(')')
self._error('expecting one of: (and ')
self.ast._define(
['args'],
['args']
)
@graken()
def _effect_term_(self):
with self._choice():
with self._option():
self._predicate_()
with self._option():
self._negation_()
with self._option():
self._reward_increase_()
with self._option():
self._reward_decrease_()
self._error('no available options')
@graken()
def _reward_increase_(self):
self._token('(increase ')
self._token('(reward)')
self._value_()
self.ast['increase'] = self.last_node
self._token(')')
self.ast._define(
['increase'],
[]
)
@graken()
def _reward_decrease_(self):
self._token('(decrease ')
self._token('(reward)')
self._value_()
self.ast['decrease'] = self.last_node
self._token(')')
self.ast._define(
['decrease'],
[]
)
@graken()
def _conjunction_(self):
with self._choice():
with self._option():
self._term_()
self.ast.setlist('args', self.last_node)
with self._option():
self._token('(and ')
def block2():
self._term_()
self._closure(block2)
self.ast['args'] = self.last_node
self._token(')')
self._error('expecting one of: (and ')
self.ast._define(
['args'],
['args']
)
@graken()
def _negfreeconjunction_(self):
with self._choice():
with self._option():
self._negfreeterm_()
self.ast.setlist('args', self.last_node)
with self._option():
self._token('(and ')
def block2():
self._negfreeterm_()
self._closure(block2)
self.ast['args'] = self.last_node
self._token(')')
self._error('expecting one of: (and ')
self.ast._define(
['args'],
['args']
)
@graken()
def _term_(self):
with self._choice():
with self._option():
self._predicate_()
with self._option():
self._negation_()
self._error('no available options')
@graken()
def _negfreeterm_(self):
self._predicate_()
@graken()
def _negation_(self):
self._token('(not ')
def block1():
self._predicate_()
self._closure(block1)
self.ast['negation'] = self.last_node
self._token(')')
self.ast._define(
['negation'],
[]
)
@graken()
def _predicate_(self):
with self._choice():
with self._option():
self._atom_()
self.ast['atom'] = self.last_node
with self._option():
self._token('(')
self._atom_()
self.ast['atom'] = self.last_node
self._token(')')
self._error('no available options')
self.ast._define(
['atom'],
[]
)
@graken()
def _atom_(self):
self._pattern(r'[a-zA-Z][a-zA-Z0-9_-]*')
@graken()
def _value_(self):
self._pattern(r'([0-9]+\/[1-9][0-9]*)|([-+]?([0-9]*\.[0-9]+|[0-9]+))')
class PPDDLsubSemantics(object):
def start(self, ast):
return ast
def program(self, ast):
return ast
def problem(self, ast):
return ast
def init(self, ast):
return ast
def goal(self, ast):
return ast
def goal_reward(self, ast):
return ast
def action(self, ast):
return ast
def precondition(self, ast):
return ast
def effect(self, ast):
return ast
def probabilistic(self, ast):
return ast
def prob_effects(self, ast):
return ast
def dnf(self, ast):
return ast
def effect_conjunction(self, ast):
return ast
def effect_term(self, ast):
return ast
def reward_increase(self, ast):
return ast
def reward_decrease(self, ast):
return ast
def conjunction(self, ast):
return ast
def negfreeconjunction(self, ast):
return ast
def term(self, ast):
return ast
def negfreeterm(self, ast):
return ast
def negation(self, ast):
return ast
def predicate(self, ast):
return ast
def atom(self, ast):
return ast
def value(self, ast):
return ast
def main(filename, startrule, trace=False, whitespace=None, nameguard=None):
import json
with open(filename) as f:
text = f.read()
parser = PPDDLsubParser(parseinfo=False)
ast = parser.parse(
text,
startrule,
filename=filename,
trace=trace,
whitespace=whitespace,
nameguard=nameguard)
print('AST:')
print(ast)
print()
print('JSON:')
print(json.dumps(ast, indent=2))
print()
if __name__ == '__main__':
import argparse
import string
import sys
class ListRules(argparse.Action):
def __call__(self, parser, namespace, values, option_string):
print('Rules:')
for r in PPDDLsubParser.rule_list():
print(r)
print()
sys.exit(0)
parser = argparse.ArgumentParser(description="Simple parser for PPDDLsub.")
parser.add_argument('-l', '--list', action=ListRules, nargs=0,
help="list all rules and exit")
parser.add_argument('-n', '--no-nameguard', action='store_true',
dest='no_nameguard',
help="disable the 'nameguard' feature")
parser.add_argument('-t', '--trace', action='store_true',
help="output trace information")
parser.add_argument('-w', '--whitespace', type=str, default=string.whitespace,
help="whitespace specification")
parser.add_argument('file', metavar="FILE", help="the input file to parse")
parser.add_argument('startrule', metavar="STARTRULE",
help="the start rule for parsing")
args = parser.parse_args()
main(
args.file,
args.startrule,
trace=args.trace,
whitespace=args.whitespace,
nameguard=not args.no_nameguard
)