source: trunk/web/addons/job_monarch/libtoga.php @ 301

Last change on this file since 301 was 301, checked in by bastiaans, 17 years ago

job_monarch/overview.php,
job_monarch/libtoga.php:

  • fixed: php5 loop
  • Property svn:keywords set to Id
File size: 23.3 KB
Line 
1<?php
2/*
3 *
4 * This file is part of Jobmonarch
5 *
6 * Copyright (C) 2006  Ramon Bastiaans
7 *
8 * Jobmonarch is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * Jobmonarch is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21 *
22 * SVN $Id: libtoga.php 301 2007-04-16 00:19:47Z bastiaans $
23 *
24 */
25
26
27class HTTPVariables {
28
29        var $clustername, $metricname;
30        var $restvars, $httpvars;
31
32        function HTTPVariables( $httpvars, $getvars ) {
33
34                $this->restvars = array();
35
36                $this->clustername = $httpvars["c"] ? $httpvars["c"] : $getvars["c"];
37                $this->metricname = $httpvars["m"] ? $httpvars["m"] : $getvars["m"];
38
39                foreach( $httpvars as $httpvar => $httpval ) {
40                       
41                        if( $httpval ) {
42                                $this->restvars[$httpvar] = $httpval;
43                        }
44                }
45
46                foreach( $getvars as $getvar => $getval ) {
47
48                        if( $getval ) {
49                                $this->restvars[$getvar] = $getval;
50                        }
51                }
52        }
53
54        function getClusterName() {
55                return $this->clustername;
56        }
57
58        function getMetricName() {
59                return $this->metricname;
60        }
61
62        function getHttpVar( $var ) {
63                if( isset( $this->restvars[$var] ) )
64                        return $this->restvars[$var];
65                else
66                        return null;
67        }
68}
69
70// Toga's conf
71//
72include_once "./conf.php";
73include_once "./version.php";
74
75global $GANGLIA_PATH;
76global $RRDTOOL;
77global $JOB_ARCHIVE_DIR;
78global $JOB_ARCHIVE_DBASE;
79
80$my_dir = getcwd();
81
82// Load Ganglia's PHP
83chdir( $GANGLIA_PATH );
84
85include_once "./conf.php";
86include_once "./functions.php";
87include_once "./ganglia.php";
88include_once "./get_context.php";
89unset( $start );
90$context = 'cluster';
91include_once "./get_ganglia.php";
92
93// Back to our PHP
94chdir( $my_dir );
95
96global $SMALL_CLUSTERIMAGE_MAXWIDTH, $SMALL_CLUSTERIMAGE_NODEWIDTH, $DATA_SOURCE, $HTTP_GET_VARS, $_GET;
97$httpvars = new HTTPVariables( $HTTP_GET_VARS, $_GET );
98
99// Set cluster context so that Ganglia will
100// provide us with the correct metrics array
101//
102global $context, $clustername, $reports;
103
104//$clustername = $httpvars->getClusterName();
105
106global $default_metric;
107
108// Ganglia's array of host metrics
109//
110global $metrics, $hosts_up;
111
112global $DATETIME_FORMAT;
113
114function makeDate( $time ) {
115        global $DATETIME_FORMAT;
116        return strftime( $DATETIME_FORMAT, $time );
117}
118
119class TarchDbase {
120
121        var $ip, $dbase, $conn;
122
123        function TarchDbase( $ip = null, $dbase = null ) {
124
125                global $JOB_ARCHIVE_DBASE;
126
127                $db_fields = explode( '/', $JOB_ARCHIVE_DBASE );
128
129                $this->ip = $db_fields[0];
130                $this->dbase = $db_fields[1];
131                $this->conn = null;
132        }
133
134        function connect() {
135
136                if( $this->ip == null )
137                        $this->conn = pg_connect( "dbname=".$this->dbase );
138                else
139                        $this->conn = pg_connect( "host=".$this->ip." dbname=".$this->dbase );
140        }
141
142        function searchDbase( $id = null, $queue = null, $user = null, $name = null, $start_from_time = null, $start_to_time = null, $end_from_time = null, $end_to_time = null ) {
143
144                global $SEARCH_RESULT_LIMIT;
145
146                if( $id ) {
147                        $select_query = "SELECT job_id FROM jobs WHERE job_id = '$id' AND job_status = 'F'";
148                        $this->resultcount = 1;
149                } else {
150                        $query_args = array();
151                       
152                        if( $queue )
153                                $query_args[] = "job_queue ='$queue'";
154                        if( $user )
155                                $query_args[] = "job_owner ='$user'";
156                        if( $name )
157                                $query_args[] = "job_name = '$name'";
158                        if( $start_from_time )
159                                $query_args[] = "job_start_timestamp >= $start_from_time";
160                        if( $start_to_time )
161                                $query_args[] = "job_start_timestamp <= $start_to_time";
162                        if( $end_from_time )
163                                $query_args[] = "job_stop_timestamp >= $end_from_time";
164                        if( $end_to_time )
165                                $query_args[] = "job_stop_timestamp <= $end_to_time";
166
167                        $query = "FROM jobs WHERE job_status = 'F' AND ";
168                        $extra_query_args = '';
169
170                        foreach( $query_args as $myquery ) {
171
172                                if( $extra_query_args == '' )
173                                        $extra_query_args = $myquery;
174                                else
175                                        $extra_query_args .= " AND ".$myquery;
176                        }
177                        $query .= $extra_query_args;
178
179                        $count_result_idname = "COUNT(job_id)";
180                        $select_result_idname = "job_id";
181
182                        $count_query = "SELECT " . $count_result_idname . " " . $query;
183
184                        $count_result = $this->queryDbase( $count_query );
185                        $this->resultcount = (int) $count_result[0][count];
186
187                        $select_query = "SELECT " . $select_result_idname . " " . $query . " ORDER BY job_id LIMIT " . $SEARCH_RESULT_LIMIT;
188                }
189
190                $ids = $this->queryDbase( $select_query );
191
192                $ret = array();
193
194                foreach( $ids as $crow)
195                        $ret[] = $crow[job_id];
196
197                return $ret;
198        }
199
200        function getNodesForJob( $jobid ) {
201
202                $result = $this->queryDbase( "SELECT node_id FROM job_nodes WHERE job_id = '$jobid'" );
203
204                $nodes = array();
205
206                foreach( $result as $result_row ) 
207
208                        $nodes[] = $this->getNodeArray( $result_row[node_id] );
209
210                return $nodes;
211        }
212
213        function getJobsForNode( $nodeid ) {
214
215                $result = $this->queryDbase( "SELECT job_id FROM job_nodes WHERE node_id = '$nodeid'" );
216
217                $jobs = array();
218
219                foreach( $result as $result_row )
220
221                        $jobs[] = $this->getJobArray( $result_row[job_id] );
222
223                return $jobs;
224        }
225
226        function getJobArray( $id ) {
227                $result = $this->queryDbase( "SELECT * FROM jobs WHERE job_id = '$id'" );
228
229                return ( $this->makeArray( $result[0] ) );
230        }
231
232        function getNodeArray( $id ) {
233
234                $result = $this->queryDbase( "SELECT * FROM nodes WHERE node_id = '$id'" );
235
236                return ( $this->makeArray( $result[0] ) );
237        }
238
239        function makeArray( $result_row ) {
240
241                $myar = array();
242
243                foreach( $result_row as $mykey => $myval ) {
244
245                        $map_key = explode( '_', $mykey );
246
247                        $rmap_key = array_reverse( $map_key );
248                        array_pop( $rmap_key );
249                        $map_key = array_reverse( $rmap_key );
250                       
251                        $newkey = implode( '_', $map_key );
252                       
253                        $myar[$newkey] = $result_row[$mykey];
254                }
255
256                return $myar;
257        }
258
259        function queryDbase( $query ) {
260
261                $result_rows = array();
262       
263                if( !$this->conn )
264                        $this->connect();
265
266                //printf( "query = [%s]\n", $query );
267                $result = pg_query( $this->conn, $query );
268
269                while ($row = pg_fetch_assoc($result))
270                        $result_rows[] = $row;
271
272                return $result_rows;
273        }
274}
275
276class TarchRrdGraph {
277        var $rrdbin, $rrdvalues, $clustername, $hostname, $tempdir, $tarchdir, $metrics;
278
279        function TarchRrdGraph( $clustername, $hostname ) {
280
281                global $RRDTOOL;
282                global $JOB_ARCHIVE_DIR;
283
284                $this->rrdbin = $RRDTOOL;
285                $this->rrdvalues = array();
286                $this->tarchdir = $JOB_ARCHIVE_DIR;
287                $this->clustername = $clustername;
288                $this->hostname = $hostname;
289        }
290
291        function doCmd( $command ) {
292
293                printf( "command = %s\n", $command );
294                $pipe = popen( $command . ' 2>&1', 'r' );
295
296                if (!$pipe) {
297                        print "pipe failed.";
298                        return "";
299                }
300
301                $output = '';
302                while(!feof($pipe))
303                        $output .= fread($pipe, 1024);
304
305                pclose($pipe);
306
307                $output = explode( "\n", $output );
308                //print_r( $output );
309                return $output;
310        }
311
312        function dirList( $dir ) {
313
314                $dirlist = array();
315
316                if ($handle = opendir( $dir )) {
317                        while (false !== ($file = readdir($handle))) {
318                                if ($file != "." && $file != "..") {
319                                        $dirlist[] = $file;
320                                }
321                        }
322                        closedir($handle);
323                }
324
325                return $dirlist;
326        }
327
328        function getTimePeriods( $start, $end ) {
329
330                //printf("start = %s end = %s\n", $start, $end );
331                $times = array();
332                $dirlist = $this->dirList( $this->tarchdir . '/' . $this->clustername . '/' . $this->hostname );
333
334                //print_r( $dirlist );
335
336                $first = 0;
337                $last = 9999999999999;
338
339                foreach( $dirlist as $dir ) {
340
341                        if( $dir > $first and $dir <= $start )
342                                $first = $dir;
343                        if( $dir < $last and $dir >= $end )
344                                $last = $dir;
345                }
346
347                //printf( "first = %s last = %s\n", $first, $last );
348
349                foreach( $dirlist as $dir ) {
350
351                        //printf( "dir %s ", $dir );
352
353                        if( $dir >= $first and $dir <= $last and !array_key_exists( $dir, $times ) ) {
354                       
355                                $times[] = $dir;
356                                //printf("newtime %s ", $dir );
357
358                        }
359                }
360
361                //print_r( $times );
362
363                sort( $times );
364
365                //print_r( $times );
366
367                return $times;
368        }
369
370        function getRrdDirs( $start, $stop ) {
371
372                //printf( "tarchdir = %s\n", $this->tarchdir );
373                $timess = $this->getTimePeriods( $start, $stop );
374                //print_r( $timess );
375
376                $rrd_files = array();
377
378                foreach( $timess as $time ) {
379
380                        $rrd_files[] = $this->tarchdir . '/' . $this->clustername . '/' . $this->hostname. '/'.$time;
381                }
382
383                return $rrd_files;
384        }
385
386        function getRrdFiles( $metric, $start, $stop ) {
387
388                $times = $this->getTimePeriods( $start, $stop );
389
390                $rrd_files = array();
391
392                foreach( $times as $time ) {
393
394                        $rrd_files[] = $this->tarchdir . '/' . $this->clustername . '/' . $this->hostname . '/' .$time. '/' . $metric. '.rrd';
395                }
396
397                return $rrd_files;
398        }
399
400        function graph( $descr ) {
401//      monitor2:/data/toga/rrds/LISA Cluster/gb-r15n11.irc.sara.nl# rrdtool graph /var/www/ganglia/test1.png --start 1118683231 --end 1118750431 --width 300 --height 400 DEF:'1'='./1118647515/load_one.rrd':'sum':AVERAGE DEF:'2'='./1118690723/load_one.rrd':'sum':AVERAGE DEF:'3'='./1118733925/load_one.rrd':'sum':AVERAGE AREA:1#555555:"load_one" AREA:2#555555 AREA:3#555555
402//      380x461
403//      monitor2:/data/toga/rrds/LISA Cluster/gb-r15n11.irc.sara.nl#
404                //$command = $this->rrdbin . " graph - --start $start --end $end ".
405                        "--width $width --height $height $upper_limit $lower_limit ".
406                        "--title '$title' $vertical_label $extras $background ". $series;
407
408                //$graph = $this->doCmd( $command );
409
410                //return $graph;
411                return 0;
412        }
413}
414
415class DataSource {
416
417        var $data, $ip, $port;
418
419        function DataSource( $ip = '127.0.0.1', $port = 8649 ) {
420                $this->ip = $ip;
421                $this->port = $port;
422        }
423
424        function getData() {
425
426                $errstr;
427                $errno = 0;
428                $timeout = 3;
429
430                $fp = fsockopen( $this->ip, $this->port, &$errno, &$errstr, $timeout );
431
432                if( !$fp ) {
433                        echo 'Unable to connect to '.$this->ip.':'.$this->port; // printf( 'Unable to connect to [%s:%.0f]', $this->ip, $this->port );
434                        return;
435                }
436
437                stream_set_timeout( $fp, 30 );
438
439                while ( !feof( $fp ) ) {
440                       
441                        $data .= fread( $fp, 16384 );
442                }
443
444                fclose( $fp );
445
446                return $data;
447        }
448}
449
450class DataGatherer {
451
452        var $xmlhandler, $data, $httpvars;
453
454        function DataGatherer( $cluster ) {
455
456                global $DATA_SOURCE;
457       
458                //printf("dg cluster = %s\n", $cluster );
459                $ds_fields = explode( ':', $DATA_SOURCE );
460                $ds_ip = $ds_fields[0];
461                $ds_port = $ds_fields[1];
462
463                $this->source = new DataSource( $ds_ip, $ds_port );
464
465                $this->parser = xml_parser_create();
466                $this->httpvars = $httpvars;
467                $this->xmlhandler = new TorqueXMLHandler( $cluster );
468                xml_set_element_handler( $this->parser, array( &$this->xmlhandler, 'startElement' ), array( &$this->xmlhandler, 'stopElement' ) );
469        }
470
471        function parseXML() {
472
473                $src = &$this->source;
474                $this->data = $src->getData();
475
476                if ( !xml_parse( &$this->parser, $this->data ) )
477                        $error = sprintf( 'XML error: %s at %d', xml_error_string( xml_get_error_code( &$this->parser ) ), xml_get_current_line_number( &$this->parser ) );
478        }
479
480        function printInfo() {
481                $handler = $this->xmlhandler;
482                $handler->printInfo();
483        }
484
485        function getNodes() {
486                $handler = $this->xmlhandler;
487                return $handler->getNodes();
488        }
489
490        function getCpus() {
491                $handler = $this->xmlhandler;
492                return $handler->getCpus();
493        }
494
495        function getJobs() {
496                $handler = $this->xmlhandler;
497                return $handler->getJobs();
498        }
499
500        function getHeartbeat() {
501                $handler = $this->xmlhandler;
502                return $handler->getHeartbeat();
503        }
504
505        function isJobmonRunning() {
506                $handler = $this->xmlhandler;
507                return $handler->isJobmonRunning();
508        }
509}
510
511class TorqueXMLHandler {
512
513        var $clusters, $heartbeat, $nodes, $jobs, $clustername, $proc_cluster;
514
515        function TorqueXMLHandler( $clustername ) {
516                $jobs = array();
517                $clusters = array();
518                $this->nodes = array();
519                $heartbeat = array();
520                $this->clustername = $clustername;
521                //printf(" cluster set to %s \n", $this->clustername );
522        }
523
524        function getCpus() {
525
526                $cpus = 0;
527
528                if( isset( $this->jobs ) && count( $this->jobs ) > 0 ) {
529
530                        foreach( $this->jobs as $jobid=>$jobattrs ) {
531
532                                $nodes = count( $jobattrs[nodes] );
533                                $ppn = (int) $jobattrs[ppn] ? $jobattrs[ppn] : 1;
534                                $mycpus = $nodes * $ppn;
535
536                                $cpus = $cpus + $mycpus;
537                        }
538                }
539        }
540
541        function isJobmonRunning() {
542
543                if (isset( $this->heartbeat['time'] ))
544                        return 1;
545                else
546                        return 0;
547        }
548
549        function startElement( $parser, $name, $attrs ) {
550
551                $jobs = $this->jobs;
552                $nodes = $this->nodes;
553
554                if ( $attrs[TN] ) {
555
556                        // Ignore dead metrics. Detect and mask failures.
557                        if ( $attrs[TN] > $attrs[TMAX] * 4 )
558                                return;
559                }
560
561                $jobid = null;
562
563                //printf( '%s=%s', $attrs[NAME], $attrs[VAL] );
564
565                //printf( "clustername = %s proc_cluster = %s\n", $this->clustername, $this->proc_cluster );
566
567                if( $name == 'CLUSTER' ) {
568
569                        $this->proc_cluster = $attrs[NAME];
570                        //printf( "Found cluster %s\n", $attrs[NAME] );
571                        //print_r( $attrs );
572
573                        //if( !isset( $clusters[$clustername] ) )
574                        //      $clusters[$clustername] = array();
575
576                } else if( $name == 'HOST' and $this->proc_cluster == $this->clustername) {
577
578                        $hostname = $attrs[NAME];
579                        $location = $attrs[LOCATION];
580                        //printf( "Found node %s\n", $hostname );
581
582                        if( !isset( $nodes[$hostname] ) )
583                                $nodes[$hostname] = new NodeImage( $hostname );
584
585                } else if( $name == 'METRIC' and strstr( $attrs[NAME], 'MONARCH' ) and $this->proc_cluster == $this->clustername ) {
586
587                        if( strstr( $attrs[NAME], 'MONARCH-HEARTBEAT' ) ) {
588
589                                $this->heartbeat['time'] = $attrs[VAL];
590                                //printf( "heartbeat %s\n", $heartbeat['time'] );
591
592                        } else if( strstr( $attrs[NAME], 'MONARCH-JOB' ) ) {
593
594                                sscanf( $attrs[NAME], 'MONARCH-JOB-%d-%d', $jobid, $monincr );
595
596                                //printf( "jobid %s\n", $jobid );
597
598                                if( !isset( $jobs[$jobid] ) )
599                                        $jobs[$jobid] = array();
600
601                                $fields = explode( ' ', $attrs[VAL] );
602
603                                foreach( $fields as $f ) {
604                                        $togavalues = explode( '=', $f );
605
606                                        $toganame = $togavalues[0];
607                                        $togavalue = $togavalues[1];
608
609                                        //printf( "\t%s\t= %s\n", $toganame, $togavalue );
610
611                                        if( $toganame == 'nodes' ) {
612
613                                                if( $jobs[$jobid][status] == 'R' ) {
614                                               
615                                                        if( !isset( $jobs[$jobid][$toganame] ) )
616                                                                $jobs[$jobid][$toganame] = array();
617
618                                                        $mynodes = explode( ';', $togavalue );
619
620                                                        //print_r($mynodes);
621
622                                                        foreach( $mynodes as $node ) {
623
624                                                                if( !in_array( $node, $jobs[$jobid][$toganame] ) ) {
625                                                                        $jobs[$jobid][$toganame][] = $node;
626                                                                }
627                                                        }
628
629                                                } else if( $jobs[$jobid][status] == 'Q' ) {
630
631                                                        $jobs[$jobid][$toganame] = $togavalue;
632                                                }
633                                               
634                                        } else {
635
636                                                $jobs[$jobid][$toganame] = $togavalue;
637                                        }
638                                }
639
640                                if( isset( $jobs[$jobid][domain] ) and isset( $jobs[$jobid][nodes] ) ) {
641                       
642                                        $nr_nodes = count( $jobs[$jobid][nodes] );
643               
644                                        if( $jobs[$jobid][status] == 'R' ) {
645
646                                                foreach( $jobs[$jobid][nodes] as $node ) {
647
648                                                        $domain = $jobs[$jobid][domain];
649                                                        $domain_len = 0 - strlen( $domain );
650
651                                                        if( substr( $node, $domain_len ) != $domain ) {
652                                                                $host = $node. '.'.$domain;
653                                                        } else {
654                                                                $host = $node;
655                                                        }
656
657                                                        //$host = $node.'.'.$jobs[$jobid][domain];
658                               
659                                                        if( !isset( $nodes[$host] ) )
660                                                                $my_node = new NodeImage( $host );
661                                                        else
662                                                                $my_node = $nodes[$host];
663
664                                                        if( !$my_node->hasJob( $jobid ) )
665
666                                                                if( isset( $jobs[$jobid][ppn] ) )
667                                                                        $my_node->addJob( $jobid, ((int) $jobs[$jobid][ppn]) );
668                                                                else
669                                                                        $my_node->addJob( $jobid, 1 );
670
671                                                        $nodes[$host] = $my_node;
672                                                }
673                                        }
674                                }
675                        }
676                }
677                $this->jobs = $jobs;
678                //print_r( $nodes );
679                $this->nodes = $nodes;
680                //print_r( $this->nodes );
681        }
682
683        function stopElement( $parser, $name ) {
684        }
685
686        function printInfo() {
687
688                $jobs = &$this->jobs;
689
690                printf( "---jobs---\n" );
691
692                foreach( $jobs as $jobid => $job ) {
693
694                        printf( "job %s\n", $jobid );
695
696                        if( isset( $job[nodes] ) ) {
697
698                                foreach( $job[nodes] as $node ) {
699
700                                        $mynode = $this->nodes[$node];
701                                        $hostname = $mynode->getHostname();
702                                        $location = $mynode->getLocation();
703
704                                        printf( "\t- node %s\tlocation %s\n", $hostname, $location );
705                                        //$this->nodes[$hostname]->setLocation( "hier draait job ".$jobid );
706                                }
707                        }
708                }
709
710                printf( "---nodes---\n" );
711
712                $nodes = &$this->nodes;
713
714                foreach( $nodes as $node ) {
715
716                        $hostname = $node->getHostname();
717                        $location = $node->getLocation();
718                        $jobs = implode( ' ', $node->getJobs() );
719                        printf( "* node %s\tlocation %s\tjobs %s\n", $hostname, $location, $jobs );
720                }
721        }
722
723        function getNodes() {
724                //print_r( $this->nodes );
725                return $this->nodes;
726        }
727
728        function getJobs() {
729                return $this->jobs;
730        }
731
732        function getHeartbeat() {
733                return $this->heartbeat['time'];
734        }
735}
736
737class NodeImage {
738
739        var $image, $x, $y, $hostname, $jobs, $tasks, $showinfo;
740
741        function NodeImage( $hostname ) {
742
743                $this->jobs = array();
744                //$this->image = $image;
745                //$this->x = $x;
746                //$this->y = $y;
747                $this->tasks = 0;
748                $this->hostname = $hostname;
749                $this->cpus = $this->determineCpus();
750                $this->showinfo = 1;
751        }
752
753        function addJob( $jobid, $cpus ) {
754                $jobs = &$this->jobs;
755
756                $jobs[] = $jobid;
757                $this->jobs = $jobs;
758
759                $this->addTask( $cpus );
760        }
761
762        function hasJob( $jobid ) {
763
764                $jobfound = 0;
765
766                if( count( $this->jobs ) > 0 )
767                        foreach( $this->jobs as $job )
768
769                                if( $job == $jobid )
770                                        $jobfound = 1;
771
772                return $jobfound;
773        }
774
775        function addTask( $cpus ) {
776
777                $this->tasks = $this->tasks + $cpus;
778        }
779
780        function setImage( $image ) {
781
782                $this->image = $image;
783        }
784
785        function setCoords( $x, $y ) {
786
787                $this->x = $x;
788                $this->y = $y;
789        }
790
791        function colorHex( $color ) {
792       
793                $my_color = imageColorAllocate( $this->image, hexdec( substr( $color, 0, 2 )), hexdec( substr( $color, 2, 2 )), hexdec( substr( $color, 4, 2 )) );
794
795                return $my_color;
796        }
797
798        function setLoad( $load ) {
799                $this->load = $load;
800        }
801
802        function setHostname( $hostname ) {
803                $this->hostname = $hostname;
804        }
805
806        function getHostname() {
807                return $this->hostname;
808        }
809
810        function getJobs() {
811                return $this->jobs;
812        }
813
814        function setShowinfo( $showinfo ) {
815                $this->showinfo = $showinfo;
816        }
817
818        function draw() {
819
820                $this->drawSmall();
821        }
822
823        function drawBig() {
824
825        }
826
827        function drawSmall() {
828
829                global $SMALL_CLUSTERIMAGE_NODEWIDTH;
830                global $JOB_NODE_MARKING;
831
832                $black_color = imageColorAllocate( $this->image, 0, 0, 0 );
833                $size = $SMALL_CLUSTERIMAGE_NODEWIDTH;
834
835                imageFilledRectangle( $this->image, $this->x, $this->y, $this->x+($size), $this->y+($size), $black_color );
836
837                if( $this->showinfo) {
838               
839                        $this->load = $this->determineLoad();
840
841                        if( !isset( $this->image ) or !isset( $this->x ) or !isset( $this->y ) ) {
842                                printf( "aborting\n" );
843                                printf( "x %d y %d load %f\n", $this->x, $this->y, $load );
844                                return;
845                        }
846
847
848                        // Convert Ganglias Hexadecimal load color to a Decimal one
849                        //
850                        $load = $this->determineLoad(); 
851                        $usecolor = $this->colorHex( load_color($load) );
852                        imageFilledRectangle( $this->image, $this->x+1, $this->y+1, $this->x+($size-1), $this->y+($size-1), $usecolor );
853                        if( count( $this->jobs ) > 0 )
854                                imageString( $this->image, 1, $this->x+(($size/2)-1), $this->y+(($size/2)-4), $JOB_NODE_MARKING, $black_color );
855
856                } else {
857
858                        // White
859                        $usecolor = imageColorAllocate( $this->image, 255, 255, 255 );
860                        imageFilledRectangle( $this->image, $this->x+1, $this->y+1, $this->x+($size-1), $this->y+($size-1), $usecolor );
861                }
862
863
864        }
865
866        function determineCpus() {
867
868                global $metrics;
869
870                $cpus = $metrics[$this->hostname][cpu_num][VAL];
871                if (!$cpus) $cpus=1;
872
873                return $cpus;
874        }
875
876        function determineLoad() {
877
878                global $metrics;
879
880                $load_one = $metrics[$this->hostname][load_one][VAL];
881                $load = ((float) $load_one)/$this->cpus;
882
883                return $load;
884        }
885}
886
887class ClusterImage {
888
889        var $dataget, $image, $clustername;
890        var $filtername, $filters;
891
892        function ClusterImage( $clustername ) {
893
894                //printf( "image cluster = %s\n", $clustername );
895                $this->dataget = new DataGatherer( $clustername );
896                $this->clustername = $clustername;
897                $this->filters = array();
898        }
899
900        function setFilter( $filtername, $filtervalue ) {
901
902                //printf("filter %s = %s\n", $filtername, $filtervalue );
903                //printf( "filter set to %s = %s\n", $filtername, $filtervalue );
904                $this->filters[$filtername] = $filtervalue;
905                //print_r($this->filters);
906        }
907
908        function filterNodes( $jobs, $nodes ) {
909
910                $filtered_nodes = array();
911
912                foreach( $nodes as $node ) {
913
914                        $hostname = $node->getHostname();
915
916                        $addhost = 1;
917
918                        if( count( $this->filters ) > 0 ) {
919
920                                $mynjobs = $node->getJobs();
921
922                                if( count( $mynjobs ) > 0 ) {
923
924                                        foreach( $mynjobs as $myjob ) {
925
926                                                foreach( $this->filters as $filtername => $filtervalue ) {
927
928                                                        //printf("filter bla %s = %s\n", $filtername,$filtervalue );
929
930                                                        if( $filtername!=null && $filtername!='' ) {
931
932                                                                if( $filtername == 'jobid' && !$node->hasJob( $filtervalue) ) {
933                                                                        $addhost = 0;
934                                                                        //printf("host %s has no job %s\n", $hostname, $filtervalue);
935                                                                } else if( $filtername != 'jobid' ) {
936                                                                        //printf("myjob is %s\n", $myjob );
937                                                                        if( $jobs[$myjob][$filtername] != $filtervalue ) {
938                                                                                //printf("host %s has no job with %s=%s\n", $hostname, $filtername, $filtervalue);
939                                                                                $addhost = 0;
940                                                                        }
941                                                                }
942                                                        }
943                                                }
944                                        }
945                                } else
946                                        $addhost = 0;
947                        }
948
949                        if( $addhost )
950                                $filtered_nodes[] = $hostname;
951                }
952
953                return $filtered_nodes;
954        }
955
956        function draw() {
957
958                //printf("stopt met uitvoer");
959                //return;
960
961                global $SMALL_CLUSTERIMAGE_MAXWIDTH, $SMALL_CLUSTERIMAGE_NODEWIDTH;
962       
963                $mydatag = $this->dataget;
964                $mydatag->parseXML();
965
966                //$max_width = 250;
967                //$node_width = 11;
968
969                $max_width = $SMALL_CLUSTERIMAGE_MAXWIDTH;
970                $node_width = $SMALL_CLUSTERIMAGE_NODEWIDTH;
971
972                //printf( "cmaxw %s nmaxw %s", $SMALL_CLUSTERIMAGE_MAXWIDTH, $SMALL_CLUSTERIMAGE_NODEWIDTH );
973
974                $nodes = $mydatag->getNodes();
975                $nodes_hosts = array_keys( $nodes );
976
977                $nodes_nr = count( $nodes );
978
979                $nodes_size = $nodes_nr*$node_width;
980                $node_rows = 0;
981
982                if( $nodes_size > $max_width ) {
983                        $nodes_per_row = ( (int) ($max_width/$node_width) );
984                } else {
985                        $nodes_per_row = $nodes_size;
986                        $node_rows = 1;
987                }
988
989                if( $nodes_per_row < $nodes_nr ) {
990                        $node_rows = ( (int) ($nodes_nr/$nodes_per_row) );
991                        $node_rest = fmod( $nodes_nr, $nodes_per_row );
992                        //printf( "nodesnr %d noderest %f\n", $nodes_nr, $node_rest );
993                        if( $node_rest > 0 ) {
994                                $node_rows++;
995                                //printf( "noderows %d\n", $node_rows );
996                        }
997                }
998
999                //printf( "imagecreate: %dx%d", ($nodes_per_row*$node_width), ($node_rows*$node_width) );
1000                //$image = imageCreateTrueColor( ($nodes_per_row*$node_width)+1, ($node_rows*$node_width)+1 );
1001                $image = imageCreateTrueColor( $max_width, ($node_rows*$node_width)+1 );
1002                $colorwhite = imageColorAllocate( $image, 255, 255, 255 );
1003                imageFill( $image, 0, 0, $colorwhite );
1004
1005                $jobs = $mydatag->getJobs();
1006                //printf("filtername = %s\n", $filtername );
1007                $filtered_nodes = $this->filterNodes( $jobs, $nodes );
1008
1009                //print_r($filtered_nodes);
1010
1011                for( $n = 0; $n < $node_rows; $n++ ) {
1012                       
1013                        for( $m = 0; $m < $nodes_per_row; $m++ ) {
1014                       
1015                                $x = ($m * $node_width);
1016                                $y = ($n * $node_width);
1017
1018                                $cur_node = ($n * $nodes_per_row) + ($m);
1019                                $host = $nodes_hosts[$cur_node];
1020
1021
1022                                if( isset( $nodes[$host] ) ) {
1023
1024                                        $nodes[$host]->setCoords( $x, $y );
1025                                        $nodes[$host]->setImage( $image );
1026
1027                                        if( !in_array( $host, $filtered_nodes ) )
1028                                                $nodes[$host]->setShowinfo( 0 );
1029
1030                                        $nodes[$host]->draw();
1031                                }
1032                        }
1033                }
1034               
1035                header( 'Content-type: image/png' );
1036                imagePNG( $image );
1037                imageDestroy( $image );
1038        }
1039}
1040
1041class EmptyImage {
1042
1043        function draw() {
1044                $image          = imageCreateTrueColor( 1, 1 );
1045                $colorwhite     = imageColorAllocate( $image, 255, 255, 255 );
1046                imageFill( $image, 0, 0, $colorwhite );                         
1047
1048                header( 'Content-type: image/png' );
1049                imagePNG( $image );
1050                imageDestroy( $image );
1051        }
1052}
1053
1054//$my_data = new DataGatherer();
1055//$my_data->parseXML();
1056//$my_data->printInfo();
1057
1058//$ic = new ClusterImage( "LISA Cluster" );
1059//$ic->draw();
1060?>
Note: See TracBrowser for help on using the repository browser.