-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcpp_compiler.py
589 lines (452 loc) · 22.4 KB
/
cpp_compiler.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
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
"""
Uses the Compiler class to compile the project into C++.
"""
from compiler import Compiler
def ifsanitize(string:str) -> str:
"""
Transforms all ET into &&, etc.
:param string: The string to sanitize.
:return: The sanitized string.
"""
return string.replace('ET', '&&').replace('OU', '||').replace('NON', '!')
class CppCompiler(Compiler):
def __init__(self, instruction_names:tuple, var_types:dict, other_instructions:list, stdscr, app,
use_struct_keyword:bool=True):
super().__init__(instruction_names, var_types, other_instructions, stdscr, app.translations, app.get_translation, app.tab_char)
# Creates a list of constants
self.constants = []
# Creates a list of function lines
self.fxtext = []
# Creates the return code
self.return_code = "0"
# Chooses whether we use the struct keyword in the functions' return type and arguments
self.use_struct_keyword = use_struct_keyword
# Creates some use variables
self.app = app
def prepare_new_compilation(self):
"""
Resets everything before compilation.
"""
self.constants.clear()
self.fxtext.clear()
self.return_code = "0"
def analyze_const(self, instruction_name:str, instruction_params:list, line_number:int):
""" Constante : Nom : Paramètres """
# Adds a constant to the list of constants
self.constants.append(f"const {' '.join(instruction_params)};")
# Empties the line
self.instructions_list[line_number] = ""
def define_var(self, instruction:list, line_number:int):
""" Noms, séparés, par, des, virgules : Type(s) """
# Finding the type of the variable
if instruction[0][-1] == "*":
if self.app.use_ptrs_and_malloc:
var_type = f"{self.var_types[instruction[0][:-1]]}*"
else:
return self.error(f"Error line {line_number + 1} : Use of pointers was disabled.")
else:
var_type = self.var_types[instruction[0]]
# If the third argument is an equals ('=') sign, we use the shorthand for quick variable assignation
if len(instruction) > 2 and instruction[2] == "=":
# We remove the type of the variable from the instructions list
instruction.pop(0)
# We call the variable assignation method to generate an assignation string
self.var_assignation(instruction, line_number)
# Otherwise, we define all the variables quickly
else:
# Getting the names of each variable
variable_names = ", ".join(instruction[1:])
# Creating the string
self.instructions_list[line_number] = var_type + " " + variable_names
def analyze_for(self, instruction_name:str, instruction_params:list, line_number:int):
""" Pour i allant de 0 à n avec un pas de 1 """
self.instructions_stack.append("for")
# Creates the for loop's body
self.instructions_list[line_number] = f"for ({instruction_params[0]} = {instruction_params[1]}; " \
f"{instruction_params[0]} <= {instruction_params[2]}; " \
f"{instruction_params[0]} += {1 if len(instruction_params) < 4 else instruction_params[3]}) " + "{"
def analyze_end(self, instruction_name:str, instruction_params:list, line_number:int):
""" Fin names[elem] """
# Pops the element at the end of the stack and stores it in a variable
last_elem = self.instructions_stack.pop()
# If the last element is a case or default statement, we replace the end with a break statement
if last_elem in ("case", "default"):
self.instructions_list[line_number] = self.tab_char + "break;"
elif last_elem in ("fx", "proc"):
self.fxtext.append("}\n")
self.instructions_list[line_number] = ""
# Otherwise it's just a curly bracket
else:
self.instructions_list[line_number] = "}"
def analyze_while(self, instruction_name:str, instruction_params:list, line_number:int):
""" Tant Que condition """
self.instructions_stack.append("while")
# Rewrites the line for the while loop
self.instructions_list[line_number] = f"while ({ifsanitize(' '.join(instruction_params))}) " + "{"
def analyze_if(self, instruction_name:str, instruction_params:list, line_number:int):
""" Si condition """
self.instructions_stack.append("if")
# Rewrites the line
self.instructions_list[line_number] = f"if ({ifsanitize(' '.join(instruction_params))}) " + "{"
def analyze_else(self, instruction_name:str, instruction_params:list, line_number:int):
""" Sinon """
# Rewrites the line
self.instructions_list[line_number] = "} else {"
def analyze_elif(self, instruction_name:str, instruction_params:list, line_number:int):
""" Sinon Si condition """
# Rewrites the line
self.instructions_list[line_number] = "} " + f"else if ({ifsanitize(' '.join(instruction_params))}) " + " {"
def analyze_switch(self, instruction_name:str, instruction_params:list, line_number:int):
""" SELON element """
self.instructions_stack.append("switch")
# Rewrites the line
self.instructions_list[line_number] = f"switch ({' '.join(instruction_params)}) " + "{"
def analyze_case(self, instruction_name:str, instruction_params:list, line_number:int):
""" Cas element """
# If there is no switch in the instruction stack, we error out to the user
if "switch" not in self.instructions_stack:
self.error(self.translate_method("compilers", "cpp", "errors", "case_outside_switch").format(
line_number=(line_number + 1)
))
# If there is no error, we continue
else:
self.instructions_stack.append("case")
self.instructions_list[line_number] = f"case {' '.join(instruction_params)}:"
def analyze_default(self, instruction_name:str, instruction_params:list, line_number:int):
""" Autrement : """
# If there is no switch in the instruction stack, we error out to the user
if "switch" not in self.instructions_stack:
self.error(self.translate_method("compilers", "cpp", "errors", "default_outside_switch").format(
line_number=(line_number + 1)
))
# If there is no error, we continue
else:
self.instructions_stack.append("default")
self.instructions_list[line_number] = "default:"
def analyze_print(self, instruction_name:str, instruction_params:list, line_number:int):
""" Afficher(elements) """
# Creates the string to print
string_to_print = ' '.join(instruction_params)
# Turns all & into <<
string_to_print = string_to_print.replace(' & ', ' << ')
# Rewrites the string
self.instructions_list[line_number] = f"std::cout << {string_to_print}"
def analyze_input(self, instruction_name:str, instruction_params:list, line_number:int):
""" Saisir(elements) """
self.instructions_list[line_number] = f"std::cin >> {' '.join(instruction_params)}"
def analyze_precond(self, instruction_name:str, instruction_params:list, line_number:int):
""" Préconditions : elements """
self.instructions_list[line_number] = f"// Préconditions : {' '.join(instruction_params)}"
def analyze_data(self, instruction_name:str, instruction_params:list, line_number:int):
""" Données : elements """
self.instructions_list[line_number] = f"// Données : {' '.join(instruction_params)}"
def analyze_datar(self, instruction_name:str, instruction_params:list, line_number:int):
""" Donnée/Résultat : elements """
self.instructions_list[line_number] = f"// Donnée/Résultat : {' '.join(instruction_params)}"
def analyze_result(self, instruction_name:str, instruction_params:list, line_number:int):
""" Résultat : elements """
self.instructions_list[line_number] = f"// Résultat : {' '.join(instruction_params)}"
def analyze_desc(self, instruction_name:str, instruction_params:list, line_number:int):
""" Description : elements """
self.instructions_list[line_number] = f"// Description : {' '.join(instruction_params)}"
def analyze_return(self, instruction_name:str, instruction_params:list, line_number:int):
""" Retourner elements """
# Checks we're not in a procedure
if "proc" in self.instructions_stack:
self.error(self.translate_method("compilers", "cpp", "errors", "return_in_procedure").format(
line_number=(line_number + 1)
))
# Checks we're inside a function
elif "fx" not in self.instructions_stack:
self.error(self.translate_method("compilers", "cpp", "errors", "return_outside_function").format(
line_number=(line_number + 1)
))
# Writes the line correctly
else:
self.instructions_list[line_number] = f"return {' '.join(instruction_params)}"
def analyze_vars(self, instruction_name:str, instruction_params:list, line_number:int):
""" Variables locales : """
self.instructions_list[line_number] = f"// Variables locales : {' '.join(instruction_params)}"
def analyze_fx_start(self, instruction_name:str, instruction_params:list, line_number:int):
""" Début : """
# Empties the line
self.instructions_list[line_number] = ""
def analyze_tab(self, instruction_name:str, instruction_params:list, line_number:int):
""" Name : tableau [ size ] de type Type """
self.analyze_arr(instruction_name, instruction_params, line_number)
def analyze_arr(self, instruction_name:str, instruction_params:list, line_number:int):
""" Name : tableau [ size ] de type Type """
try:
# We construct the array size
arr_sizes = ""
for i in range(2, len(instruction_params)):
arr_sizes += f"[{instruction_params[i]}]"
# Building the final line
self.instructions_list[line_number] = f"{self.var_types[instruction_params[0]]} {instruction_params[1]}{arr_sizes};"
# If the statement does not have all its parameters set
except IndexError:
self.error(self.translate_method("compilers", "cpp", "errors", "arr_missing_params").format(
line_number=(line_number + 1)
))
# If the variable type doesn't exist
except KeyError:
self.error(self.translate_method("compilers", "cpp", "errors", "unrecognized_var_type").format(
line_number=(line_number + 1), type=instruction_params[0]
))
def analyze_init(self, instruction_name:str, instruction_params:list, line_number:int):
""" Analyzes the structure initialization. """
if len(instruction_params) < 2: # Error for missing parameters
self.error(self.translate_method("compilers", "cpp", "errors", "struct_missing_args").format(
line_number=(line_number + 1), param_amount=len(instruction_params)
))
elif len(instruction_params) % 2 == 1: # Error for missing parameters
self.error(self.translate_method("compilers", "cpp", "errors", "struct_args_not_even").format(
line_number=(line_number + 1), param_amount=len(instruction_params)
))
else:
# Creates the structure initialization
self.instructions_list[line_number] = f"struct {instruction_params[0]} {instruction_params[1]};"
# Then for each extra couple of arguments, adds a initialization to this line
for i in range(2, len(instruction_params), 2):
self.instructions_list[line_number] += "\n" + self.tab_char * (len(self.instructions_stack) + 1)
self.instructions_list[line_number] += f"{instruction_params[1]}.{instruction_params[i]} = {instruction_params[i + 1]};"
self.instructions_list[line_number] = self.instructions_list[line_number][:-1]
def analyze_delete(self, instruction_name:str, instruction_params:list, line_number:int):
""" Analyzes the delete keyword. """
if self.app.use_ptrs_and_malloc:
if len(instruction_params) != 0:
if instruction_params[0] == "arr":
if len(instruction_params) == 2:
self.instructions_list[line_number] = f"delete[] {instruction_params[1]}"
else:
self.error(f"Error on line {line_number + 1} : Missing parameter 'var_name'.")
else:
self.instructions_list[line_number] = f"delete {instruction_params[0]}"
else:
self.error(f"Error on line {line_number+1} : Missing parameter 'var_name'.")
else:
self.error(f"Error on line {line_number + 1} : Unknown keyword 'delete'. "
"Maybe you forgot to enable the use of pointers and malloc ?")
def analyze_fx(self, instruction_name:str, instruction_params:list, line_number:int):
""" Creates a function definition """
# Prevents a crash when extra spaces are at the end of the line
while instruction_params[-1] == "": instruction_params.pop()
# Function to handle the parameters, whether they are arrays or standard variables
def handle_params(instruction_params):
# The list of parameters
params = []
# Fetches each parameter (going two by two, because each param goes <type> <name>)
for i in range(2, len(instruction_params), 2):
# Adds the parameter to the list of parameters
params.append("")
if self.app.use_ptrs_and_malloc and instruction_params[i][-1] == '*':
is_pointer = '*'
instruction_params[i] = instruction_params[i][:-1]
else:
is_pointer = ''
if instruction_params[i].startswith('const_'):
is_const = "const "
instruction_params[i] = instruction_params[i][6:]
else:
is_const = ""
# Try block in case there is an IndexError
try:
# If the param is an array, we parse it correctly
if instruction_params[i].startswith("arr"):
current_array_param = instruction_params[i].split("_")
params[-1] += f"{is_const}{self.var_types[current_array_param[1]]}{is_pointer} {instruction_params[i + 1]}[{']['.join(current_array_param[2:])}]"
# If the param is a structure, we parse it correctly
elif instruction_params[i].startswith("struct_"):
params[-1] += is_const + "struct " * self.use_struct_keyword + f"{instruction_params[i][7:]}{is_pointer} {instruction_params[i + 1]}"
# If the param is NOT an array
else:
# We add it to the params as the type, followed by the name, of whose we remove the
# first char if it is '&' (no datar mode in algorithmic)
params[-1] += is_const + self.var_types[instruction_params[i]] + is_pointer + " " + instruction_params[i + 1][instruction_params[i][0] == '&':]
# If an IndexError is encountered, we remove the last param from the params list and continue
except IndexError:
params.pop()
# We merge back the params and return them
params = ", ".join(params)
return params
# Getting the parameters string
params = handle_params(instruction_params)
# Branching on whether it is a procedure or a function
if instruction_params[0] != "void":
self.instructions_stack.append("fx")
if self.app.use_ptrs_and_malloc and instruction_params[0][-1] == '*':
is_pointer = '*'
instruction_params[0] = instruction_params[0][:-1]
else:
is_pointer = ''
# If the return type is not a structure
if not instruction_params[0].startswith("struct_"):
# We add the return type
self.instructions_list[line_number] = self.var_types[instruction_params[0]]
# If the return type is a structure
else:
# We add the structure message followed by the return type
self.instructions_list[line_number] = "struct " * self.use_struct_keyword + instruction_params[0][7:]
# Check pointers
self.instructions_list[line_number] += is_pointer
# We write the line as a function
self.instructions_list[line_number] += f" {instruction_params[1]}({params}) " + "{"
else: # Procedure
self.instructions_stack.append("proc")
# We write the line as a procedure
self.instructions_list[line_number] = f"void {instruction_params[1]}({params}) " + "{"
# If the name of the function/procedure is 'main', we error out
if instruction_params[1] == "main":
self.error(f"Error on line {line_number + 1} : Cannot name function/procedure 'main'.")
def analyze_struct(self, instruction_name:str, instruction_params:list, line_number:int):
""" Creates a structure definition """
# Prevents a crash when extra spaces are at the end of the line
while instruction_params[-1] == "": instruction_params.pop()
# Function to handle the parameters, whether they are arrays or standard variables
def handle_params(instruction_params):
# The list of parameters
params = []
# Fetches each parameter (going two by two, because each param goes <type> <name>)
for i in range(1, len(instruction_params), 2):
# Adds the parameter to the list of parameters
params.append("")
# Try block in case there is an IndexError
try:
# If the param is an array, we parse it correctly
if instruction_params[i].startswith("arr"):
current_array_param = instruction_params[i].split("_")
try:
vtype = self.var_types[instruction_params[i].split('_')[1]]
except KeyError:
vtype = instruction_params[i].split('_')[1]
params[-1] += f"{vtype} {current_array_param[2]}[{']['.join(current_array_param[2:])}]"
# If the param is a structure, we parse it correctly
elif instruction_params[i].startswith("struct_"):
params[-1] += "struct " * self.use_struct_keyword + f"{instruction_params[i][7:]} {instruction_params[i + 1]}"
# If the param is NOT an array
else:
# We add it to the params as the type, followed by the name, of whose we remove the
# first char if it is '&' (no datar mode in algorithmic)
params[-1] += self.var_types[instruction_params[i]] + " " + instruction_params[i + 1][instruction_params[i][0] == '&':]
# If an IndexError is encountered, we remove the last param from the params list and continue
except IndexError:
params.pop()
# We return back the parameters
return params
# Getting the parameters string
params = handle_params(instruction_params)
# Branching on whether it is a procedure or a function
# We write the line as a structure
self.constants.append("")
self.constants[-1] += f"struct {instruction_params[0]}" + " {\n"
for param in params:
self.constants[-1] += self.tab_char * (len(self.instructions_stack) + 1) + param + ";\n"
self.constants[-1] += self.tab_char * len(self.instructions_stack) + "};"
self.instructions_list[line_number] = ""
def analyze_CODE_RETOUR(self, instruction_name:str, instruction_params:list, line_number:int):
""" Changes the return code at the end of the function. """
self.instructions_list[line_number] = ""
self.return_code = " ".join(instruction_params)
def final_trim(self, instruction_name:str, line_number:int):
""" Adds the line ends, transforms the function names, and adds the correct indentation """
# Adds the end of line
self.instructions_list[line_number] = self.instructions_list[line_number].replace("(ENDL)", "\\n")
# Adds the power, sqrt, and rand functions
for algo_function, cpp_function in (
("puissance(", "pow("),
("racine(", "sqrt("),
("aleatoire(", "rand("),
("alea(", "rand("),
("NULL", "nullptr")
):
self.instructions_list[line_number] = self.instructions_list[line_number].replace(algo_function, cpp_function)
# Function to find all the instances of a substring in a string
def find_all(full_string: str, search: str):
"""
Finds all instances of a substring in a string.
:param full_string: The string to search into.
:param search: The string of whom to find all the instances.
:return: A generator containing all the indexes of the substring.
"""
start = 0
while True:
start = full_string.find(search, start)
if start == -1: return
yield start
start += len(search)
# Adds the len function
if "len(" in self.instructions_list[line_number]:
for index in find_all(self.instructions_list[line_number], "len("):
var_name = self.instructions_list[line_number][
index + 4 :
index + 4 + self.instructions_list[line_number][index + 4:].find(")")
]
self.instructions_list[line_number] = self.instructions_list[line_number].replace(
f"len({var_name})",
f"(sizeof({var_name})/sizeof({var_name}[0]))",
1
)
# Adds the correct tabbing (amount of tabs is equal to amount of instructions in the instructions stack,
# minus one if the current instruction is in the instruction names)
tab_amount = len(self.instructions_stack)
if instruction_name in (*self.instruction_names, "else", "elif"):
tab_amount -= 1
# Adds a semicolon if necessary
if not (
self.instructions_list[line_number].startswith("//") or
self.instructions_list[line_number].endswith("}") or
instruction_name in (*self.instruction_names, "else", "elif")
):
self.instructions_list[line_number] += ";"
# Writes the line
self.instructions_list[line_number] = self.app.tab_char * tab_amount + self.instructions_list[line_number]
# Removes the std:: if we use the std namespace
if self.app.using_namespace_std:
self.instructions_list[line_number] = self.instructions_list[line_number].replace("std::", "")
# Adds it to fxtext if necessary
if len(self.instructions_stack) != 0 and (
"fx" in self.instructions_stack or
"proc" in self.instructions_stack or
(instruction_name == "end" and self.instructions_stack[-1] in ("fx", "proc"))
):
self.fxtext.append(self.instructions_list[line_number])
if instruction_name == "end":
self.fxtext[-1] += "\n"
self.instructions_list[line_number] = ""
def final_touches(self):
""" Concatenates everything into one string """
# Initializes the final compiled code
final_compiled_code = "#include <iostream>\n"
# We import math.h if we use power or sqrt in the code
if "puissance(" in self.app.current_text or "racine(" in self.app.current_text:
final_compiled_code += "#include <math.h>\n"
# If we use random in the code, we import stdlib.h and time.h
if 'aleatoire(' in self.app.current_text or 'alea(' in self.app.current_text:
final_compiled_code += "#include <stdlib.h>\n#include <time.h>\n"
# If we use len in the code, we import stdlib.h
if 'len(' in self.app.current_text:
final_compiled_code += "#include <stdlib.h>\n"
# If we use the std namespace, we put it there
if self.app.using_namespace_std:
final_compiled_code += "using namespace std;\n"
# We add a simple blank line
final_compiled_code += "\n"
# We add the constants text to the final_compiled_code
final_compiled_code += "\n".join(self.constants)
# We also add another newline if there are constants declared
if len(self.constants) != 0:
final_compiled_code += "\n\n"
# We then add the function's text
final_compiled_code += "\n".join(text for text in self.fxtext if text.replace(self.tab_char, "") != ";")
# We start to add the main function
final_compiled_code += "\n\nint main() {\n"
# We add the srand(time(NULL)) statement if we are using random
if "aleatoire(" in self.app.current_text or "alea(" in self.app.current_text:
final_compiled_code += self.tab_char + "srand(time(NULL));\n"
# We then add each instruction along with a tab
for instruction in self.instructions_list:
if instruction.replace(self.tab_char, "") != ";" and instruction != "":
final_compiled_code += self.tab_char + instruction + "\n"
# We complete the compilation
final_compiled_code += self.tab_char + f"return {self.return_code};\n" + "}"
return final_compiled_code