X-Git-Url: https://git.llucax.com/software/sercom.git/blobdiff_plain/75d7871475cfb5e021ec6f839d6661df5e46efc0..fcd65e663e7984ae5bd81e0a4d7cff4d6d0c85c5:/sercom/model.py diff --git a/sercom/model.py b/sercom/model.py index be46634..b7353e5 100644 --- a/sercom/model.py +++ b/sercom/model.py @@ -1,13 +1,15 @@ -# vim: set et sw=4 sts=4 encoding=utf-8 : +# vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker : from datetime import datetime from turbogears.database import PackageHub from sqlobject import * from sqlobject.sqlbuilder import * from sqlobject.inheritance import InheritableSQLObject -from sqlobject.col import PickleValidator +from sqlobject.col import PickleValidator, UnicodeStringValidator from turbogears import identity from turbogears.identity import encrypt_password as encryptpw +from sercom.validators import params_to_list, ParseError +from formencode import Invalid hub = PackageHub("sercom") __connection__ = hub @@ -21,41 +23,72 @@ class TupleValidator(PickleValidator): Validator for tuple types. A tuple type is simply a pickle type that validates that the represented type is a tuple. """ - def to_python(self, value, state): value = super(TupleValidator, self).to_python(value, state) if value is None: return None if isinstance(value, tuple): return value - raise validators.Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \ + raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \ (self.name, type(value), value), value, state) - def from_python(self, value, state): if value is None: return None if not isinstance(value, tuple): - raise validators.Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \ + raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \ (self.name, type(value), value), value, state) return super(TupleValidator, self).from_python(value, state) class SOTupleCol(SOPickleCol): - - def __init__(self, **kw): - super(SOTupleCol, self).__init__(**kw) - def createValidators(self): - return [TupleValidator(name=self.name)] + \ - super(SOPickleCol, self).createValidators() + return [TupleValidator(name=self.name)] \ + + super(SOPickleCol, self).createValidators() class TupleCol(PickleCol): baseClass = SOTupleCol +class ParamsValidator(UnicodeStringValidator): + def to_python(self, value, state): + if isinstance(value, basestring) or value is None: + value = super(ParamsValidator, self).to_python(value, state) + try: + value = params_to_list(value) + except ParseError, e: + raise Invalid("invalid parameters in the ParamsCol '%s', parse " + "error: %s" % (self.name, e), value, state) + elif not isinstance(value, (list, tuple)): + raise Invalid("expected a tuple, list or valid string in the " + "ParamsCol '%s', got %s %r instead" + % (self.name, type(value), value), value, state) + return value + def from_python(self, value, state): + if isinstance(value, (list, tuple)): + value = ' '.join([repr(p) for p in value]) + elif isinstance(value, basestring) or value is None: + value = super(ParamsValidator, self).to_python(value, state) + try: + params_to_list(value) + except ParseError, e: + raise Invalid("invalid parameters in the ParamsCol '%s', parse " + "error: %s" % (self.name, e), value, state) + else: + raise Invalid("expected a tuple, list or valid string in the " + "ParamsCol '%s', got %s %r instead" + % (self.name, type(value), value), value, state) + return value + +class SOParamsCol(SOUnicodeCol): + def createValidators(self): + return [ParamsValidator(db_encoding=self.dbEncoding, name=self.name)] \ + + super(SOParamsCol, self).createValidators() + +class ParamsCol(UnicodeCol): + baseClass = SOParamsCol + #}}} #{{{ Tablas intermedias - # BUG en SQLObject, SQLExpression no tiene cálculo de hash pero se usa como # key de un dict. Workarround hasta que lo arreglen. SQLExpression.__hash__ = lambda self: hash(str(self)) @@ -76,16 +109,7 @@ def srepr(obj): #{{{ return obj #}}} -class ByObject(object): #{{{ - @classmethod - def by(cls, **kw): - try: - return cls.selectBy(**kw)[0] - except IndexError: - raise SQLObjectNotFound, "The object %s with columns %s does not exist" % (cls.__name__, kw) -#}}} - -class Curso(SQLObject, ByObject): #{{{ +class Curso(SQLObject): #{{{ # Clave anio = IntCol(notNone=True) cuatrimestre = IntCol(notNone=True) @@ -99,26 +123,24 @@ class Curso(SQLObject, ByObject): #{{{ grupos = MultipleJoin('Grupo') ejercicios = MultipleJoin('Ejercicio', orderBy='numero') - def __init__(self, anio=None, cuatrimestre=None, numero=None, - descripcion=None, docentes=[], ejercicios=[], **kargs): - SQLObject.__init__(self, anio=anio, cuatrimestre=cuatrimestre, - numero=numero, descripcion=descripcion, **kargs) + def __init__(self, docentes=[], ejercicios=[], **kargs): + super(Curso, self).__init__(**kargs) for d in docentes: self.add_docente(d) for (n, e) in enumerate(ejercicios): self.add_ejercicio(n, e) - def add_docente(self, docente, *args, **kargs): - return DocenteInscripto(self, docente, *args, **kargs) + def add_docente(self, docente, **kargs): + return DocenteInscripto(curso=self, docente=docente, **kargs) - def add_alumno(self, alumno, *args, **kargs): - return AlumnoInscripto(self, alumno, *args, **kargs) + def add_alumno(self, alumno, **kargs): + return AlumnoInscripto(curso=self, alumno=alumno, **kargs) - def add_grupo(self, nombre, *args, **kargs): - return Grupo(self, unicode(nombre), *args, **kargs) + def add_grupo(self, nombre, **kargs): + return Grupo(curso=self, nombre=unicode(nombre), **kargs) - def add_ejercicio(self, numero, enunciado, *args, **kargs): - return Ejercicio(self, numero, enunciado, *args, **kargs) + def add_ejercicio(self, numero, enunciado, **kargs): + return Ejercicio(curso=self, numero=numero, enunciado=enunciado, **kargs) def __repr__(self): return 'Curso(id=%s, anio=%s, cuatrimestre=%s, numero=%s, ' \ @@ -128,10 +150,10 @@ class Curso(SQLObject, ByObject): #{{{ def shortrepr(self): return '%s.%s.%s' \ - % (self.anio, self.cuatrimestre, self.numero, self.descripcion) + % (self.anio, self.cuatrimestre, self.numero) #}}} -class Usuario(InheritableSQLObject, ByObject): #{{{ +class Usuario(InheritableSQLObject): #{{{ # Clave (para docentes puede ser un nombre de usuario arbitrario) usuario = UnicodeCol(length=10, alternateID=True) # Campos @@ -145,6 +167,12 @@ class Usuario(InheritableSQLObject, ByObject): #{{{ # Joins roles = RelatedJoin('Rol') + def __init__(self, password=None, roles=[], **kargs): + passwd = password and encryptpw(password) + super(Usuario, self).__init__(contrasenia=passwd, **kargs) + for r in roles: + self.addRol(r) + def _get_user_name(self): # para identity return self.usuario @@ -161,10 +189,12 @@ class Usuario(InheritableSQLObject, ByObject): #{{{ def _get_permissions(self): # para identity perms = set() - for g in self.groups: - perms.update(g.permisos) + for r in self.roles: + perms.update(r.permisos) return perms + _get_permisos = _get_permissions + def _set_password(self, cleartext_password): # para identity self.contrasenia = encryptpw(cleartext_password) @@ -172,7 +202,7 @@ class Usuario(InheritableSQLObject, ByObject): #{{{ return self.contrasenia def __repr__(self): - raise NotImplementedError, 'Clase abstracta!' + raise NotImplementedError, _('Clase abstracta!') def shortrepr(self): return '%s (%s)' % (self.usuario, self.nombre) @@ -186,22 +216,15 @@ class Docente(Usuario): #{{{ enunciados = MultipleJoin('Enunciado', joinColumn='autor_id') inscripciones = MultipleJoin('DocenteInscripto') - def __init__(self, usuario=None, nombre=None, password=None, email=None, - telefono=None, nombrado=True, activo=False, observaciones=None, - roles=[], **kargs): - passwd = password and encryptpw(password) - InheritableSQLObject.__init__(self, usuario=usuario, nombre=nombre, - contrasenia=passwd, email=email, telefono=telefono, - nombrado=nombrado, activo=activo, observaciones=observaciones, - **kargs) - for r in roles: - self.addRol(r) + def __init__(self, **kargs): + super(Docente, self).__init__(**kargs) - def add_entrega(self, instancia, *args, **kargs): - return Entrega(instancia, *args, **kargs) + def add_entrega(self, instancia, **kargs): + return Entrega(instancia=instancia, **kargs) - def add_enunciado(self, nombre, *args, **kargs): - return Enunciado(nombre, self, *args, **kargs) + def add_enunciado(self, nombre, anio, cuatrimestre, **kargs): + return Enunciado(nombre=nombre, anio=anio, cuatrimestre=cuatrimestre, + autor=self, **kargs) def __repr__(self): return 'Docente(id=%s, usuario=%s, nombre=%s, password=%s, email=%s, ' \ @@ -218,14 +241,9 @@ class Alumno(Usuario): #{{{ # Joins inscripciones = MultipleJoin('AlumnoInscripto') - def __init__(self, padron=None, nombre=None, password=None, email=None, - telefono=None, activo=False, observaciones=None, roles=[], **kargs): - passwd = password and encryptpw(password) - InheritableSQLObject.__init__(self, usuario=padron, nombre=nombre, - email=email, contrasenia=passwd, telefono=telefono, activo=activo, - observaciones=observaciones, **kargs) - for r in roles: - self.addRol(r) + def __init__(self, padron=None, **kargs): + if padron: kargs['usuario'] = padron + super(Alumno, self).__init__(**kargs) def _get_padron(self): # alias para poder referirse al alumno por padron return self.usuario @@ -240,16 +258,25 @@ class Alumno(Usuario): #{{{ self.telefono, self.activo, self.creado, self.observaciones) #}}} -class Tarea(InheritableSQLObject, ByObject): #{{{ +class Tarea(InheritableSQLObject): #{{{ + class sqlmeta: + createSQL = r''' +CREATE TABLE dependencia ( + padre_id INTEGER NOT NULL CONSTRAINT tarea_id_exists + REFERENCES tarea(id), + hijo_id INTEGER NOT NULL CONSTRAINT tarea_id_exists + REFERENCES tarea(id), + orden INT, + PRIMARY KEY (padre_id, hijo_id) +)''' # Clave nombre = UnicodeCol(length=30, alternateID=True) # Campos descripcion = UnicodeCol(length=255, default=None) # Joins - def __init__(self, nombre=None, descripcion=None, dependencias=(), **kargs): - InheritableSQLObject.__init__(self, nombre=nombre, - descripcion=descripcion, **kargs) + def __init__(self, dependencias=(), **kargs): + super(Tarea, self).__init__(**kargs) if dependencias: self.dependencias = dependencias @@ -296,26 +323,44 @@ class Tarea(InheritableSQLObject, ByObject): #{{{ return self.nombre #}}} -class Enunciado(SQLObject, ByObject): #{{{ +class Enunciado(SQLObject): #{{{ + class sqlmeta: + createSQL = r''' +CREATE TABLE enunciado_tarea ( + enunciado_id INTEGER NOT NULL CONSTRAINT enunciado_id_exists + REFERENCES enunciado(id), + tarea_id INTEGER NOT NULL CONSTRAINT tarea_id_exists + REFERENCES tarea(id), + orden INT, + PRIMARY KEY (enunciado_id, tarea_id) +)''' # Clave - nombre = UnicodeCol(length=60, alternateID=True) + nombre = UnicodeCol(length=60) + anio = IntCol(notNone=True) + cuatrimestre = IntCol(notNone=True) + pk = DatabaseIndex(nombre, anio, cuatrimestre, unique=True) # Campos autor = ForeignKey('Docente') descripcion = UnicodeCol(length=255, default=None) creado = DateTimeCol(notNone=True, default=DateTimeCol.now) + archivo = BLOBCol(default=None) + archivo_name = UnicodeCol(length=255, default=None) + archivo_type = UnicodeCol(length=255, default=None) # Joins ejercicios = MultipleJoin('Ejercicio') casos_de_prueba = MultipleJoin('CasoDePrueba') - def __init__(self, nombre=None, autor=None, descripcion=None, tareas=(), - **kargs): - SQLObject.__init__(self, nombre=nombre, autorID=autor and autor.id, - descripcion=descripcion, **kargs) + def __init__(self, tareas=(), **kargs): + super(Enunciado, self).__init__(**kargs) if tareas: self.tareas = tareas - def add_caso_de_prueba(self, nombre, *args, **kargs): - return CasoDePrueba(self, nombre, *args, **kargs) + @classmethod + def selectByCurso(self, curso): + return Enunciado.selectBy(cuatrimestre=curso.cuatrimestre, anio=curso.anio) + + def add_caso_de_prueba(self, nombre, **kargs): + return CasoDePrueba(enunciado=self, nombre=nombre, **kargs) def _get_tareas(self): self.__tareas = tuple(Tarea.select( @@ -368,30 +413,24 @@ class CasoDePrueba(SQLObject): #{{{ pk = DatabaseIndex(enunciado, nombre, unique=True) # Campos # privado = IntCol(default=None) TODO iria en instancia_de_entrega_caso_de_prueba - parametros = TupleCol(notNone=True, default=()) + parametros = ParamsCol(length=255, default=None) retorno = IntCol(default=None) tiempo_cpu = FloatCol(default=None) descripcion = UnicodeCol(length=255, default=None) # Joins pruebas = MultipleJoin('Prueba') - def __init__(self, enunciado=None, nombre=None, parametros=(), - retorno=None, tiempo_cpu=None, descripcion=None, **kargs): - SQLObject.__init__(self, enunciadoID=enunciado.id, nombre=nombre, - parametros=parametros, retorno=retorno, tiempo_cpu=tiempo_cpu, - descripcion=descripcion, **kargs) - def __repr__(self): return 'CasoDePrueba(enunciado=%s, nombre=%s, parametros=%s, ' \ 'retorno=%s, tiempo_cpu=%s, descripcion=%s)' \ - % (self.enunciado.shortrepr(), self.nombre, self.parametros, + % (srepr(self.enunciado), self.nombre, self.parametros, self.retorno, self.tiempo_cpu, self.descripcion) def shortrepr(self): return '%s:%s' % (self.enunciado.shortrepr(), self.nombre) #}}} -class Ejercicio(SQLObject, ByObject): #{{{ +class Ejercicio(SQLObject): #{{{ # Clave curso = ForeignKey('Curso', notNone=True) numero = IntCol(notNone=True) @@ -402,13 +441,9 @@ class Ejercicio(SQLObject, ByObject): #{{{ # Joins instancias = MultipleJoin('InstanciaDeEntrega') - def __init__(self, curso=None, numero=None, enunciado=None, grupal=False, - **kargs): - SQLObject.__init__(self, cursoID=curso.id, numero=numero, - enunciadoID=enunciado.id, grupal=grupal, **kargs) - - def add_instancia(self, numero, inicio, fin, *args, **kargs): - return InstanciaDeEntrega(self, numero, inicio, fin, *args, **kargs) + def add_instancia(self, numero, inicio, fin, **kargs): + return InstanciaDeEntrega(ejercicio=self, numero=numero, inicio=inicio, + fin=fin, **kargs) def __repr__(self): return 'Ejercicio(id=%s, curso=%s, numero=%s, enunciado=%s, ' \ @@ -418,11 +453,21 @@ class Ejercicio(SQLObject, ByObject): #{{{ def shortrepr(self): return '(%s, %s, %s)' \ - % (self.curso.shortrepr(), self.nombre, \ + % (self.curso.shortrepr(), str(self.numero), \ self.enunciado.shortrepr()) #}}} -class InstanciaDeEntrega(SQLObject, ByObject): #{{{ +class InstanciaDeEntrega(SQLObject): #{{{ + class sqlmeta: + createSQL = r''' +CREATE TABLE instancia_tarea ( + instancia_id INTEGER NOT NULL CONSTRAINT instancia_id_exists + REFERENCES instancia_de_entrega(id), + tarea_id INTEGER NOT NULL CONSTRAINT tarea_id_exists + REFERENCES tarea(id), + orden INT, + PRIMARY KEY (instancia_id, tarea_id) +)''' # Clave ejercicio = ForeignKey('Ejercicio', notNone=True) numero = IntCol(notNone=True) @@ -437,11 +482,8 @@ class InstanciaDeEntrega(SQLObject, ByObject): #{{{ correcciones = MultipleJoin('Correccion', joinColumn='instancia_id') casos_de_prueba = RelatedJoin('CasoDePrueba') # TODO CasoInstancia -> private - def __init__(self, ejercicio=None, numero=None, inicio=None, fin=None, - observaciones=None, activo=True, tareas=(), **kargs): - SQLObject.__init__(self, ejercicioID=ejercicio.id, numero=numero, - fin=fin, inicio=inicio, observaciones=observaciones, activo=activo, - **kargs) + def __init__(self, tareas=(), **kargs): + super(InstanciaDeEntrega, self).__init__(**kargs) if tareas: self.tareas = tareas @@ -489,7 +531,7 @@ class InstanciaDeEntrega(SQLObject, ByObject): #{{{ return self.numero #}}} -class DocenteInscripto(SQLObject, ByObject): #{{{ +class DocenteInscripto(SQLObject): #{{{ # Clave curso = ForeignKey('Curso', notNone=True) docente = ForeignKey('Docente', notNone=True) @@ -503,14 +545,9 @@ class DocenteInscripto(SQLObject, ByObject): #{{{ entregas = MultipleJoin('Entrega', joinColumn='instancia_id') correcciones = MultipleJoin('Correccion', joinColumn='corrector_id') - def __init__(self, curso=None, docente=None, corrige=True, - observaciones=None, **kargs): - SQLObject.__init__(self, cursoID=curso.id, docenteID=docente.id, - corrige=corrige, observaciones=observaciones, **kargs) - - def add_correccion(self, entrega, *args, **kargs): - return Correccion(entrega.instancia, entrega.entregador, entrega, - self, *args, **kargs) + def add_correccion(self, entrega, **kargs): + return Correccion(instancia=entrega.instancia, entrega=entrega, + entregador=entrega.entregador, corrector=self, **kargs) def __repr__(self): return 'DocenteInscripto(id=%s, docente=%s, corrige=%s, ' \ @@ -522,7 +559,7 @@ class DocenteInscripto(SQLObject, ByObject): #{{{ return self.docente.shortrepr() #}}} -class Entregador(InheritableSQLObject, ByObject): #{{{ +class Entregador(InheritableSQLObject): #{{{ # Campos nota = DecimalCol(size=3, precision=1, default=None) nota_cursada = DecimalCol(size=3, precision=1, default=None) @@ -532,8 +569,8 @@ class Entregador(InheritableSQLObject, ByObject): #{{{ entregas = MultipleJoin('Entrega') correcciones = MultipleJoin('Correccion') - def add_entrega(self, instancia, *args, **kargs): - return Entrega(instancia, self, *args, **kargs) + def add_entrega(self, instancia, **kargs): + return Entrega(instancia=instancia, entregador=self, **kargs) def __repr__(self): raise NotImplementedError, 'Clase abstracta!' @@ -550,16 +587,18 @@ class Grupo(Entregador): #{{{ miembros = MultipleJoin('Miembro') tutores = MultipleJoin('Tutor') - def __init__(self, curso=None, nombre=None, responsable=None, **kargs): - resp_id = responsable and responsable.id - InheritableSQLObject.__init__(self, cursoID=curso.id, nombre=nombre, - responsableID=resp_id, **kargs) + def __init__(self, miembros=[], tutores=[], **kargs): + super(Grupo, self).__init__(**kargs) + for a in miembros: + self.add_miembro(a) + for d in tutores: + self.add_tutor(d) - def add_alumno(self, alumno, *args, **kargs): - return Miembro(self, alumno, *args, **kargs) + def add_miembro(self, alumno, **kargs): + return Miembro(grupo=self, alumno=alumno, **kargs) - def add_docente(self, docente, *args, **kargs): - return Tutor(self, docente, *args, **kargs) + def add_tutor(self, docente, **kargs): + return Tutor(grupo=self, docente=docente, **kargs) def __repr__(self): return 'Grupo(id=%s, nombre=%s, responsable=%s, nota=%s, ' \ @@ -586,12 +625,6 @@ class AlumnoInscripto(Entregador): #{{{ entregas = MultipleJoin('Entrega', joinColumn='alumno_id') correcciones = MultipleJoin('Correccion', joinColumn='alumno_id') - def __init__(self, curso=None, alumno=None, condicional=False, tutor=None, - **kargs): - tutor_id = tutor and tutor.id - InheritableSQLObject.__init__(self, cursoID=curso.id, tutorID=tutor_id, - alumnoID=alumno.id, condicional=condicional, **kargs) - def __repr__(self): return 'AlumnoInscripto(id=%s, alumno=%s, condicional=%s, nota=%s, ' \ 'nota_cursada=%s, tutor=%s, observaciones=%s, activo=%s)' \ @@ -603,7 +636,7 @@ class AlumnoInscripto(Entregador): #{{{ return self.alumno.shortrepr() #}}} -class Tutor(SQLObject, ByObject): #{{{ +class Tutor(SQLObject): #{{{ # Clave grupo = ForeignKey('Grupo', notNone=True) docente = ForeignKey('DocenteInscripto', notNone=True) @@ -612,10 +645,6 @@ class Tutor(SQLObject, ByObject): #{{{ alta = DateTimeCol(notNone=True, default=DateTimeCol.now) baja = DateTimeCol(default=None) - def __init__(self, grupo=None, docente=None, **kargs): - SQLObject.__init__(self, grupoID=grupo.id, docenteID=docente.id, - **kargs) - def __repr__(self): return 'Tutor(docente=%s, grupo=%s, alta=%s, baja=%s)' \ % (self.docente.shortrepr(), self.grupo.shortrepr(), @@ -625,7 +654,7 @@ class Tutor(SQLObject, ByObject): #{{{ return '%s-%s' % (self.docente.shortrepr(), self.grupo.shortrepr()) #}}} -class Miembro(SQLObject, ByObject): #{{{ +class Miembro(SQLObject): #{{{ # Clave grupo = ForeignKey('Grupo', notNone=True) alumno = ForeignKey('AlumnoInscripto', notNone=True) @@ -635,9 +664,6 @@ class Miembro(SQLObject, ByObject): #{{{ alta = DateTimeCol(notNone=True, default=DateTimeCol.now) baja = DateTimeCol(default=None) - def __init__(self, grupo=None, alumno=None, **kargs): - SQLObject.__init__(self, grupoID=grupo.id, alumnoID=alumno.id, **kargs) - def __repr__(self): return 'Miembro(alumno=%s, grupo=%s, nota=%s, alta=%s, baja=%s)' \ % (self.alumno.shortrepr(), self.grupo.shortrepr(), @@ -647,7 +673,7 @@ class Miembro(SQLObject, ByObject): #{{{ return '%s-%s' % (self.alumno.shortrepr(), self.grupo.shortrepr()) #}}} -class Entrega(SQLObject, ByObject): #{{{ +class Entrega(SQLObject): #{{{ # Clave instancia = ForeignKey('InstanciaDeEntrega', notNone=True) entregador = ForeignKey('Entregador', default=None) # Si es None era un Docente @@ -662,14 +688,8 @@ class Entrega(SQLObject, ByObject): #{{{ codigo_dict = r'0123456789abcdefghijklmnopqrstuvwxyz_.,*@#+' codigo_format = r'%m%d%H%M%S' - def __init__(self, instancia=None, entregador=None, observaciones=None, - **kargs): - entregador_id = entregador and entregador.id - SQLObject.__init__(self, instanciaID=instancia.id, - entregadorID=entregador_id, observaciones=observaciones, **kargs) - - def add_tarea_ejecutada(self, tarea, *args, **kargs): - return TareaEjecutada(tarea, self, *args, **kargs) + def add_tarea_ejecutada(self, tarea, **kargs): + return TareaEjecutada(tarea=tarea, entrega=self, **kargs) def _get_codigo(self): if not hasattr(self, '_codigo'): # cache @@ -698,7 +718,7 @@ class Entrega(SQLObject, ByObject): #{{{ self.codigo) #}}} -class Correccion(SQLObject, ByObject): #{{{ +class Correccion(SQLObject): #{{{ # Clave instancia = ForeignKey('InstanciaDeEntrega', notNone=True) entregador = ForeignKey('Entregador', notNone=True) # Docente no tiene @@ -711,12 +731,6 @@ class Correccion(SQLObject, ByObject): #{{{ nota = DecimalCol(size=3, precision=1, default=None) observaciones = UnicodeCol(default=None) - def __init__(self, instancia=None, entregador=None, entrega=None, - corrector=None, observaciones=None, **kargs): - SQLObject.__init__(self, instanciaID=instancia.id, entregaID=entrega.id, - entregadorID=entregador.id, correctorID=corrector.id, - observaciones=observaciones, **kargs) - def __repr__(self): return 'Correccion(instancia=%s, entregador=%s, entrega=%s, ' \ 'corrector=%s, asignado=%s, corregido=%s, nota=%s, ' \ @@ -729,7 +743,7 @@ class Correccion(SQLObject, ByObject): #{{{ return '%s,%s' % (self.entrega.shortrepr(), self.corrector.shortrepr()) #}}} -class TareaEjecutada(InheritableSQLObject, ByObject): #{{{ +class TareaEjecutada(InheritableSQLObject): #{{{ # Clave tarea = ForeignKey('Tarea', notNone=True) entrega = ForeignKey('Entrega', notNone=True) @@ -742,12 +756,9 @@ class TareaEjecutada(InheritableSQLObject, ByObject): #{{{ # Joins pruebas = MultipleJoin('Prueba') - def __init__(self, tarea=None, entrega=None, observaciones=None, **kargs): - InheritableSQLObject.__init__(self, tareaID=tarea.id, - entregaID=entrega.id, observaciones=observaciones, **kargs) - - def add_prueba(self, caso_de_prueba, *args, **kargs): - return Prueba(self, caso_de_prueba, *args, **kargs) + def add_prueba(self, caso_de_prueba, **kargs): + return Prueba(tarea_ejecutada=self, caso_de_prueba=caso_de_prueba, + **kargs) def __repr__(self): return 'TareaEjecutada(tarea=%s, entrega=%s, inicio=%s, fin=%s, ' \ @@ -770,12 +781,6 @@ class Prueba(SQLObject): #{{{ pasada = IntCol(default=None) observaciones = UnicodeCol(default=None) - def __init__(self, tarea_ejecutada=None, caso_de_prueba=None, - observaciones=None, **kargs): - SQLObject.__init__(self, tarea_ejecutadaID=tarea_ejecutada.id, - caso_de_pruebaID=caso_de_prueba.id, observaciones=observaciones, - **kargs) - def __repr__(self): return 'Prueba(tarea_ejecutada=%s, caso_de_prueba=%s, inicio=%s, ' \ 'fin=%s, pasada=%s, observaciones=%s)' \ @@ -822,16 +827,15 @@ class Rol(SQLObject): #{{{ permisos = TupleCol(notNone=True) # Joins usuarios = RelatedJoin('Usuario') - - def __init__(self, nombre=None, permisos=(), descripcion=None, **kargs): - SQLObject.__init__(self, nombre=nombre, permisos=permisos, - descripcion=descripcion, **kargs) #}}} # No es un SQLObject porque no tiene sentido agregar/sacar permisos, están # hardcodeados en el código class Permiso(object): #{{{ + max_valor = 1 def __init__(self, nombre, descripcion): + self.valor = Permiso.max_valor + Permiso.max_valor <<= 1 self.nombre = nombre self.descripcion = descripcion @@ -843,6 +847,12 @@ class Permiso(object): #{{{ def permission_name(self): # para identity return self.nombre + def __and__(self, other): + return self.valor & other.valor + + def __or__(self, other): + return self.valor | other.valor + def __repr__(self): return self.nombre #}}}