-
Notifications
You must be signed in to change notification settings - Fork 1
/
controller.py
128 lines (105 loc) · 3.31 KB
/
controller.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
"""
* 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
"""
import config as cf
import model
import csv
"""
El controlador se encarga de mediar entre la vista y el modelo.
"""
def newController():
"""
Crea una instancia del modelo
"""
control = {
'model': None
}
control['model'] = model.newCatalog()
return control
# Funciones para la carga de datos
def loadData(control):
"""
Carga los datos de los archivos y cargar los datos en la
estructura de datos
"""
catalog = control['model']
books, authors = loadBooks(catalog)
tags = loadTags(catalog)
booktags = loadBooksTags(catalog)
sortBooks(catalog)
return books, authors, tags, booktags
def loadBooks(catalog):
"""
Carga los libros del archivo. Por cada libro se toman sus autores y por
cada uno de ellos, se crea en la lista de autores, a dicho autor y una
referencia al libro que se esta procesando.
"""
booksfile = cf.data_dir + 'GoodReads/books-small.csv'
input_file = csv.DictReader(open(booksfile, encoding='utf-8'))
for book in input_file:
model.addBook(catalog, book)
return model.bookSize(catalog), model.authorSize(catalog)
def loadTags(catalog):
"""
Carga todos los tags del archivo y los agrega a la lista de tags
"""
tagsfile = cf.data_dir + 'GoodReads/tags.csv'
input_file = csv.DictReader(open(tagsfile, encoding='utf-8'))
for tag in input_file:
model.addTag(catalog, tag)
return model.tagSize(catalog)
def loadBooksTags(catalog):
"""
Carga la información que asocia tags con libros.
"""
booktagsfile = cf.data_dir + 'GoodReads/book_tags-small.csv'
input_file = csv.DictReader(open(booktagsfile, encoding='utf-8'))
for booktag in input_file:
model.addBookTag(catalog, booktag)
return model.bookTagSize(catalog)
# Funciones de ordenamiento
def sortBooks(catalog):
"""
Ordena los libros por average_rating
"""
model.sortBooks(catalog)
# Funciones de consulta sobre el catálogo
def getBooksByAuthor(control, authorname):
"""
Retrona los libros de un autor
"""
author = model.getBooksByAuthor(control['model'], authorname)
return author
def getBestBooks(control, number):
"""
Retorna los mejores libros
"""
bestbooks = model.getBestBooks(control['model'], number)
return bestbooks
def countBooksByTag(control, tag):
"""
Retorna los libros que fueron etiquetados con el tag
"""
return model.countBooksByTag(control['model'], tag)