]> git.llucax.com Git - software/sercom.git/blob - sercom/model.py
Implementar pruebas de casos de prueba.
[software/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     terminar_si_falla   = BoolCol(notNone=True, default=True)
285     rechazar_si_falla   = BoolCol(notNone=True, default=True)
286     # Joins
287     enunciados          = RelatedJoin('Enunciado', addRemoveName='_enunciado')
288
289     def __repr__(self):
290         raise NotImplementedError('Tarea es una clase abstracta')
291
292     def shortrepr(self):
293         return self.nombre
294 #}}}
295
296 class TareaFuente(Tarea): #{{{
297     _inheritable = False
298     # Joins
299     comandos    = MultipleJoin('ComandoFuente', joinColumn='tarea_id')
300
301     def add_comando(self, orden, comando, **kw):
302         return ComandoFuente(tarea=self, orden=orden, comando=comando, **kw)
303
304     def remove_comando(self, orden):
305         ComandoFuente.pk.get(self.id, orden).destroySelf()
306
307     def __repr__(self):
308         return 'TareaFuente(id=%s, nombre=%s, descripcion=%s)' \
309                 % (self.id, self.nombre, self.descripcion)
310 #}}}
311
312 class TareaPrueba(Tarea): #{{{
313     _inheritable = False
314     # Joins
315     comandos    = MultipleJoin('ComandoPrueba', joinColumn='tarea_id')
316
317     def add_comando(self, orden, **kw):
318         return ComandoPrueba(tarea=self, orden=orden, comando='', **kw)
319
320     def remove_comando(self, orden):
321         ComandoPrueba.pk.get(self.id, orden).destroySelf()
322
323     def __repr__(self):
324         return 'TareaPrueba(id=%s, nombre=%s, descripcion=%s)' \
325                 % (self.id, self.nombre, self.descripcion)
326 #}}}
327
328 class Comando(InheritableSQLObject): #{{{
329     # Tipos de retorno especiales
330     RET_ANY = None
331     RET_FAIL = -256
332     # Archivos especiales
333     STDIN = '__stdin__'
334     STDOUT = '__stdout__'
335     STDERR = '__stderr__'
336     STDOUTERR = '__stdouterr__'
337     # Campos
338     comando             = UnicodeCol(length=255, notNone=True)
339     descripcion         = UnicodeCol(length=255, default=None)
340     retorno             = IntCol(default=None) # Ver RET_XXX y si es negativo
341                                                # se espera una señal
342     max_tiempo_cpu      = IntCol(default=None) # En segundos
343     max_memoria         = IntCol(default=None) # En MB
344     max_tam_archivo     = IntCol(default=None) # En MB
345     max_cant_archivos   = IntCol(default=None)
346     max_cant_procesos   = IntCol(default=None)
347     max_locks_memoria   = IntCol(default=None)
348     terminar_si_falla   = BoolCol(notNone=True, default=True)
349     rechazar_si_falla   = BoolCol(notNone=True, default=True)
350     archivos_entrada    = BLOBCol(default=None) # ZIP con archivos de entrada
351                                                 # __stdin__ es caso especial
352                                                 # Si un caso de prueba tiene
353                                                 # comandos con stdin y el caso
354                                                 # de prueba también tiene stdin
355                                                 # se usa el stdin del comando.
356     archivos_a_comparar = BLOBCol(default=None) # ZIP con archivos de salida
357                                                 # __stdout__, __stderr__ y
358                                                 # __stdouterr__ (ambos juntos)
359                                                 # son casos especiales
360     archivos_a_guardar  = TupleCol(notNone=True, default=()) # TODO SetCol
361                                                 # __stdout__, __stderr__ y
362                                                 # __stdouterr__ (ambos juntos)
363                                                 # son casos especiales
364     activo              = BoolCol(notNone=True, default=True)
365
366     def __repr__(self, clave='', mas=''):
367         return ('%s(%s comando=%s, descripcion=%s, retorno=%s, '
368             'max_tiempo_cpu=%s, max_memoria=%s, max_tam_archivo=%s, '
369             'max_cant_archivos=%s, max_cant_procesos=%s, max_locks_memoria=%s, '
370             'terminar_si_falla=%s, rechazar_si_falla=%s%s)'
371                 % (self.__class__.__name__, clave, self.comando,
372                     self.descripcion, self.retorno, self.max_tiempo_cpu,
373                     self.max_memoria, self.max_tam_archivo,
374                     self.max_cant_archivos, self.max_cant_procesos,
375                     self.max_locks_memoria, self.terminar_si_falla,
376                     self.rechazar_si_falla, mas))
377
378     def shortrepr(self):
379         return '%s (%s)' % (self.comando, self.descripcion)
380 #}}}
381
382 class ComandoFuente(Comando): #{{{
383     _inheritable = False
384     # Clave
385     tarea       = ForeignKey('TareaFuente', notNone=True, cascade=True)
386     orden       = IntCol(notNone=True)
387     pk          = DatabaseIndex(tarea, orden, unique=True)
388
389     def __repr__(self):
390         return super(ComandoFuente, self).__repr__('tarea=%s, orden=%s'
391             % (self.tarea.shortrepr(), self.orden))
392
393     def shortrepr(self):
394         return '%s:%s (%s)' % (self.tarea.shortrepr(), self.orden, self.comando)
395 #}}}
396
397 class ComandoPrueba(Comando): #{{{
398     _inheritable = False
399     RET_PRUEBA = -2 # Espera el mismo retorno que el de la prueba.
400     # XXX todos los campos de limitación en este caso son multiplicadores para
401     # los valores del caso de prueba.
402     # Clave
403     tarea               = ForeignKey('TareaPrueba', notNone=True, cascade=True)
404     orden               = IntCol(notNone=True)
405     pk                  = DatabaseIndex(tarea, orden, unique=True)
406
407     def __repr__(self):
408         return super(ComandoFuente, self).__repr__('tarea=%s, orden=%s'
409             % (self.tarea.shortrepr(), self.orden))
410
411     def shortrepr(self):
412         return '%s:%s (%s)' % (self.tarea.shortrepr(), self.orden, self.comando)
413 #}}}
414
415 class Enunciado(SQLObject): #{{{
416     # Clave
417     nombre          = UnicodeCol(length=60)
418     anio            = IntCol(notNone=True)
419     cuatrimestre    = IntCol(notNone=True)
420     pk              = DatabaseIndex(nombre, anio, cuatrimestre, unique=True)
421     # Campos
422     descripcion     = UnicodeCol(length=255, default=None)
423     autor           = ForeignKey('Docente', cascade='null')
424     creado          = DateTimeCol(notNone=True, default=DateTimeCol.now)
425     archivo         = BLOBCol(default=None)
426     archivo_name    = UnicodeCol(length=255, default=None)
427     archivo_type    = UnicodeCol(length=255, default=None)
428     # Joins
429     ejercicios      = MultipleJoin('Ejercicio')
430     casos_de_prueba = MultipleJoin('CasoDePrueba')
431     tareas          = RelatedJoin('Tarea', addRemoveName='_tarea')
432
433     def __init__(self, tareas=[], **kw):
434         super(Enunciado, self).__init__(**kw)
435         for tarea in tareas:
436             self.add_tarea(tarea)
437
438     def set(self, tareas=None, **kw):
439         super(Enunciado, self).set(**kw)
440         if tareas is not None:
441             for tarea in self.tareas:
442                 self.remove_tarea(tarea)
443             for tarea in tareas:
444                 self.add_tarea(tarea)
445
446     @classmethod
447     def selectByCurso(self, curso):
448         return Enunciado.selectBy(cuatrimestre=curso.cuatrimestre, anio=curso.anio)
449
450     def add_caso_de_prueba(self, nombre, **kw):
451         return CasoDePrueba(enunciado=self, nombre=nombre, **kw)
452
453     def __repr__(self):
454         return 'Enunciado(id=%s, autor=%s, nombre=%s, descripcion=%s, ' \
455             'creado=%s)' \
456                 % (self.id, srepr(self.autor), self.nombre, self.descripcion, \
457                     self.creado)
458
459     def shortrepr(self):
460         return self.nombre
461 #}}}
462
463 class CasoDePrueba(Comando): #{{{
464     _inheritable = False
465     # Clave
466     enunciado           = ForeignKey('Enunciado', cascade=True)
467     nombre              = UnicodeCol(length=40, notNone=True)
468     pk                  = DatabaseIndex(enunciado, nombre, unique=True)
469     # Joins
470     pruebas             = MultipleJoin('Prueba')
471
472     def __repr__(self):
473         return super(ComandoFuente, self).__repr__('enunciado=%s, nombre=%s'
474             % (srepr(self.enunciado), self.nombre))
475
476     def shortrepr(self):
477         return '%s:%s' % (self.enunciado.shortrepr(), self.nombre)
478 #}}}
479
480 class Ejercicio(SQLObject): #{{{
481     # Clave
482     curso           = ForeignKey('Curso', notNone=True, cascade=True)
483     numero          = IntCol(notNone=True)
484     pk              = DatabaseIndex(curso, numero, unique=True)
485     # Campos
486     enunciado       = ForeignKey('Enunciado', notNone=True, cascade=False)
487     grupal          = BoolCol(default=False) # None es grupal o individual
488     # Joins
489     instancias      = MultipleJoin('InstanciaDeEntrega')
490
491     def add_instancia(self, numero, inicio, fin, **kw):
492         return InstanciaDeEntrega(ejercicio=self, numero=numero, inicio=inicio,
493             fin=fin, **kw)
494
495     def remove_instancia(self, numero):
496         # FIXME self.id
497         InstanciaDeEntrega.pk.get(self.id, numero).destroySelf()
498
499     def __repr__(self):
500         return 'Ejercicio(id=%s, curso=%s, numero=%s, enunciado=%s, ' \
501             'grupal=%s)' \
502                 % (self.id, self.curso.shortrepr(), self.numero,
503                     self.enunciado.shortrepr(), self.grupal)
504
505     def shortrepr(self):
506         return '(%s, %s, %s)' \
507             % (self.curso.shortrepr(), str(self.numero), \
508                 self.enunciado.shortrepr())
509 #}}}
510
511 class InstanciaDeEntrega(SQLObject): #{{{
512     # Clave
513     ejercicio       = ForeignKey('Ejercicio', notNone=True, cascade=True)
514     numero          = IntCol(notNone=True)
515     pk              = DatabaseIndex(ejercicio, numero, unique=True)
516     # Campos
517     inicio          = DateTimeCol(notNone=True)
518     fin             = DateTimeCol(notNone=True)
519     procesada       = BoolCol(notNone=True, default=False)
520     observaciones   = UnicodeCol(default=None)
521     activo          = BoolCol(notNone=True, default=True)
522     # Joins
523     entregas        = MultipleJoin('Entrega', joinColumn='instancia_id')
524     correcciones    = MultipleJoin('Correccion', joinColumn='instancia_id')
525
526     def __repr__(self):
527         return 'InstanciaDeEntrega(id=%s, numero=%s, inicio=%s, fin=%s, ' \
528             'procesada=%s, observaciones=%s, activo=%s)' \
529                 % (self.id, self.numero, self.inicio, self.fin,
530                     self.procesada, self.observaciones, self.activo)
531
532     def shortrepr(self):
533         return self.numero
534 #}}}
535
536 class DocenteInscripto(SQLObject): #{{{
537     # Clave
538     curso           = ForeignKey('Curso', notNone=True, cascade=True)
539     docente         = ForeignKey('Docente', notNone=True, cascade=True)
540     pk              = DatabaseIndex(curso, docente, unique=True)
541     # Campos
542     corrige         = BoolCol(notNone=True, default=True)
543     observaciones   = UnicodeCol(default=None)
544     # Joins
545     alumnos         = MultipleJoin('AlumnoInscripto', joinColumn='tutor_id')
546     tutorias        = MultipleJoin('Tutor', joinColumn='docente_id')
547     correcciones    = MultipleJoin('Correccion', joinColumn='corrector_id')
548
549     def add_correccion(self, entrega, **kw):
550         return Correccion(instancia=entrega.instancia, entrega=entrega,
551             entregador=entrega.entregador, corrector=self, **kw)
552
553     def remove_correccion(self, instancia, entregador):
554         # FIXME instancia.id, entregador.id
555         Correccion.pk.get(instancia.id, entregador.id).destroySelf()
556
557     def __repr__(self):
558         return 'DocenteInscripto(id=%s, docente=%s, corrige=%s, ' \
559             'observaciones=%s' \
560                 % (self.id, self.docente.shortrepr(), self.corrige,
561                     self.observaciones)
562
563     def shortrepr(self):
564         return self.docente.shortrepr()
565 #}}}
566
567 class Entregador(InheritableSQLObject): #{{{
568     # Campos
569     nota            = DecimalCol(size=3, precision=1, default=None)
570     nota_cursada    = DecimalCol(size=3, precision=1, default=None)
571     observaciones   = UnicodeCol(notNone=True, default=u'')
572     activo          = BoolCol(notNone=True, default=True)
573     # Joins
574     entregas        = MultipleJoin('Entrega')
575     correcciones    = MultipleJoin('Correccion')
576
577     def add_entrega(self, instancia, **kw):
578         return Entrega(instancia=instancia, entregador=self, **kw)
579
580     def __repr__(self):
581         raise NotImplementedError, 'Clase abstracta!'
582 #}}}
583
584 class Grupo(Entregador): #{{{
585     _inheritable = False
586     # Clave
587     curso           = ForeignKey('Curso', notNone=True, cascade=True)
588     nombre          = UnicodeCol(length=20, notNone=True)
589     pk              = DatabaseIndex(curso, nombre, unique=True)
590     # Campos
591     responsable     = ForeignKey('AlumnoInscripto', default=None, cascade='null')
592     # Joins
593     miembros        = MultipleJoin('Miembro')
594     tutores         = MultipleJoin('Tutor')
595
596     def __init__(self, miembros=[], tutores=[], **kw):
597         super(Grupo, self).__init__(**kw)
598         for a in miembros:
599             self.add_miembro(a)
600         for d in tutores:
601             self.add_tutor(d)
602
603     def set(self, miembros=None, tutores=None, **kw):
604         super(Grupo, self).set(**kw)
605         if miembros is not None:
606             for m in Miembro.selectBy(grupo=self):
607                 m.destroySelf()
608             for m in miembros:
609                 self.add_miembro(m)
610         if tutores is not None:
611             for t in Tutor.selectBy(grupo=self):
612                 t.destroySelf()
613             for t in tutores:
614                 self.add_tutor(t)
615
616     _doc_alumnos = 'Devuelve una lista de AlumnoInscriptos **activos**.'
617     def _get_alumnos(self):
618         return list([m.alumno for m in Miembro.selectBy(grupo=self, baja=None)])
619
620     _doc_docentes = 'Devuelve una lista de DocenteInscriptos **activos**.'
621     def _get_docentes(self):
622         return list([t.docente for t in Tutor.selectBy(grupo=self, baja=None)])
623
624     def add_miembro(self, alumno, **kw):
625         if isinstance(alumno, AlumnoInscripto):
626             alumno = alumno.id
627         return Miembro(grupo=self, alumnoID=alumno, **kw)
628
629     def remove_miembro(self, alumno):
630         if isinstance(alumno, AlumnoInscripto):
631             alumno = alumno.id
632         m = Miembro.selectBy(grupo=self, alumnoID=alumno, baja=None).getOne()
633         m.baja = DateTimeCol.now()
634
635     def add_tutor(self, docente, **kw):
636         if isinstance(docente, DocenteInscripto):
637             docente = docente.id
638         return Tutor(grupo=self, docenteID=docente, **kw)
639
640     def remove_tutor(self, docente):
641         if isinstance(docente, DocenteInscripto):
642             docente = docente.id
643         t = Tutor.selectBy(grupo=self, docenteID=docente, baja=None)
644         t.baja = DateTimeCol.now()
645
646     def __repr__(self):
647         return 'Grupo(id=%s, nombre=%s, responsable=%s, nota=%s, ' \
648             'nota_cursada=%s, observaciones=%s, activo=%s)' \
649                 % (self.id, self.nombre, srepr(self.responsable), self.nota,
650                     self.nota_cursada, self.observaciones, self.activo)
651
652     @classmethod
653     def selectByAlumno(self, alumno):
654         return Miembro.select(AND(Miembro.q.alumnoID == AlumnoInscripto.q.id,
655                 AlumnoInscripto.q.alumnoID == alumno.id))
656
657     def shortrepr(self):
658         return 'grupo:' + self.nombre
659 #}}}
660
661 class AlumnoInscripto(Entregador): #{{{
662     _inheritable = False
663     # Clave
664     curso               = ForeignKey('Curso', notNone=True, cascade=True)
665     alumno              = ForeignKey('Alumno', notNone=True, cascade=True)
666     pk                  = DatabaseIndex(curso, alumno, unique=True)
667     # Campos
668     condicional         = BoolCol(notNone=True, default=False)
669     tutor               = ForeignKey('DocenteInscripto', default=None, cascade='null')
670     # Joins
671     responsabilidades   = MultipleJoin('Grupo', joinColumn='responsable_id')
672     membresias          = MultipleJoin('Miembro', joinColumn='alumno_id')
673     entregas            = MultipleJoin('Entrega', joinColumn='alumno_id')
674     correcciones        = MultipleJoin('Correccion', joinColumn='alumno_id')
675
676     def _get_nombre(self):
677         return self.alumno.padron
678
679     @classmethod
680     def selectByAlumno(self, alumno):
681         return AlumnoInscripto.select(AlumnoInscripto.q.alumnoID == alumno.id).getOne()
682
683     def __repr__(self):
684         return 'AlumnoInscripto(id=%s, alumno=%s, condicional=%s, nota=%s, ' \
685             'nota_cursada=%s, tutor=%s, observaciones=%s, activo=%s)' \
686                 % (self.id, self.alumno.shortrepr(), self.condicional,
687                     self.nota, self.nota_cursada, srepr(self.tutor),
688                     self.observaciones, self.activo)
689
690     def shortrepr(self):
691         return self.alumno.shortrepr()
692 #}}}
693
694 class Tutor(SQLObject): #{{{
695     # Clave
696     grupo           = ForeignKey('Grupo', notNone=True, cascade=True)
697     docente         = ForeignKey('DocenteInscripto', notNone=True, cascade=True)
698     pk              = DatabaseIndex(grupo, docente, unique=True)
699     # Campos
700     alta            = DateTimeCol(notNone=True, default=DateTimeCol.now)
701     baja            = DateTimeCol(default=None)
702
703     def __repr__(self):
704         return 'Tutor(docente=%s, grupo=%s, alta=%s, baja=%s)' \
705                 % (self.docente.shortrepr(), self.grupo.shortrepr(),
706                     self.alta, self.baja)
707
708     def shortrepr(self):
709         return '%s-%s' % (self.docente.shortrepr(), self.grupo.shortrepr())
710 #}}}
711
712 class Miembro(SQLObject): #{{{
713     # Clave
714     grupo           = ForeignKey('Grupo', notNone=True, cascade=True)
715     alumno          = ForeignKey('AlumnoInscripto', notNone=True, cascade=True)
716     pk              = DatabaseIndex(grupo, alumno, unique=True)
717     # Campos
718     nota            = DecimalCol(size=3, precision=1, default=None)
719     alta            = DateTimeCol(notNone=True, default=DateTimeCol.now)
720     baja            = DateTimeCol(default=None)
721
722     def __repr__(self):
723         return 'Miembro(alumno=%s, grupo=%s, nota=%s, alta=%s, baja=%s)' \
724                 % (self.alumno.shortrepr(), self.grupo.shortrepr(),
725                     self.nota, self.alta, self.baja)
726
727     def shortrepr(self):
728         return '%s-%s' % (self.alumno.shortrepr(), self.grupo.shortrepr())
729 #}}}
730
731 class Ejecucion(InheritableSQLObject): #{{{
732     # Campos
733     inicio          = DateTimeCol(notNone=True, default=DateTimeCol.now)
734     fin             = DateTimeCol(default=None)
735     exito           = IntCol(default=None)
736     observaciones   = UnicodeCol(notNone=True, default=u'')
737     archivos        = BLOBCol(default=None) # ZIP con archivos
738
739     def __repr__(self, clave='', mas=''):
740         return ('%s(%s inicio=%s, fin=%s, exito=%s, observaciones=%s%s)'
741             % (self.__class__.__name__, clave, self.inicio, self.fin,
742             self.exito, self.observaciones, mas))
743 #}}}
744
745 class Entrega(Ejecucion): #{{{
746     _inheritable = False
747     # Clave
748     instancia           = ForeignKey('InstanciaDeEntrega', notNone=True, cascade=False)
749     entregador          = ForeignKey('Entregador', default=None, cascade=False) # Si es None era un Docente
750     fecha               = DateTimeCol(notNone=True, default=DateTimeCol.now)
751     pk                  = DatabaseIndex(instancia, entregador, fecha, unique=True)
752     # Joins
753     comandos_ejecutados = MultipleJoin('ComandoFuenteEjecutado')
754     pruebas             = MultipleJoin('Prueba')
755
756     def add_comando_ejecutado(self, comando, **kw):
757         return ComandoFuenteEjecutado(entrega=self, comando=comando, **kw)
758
759     def remove_comando_ejecutado(self, comando):
760         if isinstance(comando, ComandoFuente):
761             comando = comando.id
762         # FIXME self.id
763         ComandoFuenteEjecutado.pk.get(self.id, comando).destroySelf()
764
765     def add_prueba(self, caso_de_prueba, **kw):
766         return Prueba(entrega=self, caso_de_prueba=caso_de_prueba, **kw)
767
768     def remove_prueba(self, caso_de_prueba):
769         if isinstance(caso_de_prueba, CasoDePrueba):
770             caso_de_prueba = caso_de_prueba.id
771         # FIXME self.id, caso_de_prueba
772         Prueba.pk.get(self.id, caso_de_prueba).destroySelf()
773
774     def __repr__(self):
775         return super(Entrega, self).__repr__('instancia=%s, entregador=%s, '
776             'fecha=%s' % (self.instancia.shortrepr(), srepr(self.entregador),
777                 self.fecha))
778
779     def shortrepr(self):
780         return '%s-%s-%s' % (self.instancia.shortrepr(),
781             srepr(self.entregador), self.fecha)
782 #}}}
783
784 class Correccion(SQLObject): #{{{
785     # Clave
786     instancia       = ForeignKey('InstanciaDeEntrega', notNone=True, cascade=False)
787     entregador      = ForeignKey('Entregador', notNone=True, cascade=False) # Docente no tiene
788     pk              = DatabaseIndex(instancia, entregador, unique=True)
789     # Campos
790     entrega         = ForeignKey('Entrega', notNone=True, cascade=False)
791     corrector       = ForeignKey('DocenteInscripto', default=None, cascade='null')
792     asignado        = DateTimeCol(notNone=True, default=DateTimeCol.now)
793     corregido       = DateTimeCol(default=None)
794     nota            = DecimalCol(size=3, precision=1, default=None)
795     observaciones   = UnicodeCol(default=None)
796
797     def _get_entregas(self):
798         return list(Entrega.selectBy(instancia=self.instancia, entregador=self.entregador))
799
800     def __repr__(self):
801         return 'Correccion(instancia=%s, entregador=%s, entrega=%s, ' \
802             'corrector=%s, asignado=%s, corregido=%s, nota=%s, ' \
803             'observaciones=%s)' \
804                 % (self.instancia.shortrepr(), self.entregador.shortrepr(),
805                     self.entrega.shortrepr(), self.corrector, self.asignado,
806                     self.corregido, self.nota, self.observaciones)
807
808     def shortrepr(self):
809         if not self.corrector:
810             return '%s' % self.entrega.shortrepr()
811         return '%s,%s' % (self.entrega.shortrepr(), self.corrector.shortrepr())
812 #}}}
813
814 class ComandoEjecutado(Ejecucion): #{{{
815     # Campos
816     diferencias = BLOBCol(default=None) # ZIP con archivos guardados
817
818     def __repr__(self, clave='', mas=''):
819         return super(ComandoFuenteEjecutado, self).__repr__(clave, mas)
820 #}}}
821
822 class ComandoFuenteEjecutado(ComandoEjecutado): #{{{
823     _inheritable = False
824     # Clave
825     comando = ForeignKey('ComandoFuente', notNone=True, cascade=False)
826     entrega = ForeignKey('Entrega', notNone=True, cascade=False)
827     pk      = DatabaseIndex(comando, entrega, unique=True)
828
829     def __repr__(self):
830         return super(ComandoFuenteEjecutado, self).__repr__(
831             'comando=%s, entrega=%s' % (self.comando.shortrepr(),
832                 self.entrega.shortrepr()))
833
834     def shortrepr(self):
835         return '%s-%s' % (self.tarea.shortrepr(), self.entrega.shortrepr())
836 #}}}
837
838 class ComandoPruebaEjecutado(ComandoEjecutado): #{{{
839     _inheritable = False
840     # Clave
841     comando = ForeignKey('ComandoPrueba', notNone=True, cascade=False)
842     prueba  = ForeignKey('Prueba', notNone=True, cascade=False)
843     pk      = DatabaseIndex(comando, prueba, unique=True)
844
845     def __repr__(self):
846         return super(ComandoPruebaEjecutado, self).__repr__(
847             'comando=%s, entrega=%s' % (self.comando.shortrepr(),
848                 self.entrega.shortrepr()))
849
850     def shortrepr(self):
851         return '%s:%s:%s' % (self.tarea.shortrepr(), self.entrega.shortrepr(),
852             self.caso_de_prueba.shortrepr())
853 #}}}
854
855 class Prueba(ComandoEjecutado): #{{{
856     _inheritable = False
857     # Clave
858     entrega             = ForeignKey('Entrega', notNone=True, cascade=False)
859     caso_de_prueba      = ForeignKey('CasoDePrueba', notNone=True, cascade=False)
860     pk                  = DatabaseIndex(entrega, caso_de_prueba, unique=True)
861     # Joins
862     comandos_ejecutados = MultipleJoin('ComandoPruebaEjecutado')
863
864     def add_comando_ejecutado(self, comando, **kw):
865         if isinstance(comando, ComandoPrueba):
866             comando = comando.id
867         return ComandoPruebaEjecutado(prueba=self, comandoID=comando, **kw)
868
869     def remove_comando_ejecutado(self, comando):
870         if isinstance(comando, ComandoPrueba):
871             comando = comando.id
872         # FIXME self.id, comando.id
873         ComandoPruebaEjecutado.pk.get(self.id, comando).destroySelf()
874
875     def __repr__(self):
876         return super(Prueba, self).__repr__('entrega=%s, caso_de_prueba=%s'
877             % (self.entrega.shortrepr(), self.caso_de_prueba.shortrepr()))
878
879     def shortrepr(self):
880         return '%s:%s' % (self.entrega.shortrepr(),
881             self.caso_de_prueba.shortrepr())
882 #}}}
883
884 #{{{ Específico de Identity
885
886 class Visita(SQLObject): #{{{
887     visit_key   = StringCol(length=40, alternateID=True,
888                     alternateMethodName="by_visit_key")
889     created     = DateTimeCol(notNone=True, default=datetime.now)
890     expiry      = DateTimeCol()
891
892     @classmethod
893     def lookup_visit(cls, visit_key):
894         try:
895             return cls.by_visit_key(visit_key)
896         except SQLObjectNotFound:
897             return None
898 #}}}
899
900 class VisitaUsuario(SQLObject): #{{{
901     # Clave
902     visit_key   = StringCol(length=40, alternateID=True,
903                           alternateMethodName="by_visit_key")
904     # Campos
905     user_id     = IntCol() # Negrada de identity
906 #}}}
907
908 class Rol(SQLObject): #{{{
909     # Clave
910     nombre      = UnicodeCol(length=255, alternateID=True,
911                     alternateMethodName='by_nombre')
912     # Campos
913     descripcion = UnicodeCol(length=255, default=None)
914     creado      = DateTimeCol(notNone=True, default=datetime.now)
915     permisos    = TupleCol(notNone=True)
916     # Joins
917     usuarios    = RelatedJoin('Usuario', addRemoveName='_usuario')
918
919     def by_group_name(self, name): # para identity
920         return self.by_nombre(name)
921 #}}}
922
923 # No es un SQLObject porque no tiene sentido agregar/sacar permisos, están
924 # hardcodeados en el código
925 class Permiso(object): #{{{
926     max_valor = 1
927     def __init__(self, nombre, descripcion):
928         self.valor = Permiso.max_valor
929         Permiso.max_valor <<= 1
930         self.nombre = nombre
931         self.descripcion = descripcion
932
933     @classmethod
934     def createTable(cls, ifNotExists): # para identity
935         pass
936
937     @property
938     def permission_name(self): # para identity
939         return self.nombre
940
941     def __and__(self, other):
942         return self.valor & other.valor
943
944     def __or__(self, other):
945         return self.valor | other.valor
946
947     def __repr__(self):
948         return self.nombre
949 #}}}
950
951 # TODO ejemplos
952 entregar_tp = Permiso(u'entregar', u'Permite entregar trabajos prácticos')
953 admin = Permiso(u'admin', u'Permite hacer ABMs arbitrarios')
954
955 #}}} Identity
956
957 #}}} Clases
958