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
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):
+ 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):
+ 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))
def shortrepr(self):
return '%s.%s.%s' \
- % (self.anio, self.cuatrimestre, self.numero, self.descripcion)
+ % (self.anio, self.cuatrimestre, str(self.numero))
#}}}
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)
autor = ForeignKey('Docente')
descripcion = UnicodeCol(length=255, default=None)
creado = DateTimeCol(notNone=True, default=DateTimeCol.now)
+ archivo = BLOBCol(default=None)
+ archivo_name = StringCol(default=None)
+ archivo_type = StringCol(default=None)
# Joins
ejercicios = MultipleJoin('Ejercicio')
casos_de_prueba = MultipleJoin('CasoDePrueba')
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)
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=(),
+ def __init__(self, enunciado=None, nombre=None, parametros=None,
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)
+ SQLObject.__init__(self, enunciadoID=enunciado and 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):
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)
+ if curso and enunciado:
+ 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 shortrepr(self):
return '(%s, %s, %s)' \
- % (self.curso.shortrepr(), self.nombre, \
+ % (self.curso.shortrepr(), str(self.numero), \
self.enunciado.shortrepr())
#}}}
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)
+ if ejercicio:
+ SQLObject.__init__(self, ejercicioID=ejercicio.id, numero=numero,
+ fin=fin, inicio=inicio, observaciones=observaciones, activo=activo,
+ **kargs)
if tareas:
self.tareas = tareas