/[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

Annotation of /db2gantt.cgi

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.6 - (hide annotations)
Fri Sep 13 13:55:27 2002 UTC (21 years, 6 months ago) by dpavlin
Branch: MAIN
Changes since 1.5: +42 -29 lines
fixes

1 dpavlin 1.1 #!/usr/bin/perl -w
2    
3     use strict;
4     use DBI;
5     use Data::Dumper;
6     use Date::Parse;
7 dpavlin 1.3 use CGI qw/:standard/;
8 dpavlin 1.4 use POSIX qw(strftime);
9 dpavlin 1.3
10 dpavlin 1.6 my $debug = 0;
11    
12     my $width = 600; # width of bar
13     my $height = 12; # height of bar
14     my $use_js = 1; # use JavaScript pop-up
15 dpavlin 1.3
16 dpavlin 1.4 # status colors
17 dpavlin 1.3 my %cols = (
18     'In Progress' => '0,255,0',
19 dpavlin 1.4 'In Progress/Failure' => '255,64,255',
20     'In Progress/Errors' => '255,64,0',
21 dpavlin 1.3 'Queuing' => '255,255,0',
22 dpavlin 1.4 'Aborted' => '255,0,0',
23     'Failed' => '255,0,0',
24     'Completed' => '64,255,64',
25     'Completed/Errors' => '255,128,0',
26     'Completed/Failure' => '128,0,128',
27     'Mount Request' => '128,128,255',
28 dpavlin 1.3 );
29    
30 dpavlin 1.6 my $int_t = (12 * 60 * 60); # interval to display on one screen
31     my $min_l = 3; # min length of bar segment (in pixels)
32    
33 dpavlin 1.4 #--- no user servicable parts below this line
34    
35     # time range
36    
37 dpavlin 1.6 my ($from_t,$to_t) = (time()-$int_t,time());
38 dpavlin 1.4
39     $to_t = param('to_t') if (param('to_t'));
40     $from_t = param('from_t') if (param('from_t'));
41    
42 dpavlin 1.6 # round to nearest minute
43     $to_t = $to_t - ($to_t % 60);
44     $from_t = $from_t - ($from_t % 60) + 60;
45    
46     my $to=strftime("%Y-%m-%d %H:%M",localtime ($to_t));
47     my $from=strftime("%Y-%m-%d %H:%M",localtime ($from_t));
48 dpavlin 1.4
49    
50     # keep count of each status
51     my %count;
52 dpavlin 1.3
53     if (param('pic')) {
54 dpavlin 1.4 print "Content-type: image/png\nCache-Control: max-age=3600, must-revalidate\n\n";
55 dpavlin 1.3 # create picture using GD
56     use GD;
57 dpavlin 1.6 my $im = new GD::Image(1,$height);
58 dpavlin 1.3 my $back = $im->colorAllocate(255,255,255);
59     $im->transparent($back);
60     my ($r,$g,$b) = split(/,/,param('pic'));
61     my $col = $im->colorAllocate($r,$g,$b);
62     $im->fill(0,0,$col);
63     binmode STDOUT;
64     print $im->png;
65     exit;
66     }
67 dpavlin 1.1
68 dpavlin 1.4 print "Content-type: text/html
69    
70     <html>
71     <head>
72     <title>OmniBack Gantt: $from - $to</title>";
73     if ($use_js) {
74     print '
75     <script type="text/javascript" language="javascript" src="1k.js"></script>
76     <script type="text/javascript" language="javascript" src="tooltip.js"></script>
77     <script language="javascript" type="text/javascript">
78     onload=function(){
79     T.init()
80     T.follows = false // false by default
81     T.delay = .3 // any nonnegative value (0.7 by default)
82     }
83     </script>
84     ';
85     }
86     print "</head><body>";
87 dpavlin 1.1
88     # all vars ending in *_t have utime in them.
89     #
90     my $len_t = $to_t - $from_t;
91    
92     die "interval must be positive and bigger than 1 sec !" if ($len_t < 1);
93    
94     my $dbh = DBI->connect("DBI:Pg:dbname=gantt","","") || die $DBI::errstr;
95 dpavlin 1.3 my $q=new CGI;
96 dpavlin 1.1
97    
98 dpavlin 1.4 sub mknav {
99     my $f = shift @_; # from_t
100     my $t = shift @_; # to_t
101     my $ch = shift @_; # char
102    
103     return "<a href=\"".$q->url(-relative=>1)."?from_t=${f}&to_t=${t}\">$ch</a>";
104     }
105    
106 dpavlin 1.1 print "<table>";
107 dpavlin 1.4 print "<tr bgcolor=#e0e0e0><td>Specification</td><td align=left>";
108 dpavlin 1.6 print mknav(($from_t-$int_t),$to_t,'<small>&lt;&lt;</small>'),$from;
109     print mknav(($from_t+$int_t),$to_t,'<small>&gt;&gt;</small>') if ($from_t+$int_t < $to_t);
110 dpavlin 1.4 print "</td><td align=right>";
111 dpavlin 1.6 print mknav($from_t,($to_t-$int_t),'<small>&lt;&lt;</small>') if ($to_t-$int_t > $from_t);
112     print $to,mknav($from_t,($to_t+$int_t),'<small>&gt;&gt;</small>'),"</td></tr>\n";
113 dpavlin 1.4
114     my $fix_d = 0; # used to fix graph len
115 dpavlin 1.3
116 dpavlin 1.4 sub bar {
117     my $l = shift @_; # lenght of event utime
118     my $status = shift @_ || undef; # what to draw
119     my $alt = shift @_ || undef;
120 dpavlin 1.1
121 dpavlin 1.4 my $size = int($l / ($len_t / $width));
122     if ($size < $min_l) {
123     $size = $min_l;
124     $fix_d += $min_l;
125     }
126     if ($fix_d && $size > $fix_d+$min_l) {
127     $size -= $fix_d;
128     $fix_d = 0;
129     }
130 dpavlin 1.1
131 dpavlin 1.6 print STDERR "bar[$status] len:$l s scale:",($len_t/$width)," size:$size px<br> alt:$alt\n" if ($debug);
132 dpavlin 1.2
133 dpavlin 1.4 my $html = "<img src=\"".$q->url(-relative=>1)."?pic=";
134 dpavlin 1.1
135 dpavlin 1.4 if ($status) {
136     $html .= $cols{$status};
137     $count{$status}++;
138     } else {
139     # $html .= '240,240,240';
140     $html .= '220,220,220';
141     }
142 dpavlin 1.1
143 dpavlin 1.6 $html .= "\" width=\"$size\" height=\"$height\"";
144 dpavlin 1.4 if ($use_js && $alt) {
145     $html .= " onmouseover=\"T('$alt')\" onmouseout=\"T()\"";
146     } elsif ($alt) {
147     $html .= " alt=\"$alt\"";
148     }
149     $html .= ">";
150    
151     return($html);
152 dpavlin 1.1 }
153    
154 dpavlin 1.6 my $sql = "select start,finish,specification,status,user_group_host,
155     type,sessionid,device,host
156 dpavlin 1.1 from gantt
157     where (start < '$from' and finish > '$from') or
158     (start > '$from' and start < '$to')
159 dpavlin 1.6 order by device,specification
160 dpavlin 1.1 ";
161    
162     my $sth = $dbh->prepare($sql) || die "sql: $sql ".$dbh->errstr;
163    
164     my %spec; # specification hash
165    
166     my $curr_spec;
167     my $curr_t = $from_t;
168    
169     $sth->execute() || die "sql: $sql ".$dbh->errstr;
170 dpavlin 1.2
171 dpavlin 1.1 while(my $row = $sth->fetchrow_hashref) {
172 dpavlin 1.6 if (!defined $curr_spec || $row->{specification} ne $curr_spec) {
173 dpavlin 1.1
174 dpavlin 1.3 if ($curr_t < $to_t && $curr_spec) {
175 dpavlin 1.1 my $t = $to_t - $curr_t;
176 dpavlin 1.6 print STDERR "[end filler $curr_t:$t]" if ($debug);
177 dpavlin 1.4 print bar($t);
178 dpavlin 1.1 }
179    
180 dpavlin 1.6 print "</td></tr>\n" if ($curr_t != $from_t);
181 dpavlin 1.1 print "<tr><td>", $row->{specification},"</td><td colspan=2>";
182    
183     $curr_t = $from_t; # init timeline
184     $curr_spec = $row->{specification};
185    
186     }
187    
188     my $start_t = str2time($row->{start});
189     my $fin_t = str2time($row->{finish});
190    
191     if ($start_t > $curr_t) {
192     my $t = $start_t - $curr_t;
193 dpavlin 1.6 print STDERR "[middle filler $curr_t:$t]" if ($debug);
194 dpavlin 1.4 print bar($t);
195 dpavlin 1.1 $curr_t = $start_t;
196     }
197    
198     my $len = $fin_t - $start_t;
199     # $len = $len_t if ($len > $len_t);
200     my $less = '';
201     my $more = '';
202    
203     if ($start_t < $from_t) {
204     # $len += ($from_t - $start_t);
205     $len = ($fin_t - $curr_t);
206     $less = "<<";
207     }
208 dpavlin 1.4
209 dpavlin 1.1 if ($fin_t > $to_t) {
210     # $len -= ($fin_t - $to_t);
211     $len = ($to_t - $curr_t);
212     $more = ">>"; # event now shown whole
213     }
214    
215     print STDERR "[$less",$row->{status}," $curr_t:$len$more]" if ($debug);
216 dpavlin 1.5
217 dpavlin 1.6 my $alt = $row->{start}." - ".$row->{finish}."<br>";
218 dpavlin 1.5 $alt =~ s/:\d\d\.\d+//g;
219 dpavlin 1.6 $alt =~ s/\s+/&nbsp;/g;
220     $alt .= $row->{type}." <b>".$row->{status}."</b><br>".
221     $row->{user_group_host}." <i>".$row->{sessionid}."</i><br>".
222     $row->{device}."&nbsp;on&nbsp;".$row->{host};
223 dpavlin 1.5 print bar($len,$row->{status},$alt);
224 dpavlin 1.1
225     $curr_t += $len;
226    
227     # print Dumper($row);
228    
229     }
230    
231 dpavlin 1.6 if ($curr_t == $from_t) { # no entries in database!
232     print "<tr><td></td><td colspan=2>";
233     }
234    
235 dpavlin 1.1 if ($curr_t < $to_t ) {
236     my $t = $to_t - $curr_t;
237 dpavlin 1.6 print STDERR "[last_line filler $curr_t:$t]" if ($debug);
238 dpavlin 1.4 print bar($t);
239 dpavlin 1.1 }
240    
241     undef $sth;
242     $dbh->disconnect;
243    
244 dpavlin 1.3 print "</td></tr>\n</table>";
245 dpavlin 1.4
246    
247     # label and usage
248     $len_t = 50; # disable bar scaling
249    
250     print "<hr>\nColors for statuses and usage (#):\n";
251     print "<table border=0><tr bgcolor=#e0e0e0><th>status</th><th>#</th><th>color</th></tr>\n";
252     foreach my $status (keys %count) {
253     #foreach my $status (keys %cols) {
254 dpavlin 1.6 print "<tr bgcolor=#e0e0e0><td><small>$status</small></td><td><small>",$count{$status}-1,"</small></td><td>",bar($count{$status},$status),"</td></tr>\n" if ($status ne "");
255     # -1 in line above is a cludge to display correct number on
256     # occurences on graph and without one on legend!
257 dpavlin 1.4 }
258     print "</table>\n</body></html>";
259 dpavlin 1.1

  ViewVC Help
Powered by ViewVC 1.1.26