-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
40 lines (38 loc) · 1.47 KB
/
main.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
from os import error
from lexer import Lexer
from parser_ import Parser
from gerador_codigo_python import GeradorDeCodigoParaPython
import sys
import os
print('============================================================')
print('# LINGUAGEM DE PROGRAMAÇÃO BRASILEIRA - LPB ')
print('# Repositório: https://github.com/AlanNunes/compilador-lpb')
print('# Autor: Alan Nunes (https://github.com/AlanNunes)')
print('============================================================')
try:
if len(sys.argv) <= 1:
print('Você precisa passar o nome do arquivo como argumento.')
else:
nome_arquivo = sys.argv[1]
arq = open(nome_arquivo, "r", encoding='utf-8')
conteudo = arq.read()
lexer = Lexer(conteudo)
tokens = lexer.retornaTokens()
parser = Parser(tokens)
ast = parser.parse()
erros = parser.retornaErros()
for e in erros:
print(e.retornaErro())
if len(erros) > 0:
print('O código fonte possui erros, confira-os acima.')
else:
gerador_python = GeradorDeCodigoParaPython()
res = gerador_python.gera_instrucoes(ast)
f = open("output.py", "w", encoding='utf-8')
f.write(res)
f.close()
print('O projeto foi compilado com sucesso!')
print('Executando programa...\n')
os.system('python output.py')
except FileNotFoundError:
print(f'Arquivo {nome_arquivo} não encontrado!')