forked from Pruebasss465/ISIS1225-SampleConflicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.py
130 lines (104 loc) · 2.97 KB
/
view.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
"""
* Copyright 2020, Departamento de sistemas y Computación,
* Universidad de Los Andes
*
*
* Desarrolado para el curso ISIS1225 - Estructuras de Datos y Algoritmos
*
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along withthis program. If not, see <http://www.gnu.org/licenses/>.
* contribuciones:
*
* Dario Correal - Version inicial
"""
import config as cf
import sys
import controller
assert cf
"""
La vista se encarga de la interacción con el usuario
Presenta el menu de opciones y por cada seleccion
se hace la solicitud al controlador para ejecutar la
operación solicitada
"""
def newController():
"""
Se crea una instancia del controlador
"""
control = controller.newController()
return control
def printMenu():
print("Opciones:")
print("1- Cargar Libros")
print("2- Cargar Tags")
# TODO: Modificaciones de Est-1 en el Lab 2, agregar opcion 3
print("0- Salir")
def loadBooks(control):
"""
Carga los libros
"""
books = controller.loadBooks(control,
"GoodReads/books-small.csv")
return books
def loadTags(control):
"""
Carga los Tags
"""
tags = controller.loadTags(control,
"GoodReads/tags.csv")
return tags
def loadBooksTags(control):
"""
Cargar los Tags de libros
"""
# TODO: Modificaciones de Est-1 en el Lab 2
pass
def firstBook(control):
"""
Devuelve el primer libro del catalogo
"""
# TODO: Modificaciones de Est-1 en el Lab 2
pass
def lastBook(control):
# TODO: Modificaciones de Est-2 en el Lab 2
"""
Devuelve el último libro cargado
"""
pass
# Se crea el controlador asociado a la vista
control = newController()
"""
Menu principal
"""
while True:
printMenu()
inputs = input("Seleccione una opción para continuar\n")
if int(inputs[0]) == 1:
print("Cargando información de libros....")
books = loadBooks(control)
print("Total de libros cargados: " + str(books))
# TODO: Modificaciones de Est-1 en el Lab 2
first = None
# TODO: Modificaciones de Est-2 en el Lab 2
last = None
elif int(inputs[0]) == 2:
print("Cargando información de tags....")
tags = loadTags(control)
print("Total de tags cargados: " + str(tags))
elif int(inputs[0]) == 3:
# TODO: Modificaciones de Est-3 en el Lab 2
pass
else:
sys.exit(0)
sys.exit(0)