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
|
import sys, getopt
from tkinter import *
from tkinter import ttk, filedialog
from lexer import *
class Main:
input_file = None
output_file = None
output_table = False
def print_help (self, arg0):
print("Uso: % s -i entrada.es -o salida.es" % arg0)
print(" % s -i entrada.es -o salida.es -t")
print(" % s -h" % arg0)
def main(self, argv):
try:
opts, args = getopt.getopt(argv[1:], "hi:o:t", ["input=", "output=", "table"])
except getopt.GetoptError as err:
print(err)
print_help(argv[0]);
sys.exit(2)
for o, a in opts:
if o == "-h":
self.print_help (argv[0])
elif o in ("-i", "--input"):
self.input_file = a
elif o in ("-o", "--output"):
self.output_file = a
elif o in ("-t", "--table"):
self.output_table = True
else:
assert False, "opción desconocida"
if self.input_file and self.output_file:
with open(self.input_file) as f:
data = f.read()
if self.output_table:
Lexer(data, self.input_file).inicio()
else:
Lexer(data, None).inicio()
if __name__ == "__main__":
Main().main(sys.argv)
|