dsn[hostspec] = $conf->get(CONFIG_FILE,"DATABASE","host"); $this->dsn[username] = $conf->get(CONFIG_FILE,"DATABASE","login"); $this->dsn[password] = $conf->get(CONFIG_FILE,"DATABASE","pass"); $this->dsn[database] = $conf->get(CONFIG_FILE,"DATABASE","db_name"); $this->dsn[phptype] = $conf->get(CONFIG_FILE,"DATABASE","db_type"); // mysql, (sqlite, pgsql) -->> Yet not checked if ( $conf->get(CONFIG_FILE,"DATABASE","db_port") ) $this->dsn[port] = $conf->get(CONFIG_FILE,"DATABASE","db_port"); $this->link =& $this->connect($this->dsn); if (DB::isError($this->link)) die($this->link->getMessage()); register_shutdown_function(array(&$this,'close')); } function close() { $this->link->disconnect(); } function CalculateBytesPeriod($server,$StartDate,$EndPeriod) { // Bytes transferred in a period. $result =& $this->link->query("select SUM(JobBytes) from Job WHERE EndTime < '$EndPeriod' and EndTime > '$StartDate' and Name='$server'") or die("Error query row 68"); $return =& $result->fetchRow(); return $return[0]; }//end function function CalculateFilesPeriod($server,$StartDate,$EndPeriod) { // Number of files transferred in a period. $result =& $this->link->query("select SUM(JobFiles) from Job WHERE EndTime < '$EndPeriod' and EndTime > '$StartDate' and Name='$server'") or die("Error query row 78"); $return =& $result->fetchRow(); return $return[0]; }//end function function PrepareDate($StartDateMonth,$StartDateDay,$StartDateYear,$EndDateMonth,$EndDateDay,$EndDateYear) { // Convert date for Smarty. Check if only works with Mysql. $this->StartDate=$StartDateYear."-".$StartDateMonth."-".$StartDateDay." 00:00:00"; $this->EndDate=$EndDateYear."-".$EndDateMonth."-".$EndDateDay." 23:59:59"; // last day full }//end function function GetDataVolumes() { $volume = array(); $res = $this->link->query("SELECT Name FROM Pool"); while ( $tmp =& $res->fetchRow() ) { $result = $this->link->query("select Media.VolumeName, Media.VolBytes,Media.VolStatus,Pool.Name,Media.MediaType,Media.LastWritten,FROM_UNIXTIME(UNIX_TIMESTAMP(Media.LastWritten)+Media.VolRetention ) as expire from Pool LEFT JOIN Media ON Media.PoolId=Pool.PoolId where Name='$tmp[0]' order by Media.VolumeName"); while ( $tmp1 = $result->fetchRow() ) { $pos = array_key_exists($tmp[0],$volume); if ($pos != FALSE) array_push($volume["$tmp[0]"],$tmp1); else $volume += array($tmp[0]=>array($tmp1)); } } $res->free(); $result->free(); return $volume; } } class BGraph { var $type; var $sizex; var $sizey; var $MarginBottom; var $MarginLeft; var $Leg; function BShowGraph($datos,$title,$xlabel,$ylabel,$leyenda,$tipo="lines") { global $type; require_once ("external_packages/phplot/phplot.php"); if ( empty($this->sizex) || empty($this->sizey) ) { //Default size $this->sizex = "600"; $this->sizey = "400"; } if ( empty($this->MarginBottom) ) { $this->MarginBottom = 120; } $legend = $leyenda; // $bgcolor = array(222,206,215); // Background color of graph $bgcolor = array(207,231,231); $fgcolor = array(110,41,57); $graph = new PHPlot($this->sizex,$this->sizey,"",""); if ( !empty($type) ) $graph->setDataType($type); $graph->SetDataValues($datos); $graph->SetPlotType($tipo); // $graph->SetUseTTF(1); $graph->SetBackgroundColor($bgcolor); $graph->SetLegendPixels(1,20); $graph->SetDataColors(array('SkyBlue','purple','PeachPuff','aquamarine1','#2CB04B','beige','#9F865F','#135568','orchid','navy','red', 'black', 'blue', 'green', 'brown', 'yellow','cyan','orange','#B9F5A7','#AFAFAF')); $graph->SetTitle($title); $graph->SetXLabel($xlabel); $graph->SetYLabel($ylabel); $graph->SetPlotAreaWorld("","","",""); if ( count($datos) > 5 ) $graph->SetXDataLabelAngle(90); else $graph->SetXDataLabelAngle(0); // $graph->SetNumXTicks(10); // $graph->SetXDataLabelPos('none'); // $graph->SetXTickLabelPos('plotdown'); // $graph->SetXGridLabelType("time"); // $graph->SetXTimeFormat("%b ") ; if ( $this->Leg == 1 ) { $this->MarginLeftWithLegend($legend); $graph->SetMarginsPixels($this->MarginLeft,10,35,$this->MarginBottom); $graph->SetLegend($legend); } else $graph->SetMarginsPixels(90,35,35,$this->MarginBottom); // $graph->SetDataColors(array($fgcolor),array( "black")); $graph->SetFileFormat( "png"); // $graph->DoScaleData(1,1); // $graph->DoMovingAverage(1,1,1); $graph->DrawGraph(); }//end Crear //Estupidez que tengo que cambiar. !!!!!!!!!!! function SetDataType($typ) { global $type; $type = $typ; } function MarginLeftWithLegend($clients) { $maxlen = 0; while (next($clients)) { $tmp = strlen (current($clients)); if ( $tmp > $maxlen ) $maxlen = $tmp; } $this->MarginLeft = $maxlen * 11; } }//end class class BCreateGraph extends BGraph { var $BD_bacula; var $izquierda; var $derecha; var $StartDate; var $EndDate; var $elapsed; // Default elapsed time to show complex graphs function BCreateGraph() { $this->StartDate = "1900-01-01"; $this->EndDate = "4000-01-01"; $this->elapsed = "86400"; // 24 hours in seconds. } function BCreate($server,$tipo_dato,$title,$tipo="bars",$xlabel="",$ylabel="") { global $DB_bacula; global $izquierda; global $derecha; global $clientes; $this->clientes=array(); $DB_bacula = new Bweb(); $datos = $this->SQLPrepareData($server,$tipo_dato); if ( empty($datos) ) { //No data = No stats = Empty graph header("Content-type: image/png"); $img= @ImageCreate(200,100) or die ("Cannot intialize GD stream"); $bgc= ImageColorAllocate($img, 0, 255,255); $txc= ImageColorAllocate($img, 0,0,0); ImageString($img, 5, 4, 4, "None data to process", $txc); ImagePng($img); ImageDestroy($img); return; } if ( empty ($xlabel) ) { // If no label, table names like leyends $xlabel=$derecha; $ylabel=$izquierda; } $this->SetDataType("text-data"); $this->BShowGraph($datos,$title,$xlabel,$ylabel,$this->clientes,$tipo); } function SQLPrepareData($servidor,$tipo_dato=0) { // Prepare bytes data from database. global $DB_bacula; global $izquierda; global $derecha; if ( $tipo_dato<30 ) { // Simple graph. Only 2 data switch ($tipo_dato) { case BACULA_TYPE_BYTES_FILES: $izquierda="JobBytes"; $derecha="JobFiles"; break; case BACULA_TYPE_FILES_JOBID: $izquierda="JobFiles"; $derecha="Jobid"; break; default: $izquierda="JobBytes"; $derecha="EndTime"; break; } $result = $DB_bacula->link->query("select $derecha,$izquierda from Job where Name='$servidor' and EndTime < '$this->EndDate' and EndTime > '$this->StartDate' order by SchedTime asc") or die ("Ivalid query row 295"); while ( $row = $result->fetchRow(DB_FETCHMODE_ASSOC) ) { $whole_result[] = array_merge($row["$derecha"],$row[$izquierda]); } $result->free(); } else { // Complex graph. 3 or more data. switch ( $tipo_dato ) { case '30': // Unused, at this time. $result = $DB_bacula->link->query("select JobBytes,JobFiles,Jobid from Job where Name='$servidor' order by EndTime asc") or die ("Invalid query row 306"); while ( $row = $result->fetchRow(DB_FETCHMODE_ASSOC) ) $whole_result[] = array_merge($row["Jobid"],$row["JobFiles"],$row["JobBytes"]); $result->free(); break; case BACULA_TYPE_BYTES_ENDTIME_ALLJOBS: // Special: Generic graph from all clientes. $i = -1; // Counter of number of jobs of one cliente. SP: Contador del número de jobs totales de un cliente. $i2 = 0; // Counter of number of keys of array. SP: Contador del número de valores del array. $res = $DB_bacula->link->query("select Name from Job where UNIX_TIMESTAMP(EndTime) > UNIX_TIMESTAMP(NOW())-$this->elapsed group by Name order by Name desc") or die ("Invalid query row 316"); $resdata=$DB_bacula->link->query("select date_format(EndTime,\"%Y-%m-%d\") from Job where UNIX_TIMESTAMP(EndTime) > UNIX_TIMESTAMP(NOW())-$this->elapsed group by date_format(EndTime,\"%Y-%m-%d\") order by EndTime") or die ("Invalid query row 318"); while ( $tmpdata = $res->fetchRow() ) array_push($this->clientes,$tmpdata[0]); // echo "
";
//					print_r ($this->clientes);
//					echo "
"; $spr = array(); // Temporal array $spr2 = array(); // Temporal array $whole_result = array(); while ( $tmpdata = $resdata->fetchRow() ) { $count++; array_push($spr,$tmpdata[0]); $result = $DB_bacula->link->query("select date_format(EndTime,\"%Y-%m-%d\"),SUM(JobBytes),Name,count(Name) as Nname from Job WHERE EndTime like '$tmpdata[0]%' group by Name order by Name desc") or die ("invalid query row 336"); while ( $row = $result->fetchRow(DB_FETCHMODE_ASSOC) ) { $spr2 = array_merge($spr2,array($row["Name"]=>$row["SUM(JobBytes)"])); $i = $result->numRows(); } // echo "
";
//						print_r ($spr2);
//						echo "
"; reset ($this->clientes); do { if ( $spr2[current($this->clientes)] != NULL) array_push($spr,$spr2[current($this->clientes)]); else array_push($spr,0); } while ( next($this->clientes) ); if ( $i2 < $i ) $i2 = $i; if ( $tmpdata[0] != $row["EndTime"] ) array_push($whole_result,$spr); $spr = array(); $spr2 = array(); } for ( $i = 0; $i < count($whole_result); $i++ ) { // To equal the arrays so that the graph is not unsquared. SP:Igualamos las matrices para que la gráfica no se descuadre $tmp = count($whole_result[$i]); if ( $i2 < $tmp ) // Estupidez?. Check this code later... continue; $tmp = $i2 - $tmp; for ( $a = 0; $a <= $tmp; $a++ ) array_push($whole_result[$i],"0"); // Fill the array } $resdata->free(); // echo "DEBUG:
"; // echo "
";
//					print_r ($whole_result);
//					echo "
"; break; default: break; } } // $result->free(); return $whole_result; }//end function //Conversión de la fecha a Mysql-format para Smarty. THE SAME FUNCTION AT 2 CLASSES. THIS WAY IS BUGGY. TO SOLVE LATER. function PrepareDate($StartDateMonth,$StartDateDay,$StartDateYear,$EndDateMonth,$EndDateDay,$EndDateYear){ $this->StartDate = $StartDateYear."-".$StartDateMonth."-".$StartDateDay." 00:00:00"; $this->EndDate = $EndDateYear."-".$EndDateMonth."-".$EndDateDay." 23:59:00"; }//end function }//end class ?>