/[omni_gantt]/db2gantt.cgi
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /db2gantt.cgi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.20 by dpavlin, Mon Sep 16 15:09:19 2002 UTC revision 1.22 by dpavlin, Wed Sep 18 14:00:18 2002 UTC
# Line 20  my %cols = ( Line 20  my %cols = (
20          'In Progress/Failures'  => '192,64,192',          'In Progress/Failures'  => '192,64,192',
21          'In Progress/Errors'    => '255,128,128',          'In Progress/Errors'    => '255,128,128',
22          'Queuing'               => '255,255,0',          'Queuing'               => '255,255,0',
23            'Queuing/Errors'        => '255,192,64',
24          'Aborted'               => '255,0,0',          'Aborted'               => '255,0,0',
25          'Failed'                => '255,0,0',          'Failed'                => '255,0,0',
26          'Completed'             => '64,255,64',          'Completed'             => '64,255,64',
# Line 59  my $from=strftime("%Y-%m-%d %H:%M",local Line 60  my $from=strftime("%Y-%m-%d %H:%M",local
60  # keep count of each status  # keep count of each status
61  my %count;        my %count;      
62    
63  if (param('pic')) {  if (path_info()) {
64          print "Content-type: image/png\nCache-Control: max-age=3600, must-revalidate\n\n";          print "Content-type: image/png\nCache-Control: max-age=86400, must-revalidate\nExpires: ",scalar localtime(time()+24*60*60),"\nLast-Modified: ",scalar localtime(0),"\n";
65          # create picture using GD          # create picture using GD
66          use GD;          use GD;
67          my $im = new GD::Image(1,$height);          my $im = new GD::Image(1,$height);
68          my $back = $im->colorAllocate(255,255,255);          my $back = $im->colorAllocate(255,255,255);
69          $im->transparent($back);          $im->transparent($back);
70          my ($r,$g,$b) = split(/,/,param('pic'));          my $col = path_info(); $col =~ s,/,,g;
71            my ($r,$g,$b) = split(/,/,$col);
72          my $col = $im->colorAllocate($r,$g,$b);          my $col = $im->colorAllocate($r,$g,$b);
73          $im->fill(0,0,$col);          $im->fill(0,0,$col);
74            print "Content-Length: ",length($im->png),"\n\n";
75          binmode STDOUT;          binmode STDOUT;
76          print $im->png;          print $im->png;
77          exit;          exit;
# Line 80  Cache-Control: max-age=60, must-revalida Line 83  Cache-Control: max-age=60, must-revalida
83  <html>  <html>
84  <head>  <head>
85  <title>OmniBack Gantt: $from - $to</title>  <title>OmniBack Gantt: $from - $to</title>
86  <meta HTTP-EQUIV=\"Refresh\" CONTENT=60>";  <meta HTTP-EQUIV=\"Refresh\" CONTENT=600>";
87  if ($use_js) {  if ($use_js) {
88  print '  print '
89  <script type="text/javascript" language="javascript" src="1k.js"></script>  <script type="text/javascript" language="javascript" src="1k.js"></script>
# Line 204  sub color_bar { Line 207  sub color_bar {
207    
208          print STDERR "bar[$col] len:$l s scale:",($len_t/$width)," size:$size px<br> alt:$alt\n" if ($debug);          print STDERR "bar[$col] len:$l s scale:",($len_t/$width)," size:$size px<br> alt:$alt\n" if ($debug);
209    
210          my $html = "<img src=\"".$q->url(-relative=>1)."?pic=$col\" width=\"$size\" height=\"$h\"";          my $html = "<img src=\"".$q->url(-relative=>1)."/$col\" width=\"$size\" height=\"$h\"";
211    
212          if ($use_js && $alt) {          if ($use_js && $alt) {
213                  $html .= " onmouseover=\"T('$alt')\" onmouseout=\"T()\"";                  $html .= " onmouseover=\"T('$alt')\" onmouseout=\"T()\"";
# Line 254  sub sum_bar { Line 257  sub sum_bar {
257                          $len++;                          $len++;
258                  } else {                  } else {
259                          my $h = $last_var / $max_use * $height;                          my $h = $last_var / $max_use * $height;
260                          my $c = 255 - 255 * $last_var / $max_use;                          my $c = 255 - int (255 * $last_var / $max_use);
261                          print color_bar($len,"$c,$c,$c","$last_var concurrent jobs",1,$h+1);                          print color_bar($len,"$c,$c,$c","$last_var concurrent jobs",1,$h+1);
262                          $len = 0;                          $len = 0;
263                          $last_var = $v;                          $last_var = $v;
264                  }                  }
265          }          }
266          my $h = $last_var / $max_use * $height;          my $h = $last_var / $max_use * $height;
267          my $c = 255 - 255 * $last_var / $max_use;          my $c = 255 - int (255 * $last_var / $max_use);
268          print color_bar($len,"$c,$c,$c","$last_var concurrent jobs",1,$h+1) if ($len);          print color_bar($len,"$c,$c,$c","$last_var concurrent jobs",1,$h+1) if ($len);
269          print "</td></tr>";          print "</td></tr>";
270  }  }
271    
272    my @line_t;     # all seconds for this specification
273    my @line_arr = ("");    # all segments on line which are not fillers
274    
275    sub html_spec {
276            print "<tr><td>$curr_spec</td><td colspan=2>";
277    
278            my $last_var = 0;
279            my $len = 0;
280            my $i;
281            for (my $t=0; $t<=$len_t; $t++) {
282                    $i = $line_t[$t] || 0;
283                    if ($i == $last_var) {
284                            $len++;
285                    } else {
286                            if ($last_var == 0) {
287                                    print bar($len);
288                            } else {
289                                    print bar($len,split(/\t/,$line_arr[$last_var],2));
290                            }
291                            $len = 0;
292                            $last_var = $i;
293                    }
294            }
295            print bar($len,split(/\t/,$line_arr[$i],2));
296    
297            print "</td></tr>\n";
298    }
299    
300  while(my $row = $sth->fetchrow_hashref) {  while(my $row = $sth->fetchrow_hashref) {
301          if (!defined $curr_spec || $row->{specification} ne $curr_spec) {          if ($row->{specification} ne $curr_spec) {
302    
303                  if ($curr_t < $to_t && $curr_spec) {                  if ($curr_t < $to_t && $curr_spec) {
304                          my $t = $to_t - $curr_t;                          my $t = $to_t - $curr_t;
305                          print STDERR "[end filler $curr_t:$t]" if ($debug);                          print STDERR "[end filler $curr_t:$t]" if ($debug);
306                          print bar($t);  #                       print bar($t);
307                  }                  }
308    
309                  print "</td></tr>\n" if ($curr_t != $from_t);  #               print "</td></tr>\n" if ($curr_t != $from_t);
310    
                 if ($dev && @dev_t && $dev ne $row->{device}) {  
                         sum_bar("summary for $dev",@dev_t);  
                         $dev = $row->{device};  
                         @dev_t = ();  
                 } elsif (! $dev) {  
                         $dev = $row->{device};  
                 }  
311    
312                  # init vars for next line                  # init vars for next line
313                  ($fix_s,$fix_d) = (0,0); # init fix vars for bar                  ($fix_s,$fix_d) = (0,0); # init fix vars for bar
314                  print "<tr><td>", $row->{specification},"</td><td colspan=2>";  
315                    html_spec if ($curr_spec ne "");
316    
317                  $curr_t = $from_t;      # init timeline                  $curr_t = $from_t;      # init timeline
318                  $curr_spec = $row->{specification};                  $curr_spec = $row->{specification};
319    
320                    @line_t = ();
321                    @line_arr = ( "" );
322    
323                    if ($dev && @dev_t && $dev ne $row->{device}) {
324                            sum_bar("summary for $dev",@dev_t);
325                            $dev = $row->{device};
326                            @dev_t = ();
327                    } elsif (! $dev) {
328                            $dev = $row->{device};
329                    }
330          }          }
331    
332          my $start_t = str2time($row->{start});          my $start_t = str2time($row->{start});
# Line 301  while(my $row = $sth->fetchrow_hashref) Line 336  while(my $row = $sth->fetchrow_hashref)
336          if ($start_t > $curr_t + ($len_t / $width)) {          if ($start_t > $curr_t + ($len_t / $width)) {
337                  my $t = $start_t - $curr_t;                  my $t = $start_t - $curr_t;
338                  print STDERR "[middle filler $curr_t:$t]" if ($debug);                  print STDERR "[middle filler $curr_t:$t]" if ($debug);
339                  print bar($t);  #               print bar($t);
340                  $curr_t = $start_t;                  $curr_t = $start_t;
341          } else {          } else {
342                  # prepend too few seconds to next event                  # prepend too few seconds to next event
# Line 334  while(my $row = $sth->fetchrow_hashref) Line 369  while(my $row = $sth->fetchrow_hashref)
369                  $row->{type}." <b>".$row->{status}."</b><br>".                  $row->{type}." <b>".$row->{status}."</b><br>".
370                  $row->{user_group_host}." <i>".$row->{sessionid}."</i><br>".                  $row->{user_group_host}." <i>".$row->{sessionid}."</i><br>".
371                  $row->{device}."&nbsp;on&nbsp;".$row->{host};                  $row->{device}."&nbsp;on&nbsp;".$row->{host};
372          print bar($len,$row->{status},$alt);  #       print bar($len,$row->{status},$alt);
373    
374            push @line_arr,$row->{status}."\t".$alt;
375          # store use of devices for each minute          # store use of devices for each minute
376          for (my $s=0; $s<$len; $s++) {          for (my $s=0; $s<$len; $s++) {
377                    $line_t[$curr_t-$from_t+$s] = $#line_arr;
378                  $dev_t[$curr_t-$from_t+$s]++;                  $dev_t[$curr_t-$from_t+$s]++;
379                  $dev_sum_t[$curr_t-$from_t+$s]++;                  $dev_sum_t[$curr_t-$from_t+$s]++;
380          }          }
# Line 349  while(my $row = $sth->fetchrow_hashref) Line 386  while(my $row = $sth->fetchrow_hashref)
386  }  }
387    
388  if ($curr_t == $from_t) {       # no entries in database!  if ($curr_t == $from_t) {       # no entries in database!
389          print "<tr><td></td><td colspan=2>";  #       print "<tr><td></td><td colspan=2>";
390  }  }
391    
392  if ($curr_t < $to_t ) {  if ($curr_t < $to_t ) {
393          my $t = $to_t - $curr_t;          my $t = $to_t - $curr_t;
394          print STDERR "[last_line filler $curr_t:$t]" if ($debug);          print STDERR "[last_line filler $curr_t:$t]" if ($debug);
         print bar($t);  
395  }  }
396    
397  undef $sth;  undef $sth;
398  $dbh->disconnect;  $dbh->disconnect;
399    
400  print "</td></tr>\n";  html_spec();
401  sum_bar("summary for $dev",@dev_t);  sum_bar("summary for $dev",@dev_t);
402  hour_grid();  hour_grid();
403  sum_bar("summary for all devices",@dev_sum_t);  sum_bar("summary for all devices",@dev_sum_t);

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.22

  ViewVC Help
Powered by ViewVC 1.1.26