-
Notifications
You must be signed in to change notification settings - Fork 0
/
8. Aves (Final).py
328 lines (298 loc) · 11.1 KB
/
8. Aves (Final).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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
#------------------- IMPORTAR LIBRERIAS ----------------------------------
import os
import pickle
import os.path
import datetime
#----------------------- DEFINICION DE CLASES/REGISTROS ----------------------------------
class Ave:
def __init__(self):
self.nro = 0
self.desc= ""
class Socio:
def __init__(self):
self.nro = 0
self.nom = ""
self.cant = 0
class Avistaje:
def __init__(self):
self.nroAve = 0
self.nroSocio = 0
self.fecha = ""
self.lugar = ""
#----------------------------- VALIDACIONES DATOS DE ENTRADA + FORMATEO -----------------------------------------
def validaRangoEntero(nro, min,max):
try:
nro = int(nro)
if nro >= min and nro <= max:
return False
else:
return True
except:
return True
def validarChar(min, max):
letra = input("Ingrese opcion ['a'-'f']: ").lower()
while letra >max or letra <min:
letra = input("Ingrese opcion ['a'-'f']: ").lower()
return letra
def validarFecha():
flag = True
while flag:
try:
fecha = input("Ingresa una fecha en el formato DD/MM/AAAA: ")
datetime.datetime.strptime(fecha, '%d/%m/%Y')
print("Fecha valida")
flag = False
except ValueError:
print("Fecha invalida")
return fecha
def formatearAve(vrAve):
vrAve.nro= str(vrAve.nro)
vrAve.nro= vrAve.nro.ljust(4, ' ')
vrAve.desc= vrAve.desc.ljust(30, ' ')
def formatearSocio(vrSocio):
vrSocio.nro= str(vrSocio.nro)
vrSocio.nro= vrSocio.nro.ljust(4, ' ')
vrSocio.nom= vrSocio.nom.ljust(30, ' ')
vrSocio.cant= str(vrSocio.cant)
vrSocio.cant= vrSocio.cant.ljust(3, ' ')
def formatearAvistajes(vrAvistajes):
vrAvistajes.nroAve= str(vrAvistajes.nroAve)
vrAvistajes.nroAve= vrAvistajes.nroAve.ljust(4, ' ')
vrAvistajes.nroSocio= str(vrAvistajes.nroSocio)
vrAvistajes.nroSocio= vrAvistajes.nroSocio.ljust(4, ' ')
vrAvistajes.lugar= vrAvistajes.lugar.ljust(30, ' ')
vrAvistajes.fecha= str(vrAvistajes.fecha)
vrAvistajes.fecha= vrAvistajes.fecha.ljust(12, ' ')
#----------------------------- BUSQUEDAS Y ORDENAMIENTO -----------------------------------------
#busqueda Secuencial por archivo Ave con bandera
def buscaAve(nA):
global ArcFisiAves, ArcLogAves
t = os.path.getsize(ArcFisiAves)
rAve = Ave()
band = False
ArcLogAves.seek(0)
while ArcLogAves.tell()<t and band== False:
pos = ArcLogAves.tell()
rAve = pickle.load(ArcLogAves)
if int(rAve.nro) == nA:
band = True
if band:
return pos
else:
return -1
#busqueda Secuencial por archivo Socio con bandera
def buscaSocio(nS):
global ArcFisiSocios, ArcLogSocios
t = os.path.getsize(ArcFisiSocios)
rSocio = Socio()
band = False
ArcLogSocios.seek(0,0)
while ArcLogSocios.tell()<t and band== False:
pos = ArcLogSocios.tell()
rSocio = pickle.load(ArcLogSocios)
if int(rSocio.nro) == nS:
band = True
if band:
return pos
else:
return -1
def ordenarSocios():
global ArcFisiSocios,ArcLogSocios
ArcLogSocios.seek (0)
aux = pickle.load(ArcLogSocios) #para con el tell saber cuanto pesa un registro
tamReg = ArcLogSocios.tell()
tamArch = os.path.getsize(ArcFisiSocios)
cantReg = int(tamArch / tamReg)
for i in range(0, cantReg-1):
for j in range (i+1, cantReg):
ArcLogSocios.seek (i*tamReg, 0)
auxi = pickle.load(ArcLogSocios)
ArcLogSocios.seek (j*tamReg, 0)
auxj = pickle.load(ArcLogSocios)
if (auxi.cant < auxj.cant):
ArcLogSocios.seek (i*tamReg, 0)
pickle.dump(auxj, ArcLogSocios)
ArcLogSocios.seek (j*tamReg, 0)
pickle.dump(auxi,ArcLogSocios)
#----------------------------- INICIALIZAR -----------------------------------------
#----------------------------- CARGAS/ALTAS -----------------------------------------
def CargaSocios():
global ArcFisiSocios, ArcLogSocios
os.system("cls")
RegSocio= Socio()
print("OPCION e - Carga de Socios")
print("----------------------------\n")
ns = input("Ingrese el numero de socio entre 1 y 9999 [0- para Volver]: ")
while validaRangoEntero(ns, 0, 9999):
ns = input("Incorrecto - Entre 1 y 9999 [0 para Volver]: ")
while int(ns) != 0:
if buscaSocio(int(ns)) == -1:
RegSocio.nom = input("Nombre del Socio: ")
while len(RegSocio.nom)<1 or len(RegSocio.nom)>30:
RegSocio.nom = input("Incorrecto - Nombre <hasta 30 caracteres>: ")
RegSocio.nro=ns
RegSocio.cant=0
formatearSocio(RegSocio)
ArcLogSocios.seek(0,2)
pickle.dump(RegSocio, ArcLogSocios)
print("-----------------------")
print("Alta de Socio exitosa")
print("------------------------")
ArcLogSocios.flush()
else:
print("Número de Socio ya existe...")
ns = input("Ingrese el numero de socio entre 1 y 9999 [0- para Volver]: ")
while validaRangoEntero(ns, 0, 9999):
ns = input("Incorrecto - Entre 1 y 9999 [0 para Volver]: ")
def CargaAves():
global ArcFisiAves, ArcLogAves
os.system("cls")
RegAve= Ave()
print("OPCION d - Carga de Aves")
print("----------------------------\n")
na = input("Ingrese el numero de ave entre 1 y 9999 [0- para Volver]: ")
while validaRangoEntero(na, 0, 9999):
na = input("Incorrecto - Entre 1 y 9999 [0 para Volver]: ")
while int(na) != 0:
if buscaAve(int(na)) == -1:
#ingresa(cod,RegAve)
RegAve.desc = input("Descripción del Ave: ")
while len(RegAve.desc)<1 or len(RegAve.desc)>30:
RegAve.desc = input("Incorrecto - descripción <hasta 30 caracteres>: ")
RegAve.nro=na
formatearAve(RegAve)
ArcLogAves.seek(0,2)
pickle.dump(RegAve, ArcLogAves)
print("-----------------------")
print("Alta de Ave exitosa")
print("------------------------")
ArcLogAves.flush()
else:
print("Número de Ave ya existe...")
na = input("Ingrese el numero de ave entre 1 y 9999 [0- para Volver]: ")
while validaRangoEntero(na, 0, 9999):
na = input("Incorrecto - Entre 1 y 9999 [0 para Volver]: ")
#----------------------------- BAJA LOGICA -----------------------------------------
#----------------------------- MODIFICAR/ACTUALIZAR un campo -----------------------------------------
def ActualizarSocio(nS):
pos = buscaSocio(nS)
ArcLogSocios.seek(pos,0)
rSocio = pickle.load(ArcLogSocios)
rSocio.cant = str(int(rSocio.cant) + 1).ljust(3)
ArcLogSocios.seek(pos,0) ##tengo que volver a pararme adelante del registro a actualizar
pickle.dump(rSocio, ArcLogSocios)
ArcLogSocios.flush()
def grabar (nroA, nroS, fecha, lugar):
global ArcLogAvistajes
rAvistaje=Avistaje()
rAvistaje.nroAve = str(nroA).ljust(5) #5
rAvistaje.nroSocio = str(nroS).ljust(5) #5
rAvistaje.fecha = fecha #12
rAvistaje.lugar = lugar #30
ArcLogAvistajes.seek(0,2)
pickle.dump(rAvistaje, ArcLogAvistajes)
ArcLogAvistajes.flush()
def registrarAvistaje():
nroAve = int(input('Ingrese nro de Ave: '))
if buscaAve(nroAve) == -1:
print(" El nro de Ave ingresado NO EXISTE")
else:
nroSocio = int(input('Ingrese nro de Socio: '))
if buscaSocio(nroSocio) == -1:
print(" El número de socio ingresado NO EXISTE")
else:
fecha = validarFecha().ljust(12)
lugar = input("Ingrese lugar: ").lower().ljust(30)
grabar(nroAve,nroSocio,fecha,lugar)
ActualizarSocio(nroSocio)
print('Registro grabado exitosamente \n')
def historiaMigratoria():
global ArcLogAves, ArcFisiAvistajes,ArcLogAvistajes
rAvistaje=Avistaje()
rAve= Ave()
nroAve = int(input('Ingrese nro de Ave: '))
pos= buscaAve(nroAve)
if pos == -1:
print('nro de Ave NO EXISTE: ')
else:
ArcLogAves.seek(pos,0)
rAve=pickle.load(ArcLogAves)
print('.......Historia migratoria: ',rAve.desc)
print("-------------------------------------------------------")
print(" Socio Lugar de avistaje Fecha")
print("-------------------------------------------------------")
ArcLogAvistajes.seek(0,0)
t = os.path.getsize(ArcFisiAvistajes)
while ArcLogAvistajes.tell() < t:
rAvistaje = pickle.load(ArcLogAvistajes)
if int(rAvistaje.nroAve) == int(nroAve):
print (" ",rAvistaje.nroSocio," ",rAvistaje.lugar," ", rAvistaje.fecha)
def observaciones():
global ArcFisiSocios, ArcLogSocios
ordenarSocios()
cont=0
ArcLogSocios.seek(0,0)
t = os.path.getsize(ArcFisiSocios)
print("--------------------------------------------------------")
print(" socio Nombre cantidad de observaciones")
print("--------------------------------------------------------")
while (ArcLogSocios.tell() < t)and cont<=15:
rSocio = pickle.load(ArcLogSocios)
print(" ",rSocio.nro, " ",rSocio.nom," ", rSocio.cant)
cont=cont+1
input()
#----------------------------- CONSULTA DE UN REGISTRO / LISTAR / MOSTRAR -----------------------------------------
def Pantalla():
print("")
print("FINAL AVES")
print("----------------\n")
print("a - Registro de avistaje")
print("b - Listado de historia migratoria")
print("c - Listado cantidad de observaciones")
print("d - Alta AVES")
print("e - Alta SOCIOS")
print("f - Salir \n")
#----------------------------- PROGRAMA PRINCIPAL -----------------------------------------
#----------------------------- APERTURA DE ARCHIVOS -----------------------------------------
# programa principal
ArcFisiAves = "D:\\AEDD\\aves.dat"
ArcFisiAvistajes = "D:\\AEDD\\avistajes.dat"
ArcFisiSocios = "D:\\AEDD\\socios.dat"
if not os.path.exists(ArcFisiAves):
ArcLogAves = open(ArcFisiAves, "w+b")
else:
ArcLogAves = open(ArcFisiAves, "r+b")
if not os.path.exists(ArcFisiSocios):
ArcLogSocios = open(ArcFisiSocios, "w+b")
else:
ArcLogSocios = open(ArcFisiSocios, "r+b")
if not os.path.exists(ArcFisiAvistajes):
ArcLogAvistajes = open(ArcFisiAvistajes, "w+b")
else:
ArcLogAvistajes = open(ArcFisiAvistajes, "r+b")
##variables auxiliares
RegAve = Ave()
RegSocio = Socio()
RegAje = Avistaje()
##menu
opc = 'a'
while opc != 'f':
Pantalla()
opc = validarChar('a','f')
if opc == 'a':
registrarAvistaje()
elif opc == 'b':
historiaMigratoria()
elif opc == 'c':
observaciones()
elif (opc == 'd'):
CargaAves()
elif (opc == 'e'):
CargaSocios()
elif opc == 'f':
print("Gracias por visitarnos ...\n")
ArcLogAves.close()
ArcLogSocios.close()
ArcLogAvistajes.close()
print(" archivos cerrados ..Fin del programa!!")
input()