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_Proceso 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.
108 * 2 = Finalizado sin copiar el resultado al tacho
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 * Nota explicativa sobre el error producido o el motivo por el cual se
177 * Descripcion del estado.
185 * Carga el objeto con los datos que se pasan por parametro.
187 * @param DB $db DB o DB_Result a usar para la carga.
192 function cargar($db = null)
194 // Si es un resultado, obtengo los elemento.
195 if (is_a($db, 'db_result')) {
196 $this->predefinirAtributos();
197 $res = $db->fetchRow(DB_FETCHMODE_ASSOC);
198 // Si hay error lo devuelve.
199 if (DB::isError($res)) {
206 $this->id = $res['id'];
207 $fecha =& new Date ($res['fecha'].' 00:00:00');
208 $this->fecha = $fecha;
209 $this->script = $res['script'];
210 $this->id_sistema = $res['id_sistema'];
211 $this->nombre_sistema = $res['nombre_sistema'];
212 $this->descripcion = $res['descripcion'];
213 $this->pid = $res['pid'];
214 $this->server = $res['server'];
215 $this->status = $res['status'];
216 $this->owner = $res['owner'];
217 $this->destinos = split(',', $res['destinos']);
218 $this->prioridad = $res['prioridad'];
219 $this->scheduling = $res['scheduling'];
220 $this->notificar = $res['notificar'];
221 $this->resultado = $res['resultado'];
222 $this->nota = $res['nota'];
223 $this->icono = $res['icono'];
230 * Borra el objeto de una base de datos.
232 * @param DB $db Base de datos de donde borrar el objeto.
237 function borrar($db = null)
239 trigger_error('Not implemented!', E_USER_WARNING);
243 * Busca los datos en la base.
245 * @param DB $db Conexion a la base de datos.
246 * @param string $operador Indica como deben concatenarse las condiciones de busqueda
247 * @param string $orden Indica de que manera deben ordenarse los resultados de la busqueda
252 function buscar($db = null, $operador = MECON_DBO_OR, $orden = null)
255 if (is_null($this->owner)) {
256 return new PEAR_Error ('Debe definirse el Owner del proceso.');
259 if (!is_null($this->id)) {
260 $where[] = 'p.id = '.$this->id;
262 if (!is_null($this->fecha)) {
263 if (is_object($this->fecha) ) {
264 $fecha = $this->fecha->format("%Y-%m-%d");
267 list ($dia, $mes, $anio) = split ('[/.-]', $this->fecha);
268 $fecha = $anio.'-'.$mes.'-'.$dia;
270 $where[] = 'p.fecha = '. $db->quote("$fecha");
272 if (!is_null($this->script)) {
273 $where[] = 'p.script LIKE '. $db->quote("%$this->script%");
275 if (!is_null($this->id_sistema)) {
276 $where[] = 'p.id_sistema = '. $this->id_sistema;
278 if (!is_null($this->nombre_sistema)) {
279 $where[] = 's.nombre_sistema LIKE '. $db->quote("%$this->nombre_sistema%");
281 if (!is_null($this->descripcion)) {
282 $where[] = 'p.descripcion LIKE '. $db->quote("%$this->descripcion%");
284 if (!is_null($this->pid)) {
285 $where[] = 'p.pid = '.$this->pid;
287 if (!is_null($this->server)) {
288 $where[] = 'p.server = '.$this->server;
290 if (!is_null($this->status)) {
291 $where[] = 'p.status = '.$this->status;
293 if (!is_null($this->destinos)) {
294 if (is_array($this->destinos)) {
295 foreach ($this->destinos as $destino) {
296 $where[] = 'p.destinos LIKE '. $db->quote("%$destino");
300 $where[] = 'p.destinos LIKE '. $db->quote("%$this->destinos%");
303 if (!is_null($this->prioridad)) {
304 $where[] = 'p.prioridad = '.$this->prioridad;
306 if (!is_null($this->scheduling)) {
307 $where[] = 'p.scheduling LIKE '. $db->quote("%$this->scheduling%");
309 if (!is_null($this->notificar)) {
310 $where[] = 'p.notificar ='. $this->notificar;
312 if (!is_null($this->resultado)) {
313 $where[] = 'p.resultado LIKE '. $db->quote("%$this->resultado%");
315 if (!is_null($this->nota)) {
316 $where[] = 'p.nota LIKE '. $db->quote("%$this->nota%");
319 $where = 'WHERE p.owner = '. $db->quote("$this->owner").
320 'AND p.id_sistema = s.id_sistema AND ('. join ("$operador
324 $where = 'WHERE p.owner = '. $db->quote("$this->owner").
325 'AND p.id_sistema = s.id_sistema';
328 if (is_string($orden))
330 $orden = array($orden);
334 $orden = 'ORDER BY '.join(',',$orden);
340 return $db->query("SELECT p.id AS id, p.fecha AS fecha, p.script AS
341 script, p.id_sistema AS id_sistema, s.nombre_sistema AS
342 nombre_sistema, p.descripcion AS descripcion, p.pid AS pid,
343 p.server AS server, p.status AS status, p.owner AS owner,
344 p.destinos AS destinos, p.prioridad AS prioridad, p.scheduling
345 AS scheduling, p.notificar AS notificar, p.resultado AS
346 resultado, p.nota AS nota,".
347 "IF (p.status = 0, 'El proceso esta en cola. Aun no se ejecuto.".
349 "IF(p.status = 1, 'El proceso se esta ejecutando en este momento.".
351 "IF(p.status = 2, 'El proceso ha finalizado. ".
353 "IF(p.status = 3, 'Se produjo un error durante la ejecucion".
356 "'El proceso fue detenido por alguna persona (el responsable o".
357 " el administrador).".
363 FROM yatta.procesos AS p, samurai.sistema AS s
369 * @param DB $db Conexion a la base de datos.
370 * @param bool $nuevo Indica si se trata de un nuevo registro en la base.
375 function guardar($db = null, $nuevo = false)
379 'fecha' => $this->fecha,
380 'script' => $this->script,
381 'id_sistema' => $this->id_sistema,
382 'descripcion' => $this->descripcion,
384 'server' => $this->server,
385 'status' => $this->status,
386 'owner' => $this->owner,
387 'destinos' => $this->destinos,
388 'prioridad' => $this->prioridad,
389 'scheduling' => $this->scheduling,
390 'notificar' => $this->notificar,
391 'resultado' => $this->resultado,
392 'nota' => $this->nota
395 $res = $db->autoExecute('yatta.procesos', $datos,
396 DB_AUTOQUERY_INSERT);
400 'fecha' => $this->fecha,
401 'script' => $this->script,
402 'id_sistema' => $this->id_sistema,
403 'descripcion' => $this->descripcion,
405 'server' => $this->server,
406 'status' => $this->status,
407 'owner' => $this->owner,
408 'destinos' => $this->destinos,
409 'prioridad' => $this->prioridad,
410 'scheduling' => $this->scheduling,
411 'notificar' => $this->notificar,
412 'resultado' => $this->resultado,
413 'nota' => $this->nota
416 $res = $db->autoExecute('yatta.procesos', $datos,
417 DB_AUTOQUERY_UPDATE, '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;