MA0301/exam_template/python/run.py

42 lines
1.3 KiB
Python
Raw Normal View History

2021-05-10 22:12:15 +02:00
from sys import argv
from pathlib import Path
import FSA
import Graph
import Hasse
import Truthtable
2021-05-11 22:21:15 +02:00
def printred(text):
print(f'\033[31m{text}\033[0m')
2021-05-10 22:12:15 +02:00
def fetchContentType(content):
new_content = content.split('\n')
contentType = new_content.pop(0)[2:]
return (contentType, '\n'.join(new_content))
def processContent(content):
contentType, content = fetchContentType(content)
with open(str(Path(__file__).parent.absolute()) + f'/tex_templates/{contentType}.tex') as template:
if contentType == 'Hasse':
result = Hasse.processFileContent(content, template.read())
elif contentType == 'FSA':
result = FSA.processFileContent(content, template.read())
2021-05-10 22:12:22 +02:00
elif contentType == 'Graph':
2021-05-11 22:21:15 +02:00
result = Graph.processFileContent('toGraph\n\n' + content, template.read())
elif contentType == 'Matrix':
result = Graph.processFileContent('toMatrix\n\n' + content, template.read())
2021-05-10 22:12:15 +02:00
elif contentType == 'Truthtable':
result = Truthtable.processFileContent(content, template.read())
else:
print('DIDN\'T RECOGNIZE FILE TYPE')
exit(1)
return result
if __name__ == '__main__':
filename = argv[1]
with open(filename) as file:
content = processContent(file.read())
with open(argv[2], 'w') as destination_file:
destination_file.write(content)