]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/model.py
Agrego planilla de notas de Curso
[z.facultad/75.52/sercom.git] / sercom / model.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
2
3 from datetime import datetime
4 from turbogears.database import PackageHub
5 from sqlobject import *
6 from sqlobject.sqlbuilder import *
7 from sqlobject.inheritance import InheritableSQLObject
8 from sqlobject.col import PickleValidator, UnicodeStringValidator
9 from turbogears import identity
10 from turbogears.identity import encrypt_password as encryptpw
11 from formencode import Invalid
12
13 hub = PackageHub("sercom")
14 __connection__ = hub
15
16 __all__ = ('Curso', 'Usuario', 'Docente', 'Alumno', 'CasoDePrueba')
17
18 #{{{ Custom Columns
19
20 # TODO Esto debería implementarse con CSV para mayor legibilidad
21 class TupleValidator(PickleValidator):
22     """
23     Validator for tuple types.  A tuple type is simply a pickle type
24     that validates that the represented type is a tuple.
25     """
26     def to_python(self, value, state):
27         value = super(TupleValidator, self).to_python(value, state)
28         if value is None:
29             return None
30         if isinstance(value, tuple):
31             return value
32         raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
33             (self.name, type(value), value), value, state)
34     def from_python(self, value, state):
35         if value is None:
36             return None
37         if not isinstance(value, tuple):
38             raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
39                 (self.name, type(value), value), value, state)
40         return super(TupleValidator, self).from_python(value, state)
41
42 class SOTupleCol(SOPickleCol):
43     def createValidators(self):
44         return [TupleValidator(name=self.name)]
45
46 class TupleCol(PickleCol):
47     baseClass = SOTupleCol
48
49 #}}}
50
51 #{{{ Clases
52
53 def srepr(obj): #{{{
54     if obj is not None:
55         return obj.shortrepr()
56     return obj
57 #}}}
58
59 class Curso(SQLObject): #{{{
60     # Clave
61     anio            = IntCol(notNone=True)
62     cuatrimestre    = IntCol(notNone=True)
63     numero          = IntCol(notNone=True)
64     pk              = DatabaseIndex(anio, cuatrimestre, numero, unique=True)
65     # Campos
66     descripcion     = UnicodeCol(length=255, default=None)
67     # Joins
68     docentes        = MultipleJoin('DocenteInscripto')
69     alumnos         = MultipleJoin('AlumnoInscripto')
70     grupos          = MultipleJoin('Grupo')
71     ejercicios      = MultipleJoin('Ejercicio', orderBy='numero')
72
73     def __init__(self, docentes=[], ejercicios=[], alumnos=[], **kw):
74         super(Curso, self).__init__(**kw)
75         for d in docentes:
76             self.add_docente(d)
77         for (n, e) in enumerate(ejercicios):
78             self.add_ejercicio(n+1, e)
79         for a in alumnos:
80             self.add_alumno(a)
81
82     def set(self, docentes=None, ejercicios=None, alumnos=None, **kw):
83         super(Curso, self).set(**kw)
84         if docentes is not None:
85             for d in DocenteInscripto.selectBy(curso=self):
86                 d.destroySelf()
87             for d in docentes:
88                 self.add_docente(d)
89         if ejercicios is not None:
90             for e in Ejercicio.selectBy(curso=self):
91                 e.destroySelf()
92             for (n, e) in enumerate(ejercicios):
93                 self.add_ejercicio(n+1, e)
94         if alumnos is not None:
95             for a in AlumnoInscripto.selectBy(curso=self):
96                 a.destroySelf()
97             for a in alumnos:
98                 self.add_alumno(a)
99
100     def add_docente(self, docente, **kw):
101         if isinstance(docente, Docente):
102             kw['docente'] = docente
103         else:
104             kw['docenteID'] = docente
105         return DocenteInscripto(curso=self, **kw)
106
107     def remove_docente(self, docente):
108         if isinstance(docente, Docente):
109             docente = docente.id
110         # FIXME esto deberian arreglarlo en SQLObject y debería ser
111         # DocenteInscripto.pk.get(self, docente).destroySelf()
112         DocenteInscripto.pk.get(self.id, docente).destroySelf()
113
114     def add_alumno(self, alumno, **kw):
115         if isinstance(alumno, Alumno):
116             kw['alumno'] = alumno
117         else:
118             kw['alumnoID'] = alumno
119         return AlumnoInscripto(curso=self, **kw)
120
121     def remove_alumno(self, alumno):
122         if isinstance(alumno, Alumno):
123             alumno = alumno.id
124         # FIXME esto deberian arreglarlo en SQLObject
125         AlumnoInscripto.pk.get(self.id, alumno).destroySelf()
126
127     def add_grupo(self, nombre, **kw):
128         return Grupo(curso=self, nombre=unicode(nombre), **kw)
129
130     def remove_grupo(self, nombre):
131         # FIXME esto deberian arreglarlo en SQLObject
132         Grupo.pk.get(self.id, nombre).destroySelf()
133
134     def add_ejercicio(self, numero, enunciado, **kw):
135         if isinstance(enunciado, Enunciado):
136             kw['enunciado'] = enunciado
137         else:
138             kw['enunciadoID'] = enunciado
139         return Ejercicio(curso=self, numero=numero, **kw)
140
141     def remove_ejercicio(self, numero):
142         # FIXME esto deberian arreglarlo en SQLObject
143         Ejercicio.pk.get(self.id, numero).destroySelf()
144
145     def __repr__(self):
146         return 'Curso(id=%s, anio=%s, cuatrimestre=%s, numero=%s, ' \
147             'descripcion=%s)' \
148                 % (self.id, self.anio, self.cuatrimestre, self.numero,
149                     self.descripcion)
150
151     def shortrepr(self):
152         return '%s.%s.%s' \
153             % (self.anio, self.cuatrimestre, self.numero)
154 #}}}
155
156 class Usuario(InheritableSQLObject): #{{{
157     # Clave (para docentes puede ser un nombre de usuario arbitrario)
158     usuario         = UnicodeCol(length=10, alternateID=True)
159     # Campos
160     contrasenia     = UnicodeCol(length=255, default=None)
161     nombre          = UnicodeCol(length=255, notNone=True)
162     email           = UnicodeCol(length=255, default=None)
163     telefono        = UnicodeCol(length=255, default=None)
164     creado          = DateTimeCol(notNone=True, default=DateTimeCol.now)
165     observaciones   = UnicodeCol(default=None)
166     activo          = BoolCol(notNone=True, default=True)
167     # Joins
168     roles           = RelatedJoin('Rol', addRemoveName='_rol')
169
170     def __init__(self, password=None, roles=[], **kw):
171         if password is not None:
172             kw['contrasenia'] = encryptpw(password)
173         super(Usuario, self).__init__(**kw)
174         for r in roles:
175             self.add_rol(r)
176
177     def set(self, password=None, roles=None, **kw):
178         if password is not None:
179             kw['contrasenia'] = encryptpw(password)
180         super(Usuario, self).set(**kw)
181         if roles is not None:
182             for r in self.roles:
183                 self.remove_rol(r)
184             for r in roles:
185                 self.add_rol(r)
186
187     def _get_user_name(self): # para identity
188         return self.usuario
189
190     @classmethod
191     def by_user_name(cls, user_name): # para identity
192         user = cls.byUsuario(user_name)
193         if not user.activo:
194             raise SQLObjectNotFound(_(u'El %s está inactivo' % cls.__name__))
195         return user
196
197     def _get_groups(self): # para identity
198         return self.roles
199
200     def _get_permissions(self): # para identity
201         perms = set()
202         for r in self.roles:
203             perms.update(r.permisos)
204         return perms
205
206     _get_permisos = _get_permissions
207
208     def _set_password(self, cleartext_password): # para identity
209         self.contrasenia = encryptpw(cleartext_password)
210
211     def _get_password(self): # para identity
212         return self.contrasenia
213
214     def __repr__(self):
215         raise NotImplementedError(_(u'Clase abstracta!'))
216
217     def shortrepr(self):
218         return '%s (%s)' % (self.usuario, self.nombre)
219 #}}}
220
221 class Docente(Usuario): #{{{
222     _inheritable = False
223     # Campos
224     nombrado    = BoolCol(notNone=True, default=True)
225     # Joins
226     enunciados  = MultipleJoin('Enunciado', joinColumn='autor_id')
227     cursos      = MultipleJoin('DocenteInscripto')
228
229     def add_entrega(self, instancia, **kw):
230         return Entrega(instancia=instancia, **kw)
231
232     def add_enunciado(self, nombre, anio, cuatrimestre, **kw):
233         return Enunciado(nombre=nombre, anio=anio, cuatrimestre=cuatrimestre,
234             autor=self, **kw)
235
236     def remove_enunciado(self, nombre, anio, cuatrimestre):
237         Enunciado.pk.get(nombre, anio, cuatrimestre).destroySelf()
238
239     def __repr__(self):
240         return 'Docente(id=%s, usuario=%s, nombre=%s, password=%s, email=%s, ' \
241             'telefono=%s, activo=%s, creado=%s, observaciones=%s)' \
242                 % (self.id, self.usuario, self.nombre, self.password,
243                     self.email, self.telefono, self.activo, self.creado,
244                     self.observaciones)
245 #}}}
246
247 class Alumno(Usuario): #{{{
248     _inheritable = False
249     # Campos
250     nota            = DecimalCol(size=3, precision=1, default=None)
251     # Joins
252     inscripciones   = MultipleJoin('AlumnoInscripto')
253
254     def __init__(self, padron=None, **kw):
255         if padron: kw['usuario'] = padron
256         super(Alumno, self).__init__(**kw)
257
258     def set(self, padron=None, **kw):
259         if padron: kw['usuario'] = padron
260         super(Alumno, self).set(**kw)
261
262     def _get_padron(self): # alias para poder referirse al alumno por padron
263         return self.usuario
264
265     def _set_padron(self, padron):
266         self.usuario = padron
267
268     @classmethod
269     def byPadron(cls, padron):
270         return cls.byUsuario(unicode(padron))
271
272     def __repr__(self):
273         return 'Alumno(id=%s, padron=%s, nombre=%s, password=%s, email=%s, ' \
274             'telefono=%s, activo=%s, creado=%s, observaciones=%s)' \
275                 % (self.id, self.padron, self.nombre, self.password, self.email,
276                     self.telefono, self.activo, self.creado, self.observaciones)
277 #}}}
278
279 class Tarea(InheritableSQLObject): #{{{
280     # Clave
281     nombre              = UnicodeCol(length=30, alternateID=True)
282     # Campos
283     descripcion         = UnicodeCol(length=255, default=None)
284     # Joins
285     enunciados          = RelatedJoin('Enunciado', addRemoveName='_enunciado')
286
287     def __repr__(self):
288         raise NotImplementedError('Tarea es una clase abstracta')
289
290     def shortrepr(self):
291         return self.nombre
292 #}}}
293
294 class TareaFuente(Tarea): #{{{
295     _inheritable = False
296     # Joins
297     comandos    = MultipleJoin('ComandoFuente', joinColumn='tarea_id')
298
299     def add_comando(self, orden, comando, **kw):
300         return ComandoFuente(tarea=self, orden=orden, comando=comando, **kw)
301
302     def remove_comando(self, orden):
303         ComandoFuente.pk.get(self.id, orden).destroySelf()
304
305     def __repr__(self):
306         return 'TareaFuente(id=%s, nombre=%s, descripcion=%s)' \
307                 % (self.id, self.nombre, self.descripcion)
308 #}}}
309
310 class TareaPrueba(Tarea): #{{{
311     _inheritable = False
312     # Joins
313     comandos    = MultipleJoin('ComandoPrueba', joinColumn='tarea_id')
314
315     def add_comando(self, orden, **kw):
316         return ComandoPrueba(tarea=self, orden=orden, comando='', **kw)
317
318     def remove_comando(self, orden):
319         ComandoPrueba.pk.get(self.id, orden).destroySelf()
320
321     def __repr__(self):
322         return 'TareaPrueba(id=%s, nombre=%s, descripcion=%s)' \
323                 % (self.id, self.nombre, self.descripcion)
324 #}}}
325
326 class Comando(InheritableSQLObject): #{{{
327     # Tipos de retorno especiales
328     RET_ANY = None
329     RET_FAIL = -256
330     # Archivos especiales
331     STDIN = '__stdin__'
332     STDOUT = '__stdout__'
333     STDERR = '__stderr__'
334     STDOUTERR = '__stdouterr__'
335     # Campos
336     comando             = UnicodeCol(length=255, notNone=True)
337     descripcion         = UnicodeCol(length=255, default=None)
338     retorno             = IntCol(default=None) # Ver RET_XXX y si es negativo
339                                                # se espera una señal
340     max_tiempo_cpu      = IntCol(default=None) # En segundos
341     max_memoria         = IntCol(default=None) # En MB
342     max_tam_archivo     = IntCol(default=None) # En MB
343     max_cant_archivos   = IntCol(default=None)
344     max_cant_procesos   = IntCol(default=None)
345     max_locks_memoria   = IntCol(default=None)
346     terminar_si_falla   = BoolCol(notNone=True, default=True)
347     rechazar_si_falla   = BoolCol(notNone=True, default=True)
348     archivos_entrada    = BLOBCol(default=None) # ZIP con archivos de entrada
349                                                 # __stdin__ es caso especial
350                                                 # Si un caso de prueba tiene
351                                                 # comandos con stdin y el caso
352                                                 # de prueba también tiene stdin
353                                                 # se usa el stdin del comando.
354     archivos_a_comparar = BLOBCol(default=None) # ZIP con archivos de salida
355                                                 # __stdout__, __stderr__ y
356                                                 # __stdouterr__ (ambos juntos)
357                                                 # son casos especiales
358     archivos_a_guardar  = TupleCol(notNone=True, default=()) # TODO SetCol
359                                                 # __stdout__, __stderr__ y
360                                                 # __stdouterr__ (ambos juntos)
361                                                 # son casos especiales
362     activo              = BoolCol(notNone=True, default=True)
363
364     def __repr__(self, clave='', mas=''):
365         return ('%s(%s comando=%s, descripcion=%s, retorno=%s, '
366             'max_tiempo_cpu=%s, max_memoria=%s, max_tam_archivo=%s, '
367             'max_cant_archivos=%s, max_cant_procesos=%s, max_locks_memoria=%s, '
368             'terminar_si_falla=%s, rechazar_si_falla=%s%s)'
369                 % (self.__class__.__name__, clave, self.comando,
370                     self.descripcion, self.retorno, self.max_tiempo_cpu,
371                     self.max_memoria, self.max_tam_archivo,
372                     self.max_cant_archivos, self.max_cant_procesos,
373                     self.max_locks_memoria, self.terminar_si_falla,
374                     self.rechazar_si_falla, mas))
375
376     def shortrepr(self):
377         return '%s (%s)' % (self.comando, self.descripcion)
378 #}}}
379
380 class ComandoFuente(Comando): #{{{
381     _inheritable = False
382     # Clave
383     tarea       = ForeignKey('TareaFuente', notNone=True, cascade=True)
384     orden       = IntCol(notNone=True)
385     pk          = DatabaseIndex(tarea, orden, unique=True)
386
387     def __repr__(self):
388         return super(ComandoFuente, self).__repr__('tarea=%s, orden=%s'
389             % (self.tarea.shortrepr(), self.orden))
390
391     def shortrepr(self):
392         return '%s:%s (%s)' % (self.tarea.shortrepr(), self.orden, self.comando)
393 #}}}
394
395 class ComandoPrueba(Comando): #{{{
396     _inheritable = False
397     RET_PRUEBA = -2 # Espera el mismo retorno que el de la prueba.
398     # XXX todos los campos de limitación en este caso son multiplicadores para
399     # los valores del caso de prueba.
400     # Clave
401     tarea               = ForeignKey('TareaPrueba', notNone=True, cascade=True)
402     orden               = IntCol(notNone=True)
403     pk                  = DatabaseIndex(tarea, orden, unique=True)
404
405     def __repr__(self):
406         return super(ComandoPrueba, self).__repr__('tarea=%s, orden=%s'
407             % (self.tarea.shortrepr(), self.orden))
408
409     def shortrepr(self):
410         return '%s:%s (%s)' % (self.tarea.shortrepr(), self.orden, self.comando)
411 #}}}
412
413 class Enunciado(SQLObject): #{{{
414     # Clave
415     nombre          = UnicodeCol(length=60)
416     anio            = IntCol(notNone=True)
417     cuatrimestre    = IntCol(notNone=True)
418     pk              = DatabaseIndex(nombre, anio, cuatrimestre, unique=True)
419     # Campos
420     descripcion     = UnicodeCol(length=255, default=None)
421     autor           = ForeignKey('Docente', cascade='null')
422     creado          = DateTimeCol(notNone=True, default=DateTimeCol.now)
423     archivo         = BLOBCol(default=None)
424     archivo_name    = UnicodeCol(length=255, default=None)
425     archivo_type    = UnicodeCol(length=255, default=None)
426     # Joins
427     ejercicios      = MultipleJoin('Ejercicio')
428     casos_de_prueba = MultipleJoin('CasoDePrueba')
429     tareas          = RelatedJoin('Tarea', addRemoveName='_tarea')
430
431     def __init__(self, tareas=[], **kw):
432         super(Enunciado, self).__init__(**kw)
433         for tarea in tareas:
434             self.add_tarea(tarea)
435
436     def set(self, tareas=None, **kw):
437         super(Enunciado, self).set(**kw)
438         if tareas is not None:
439             for tarea in self.tareas:
440                 self.remove_tarea(tarea)
441             for tarea in tareas:
442                 self.add_tarea(tarea)
443
444     @classmethod
445     def selectByCurso(self, curso):
446         return Enunciado.selectBy(cuatrimestre=curso.cuatrimestre, anio=curso.anio)
447
448     def add_caso_de_prueba(self, nombre, **kw):
449         return CasoDePrueba(enunciado=self, nombre=nombre, **kw)
450
451     def __repr__(self):
452         return 'Enunciado(id=%s, autor=%s, nombre=%s, descripcion=%s, ' \
453             'creado=%s)' \
454                 % (self.id, srepr(self.autor), self.nombre, self.descripcion, \
455                     self.creado)
456
457     def shortrepr(self):
458         return self.nombre
459 #}}}
460
461 class CasoDePrueba(Comando): #{{{
462     _inheritable = False
463     # Clave
464     enunciado           = ForeignKey('Enunciado', cascade=True)
465     nombre              = UnicodeCol(length=40, notNone=True)
466     pk                  = DatabaseIndex(enunciado, nombre, unique=True)
467     # Joins
468     pruebas             = MultipleJoin('Prueba')
469
470     def __repr__(self):
471         return super(ComandoFuente, self).__repr__('enunciado=%s, nombre=%s'
472             % (srepr(self.enunciado), self.nombre))
473
474     def shortrepr(self):
475         return '%s:%s' % (self.enunciado.shortrepr(), self.nombre)
476 #}}}
477
478 class Ejercicio(SQLObject): #{{{
479     # Clave
480     curso           = ForeignKey('Curso', notNone=True, cascade=True)
481     numero          = IntCol(notNone=True)
482     pk              = DatabaseIndex(curso, numero, unique=True)
483     # Campos
484     enunciado       = ForeignKey('Enunciado', notNone=True, cascade=False)
485     grupal          = BoolCol(default=False) # None es grupal o individual
486     # Joins
487     instancias      = MultipleJoin('InstanciaDeEntrega')
488
489     def add_instancia(self, numero, inicio, fin, **kw):
490         return InstanciaDeEntrega(ejercicio=self, numero=numero, inicio=inicio,
491             fin=fin, **kw)
492
493     def remove_instancia(self, numero):
494         # FIXME self.id
495         InstanciaDeEntrega.pk.get(self.id, numero).destroySelf()
496
497     def __repr__(self):
498         return 'Ejercicio(id=%s, curso=%s, numero=%s, enunciado=%s, ' \
499             'grupal=%s)' \
500                 % (self.id, self.curso.shortrepr(), self.numero,
501                     self.enunciado.shortrepr(), self.grupal)
502
503     def shortrepr(self):
504         return '(%s, %s, %s)' \
505             % (self.curso.shortrepr(), str(self.numero), \
506                 self.enunciado.shortrepr())
507 #}}}
508
509 class InstanciaDeEntrega(SQLObject): #{{{
510     # Clave
511     ejercicio       = ForeignKey('Ejercicio', notNone=True, cascade=True)
512     numero          = IntCol(notNone=True)
513     pk              = DatabaseIndex(ejercicio, numero, unique=True)
514     # Campos
515     inicio          = DateTimeCol(notNone=True)
516     fin             = DateTimeCol(notNone=True)
517     procesada       = BoolCol(notNone=True, default=False)
518     observaciones   = UnicodeCol(default=None)
519     activo          = BoolCol(notNone=True, default=True)
520     # Joins
521     entregas        = MultipleJoin('Entrega', joinColumn='instancia_id')
522     correcciones    = MultipleJoin('Correccion', joinColumn='instancia_id')
523
524     def __repr__(self):
525         return 'InstanciaDeEntrega(id=%s, numero=%s, inicio=%s, fin=%s, ' \
526             'procesada=%s, observaciones=%s, activo=%s)' \
527                 % (self.id, self.numero, self.inicio, self.fin,
528                     self.procesada, self.observaciones, self.activo)
529
530     def shortrepr(self):
531         return self.numero
532 #}}}
533
534 class DocenteInscripto(SQLObject): #{{{
535     # Clave
536     curso           = ForeignKey('Curso', notNone=True, cascade=True)
537     docente         = ForeignKey('Docente', notNone=True, cascade=True)
538     pk              = DatabaseIndex(curso, docente, unique=True)
539     # Campos
540     corrige         = BoolCol(notNone=True, default=True)
541     observaciones   = UnicodeCol(default=None)
542     # Joins
543     alumnos         = MultipleJoin('AlumnoInscripto', joinColumn='tutor_id')
544     tutorias        = MultipleJoin('Tutor', joinColumn='docente_id')
545     correcciones    = MultipleJoin('Correccion', joinColumn='corrector_id')
546
547     def add_correccion(self, entrega, **kw):
548         return Correccion(instancia=entrega.instancia, entrega=entrega,
549             entregador=entrega.entregador, corrector=self, **kw)
550
551     def remove_correccion(self, instancia, entregador):
552         # FIXME instancia.id, entregador.id
553         Correccion.pk.get(instancia.id, entregador.id).destroySelf()
554
555     def __repr__(self):
556         return 'DocenteInscripto(id=%s, docente=%s, corrige=%s, ' \
557             'observaciones=%s' \
558                 % (self.id, self.docente.shortrepr(), self.corrige,
559                     self.observaciones)
560
561     def shortrepr(self):
562         return self.docente.shortrepr()
563 #}}}
564
565 class Entregador(InheritableSQLObject): #{{{
566     # Campos
567     nota            = DecimalCol(size=3, precision=1, default=None)
568     nota_cursada    = DecimalCol(size=3, precision=1, default=None)
569     observaciones   = UnicodeCol(notNone=True, default=u'')
570     activo          = BoolCol(notNone=True, default=True)
571     # Joins
572     entregas        = MultipleJoin('Entrega')
573     correcciones    = MultipleJoin('Correccion')
574
575     def add_entrega(self, instancia, **kw):
576         return Entrega(instancia=instancia, entregador=self, **kw)
577
578     def __repr__(self):
579         raise NotImplementedError, 'Clase abstracta!'
580 #}}}
581
582 class Grupo(Entregador): #{{{
583     _inheritable = False
584     # Clave
585     curso           = ForeignKey('Curso', notNone=True, cascade=True)
586     nombre          = UnicodeCol(length=20, notNone=True)
587     pk              = DatabaseIndex(curso, nombre, unique=True)
588     # Campos
589     responsable     = ForeignKey('AlumnoInscripto', default=None, cascade='null')
590     # Joins
591     miembros        = MultipleJoin('Miembro')
592     tutores         = MultipleJoin('Tutor')
593
594     def __init__(self, miembros=[], tutores=[], **kw):
595         super(Grupo, self).__init__(**kw)
596         for a in miembros:
597             self.add_miembro(a)
598         for d in tutores:
599             self.add_tutor(d)
600
601     def set(self, miembros=None, tutores=None, **kw):
602         super(Grupo, self).set(**kw)
603         if miembros is not None:
604             for m in Miembro.selectBy(grupo=self):
605                 m.destroySelf()
606             for m in miembros:
607                 self.add_miembro(m)
608         if tutores is not None:
609             for t in Tutor.selectBy(grupo=self):
610                 t.destroySelf()
611             for t in tutores:
612                 self.add_tutor(t)
613
614     _doc_alumnos = 'Devuelve una lista de AlumnoInscriptos **activos**.'
615     def _get_alumnos(self):
616         return list([m.alumno for m in Miembro.selectBy(grupo=self, baja=None)])
617
618     _doc_docentes = 'Devuelve una lista de DocenteInscriptos **activos**.'
619     def _get_docentes(self):
620         return list([t.docente for t in Tutor.selectBy(grupo=self, baja=None)])
621
622     def add_miembro(self, alumno, **kw):
623         if isinstance(alumno, AlumnoInscripto):
624             alumno = alumno.id
625         return Miembro(grupo=self, alumnoID=alumno, **kw)
626
627     def remove_miembro(self, alumno):
628         if isinstance(alumno, AlumnoInscripto):
629             alumno = alumno.id
630         m = Miembro.selectBy(grupo=self, alumnoID=alumno, baja=None).getOne()
631         m.baja = DateTimeCol.now()
632
633     def add_tutor(self, docente, **kw):
634         if isinstance(docente, DocenteInscripto):
635             docente = docente.id
636         return Tutor(grupo=self, docenteID=docente, **kw)
637
638     def remove_tutor(self, docente):
639         if isinstance(docente, DocenteInscripto):
640             docente = docente.id
641         t = Tutor.selectBy(grupo=self, docenteID=docente, baja=None)
642         t.baja = DateTimeCol.now()
643
644     def __repr__(self):
645         return 'Grupo(id=%s, nombre=%s, responsable=%s, nota=%s, ' \
646             'nota_cursada=%s, observaciones=%s, activo=%s)' \
647                 % (self.id, self.nombre, srepr(self.responsable), self.nota,
648                     self.nota_cursada, self.observaciones, self.activo)
649
650     @classmethod
651     def selectByAlumno(self, alumno):
652         return Miembro.select(AND(Miembro.q.alumnoID == AlumnoInscripto.q.id,
653                 AlumnoInscripto.q.alumnoID == alumno.id, Miembro.q.baja == None))
654
655     def shortrepr(self):
656         return 'grupo:' + self.nombre
657 #}}}
658
659 class AlumnoInscripto(Entregador): #{{{
660     _inheritable = False
661     # Clave
662     curso               = ForeignKey('Curso', notNone=True, cascade=True)
663     alumno              = ForeignKey('Alumno', notNone=True, cascade=True)
664     pk                  = DatabaseIndex(curso, alumno, unique=True)
665     # Campos
666     condicional         = BoolCol(notNone=True, default=False)
667     tutor               = ForeignKey('DocenteInscripto', default=None, cascade='null')
668     # Joins
669     responsabilidades   = MultipleJoin('Grupo', joinColumn='responsable_id')
670     membresias          = MultipleJoin('Miembro', joinColumn='alumno_id')
671     entregas            = MultipleJoin('Entrega', joinColumn='alumno_id')
672     correcciones        = MultipleJoin('Correccion', joinColumn='alumno_id')
673     # Notas de la cursada
674     nota_practica       = DecimalCol(size=3, precision=1, default=None)
675     nota_final          = DecimalCol(size=3, precision=1, default=None)
676     nota_libreta        = DecimalCol(size=3, precision=1, default=None)
677
678     def _get_nombre(self):
679         return self.alumno.padron
680
681     @classmethod
682     def selectByAlumno(self, alumno):
683         return AlumnoInscripto.select(AlumnoInscripto.q.alumnoID == alumno.id).getOne()
684
685     def __repr__(self):
686         return 'AlumnoInscripto(id=%s, alumno=%s, condicional=%s, nota=%s, ' \
687             'nota_cursada=%s, tutor=%s, observaciones=%s, activo=%s)' \
688                 % (self.id, self.alumno.shortrepr(), self.condicional,
689                     self.nota, self.nota_cursada, srepr(self.tutor),
690                     self.observaciones, self.activo)
691
692     def shortrepr(self):
693         return self.alumno.shortrepr()
694 #}}}
695
696 class Tutor(SQLObject): #{{{
697     # Clave
698     grupo           = ForeignKey('Grupo', notNone=True, cascade=True)
699     docente         = ForeignKey('DocenteInscripto', notNone=True, cascade=True)
700     pk              = DatabaseIndex(grupo, docente, unique=True)
701     # Campos
702     alta            = DateTimeCol(notNone=True, default=DateTimeCol.now)
703     baja            = DateTimeCol(default=None)
704
705     def __repr__(self):
706         return 'Tutor(docente=%s, grupo=%s, alta=%s, baja=%s)' \
707                 % (self.docente.shortrepr(), self.grupo.shortrepr(),
708                     self.alta, self.baja)
709
710     def shortrepr(self):
711         return '%s-%s' % (self.docente.shortrepr(), self.grupo.shortrepr())
712 #}}}
713
714 class Miembro(SQLObject): #{{{
715     # Clave
716     grupo           = ForeignKey('Grupo', notNone=True, cascade=True)
717     alumno          = ForeignKey('AlumnoInscripto', notNone=True, cascade=True)
718     pk              = DatabaseIndex(grupo, alumno, unique=True)
719     # Campos
720     nota            = DecimalCol(size=3, precision=1, default=None)
721     alta            = DateTimeCol(notNone=True, default=DateTimeCol.now)
722     baja            = DateTimeCol(default=None)
723
724     def __repr__(self):
725         return 'Miembro(alumno=%s, grupo=%s, nota=%s, alta=%s, baja=%s)' \
726                 % (self.alumno.shortrepr(), self.grupo.shortrepr(),
727                     self.nota, self.alta, self.baja)
728
729     def shortrepr(self):
730         return '%s-%s' % (self.alumno.shortrepr(), self.grupo.shortrepr())
731 #}}}
732
733 class Ejecucion(InheritableSQLObject): #{{{
734     # Campos
735     inicio          = DateTimeCol(notNone=True, default=DateTimeCol.now)
736     fin             = DateTimeCol(default=None)
737     exito           = IntCol(default=None)
738     observaciones   = UnicodeCol(notNone=True, default=u'')
739     archivos        = BLOBCol(default=None) # ZIP con archivos
740
741     def __repr__(self, clave='', mas=''):
742         return ('%s(%s inicio=%s, fin=%s, exito=%s, observaciones=%s%s)'
743             % (self.__class__.__name__, clave, self.inicio, self.fin,
744             self.exito, self.observaciones, mas))
745 #}}}
746
747 class Entrega(Ejecucion): #{{{
748     _inheritable = False
749     # Clave
750     instancia           = ForeignKey('InstanciaDeEntrega', notNone=True, cascade=False)
751     entregador          = ForeignKey('Entregador', default=None, cascade=False) # Si es None era un Docente
752     fecha               = DateTimeCol(notNone=True, default=DateTimeCol.now)
753     pk                  = DatabaseIndex(instancia, entregador, fecha, unique=True)
754     # Joins
755     comandos_ejecutados = MultipleJoin('ComandoFuenteEjecutado')
756     pruebas             = MultipleJoin('Prueba')
757
758     def add_comando_ejecutado(self, comando, **kw):
759         return ComandoFuenteEjecutado(entrega=self, comando=comando, **kw)
760
761     def remove_comando_ejecutado(self, comando):
762         if isinstance(comando, ComandoFuente):
763             comando = comando.id
764         # FIXME self.id
765         ComandoFuenteEjecutado.pk.get(self.id, comando).destroySelf()
766
767     def add_prueba(self, caso_de_prueba, **kw):
768         return Prueba(entrega=self, caso_de_prueba=caso_de_prueba, **kw)
769
770     def remove_prueba(self, caso_de_prueba):
771         if isinstance(caso_de_prueba, CasoDePrueba):
772             caso_de_prueba = caso_de_prueba.id
773         # FIXME self.id, caso_de_prueba
774         Prueba.pk.get(self.id, caso_de_prueba).destroySelf()
775
776     def __repr__(self):
777         return super(Entrega, self).__repr__('instancia=%s, entregador=%s, '
778             'fecha=%s' % (self.instancia.shortrepr(), srepr(self.entregador),
779                 self.fecha))
780
781     def shortrepr(self):
782         return '%s-%s-%s' % (self.instancia.shortrepr(),
783             srepr(self.entregador), self.fecha)
784 #}}}
785
786 class Correccion(SQLObject): #{{{
787     # Clave
788     instancia       = ForeignKey('InstanciaDeEntrega', notNone=True, cascade=False)
789     entregador      = ForeignKey('Entregador', notNone=True, cascade=False) # Docente no tiene
790     pk              = DatabaseIndex(instancia, entregador, unique=True)
791     # Campos
792     entrega         = ForeignKey('Entrega', notNone=True, cascade=False)
793     corrector       = ForeignKey('DocenteInscripto', default=None, cascade='null')
794     asignado        = DateTimeCol(notNone=True, default=DateTimeCol.now)
795     corregido       = DateTimeCol(default=None)
796     nota            = DecimalCol(size=3, precision=1, default=None)
797     observaciones   = UnicodeCol(default=None)
798
799     def _get_entregas(self):
800         return list(Entrega.selectBy(instancia=self.instancia, entregador=self.entregador))
801
802     def __repr__(self):
803         return 'Correccion(instancia=%s, entregador=%s, entrega=%s, ' \
804             'corrector=%s, asignado=%s, corregido=%s, nota=%s, ' \
805             'observaciones=%s)' \
806                 % (self.instancia.shortrepr(), self.entregador.shortrepr(),
807                     self.entrega.shortrepr(), self.corrector, self.asignado,
808                     self.corregido, self.nota, self.observaciones)
809
810     def shortrepr(self):
811         if not self.corrector:
812             return '%s' % self.entrega.shortrepr()
813         return '%s,%s' % (self.entrega.shortrepr(), self.corrector.shortrepr())
814 #}}}
815
816 class ComandoEjecutado(Ejecucion): #{{{
817     # Campos
818     diferencias = BLOBCol(default=None) # ZIP con archivos guardados
819
820     def __repr__(self, clave='', mas=''):
821         return super(ComandoFuenteEjecutado, self).__repr__(clave, mas)
822 #}}}
823
824 class ComandoFuenteEjecutado(ComandoEjecutado): #{{{
825     _inheritable = False
826     # Clave
827     comando = ForeignKey('ComandoFuente', notNone=True, cascade=False)
828     entrega = ForeignKey('Entrega', notNone=True, cascade=False)
829     pk      = DatabaseIndex(comando, entrega, unique=True)
830
831     def __repr__(self):
832         return super(ComandoFuenteEjecutado, self).__repr__(
833             'comando=%s, entrega=%s' % (self.comando.shortrepr(),
834                 self.entrega.shortrepr()))
835
836     def shortrepr(self):
837         return '%s-%s' % (self.comando.shortrepr(), self.entrega.shortrepr())
838 #}}}
839
840 class ComandoPruebaEjecutado(ComandoEjecutado): #{{{
841     _inheritable = False
842     # Clave
843     comando = ForeignKey('ComandoPrueba', notNone=True, cascade=False)
844     prueba  = ForeignKey('Prueba', notNone=True, cascade=False)
845     pk      = DatabaseIndex(comando, prueba, unique=True)
846
847     def __repr__(self):
848         return super(ComandoPruebaEjecutado, self).__repr__(
849             'comando=%s, entrega=%s' % (self.comando.shortrepr(),
850                 self.entrega.shortrepr()))
851
852     def shortrepr(self):
853         return '%s:%s:%s' % (self.tarea.shortrepr(), self.entrega.shortrepr(),
854             self.caso_de_prueba.shortrepr())
855 #}}}
856
857 class Prueba(ComandoEjecutado): #{{{
858     _inheritable = False
859     # Clave
860     entrega             = ForeignKey('Entrega', notNone=True, cascade=False)
861     caso_de_prueba      = ForeignKey('CasoDePrueba', notNone=True, cascade=False)
862     pk                  = DatabaseIndex(entrega, caso_de_prueba, unique=True)
863     # Joins
864     comandos_ejecutados = MultipleJoin('ComandoPruebaEjecutado')
865
866     def add_comando_ejecutado(self, comando, **kw):
867         if isinstance(comando, ComandoPrueba):
868             comando = comando.id
869         return ComandoPruebaEjecutado(prueba=self, comandoID=comando, **kw)
870
871     def remove_comando_ejecutado(self, comando):
872         if isinstance(comando, ComandoPrueba):
873             comando = comando.id
874         # FIXME self.id, comando.id
875         ComandoPruebaEjecutado.pk.get(self.id, comando).destroySelf()
876
877     def __repr__(self):
878         return super(Prueba, self).__repr__('entrega=%s, caso_de_prueba=%s'
879             % (self.entrega.shortrepr(), self.caso_de_prueba.shortrepr()))
880
881     def shortrepr(self):
882         return '%s:%s' % (self.entrega.shortrepr(),
883             self.caso_de_prueba.shortrepr())
884 #}}}
885
886 #{{{ Específico de Identity
887
888 class Visita(SQLObject): #{{{
889     visit_key   = StringCol(length=40, alternateID=True,
890                     alternateMethodName="by_visit_key")
891     created     = DateTimeCol(notNone=True, default=datetime.now)
892     expiry      = DateTimeCol()
893
894     @classmethod
895     def lookup_visit(cls, visit_key):
896         try:
897             return cls.by_visit_key(visit_key)
898         except SQLObjectNotFound:
899             return None
900 #}}}
901
902 class VisitaUsuario(SQLObject): #{{{
903     # Clave
904     visit_key   = StringCol(length=40, alternateID=True,
905                           alternateMethodName="by_visit_key")
906     # Campos
907     user_id     = IntCol() # Negrada de identity
908 #}}}
909
910 class Rol(SQLObject): #{{{
911     # Clave
912     nombre      = UnicodeCol(length=255, alternateID=True,
913                     alternateMethodName='by_nombre')
914     # Campos
915     descripcion = UnicodeCol(length=255, default=None)
916     creado      = DateTimeCol(notNone=True, default=datetime.now)
917     permisos    = TupleCol(notNone=True)
918     # Joins
919     usuarios    = RelatedJoin('Usuario', addRemoveName='_usuario')
920
921     def by_group_name(self, name): # para identity
922         return self.by_nombre(name)
923 #}}}
924
925 # No es un SQLObject porque no tiene sentido agregar/sacar permisos, están
926 # hardcodeados en el código
927 class Permiso(object): #{{{
928     max_valor = 1
929     def __init__(self, nombre, descripcion):
930         self.valor = Permiso.max_valor
931         Permiso.max_valor <<= 1
932         self.nombre = nombre
933         self.descripcion = descripcion
934
935     @classmethod
936     def createTable(cls, ifNotExists): # para identity
937         pass
938
939     @property
940     def permission_name(self): # para identity
941         return self.nombre
942
943     def __and__(self, other):
944         return self.valor & other.valor
945
946     def __or__(self, other):
947         return self.valor | other.valor
948
949     def __repr__(self):
950         return self.nombre
951 #}}}
952
953 # TODO ejemplos
954 entregar_tp = Permiso(u'entregar', u'Permite entregar trabajos prácticos')
955 admin = Permiso(u'admin', u'Permite hacer ABMs arbitrarios')
956
957 #}}} Identity
958
959 #}}} Clases
960