-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathDeterministicGenerator.py
More file actions
155 lines (129 loc) · 5.4 KB
/
DeterministicGenerator.py
File metadata and controls
155 lines (129 loc) · 5.4 KB
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
# -*- coding: utf-8 -*-
# @copyright: MIT License
# Copyright (c) 2018 syntactic (Pastèque Ho)
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# @summary: This file generates all strings described by a non-recursive JSGF grammar.
# Run it by entering into the command line: python DeterministicGenerator.py <grammarFile>
# where <grammarFile> is the path to the JSGF grammar.
# @since: 2014/06/02
"""
This file deterministically generates strings from a JSGF Grammar, whether there are \
weights defined in rules or not. It requires one argument: the path to the JSGF\
Grammar file. You can run this on the included grammar IdeasNonRecursive.gram:\
``python DeterministicGenerator.py IdeasNonRecursive.gram``
This will generate all strings defined by the public rules of IdeasNonRecursive.gram.\
It is important that the grammar used by the generator is not recursive (rules \
should not directly or indirectly reference themselves), so that the generator\
terminates. Otherwise, you may get a maximum recursion depth exceeded error or \
a segmentation fault.
"""
import sys, itertools, argparse
import JSGFParser as parser
import JSGFGrammar as gram
def combineSets(listOfSets):
"""
Combines sets of strings by taking the cross product of the sets and \
concatenating the elements in the resulting tuples
:param listOfSets: 2-D list of strings
:returns: a list of strings
"""
totalCrossProduct = ['']
for i in range(len(listOfSets)):
currentProduct = []
for crossProduct in itertools.product(totalCrossProduct, listOfSets[i]):
currentProduct.append((crossProduct[0].strip() + ' ' + crossProduct[1].strip()).strip())
totalCrossProduct = currentProduct
return totalCrossProduct
def processSequence(seq):
"""
Combines adjacent elements in a sequence
"""
componentSets = []
for component in seq:
componentSets.append(processRHS(component))
return combineSets(componentSets)
def processNonTerminal(nt):
"""
Finds the rule expansion for a nonterminal and returns its expansion.
"""
return processRHS(grammar.getRHS(nt))
def processDisjunction(disj):
"""
Returns the string representations of a set of alternatives
:returns: list of strings, where each string is each alternative
"""
disjunctExpansions = []
if type(disj.disjuncts[0]) is tuple:
disjuncts = map(lambda x : x[0], disj.disjuncts)
else:
disjuncts = disj.disjuncts
for disjunct in disjuncts:
disjunctExpansions.extend(processRHS(disjunct))
return disjunctExpansions
def processOptional(opt):
"""
Returns the string representations of an optional grouping
:type opt: JSGFOptional
:returns: list of strings, including an empty string
"""
optional = ['']
optional.extend(processRHS(opt.option))
return optional
def processRHS(rhs):
"""
Depending on the type of the argument, calls the corresponding
function to deal with that type.
:param rhs: portion of JSGF rule
:type rhs: either a JSGF Expression, list, or string
:returns: list of strings
"""
if type(rhs) is list:
return processSequence(rhs)
elif isinstance(rhs, gram.Disjunction):
return processDisjunction(rhs)
elif isinstance(rhs, gram.Optional):
return processOptional(rhs)
elif isinstance(rhs, gram.NonTerminal):
return processNonTerminal(rhs)
elif isinstance(rhs, str):
return [rhs]
def main():
"""Main function for command line usage"""
global grammar
arg_parser = argparse.ArgumentParser(
description='Generate all possible strings from a non-recursive JSGF grammar'
)
arg_parser.add_argument(
'grammarFile',
help='Path to the JSGF grammar file'
)
args = arg_parser.parse_args()
try:
with open(args.grammarFile, 'r') as fileStream:
grammar = parser.getGrammarObject(fileStream)
for rule in grammar.publicRules:
expansions = processRHS(rule.rhs)
for expansion in expansions:
print(expansion)
except FileNotFoundError:
print(f"Error: Grammar file '{args.grammarFile}' not found")
sys.exit(1)
except Exception as e:
print(f"Error processing grammar: {e}")
sys.exit(1)
if __name__ == '__main__':
main()