1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
5 -------------------------------------------------------------------------------
6 This file is part of YATTA!.
8 YATTA! is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
13 YATTA! is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA 02111-1307 USA
20 -------------------------------------------------------------------------------
21 Creado: lun dic 1 16:59:29 ART 2003
22 Autor: Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
27 require_once 'MECON/DBO.php';
28 require_once 'PEAR.php';
29 require_once 'Date.php';
32 * Clase para el manejo de los procesos.
36 class YATTA_ProcesoDB extends MECON_DBO {
39 * Identificador del proceso.
47 * Fecha cuando se agrego el proceso.
48 * Formato = DD/MM/YYYY
49 * Puede ser un objeto Date.
65 * Identificador del sistema en el cual se lanzo el proceso.
67 * @var int $id_sistema
70 var $id_sistema = null;
73 * Nombre del sistema en el cual se lanzo el proceso.
75 * @var string $nombre_sistema
78 var $nombre_sistema = null;
81 * Descripcion del proceso.
83 * @var string $descripcion
86 var $descripcion = null;
89 * PID del proceso en el servidor de proceso.
97 * Servidor en donde se ejecuto/a/ara el proceso.
105 * Estado del proceso.
119 * Identificador del usuario responsable por el proceso.
127 * Destinos para el resultado.
128 * array ('mmarre@mecon', 'gmeray@mecon')
130 * @var array $destinos
133 var $destinos = null;
136 * Prioridad el proceso.
138 * @var int $prioridad
141 var $prioridad = null;
144 * Fecha de ejecucion fijada.
146 * @var string $scheduling
149 var $scheduling = null;
152 * Indica si se debe notificar o no al owner sobre el resultado.
154 * @var int $notificar
157 var $notificar = null;
160 * Nombre del archivo resultado
162 * @var string $resultado
165 var $resultado = null;
168 * Nombre del archivo en el tacho
170 * @var string $archivo
176 * Nota explicativa sobre el error producido o el motivo por el cual se
185 * Descripcion del estado.
193 * Indica si el proceso esta activo (No fue borrado por el usuario).
201 * Carga el objeto con los datos que se pasan por parametro.
203 * @param DB $db DB o DB_Result a usar para la carga.
208 function cargar($db = null)
210 // Si es un resultado, obtengo los elemento.
211 if (is_a($db, 'db_result')) {
212 $this->predefinirAtributos();
213 $res = $db->fetchRow(DB_FETCHMODE_ASSOC);
214 // Si hay error lo devuelve.
215 if (DB::isError($res)) {
221 $this->id = $res['id'];
222 $this->fecha = $res['fecha'];
223 $this->script = $res['script'];
224 $this->id_sistema = $res['id_sistema'];
225 $this->nombre_sistema = $res['nombre_sistema'];
226 $this->descripcion = $res['descripcion'];
227 $this->pid = $res['pid'];
228 $this->server = $res['server'];
229 $this->status = $res['status'];
230 $this->owner = $res['owner'];
231 $this->destinos = split(',', $res['destinos']);
232 $this->prioridad = $res['prioridad'];
233 $this->scheduling = $res['scheduling'];
234 $this->notificar = $res['notificar'];
235 $this->resultado = $res['resultado'];
236 $this->archivo = $res['archivo'];
237 $this->nota = $res['nota'];
238 $this->icono = $res['icono'];
239 $this->activo = $res['activo'];
246 * Borra el objeto de una base de datos.
248 * @param DB $db Base de datos de donde borrar el objeto.
253 function borrar($db = null)
255 if (!is_null($this->id)) {
256 $res = $this->buscar($db);
257 if (DB::isError($res)) {
262 if (is_null($this->archivo) || is_null($this->resultado)) {
263 return $db->query('DELETE FROM yatta.procesos WHERE id = '.
267 return $db->query ('UPDATE yatta.procesos SET activo = 0'.
268 ' WHERE id = '. $this->id);
272 return new PEAR_Error('Debe definirse el id del proceso a borrar.');
277 * Busca los datos en la base.
279 * @param DB $db Conexion a la base de datos.
280 * @param string $operador Indica como deben concatenarse las condiciones de busqueda
281 * @param string $orden Indica de que manera deben ordenarse los resultados de la busqueda
286 function buscar($db = null, $operador = MECON_DBO_OR, $orden = null)
289 if (is_null($this->owner)) {
290 return new PEAR_Error ('Debe definirse el Owner del proceso.');
293 if (!is_null($this->id)) {
294 $where[] = 'p.id = '.$this->id;
296 if (!is_null($this->fecha)) {
297 if (is_object($this->fecha) ) {
298 $fecha = $this->fecha->format("%Y-%m-%d");
301 list ($dia, $mes, $anio) = split ('[/.-]', $this->fecha);
302 $fecha = $anio.'-'.$mes.'-'.$dia;
304 $where[] = 'p.fecha = '. $db->quote("$fecha");
306 if (!is_null($this->script)) {
307 $where[] = 'p.script LIKE '. $db->quote("%$this->script%");
309 if (!is_null($this->id_sistema)) {
310 $where[] = 'p.id_sistema = '. $this->id_sistema;
312 if (!is_null($this->nombre_sistema)) {
313 $where[] = 's.nombre_sistema LIKE '. $db->quote("%$this->nombre_sistema%");
315 if (!is_null($this->descripcion)) {
316 $where[] = 'p.descripcion LIKE '. $db->quote("%$this->descripcion%");
318 if (!is_null($this->pid)) {
319 $where[] = 'p.pid = '.$this->pid;
321 if (!is_null($this->server)) {
322 $where[] = 'p.server = '.$this->server;
324 if (!is_null($this->status)) {
325 $where[] = 'p.status = '.$this->status;
327 if (!is_null($this->destinos)) {
328 if (is_array($this->destinos)) {
329 foreach ($this->destinos as $destino) {
330 $where[] = 'p.destinos LIKE '. $db->quote("%$destino");
334 $where[] = 'p.destinos LIKE '. $db->quote("%$this->destinos%");
337 if (!is_null($this->prioridad)) {
338 $where[] = 'p.prioridad = '.$this->prioridad;
340 if (!is_null($this->scheduling)) {
341 $where[] = 'p.scheduling LIKE '. $db->quote("%$this->scheduling%");
343 if (!is_null($this->notificar)) {
344 $where[] = 'p.notificar ='. $this->notificar;
346 if (!is_null($this->resultado)) {
347 $where[] = 'p.resultado LIKE '. $db->quote("%$this->resultado%");
349 if (!is_null($this->nota)) {
350 $where[] = 'p.nota LIKE '. $db->quote("%$this->nota%");
352 if (!is_null($this->activo)) {
353 $where[] = 'p.activo = '. $this->activo;
356 $where = 'WHERE p.owner = '. $db->quote("$this->owner").
357 'AND p.id_sistema = s.id_sistema AND ('. join ("$operador
361 $where = 'WHERE p.owner = '. $db->quote("$this->owner").
362 'AND p.id_sistema = s.id_sistema';
365 if (is_string($orden))
367 $orden = array($orden);
371 $orden = 'ORDER BY '.join(',',$orden);
377 return $db->query("SELECT p.id AS id,
378 DATE_FORMAT(p.fecha, '%d-%m-%Y') AS fecha,
380 script, p.id_sistema AS id_sistema, s.nombre_sistema AS
381 nombre_sistema, p.descripcion AS descripcion, p.pid AS pid,
382 p.server AS server, p.status AS status, p.owner AS owner,
383 p.destinos AS destinos, p.prioridad AS prioridad, p.scheduling
384 AS scheduling, p.notificar AS notificar, p.resultado AS
385 resultado, p.nota AS nota, p.archivo AS archivo, ".
386 "IF (p.status = 0, 'El proceso esta en cola. Aun no se ejecuto.".
388 "IF(p.status = 1, 'El proceso se esta ejecutando en este momento.".
390 "IF(p.status = 2, 'El proceso ha finalizado. ".
392 "IF(p.status = 3, 'Se produjo un error durante la ejecucion".
395 "'El proceso fue detenido por alguna persona (el responsable o".
396 " el administrador).".
401 ") AS icono, p.activo AS activo
402 FROM yatta.procesos AS p, samurai.sistema AS s
408 * Guarda los datos en la base.
410 * @param DB $db Conexion a la base de datos.
411 * @param bool $nuevo Indica si se trata de un nuevo registro en la base.
416 function guardar($db = null, $nuevo = true)
418 return $db->query ('UPDATE yatta.procesos SET nota = \''.$this->nota.
419 '\', status = '.$this->status.
420 ' WHERE id = '. $this->id);
424 * Hace un reset de los atributos.
429 function predefinirAtributos() {
432 $this->script = null;
433 $this->id_sistema = null;
434 $this->nombre_sistema = null;
435 $this->descripcion = null;
437 $this->server = null;
438 $this->status = null;
440 $this->destinos = null;
441 $this->prioridad = null;
442 $this->scheduling = null;
443 $this->notificar = null;
444 $this->resultado = null;
445 $this->archivo = null;
448 $this->activo = null;
452 * Devuelve un array asociativo con los valores del proceso.
457 function obtenerDatos() {
459 'script' => $this->script,
460 'id_sistema' => $this->id_sistema,
461 'descripcion' => $this->descripcion,
462 'owner' => $this->owner,
463 'destinos' => $this->destinos,
464 'prioridad' => $this->prioridad,
465 'scheduling' => $this->scheduling,
466 'notificar' => $this->notificar,
467 'resultado' => $this->resultado,
468 'activo' => $this->activo,