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.
118 * Identificador del usuario responsable por el proceso.
126 * Destinos para el resultado.
127 * array ('mmarre@mecon', 'gmeray@mecon')
129 * @var array $destinos
132 var $destinos = null;
135 * Prioridad el proceso.
137 * @var int $prioridad
140 var $prioridad = null;
143 * Fecha de ejecucion fijada.
145 * @var string $scheduling
148 var $scheduling = null;
151 * Indica si se debe notificar o no al owner sobre el resultado.
153 * @var int $notificar
156 var $notificar = null;
159 * Nombre del archivo resultado
161 * @var string $resultado
164 var $resultado = null;
167 * Nombre del archivo en el tacho
169 * @var string $archivo
175 * Nota explicativa sobre el error producido o el motivo por el cual se
184 * Descripcion del estado.
192 * Carga el objeto con los datos que se pasan por parametro.
194 * @param DB $db DB o DB_Result a usar para la carga.
199 function cargar($db = null)
201 // Si es un resultado, obtengo los elemento.
202 if (is_a($db, 'db_result')) {
203 $this->predefinirAtributos();
204 $res = $db->fetchRow(DB_FETCHMODE_ASSOC);
205 // Si hay error lo devuelve.
206 if (DB::isError($res)) {
213 $this->id = $res['id'];
214 $fecha =& new Date ($res['fecha'].' 00:00:00');
215 $this->fecha = $fecha;
216 $this->script = $res['script'];
217 $this->id_sistema = $res['id_sistema'];
218 $this->nombre_sistema = $res['nombre_sistema'];
219 $this->descripcion = $res['descripcion'];
220 $this->pid = $res['pid'];
221 $this->server = $res['server'];
222 $this->status = $res['status'];
223 $this->owner = $res['owner'];
224 $this->destinos = split(',', $res['destinos']);
225 $this->prioridad = $res['prioridad'];
226 $this->scheduling = $res['scheduling'];
227 $this->notificar = $res['notificar'];
228 $this->resultado = $res['resultado'];
229 $this->archivo = $res['archivo'];
230 $this->nota = $res['nota'];
231 $this->icono = $res['icono'];
238 * Borra el objeto de una base de datos.
240 * @param DB $db Base de datos de donde borrar el objeto.
245 function borrar($db = null)
247 trigger_error('Not implemented!', E_USER_WARNING);
251 * Busca los datos en la base.
253 * @param DB $db Conexion a la base de datos.
254 * @param string $operador Indica como deben concatenarse las condiciones de busqueda
255 * @param string $orden Indica de que manera deben ordenarse los resultados de la busqueda
260 function buscar($db = null, $operador = MECON_DBO_OR, $orden = null)
263 if (is_null($this->owner)) {
264 return new PEAR_Error ('Debe definirse el Owner del proceso.');
267 if (!is_null($this->id)) {
268 $where[] = 'p.id = '.$this->id;
270 if (!is_null($this->fecha)) {
271 if (is_object($this->fecha) ) {
272 $fecha = $this->fecha->format("%Y-%m-%d");
275 list ($dia, $mes, $anio) = split ('[/.-]', $this->fecha);
276 $fecha = $anio.'-'.$mes.'-'.$dia;
278 $where[] = 'p.fecha = '. $db->quote("$fecha");
280 if (!is_null($this->script)) {
281 $where[] = 'p.script LIKE '. $db->quote("%$this->script%");
283 if (!is_null($this->id_sistema)) {
284 $where[] = 'p.id_sistema = '. $this->id_sistema;
286 if (!is_null($this->nombre_sistema)) {
287 $where[] = 's.nombre_sistema LIKE '. $db->quote("%$this->nombre_sistema%");
289 if (!is_null($this->descripcion)) {
290 $where[] = 'p.descripcion LIKE '. $db->quote("%$this->descripcion%");
292 if (!is_null($this->pid)) {
293 $where[] = 'p.pid = '.$this->pid;
295 if (!is_null($this->server)) {
296 $where[] = 'p.server = '.$this->server;
298 if (!is_null($this->status)) {
299 $where[] = 'p.status = '.$this->status;
301 if (!is_null($this->destinos)) {
302 if (is_array($this->destinos)) {
303 foreach ($this->destinos as $destino) {
304 $where[] = 'p.destinos LIKE '. $db->quote("%$destino");
308 $where[] = 'p.destinos LIKE '. $db->quote("%$this->destinos%");
311 if (!is_null($this->prioridad)) {
312 $where[] = 'p.prioridad = '.$this->prioridad;
314 if (!is_null($this->scheduling)) {
315 $where[] = 'p.scheduling LIKE '. $db->quote("%$this->scheduling%");
317 if (!is_null($this->notificar)) {
318 $where[] = 'p.notificar ='. $this->notificar;
320 if (!is_null($this->resultado)) {
321 $where[] = 'p.resultado LIKE '. $db->quote("%$this->resultado%");
323 if (!is_null($this->nota)) {
324 $where[] = 'p.nota LIKE '. $db->quote("%$this->nota%");
327 $where = 'WHERE p.owner = '. $db->quote("$this->owner").
328 'AND p.id_sistema = s.id_sistema AND ('. join ("$operador
332 $where = 'WHERE p.owner = '. $db->quote("$this->owner").
333 'AND p.id_sistema = s.id_sistema';
336 if (is_string($orden))
338 $orden = array($orden);
342 $orden = 'ORDER BY '.join(',',$orden);
348 return $db->query("SELECT p.id AS id,
349 DATE_FORMAT(p.fecha, '%d-%m-%Y') AS fecha,
351 script, p.id_sistema AS id_sistema, s.nombre_sistema AS
352 nombre_sistema, p.descripcion AS descripcion, p.pid AS pid,
353 p.server AS server, p.status AS status, p.owner AS owner,
354 p.destinos AS destinos, p.prioridad AS prioridad, p.scheduling
355 AS scheduling, p.notificar AS notificar, p.resultado AS
356 resultado, p.nota AS nota, p.archivo AS archivo, ".
357 "IF (p.status = 0, 'El proceso esta en cola. Aun no se ejecuto.".
359 "IF(p.status = 1, 'El proceso se esta ejecutando en este momento.".
361 "IF(p.status = 2, 'El proceso ha finalizado. ".
363 "IF(p.status = 3, 'Se produjo un error durante la ejecucion".
366 "'El proceso fue detenido por alguna persona (el responsable o".
367 " el administrador).".
373 FROM yatta.procesos AS p, samurai.sistema AS s
379 * @param DB $db Conexion a la base de datos.
380 * @param bool $nuevo Indica si se trata de un nuevo registro en la base.
385 function guardar($db = null, $nuevo = false)
389 'fecha' => $this->fecha,
390 'script' => $this->script,
391 'id_sistema' => $this->id_sistema,
392 'descripcion' => $this->descripcion,
394 'server' => $this->server,
395 'status' => $this->status,
396 'owner' => $this->owner,
397 'destinos' => $this->destinos,
398 'prioridad' => $this->prioridad,
399 'scheduling' => $this->scheduling,
400 'notificar' => $this->notificar,
401 'resultado' => $this->resultado,
402 'archivo' => $this->archivo,
403 'nota' => $this->nota
406 $res = $db->autoExecute('yatta.procesos', $datos,
407 DB_AUTOQUERY_INSERT);
411 'fecha' => $this->fecha,
412 'script' => $this->script,
413 'id_sistema' => $this->id_sistema,
414 'descripcion' => $this->descripcion,
416 'server' => $this->server,
417 'status' => $this->status,
418 'owner' => $this->owner,
419 'destinos' => $this->destinos,
420 'prioridad' => $this->prioridad,
421 'scheduling' => $this->scheduling,
422 'notificar' => $this->notificar,
423 'resultado' => $this->resultado,
424 'archivo' => $this->archivo,
425 'nota' => $this->nota
428 $res = $db->autoExecute('yatta.procesos', $datos,
429 DB_AUTOQUERY_UPDATE, 'id = '.$this->id);
436 * Hace un reset de los atributos.
441 function predefinirAtributos() {
444 $this->script = null;
445 $this->id_sistema = null;
446 $this->nombre_sistema = null;
447 $this->descripcion = null;
449 $this->server = null;
450 $this->status = null;
452 $this->destinos = null;
453 $this->prioridad = null;
454 $this->scheduling = null;
455 $this->notificar = null;
456 $this->resultado = null;
457 $this->archivo = null;