-
Notifications
You must be signed in to change notification settings - Fork 0
/
mcdsatplus_endec.py
executable file
·173 lines (140 loc) · 4.42 KB
/
mcdsatplus_endec.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
#!/usr/bin/python
import sys, getopt, re
def merge_dicts(*dict_args):
"""
Given any number of dicts, shallow copy and merge into a new dict,
precedence goes to key value pairs in latter dicts
"""
result = {}
for dictionary in dict_args:
result.update(dictionary)
return result
def invertdict(dictionary):
"""
Invert keys and values of a dictionary
"""
return {v: k for k, v in dictionary.iteritems()}
def getmapping(dictionary, key, isfunc=True):
"""
Get the mappings of the variables
If q is name of a function do not replace (restriction for query file)
"""
if key == 'q' and isfunc:
return key
if key in dictionary:
return dictionary[key]
else:
return key
def explode(s):
"""
Get all function names and arguments from views
"""
pattern = r'(\w[\w\d_]*)\((\w[\w\d,_ ]*)\)'
match = re.findall(pattern, s)
if match:
return list(match)
else:
return []
def generate_mappings(inputf, mappingsf):
"""
Generate all mappings for encoding/decoding views and query files
"""
ifile = open(inputf, 'r')
mfile = open(mappingsf, 'w')
# Get all function names and arguments
views = []
funcs = []
args = []
for line in ifile:
match = explode(line)
for idx, pair in enumerate(match):
if pair[0] not in funcs:
if idx == 0:
views.append(pair[0])
else:
funcs.append(pair[0])
for arg in pair[1].split(','):
if arg not in args:
args.append(arg)
# Produce the mappings for all functions and arguments
viewmappings = {}
for idx, view in enumerate(views):
viewmappings[view] = 'v' + str(idx)
funcmappings = {}
for idx, func in enumerate(funcs):
funcmappings[func] = 'r' + str(idx + 1)
argmappings = {}
for idx, arg in enumerate(args):
argmappings[arg] = 'X' + str(idx + 1)
# Merge all dictionaries
mappings = merge_dicts(viewmappings, funcmappings, argmappings)
# Write all mappings to a file
# <mcdsatname> = <qaestro_name>
for k, v in mappings.iteritems():
mfile.write(v + '=' + k + '\n')
# Close files
ifile.close()
mfile.close()
def transform_file(inputf, mappingsf, outputf, encode=True):
"""
Decode or encode qaestro <--> mcdsat
"""
ifile = open(inputf, 'r')
mfile = open(mappingsf, 'r')
ofile = open(outputf, 'w')
mappings = dict(line.strip().split('=') for line in mfile)
if encode:
mappings = invertdict(mappings)
ifile = open(inputf, 'r')
# Replace all strings
lines = []
for line in ifile:
match = explode(line)
view = ''
for idx, pair in enumerate(match):
view += getmapping(mappings, pair[0]) + '(' + ','.join(getmapping(mappings, i, isfunc=False) for i in pair[1].split(',')) + ')'
if idx == 0:
view += ':- '
else:
view += ','
if match:
lines.append(view[:-1])
else:
lines.append(line)
# Write the file for mcdsat
with open(outputf, 'aw') as file:
for line in lines:
file.write(line + '\n')
file.close()
# Close files
ifile.close()
mfile.close()
# Main method
def main(argv):
inputfile = ''
outputfile = ''
try:
opts, args = getopt.getopt(argv,"ha:i:m:o:",["action=","ifile=","mfile=","ofile="])
except getopt.GetoptError:
print('mcdsatplus_endec.py -a <action> -i <inputfile> -m <mappings> -o <outputfile>')
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print('mcdsatplus_endec.py -a <generate|encode|decode> -i <inputfile> -m <mappings> -o <outputfile>')
sys.exit()
elif opt in ("-a", "--action"):
action = arg
elif opt in ("-i", "--ifile"):
inputfile = arg
elif opt in ("-m", "--mfile"):
mappingsfile = arg
elif opt in ("-o", "--ofile"):
outputfile = arg
if action == 'generate':
generate_mappings(inputfile, mappingsfile)
elif action == 'encode':
transform_file(inputfile, mappingsfile, outputfile)
elif action == 'decode':
transform_file(inputfile, mappingsfile, outputfile, False)
if __name__ == "__main__":
main(sys.argv[1:])