]> git.llucax.com Git - mecon/yatta.git/blob - lib/YATTA/Proceso.php
Interfaz de usuario casi completa.
[mecon/yatta.git] / lib / YATTA / Proceso.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3                              Ministerio de Economía
4                                     YATTA!
5 -------------------------------------------------------------------------------
6 This file is part of YATTA!.
7
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)
11 any later version.
12
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.
16  
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 -------------------------------------------------------------------------------
24 $Id$
25 -----------------------------------------------------------------------------*/
26
27 require_once 'MECON/DBO.php';
28 require_once 'PEAR.php';
29 require_once 'Date.php';
30
31 /**
32  * Clase para el manejo de los procesos.
33  *
34  * @access public
35  */
36 class YATTA_Proceso extends MECON_DBO {
37
38     /**
39      * Identificador del proceso.
40      *
41      * @var    int $id
42      * @access public
43      */
44     var $id = null;
45      
46     /**
47      * Fecha cuando se agrego el proceso.
48      * Formato = DD/MM/YYYY
49      * Puede ser un objeto Date.
50      *
51      * @var    string $fecha
52      * @access public
53      */
54     var $fecha = null;
55      
56     /**
57      * Proceso a ejecutar.
58      *
59      * @var    string $script
60      * @access public
61      */
62     var $script = null;
63      
64     /**
65      * Identificador del sistema en el cual se lanzo el proceso.
66      *
67      * @var    int $id_sistema
68      * @access public
69      */
70     var $id_sistema = null;
71
72     /**
73      * Nombre del sistema en el cual se lanzo el proceso.
74      *
75      * @var    string $nombre_sistema
76      * @access public
77      */
78     var $nombre_sistema = null;
79      
80     /**
81      * Descripcion del proceso.
82      *
83      * @var    string $descripcion
84      * @access public
85      */
86     var $descripcion = null;
87     
88     /**
89      * PID del proceso en el servidor de proceso.
90      *
91      * @var    int $pid
92      * @access public
93      */
94     var $pid = null;
95     
96     /**
97      * Servidor en donde se ejecuto/a/ara el proceso.
98      *
99      * @var    int $server  
100      * @access public
101      */
102     var $server = null;
103     
104     /**
105      * Estado del proceso.       
106      * 0 = En Espera
107      * 1 = Procesando
108      * 2 = Finalizado
109      * 3 = Error
110      * 4 = Abortado
111      *
112      * @var    int $status
113      * @access public
114      */
115     var $status = null;
116     
117     /**
118      * Identificador del usuario responsable por el proceso.
119      *
120      * @var    string $owner
121      * @access public
122      */
123     var $owner = null;
124     
125     /**
126      * Destinos para el resultado.
127      * array ('mmarre@mecon', 'gmeray@mecon')
128      *
129      * @var    array $destinos
130      * @access public
131      */
132     var $destinos = null;
133     
134     /**
135      * Prioridad el proceso.
136      *
137      * @var    int $prioridad
138      * @access public
139      */
140     var $prioridad = null;
141     
142     /**
143      * Fecha de ejecucion fijada.
144      *
145      * @var    string $scheduling
146      * @access public
147      */
148     var $scheduling = null;
149     
150     /**
151      * Indica si se debe notificar o no al owner sobre el resultado.
152      *
153      * @var    int $notificar
154      * @access public
155      */
156     var $notificar = null;
157     
158     /**
159      * Nombre del archivo resultado
160      *
161      * @var    string $resultado
162      * @access public
163      */
164     var $resultado = null;
165     
166     /**
167      * Nombre del archivo en el tacho
168      *
169      * @var    string $archivo
170      * @access public
171      */
172     var $archivo = null;
173     
174     /**
175      * Nota explicativa sobre el error producido o el motivo por el cual se
176      * aborto el proceso.
177      *
178      * @var    string $nota
179      * @access public
180      */
181     var $nota = null;
182
183     /**
184      * Descripcion del estado.
185      *
186      * @var    string $icono
187      * @access public
188      */
189     var $icono = null;
190     
191     /**
192      * Carga el objeto con los datos que se pasan por parametro.
193      * 
194      * @param  DB $db DB o DB_Result a usar para la carga.
195      *
196      * @return mixed
197      * @access public
198      */
199     function cargar($db = null)
200     {
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)) {
207                 return $res;
208             }
209             elseif (!$res) {
210                 return false;
211             }
212
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'];
232             return true;
233         }
234         return false; 
235     }
236
237     /**
238      * Borra el objeto de una base de datos.
239      *
240      * @param  DB $db Base de datos de donde borrar el objeto.
241      *
242      * @return mixed
243      * @access public
244      */
245     function borrar($db = null)
246     {
247         trigger_error('Not implemented!', E_USER_WARNING); 
248     }
249
250     /**
251      * Busca los datos en la base.
252      *
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
256      *
257      * @return mixed
258      * @access public
259      */
260     function buscar($db = null, $operador = MECON_DBO_OR, $orden = null) 
261     {
262         // Armo el WHERE.
263         if (is_null($this->owner)) {
264             return new PEAR_Error ('Debe definirse el Owner del proceso.');
265         }
266         $where = array();
267         if (!is_null($this->id)) {
268             $where[] = 'p.id = '.$this->id;
269         }
270         if (!is_null($this->fecha)) {
271             if (is_object($this->fecha) ) {
272                 $fecha = $this->fecha->format("%Y-%m-%d");
273             }
274             else {
275                 list ($dia, $mes, $anio) = split ('[/.-]', $this->fecha);
276                 $fecha = $anio.'-'.$mes.'-'.$dia;
277             }
278             $where[] = 'p.fecha = '. $db->quote("$fecha");
279         }
280         if (!is_null($this->script)) {
281             $where[] = 'p.script LIKE '. $db->quote("%$this->script%");
282         }
283         if (!is_null($this->id_sistema)) {
284             $where[] = 'p.id_sistema = '. $this->id_sistema; 
285         }
286         if (!is_null($this->nombre_sistema)) {
287             $where[] = 's.nombre_sistema LIKE '. $db->quote("%$this->nombre_sistema%");
288         }
289         if (!is_null($this->descripcion)) {
290             $where[] = 'p.descripcion LIKE '. $db->quote("%$this->descripcion%");
291         }
292         if (!is_null($this->pid)) {
293             $where[] = 'p.pid = '.$this->pid;
294         }
295         if (!is_null($this->server)) {
296             $where[] = 'p.server = '.$this->server;
297         }
298         if (!is_null($this->status)) {
299             $where[] = 'p.status = '.$this->status;
300         }
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");
305                 }
306             }
307             else {
308                 $where[] = 'p.destinos LIKE '. $db->quote("%$this->destinos%");
309             }
310         }
311         if (!is_null($this->prioridad)) {
312             $where[] = 'p.prioridad = '.$this->prioridad;
313         }
314         if (!is_null($this->scheduling)) {
315             $where[] = 'p.scheduling LIKE '. $db->quote("%$this->scheduling%");
316         } 
317         if (!is_null($this->notificar)) {
318             $where[] = 'p.notificar ='. $this->notificar;
319         } 
320         if (!is_null($this->resultado)) {
321             $where[] = 'p.resultado LIKE '. $db->quote("%$this->resultado%");
322         } 
323         if (!is_null($this->nota)) {
324             $where[] = 'p.nota LIKE '. $db->quote("%$this->nota%");
325         } 
326         if ($where) {
327             $where = 'WHERE p.owner = '. $db->quote("$this->owner").
328                 'AND p.id_sistema = s.id_sistema AND ('. join ("$operador
329                         ", $where).')';
330         } 
331         else {
332             $where = 'WHERE p.owner = '. $db->quote("$this->owner").
333                 'AND p.id_sistema = s.id_sistema';
334         }
335         // Armo el ORDER BY.
336         if (is_string($orden))
337         {
338             $orden = array($orden);
339         }
340         if ($orden) 
341         {
342             $orden = 'ORDER BY '.join(',',$orden);
343         }
344         else {
345             $orden = '';
346         }
347         
348         return $db->query("SELECT p.id AS id, 
349                 DATE_FORMAT(p.fecha, '%d-%m-%Y') AS fecha, 
350                 p.script AS
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.".
358                 "', ".
359                 "IF(p.status = 1, 'El proceso se esta ejecutando en este momento.".
360                 "',".
361                 "IF(p.status = 2, 'El proceso ha finalizado. ".
362                 "',".
363                 "IF(p.status = 3, 'Se produjo un error durante la ejecucion".
364                 " del proceso.".
365                 "',".
366                 "'El proceso fue detenido por alguna persona (el responsable o".
367                 " el administrador).".
368                 "'".
369                 ")".
370                 ")".
371                 ")".
372                 ") AS icono               
373                 FROM yatta.procesos AS p, samurai.sistema AS s
374                 $where
375                 $orden");
376     }
377
378     /**
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.
381      *
382      * @return mixed
383      * @access public
384      */
385     function guardar($db = null, $nuevo = false)
386     {
387         if ($nuevo) {
388             $datos = array (
389                         'fecha'         => $this->fecha,
390                         'script'        => $this->script,
391                         'id_sistema'    => $this->id_sistema,
392                         'descripcion'   => $this->descripcion,
393                         'pid'           => $this->pid,
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
404                     );
405
406             $res = $db->autoExecute('yatta.procesos', $datos,
407                     DB_AUTOQUERY_INSERT);
408         }
409         else {
410             $datos = array (
411                         'fecha'         => $this->fecha,
412                         'script'        => $this->script,
413                         'id_sistema'    => $this->id_sistema,
414                         'descripcion'   => $this->descripcion,
415                         'pid'           => $this->pid,
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
426                     );
427
428             $res = $db->autoExecute('yatta.procesos', $datos,
429                     DB_AUTOQUERY_UPDATE, 'id = '.$this->id);
430             
431         }
432         return $res;
433     }
434
435     /**
436      * Hace un reset de los atributos.
437      * 
438      * @return void
439      * @access public
440      */
441     function predefinirAtributos() {
442         $this->id = null;
443         $this->fecha = null;
444         $this->script = null;
445         $this->id_sistema = null;
446         $this->nombre_sistema = null;
447         $this->descripcion = null;
448         $this->pid = null;
449         $this->server = null;
450         $this->status = null;
451         $this->owner = 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;
458         $this->nota = null;
459         $this->icono = null;
460     }
461 }
462 ?>