-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMoccacinoConverter.lua
447 lines (323 loc) · 9.99 KB
/
MoccacinoConverter.lua
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
typeStrings={
["boolean"]="boolean",
["table"]="table",
["number"]="number",
["string"]="string",
["function"]="function",
}
typeMockValues={
["boolean"]="true",
["table"]="{exampletable= true}",
["number"]= "42",
["string"]="TestString",
["function"]= "function (bar) return bar; end",
}
function generatePreample(outTable)
outTable[#outTable+1]="--==================================================================================================\n"
outTable[#outTable+1]="-- Copyright (C) <2016> <PicassoCT>\n"
outTable[#outTable+1]="--This program is free software: you can redistribute it and/or modify\n"
outTable[#outTable+1]="--it under the terms of the GNU General Public License as published by\n"
outTable[#outTable+1]="--the Free Software Foundation, either version 3 of the License, or\n"
outTable[#outTable+1]="--(at your option) any later version.\n"
outTable[#outTable+1]="--This program is distributed in the hope that it will be useful,\n"
outTable[#outTable+1]="--but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
outTable[#outTable+1]="--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n"
outTable[#outTable+1]="--GNU General Public License for more details.\n"
outTable[#outTable+1]="-- You should have received a copy of the GNU General Public License\n"
outTable[#outTable+1]="--along with this program. If not, see <http://www.gnu.org/licenses/>.\n"
outTable[#outTable+1]="--==================================================================================================\n"
outTable[#outTable+1]="--Variables for the MockUp\n"
outTable[#outTable+1]="Spring ={}\n"
for k,v in pairs(typeStrings) do
outTable[#outTable+1] = k .."Mock ="..typeMockValues[k].."\n"
end
outTable[#outTable+1]="--==================================================================================================\n"
outTable[#outTable+1]="\n"
return outTable
end
function getFirstVisibileAscii(line, index)
if not line then return -1 end
for i=index, string.len(line),1 do
asciival= string.byte(line, i)
if asciival then
if (asciival > 48 and asciival < 58) or(asciival > 64 and asciival < 91) or (asciival < 123 and asciival > 96) then
return i
end
end
end
return -1
end
function getFirstSymbol(line, index)
if not line then return -1 end
for i=index, string.len(line),1 do
asciival= string.byte(line, i)
if asciival then
if ((asciival > 64 and asciival < 91) or (asciival < 123 and asciival > 96)) then
else
return i
end
end
end
return -1
end
function containsAscci(line)
for i=1, string.len(line) do
asciival= string.byte(line, i)
if asciival > 32 and asciival < 126 then
return true
end
end
return false
end
function trim(s)
if not s then return "" end
return (s:gsub("^%s*(.-)%s*$", "%1"))
end
function sanitizeWord(word)
coma= string.find(word,",")
if coma then
word=string.sub(word,1,coma-1)
end
goose= string.find(word,"\"")
if goose then
word=string.sub(word,1,goose-1)
end
goose= string.find(word,"]")
if goose then
word=string.sub(word,1,goose-1)
end
goose= string.find(word,"%)")
if goose then
word=string.sub(word,1,goose-1)
end
return word
end
function getWord(line, wordStart)
wordStart =getFirstVisibileAscii(line,wordStart)
wordEnd = getFirstSymbol(line, wordStart)
word =string.sub(line,wordStart,wordEnd)
word = sanitizeWord(word)
word= trim(word)
return word, wordStart, wordEnd
end
boolLastLineContainedArgument=false
function getHead(HeaderEnd,line)
functionNameEnd=string.find(line," ", HeaderEnd+1)
functionName=string.sub(line,HeaderEnd+1,functionNameEnd)
processedString= "Spring."..functionName.. " = function ".." ( "
boolFoundHeader=true
boolValidHead=true
return functionNameEnd, functionName,processedString, boolFoundHeader, boolValidHead
end
function handleTables (line)
tableStart= string.find(line,"{")
tableEnd = string.find(line, "}")
if tableStart and tableEnd then
line = string.sub(line,1,tableStart-1).." table mock ,"..string.sub(line,tableEnd+1,string.len(line))
elseif tableStart then
line = string.sub(line,1,tableStart-1).." table mock ,"
elseif tableEnd then
line =string.sub(line,tableEnd+1,string.len(line))
end
return line
end
function getArguments(line, start, endArg, isReturnData)
ret={numberArguments= 0, [""]=""}
if not isReturnData then
if string.find(line,"|") then
line = string.sub(line,1, string.find(line,"|"))
end
braceOpen =string.find(line,"%(")
braceClose =string.find(line,"%)")
if braceOpen and braceClose then
line= string.sub(line,braceOpen,braceClose)
end
line=trim(line)
if not line or not start or not endArg then
return ret
end
if containsAscci(line)==false then
return ret
end
else
ret={numberArguments= 0, [""]=""}
if not line or not start or not endArg then return ret end
--search for return type nil
nilFound, nilEnd= string.find(line,"nil")
nilfound, nilEnd= string.find(line, "|",nilEnd)
if nilEnd then
line=string.sub(line,nilEnd+1)
nextor=string.find(line,"|", nilEnd) or string.find(line,"%)")
end
end
numberArguments= 0
--iterrate over the string and at least get the type
boolFoundSomething=true
boolTypeFound = false
currentType =""
wordStart =getFirstVisibileAscii(line,1)
wordEnd=1
word = ""
argCounter=0
boolLastLineContainedArgument=false
line = handleTables(line)
while boolFoundSomething == true and argCounter < 15 do
boolFoundSomething=false
argCounter=argCounter+1
word, wordStart,wordEnd = getWord(line, wordEnd)
if word and typeStrings[word] then
currentType= typeStrings[word]
numberArguments= numberArguments+1
if isReturnData then
ret[numberArguments]={}
ret[numberArguments].types =currentType
ret[numberArguments].value ="ReturnValue"
boolLastLineContainedArgument=true
--skip the next word
boolFoundSomething=true
boolTypeFound = true
else
word, wordStart,wordEnd = getWord(line, wordEnd)
boolTypeFound = true
boolFoundSomething=true
end
end
if word and boolTypeFound == true then
-- print("VarName:"..word)
ret[numberArguments]={}
ret[numberArguments].types =currentType
ret[numberArguments].value =word
boolFoundSomething= true
boolTypeFound=false
word = nil
end
end
ret.numberArguments= numberArguments
return ret
end
function twoEmptyInARow(line, LineCount)
if getFirstVisibileAscii(line,1) == -1 then
LineCount=LineCount+1
end
if LineCount> 2 then
return true, 0
else
return false, LineCount
end
end
function createArgsAssert(line,ArgEnd)
lineEnd= ArgEnd or string.find(line,"%)")
boolMatchArgumentsStart = true
argumentsTable = getArguments(line,ArgStart ,lineEnd)
number=0
total=(argumentsTable).numberArguments
argumentsTable.numberArguments=nil
for i=1, #argumentsTable do
local element= argumentsTable[i]
types=element.types
value=element.value
if types ~= "" then
processedString=processedString.." "..value
number = number + 1
if number > 0 then
processedString= processedString.. ","
end
assertString = assertString.. "assert(type("..value..") == \""..types.."\",\"Argument ".. value.." is of invalid type - expected "..types.."\");\n"
end
end
return assertString,processedString,boolMatchArgumentsStart
end
function main()
print("Main reached")
file = io.open("api.txt","r")
outPut={}
outPut=generatePreample(outPut)
Puffer={}
for line in file:lines() do
boolRestart=false
assertString=""
returnString=""
comentString= ""
processedString =""
Header,HeaderEnd = string.find(line, "Spring.")
while boolRestart == false and not Header do
line= io.read("*line")
Header,HeaderEnd = string.find(line, "Spring.")
--read lines till you found the header
if boolRestart== false and Header then
Puffer={}
--Reset all the Strings
assertString=""
returnString=""
comentString= ""
functionNameEnd, functionName,processedString, boolFoundHeader, boolValidHead= getHead(HeaderEnd,line)
end
end
--try to get the argstart
ArgStart = string.find(line,"%(")
LineCount=0
--if no argstart fast forward
while boolRestart == false and not ArgStart do
line= io.read("*line")
ArgStart = string.find(line,"%(")
--if no many arguments found skip forward
if not ArgStart then
boolRestart,LineCount = twoEmptyInARow(line, LineCount)
end
end
boolArgContinueCounter= true
-- process arguments
while boolRestart == false and boolArgContinueCounter == true do
assertString, processedString = createArgsAssert(line,ArgEnd)
processedString=string.sub(processedString,1,string.len(processedString)-1)
ArgEnd = string.find(line,"%)")
if ArgEnd then
boolArgContinueCounter= false
processedString=processedString..")\n"
end
end
--Search for the Return Types
_,ReturnEnd = string.find(line, "->")
while boolRestart == false and not ReturnEnd do
line= io.read("*line")
_, ReturnEnd = string.find(line,"->")
--if no many arguments found skip forward
if not ArgStart then
boolRestart,LineCount = twoEmptyInARow(line, LineCount)
end
end
if ReturnEnd then returnString= "return "end
boolOneLineEmpty=false
--handle the return arguments
while boolRestart == false and boolOneLineEmpty==false do
argumentsTable = getArguments(line, ReturnEnd, string.len(line),true)
argumentsTable.numberArguments=nil
for i=1, #argumentsTable do
local element= argumentsTable[i]
types=element.types
value=element.value
if types and types ~="" then
returnString=returnString.." "..types.."Mock"..","
end
end
line= io.read("*line")
if getFirstVisibileAscii(line,1) == -1 then
returnString= string.sub(returnString,1,string.len(returnString)-1)
boolOneLineEmpty=true
end
end
if boolRestart== false then
Puffer[#Puffer+1]=comentString..processedString..assertString..returnString.."\n end\n\n"
for i=1, #Puffer do
outPut[#outPut+1] = Puffer[i]
end
Puffer={}
end
end
file = io.open("out.txt","w")
io.output(file)
for i=1,#outPut, 1 do
io.write(outPut[i])
end
end
main()