]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/model.py
Ejecutar comandos con shell y almacenarlos como strings.
[software/sercom.git] / sercom / model.py
index 688fbb0ca400a254ca144dc23f1f7615c8539b91..42385e7e2226e454af1cc87a481c070aef108bd3 100644 (file)
@@ -8,7 +8,6 @@ from sqlobject.inheritance import InheritableSQLObject
 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")
@@ -41,50 +40,11 @@ class TupleValidator(PickleValidator):
 
 class SOTupleCol(SOPickleCol):
     def createValidators(self):
-        return [TupleValidator(name=self.name)] \
-            + super(SOPickleCol, self).createValidators()
+        return [TupleValidator(name=self.name)]
 
 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
-
 #}}}
 
 #{{{ Clases
@@ -351,8 +311,8 @@ class TareaPrueba(Tarea): #{{{
     # Joins
     comandos    = MultipleJoin('ComandoPrueba', joinColumn='tarea_id')
 
-    def add_comando(self, orden, comando, **kw):
-        return ComandoPrueba(tarea=self, orden=orden, comando=comando, **kw)
+    def add_comando(self, orden, **kw):
+        return ComandoPrueba(tarea=self, orden=orden, comando='', **kw)
 
     def remove_comando(self, orden):
         ComandoPrueba.pk.get(self.id, orden).destroySelf()
@@ -363,22 +323,40 @@ class TareaPrueba(Tarea): #{{{
 #}}}
 
 class Comando(InheritableSQLObject): #{{{
+    RET_ANY = None
+    RET_FAIL = -1
     # Campos
-    comando             = ParamsCol(length=255, notNone=True)
+    comando             = UnicodeCol(length=255, notNone=True)
     descripcion         = UnicodeCol(length=255, default=None)
-    retorno             = IntCol(default=None)
+    retorno             = IntCol(default=None) # None es que no importa
+    max_tiempo_cpu      = IntCol(default=None) # En segundos
+    max_memoria         = IntCol(default=None) # En MB
+    max_tam_archivo     = IntCol(default=None) # En MB
+    max_cant_archivos   = IntCol(default=None)
+    max_cant_procesos   = IntCol(default=None)
+    max_locks_memoria   = IntCol(default=None)
     terminar_si_falla   = BoolCol(notNone=True, default=True)
     rechazar_si_falla   = BoolCol(notNone=True, default=True)
     archivos_entrada    = BLOBCol(default=None) # ZIP con archivos de entrada
                                                 # stdin es caso especial
     archivos_salida     = BLOBCol(default=None) # ZIP con archivos de salida
                                                 # stdout y stderr son especiales
+    activo              = BoolCol(notNone=True, default=True)
 
-    def __repr__(self):
-        raise NotImplementedError('Comando es una clase abstracta')
+    def __repr__(self, clave='', mas=''):
+        return ('%s(%s comando=%s, descripcion=%s, retorno=%s, '
+            'max_tiempo_cpu=%s, max_memoria=%s, max_tam_archivo=%s, '
+            'max_cant_archivos=%s, max_cant_procesos=%s, max_locks_memoria=%s, '
+            'terminar_si_falla=%s, rechazar_si_falla=%s%s)'
+                % (self.__class__.__name__, clave, self.comando,
+                    self.descripcion, self.retorno, self.max_tiempo_cpu,
+                    self.max_memoria, self.max_tam_archivo,
+                    self.max_cant_archivos, self.max_cant_procesos,
+                    self.max_locks_memoria, self.terminar_si_falla,
+                    self.rechazar_si_falla))
 
     def shortrepr(self):
-        return self.nombre
+        return '%s (%s)' % (self.comando, self.descripcion)
 #}}}
 
 class ComandoFuente(Comando): #{{{
@@ -386,37 +364,30 @@ class ComandoFuente(Comando): #{{{
     tarea       = ForeignKey('TareaFuente', notNone=True, cascade=True)
     orden       = IntCol(notNone=True)
     pk          = DatabaseIndex(tarea, orden, unique=True)
-    # Campos
-    tiempo_cpu  = FloatCol(default=None)
-
-    def ejecutar(self): pass # TODO
 
     def __repr__(self):
-        return 'ComandoFuente(tarea=%s, orden=%s, comando=%s, descripcion=%s, ' \
-            'retorno=%s, tiempo_cpu=%s, terminar_si_falla=%s, ' \
-            'rechazar_si_falla=%s)' \
-                % (srepr(self.tarea), self.orden, self.comando, self.descripcion,
-                    self.retorno, self.tiempo_cpu, self.terminar_si_falla,
-                    self.rechazar_si_falla)
+        return super(ComandoFuente, self).__repr__('tarea=%s, orden=%s'
+            % (self.tarea.shortrepr(), self.orden))
+
+    def shortrepr(self):
+        return '%s:%s (%s)' % (self.tarea.shortrepr(), self.orden, self.comando)
 #}}}
 
 class ComandoPrueba(Comando): #{{{
+    RET_PRUEBA = -2 # Espera el mismo retorno que el de la prueba.
+    # XXX todos los campos de limitación en este caso son multiplicadores para
+    # los valores del caso de prueba.
     # Clave
     tarea               = ForeignKey('TareaPrueba', notNone=True, cascade=True)
     orden               = IntCol(notNone=True)
     pk                  = DatabaseIndex(tarea, orden, unique=True)
-    # Campos
-    multipl_tiempo_cpu  = FloatCol(notNone=True, default=1.0)
-
-    def ejecutar(self): pass # TODO
 
     def __repr__(self):
-        return 'ComandoPrueba(tarea=%s, orden=%s, comando=%s, descripcion=%s, ' \
-            'retorno=%s, tiempo_cpu=%s, terminar_si_falla=%s, ' \
-            'rechazar_si_falla=%s)' \
-                % (srepr(self.tarea), self.orden, self.comando, self.descripcion,
-                    self.retorno, self.tiempo_cpu, self.terminar_si_falla,
-                    self.rechazar_si_falla)
+        return super(ComandoFuente, self).__repr__('tarea=%s, orden=%s'
+            % (self.tarea.shortrepr(), self.orden))
+
+    def shortrepr(self):
+        return '%s:%s (%s)' % (self.tarea.shortrepr(), self.orden, self.comando)
 #}}}
 
 class Enunciado(SQLObject): #{{{
@@ -467,31 +438,17 @@ class Enunciado(SQLObject): #{{{
         return self.nombre
 #}}}
 
-class CasoDePrueba(SQLObject): #{{{
+class CasoDePrueba(Comando): #{{{
     # Clave
     enunciado           = ForeignKey('Enunciado', cascade=True)
     nombre              = UnicodeCol(length=40, notNone=True)
     pk                  = DatabaseIndex(enunciado, nombre, unique=True)
-    # Campos
-    descripcion         = UnicodeCol(length=255, default=None)
-    terminar_si_falla   = BoolCol(notNone=True, default=False)
-    rechazar_si_falla   = BoolCol(notNone=True, default=True)
-    parametros          = ParamsCol(length=255, default=None)
-    retorno             = IntCol(default=None)
-    tiempo_cpu          = FloatCol(default=None)
-    archivos_entrada    = BLOBCol(default=None) # ZIP con archivos de entrada
-                                                # stdin es caso especial
-    archivos_salida     = BLOBCol(default=None) # ZIP con archivos de salida
-                                                # stdout y stderr son especiales
-    activo              = BoolCol(notNone=True, default=True)
     # Joins
     pruebas             = MultipleJoin('Prueba')
 
     def __repr__(self):
-        return 'CasoDePrueba(enunciado=%s, nombre=%s, parametros=%s, ' \
-            'retorno=%s, tiempo_cpu=%s, descripcion=%s)' \
-                % (srepr(self.enunciado), self.nombre, self.parametros,
-                    self.retorno, self.tiempo_cpu, self.descripcion)
+        return super(ComandoFuente, self).__repr__('enunciado=%s, nombre=%s'
+            % (srepr(self.enunciado), self.nombre))
 
     def shortrepr(self):
         return '%s:%s' % (self.enunciado.shortrepr(), self.nombre)
@@ -747,6 +704,7 @@ class Entrega(SQLObject): #{{{
     pk                  = DatabaseIndex(instancia, entregador, fecha, unique=True)
     # Campos
     archivos            = BLOBCol(notNone=True) # ZIP con fuentes de la entrega
+    archivos_nombre     = UnicodeCol(length=255)
     correcta            = BoolCol(default=None) # None es que no se sabe qué pasó
     inicio_tareas       = DateTimeCol(default=None) # Si es None no se procesó
     fin_tareas          = DateTimeCol(default=None) # Si es None pero inicio no, se está procesando
@@ -855,8 +813,8 @@ class ComandoPruebaEjecutado(ComandoEjecutado): #{{{
                     self.inicio, self.fin, self.exito, self.observaciones)
 
     def shortrepr(self):
-        return '%s:%s:%s' % (self.tarea.shortrepr(), self.entrega.shortrerp(),
-            self.caso_de_prueba.shortrerp())
+        return '%s:%s:%s' % (self.tarea.shortrepr(), self.entrega.shortrepr(),
+            self.caso_de_prueba.shortrepr())
 #}}}
 
 class Prueba(SQLObject): #{{{
@@ -891,7 +849,7 @@ class Prueba(SQLObject): #{{{
 
     def shortrepr(self):
         return '%s:%s' % (self.entrega.shortrepr(),
-            self.caso_de_prueba.shortrerp())
+            self.caso_de_prueba.shortrepr())
 #}}}
 
 #{{{ Específico de Identity