Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge remote branch 'github/master'
[simgrid.git] / tools / doxygen / doxygen_postprocesser.pl
1 #! /usr/bin/perl
2
3 use strict;
4
5 # Add here the pages of the documentation generated by a @page doxygen macro
6 my @extra_files = qw(html/index.html html/faq.html html/history.html html/contrib.html html/people.html
7                      html/publis.html html/publis_core.html html/publis_extern.html html/publis_intra.html
8                      html/pages.html html/modules.html  index.php 
9                      html/GRAS_tut.html);
10
11 # GRAS tutorial
12 map {push @extra_files, "html/GRAS_tut_$_.html"} qw (intro 
13                                                      tour tour_install tour_setup tour_simpleexchange tour_args tour_callbacks tour_globals 
14                                                           tour_logs tour_timers tour_exceptions tour_rpc);
15
16 # GRAS examples
17 map {push @extra_files, "html/GRAS_ex_$_.html"} qw (ping mmrpc token timer);
18
19 my %debug;
20 $debug{'parse'} = 0; # show how we parse the module tree
21 $debug{'input'} = 0; # display the resulting tree
22 $debug{'handle'}= 0; # Be verbose on the post-processing
23 $debug{'rename'}= 0; # do not overwrite the files (allows several debuging runs without rerunning doxygen)
24
25 my @allfiles;
26 ###
27 ### Get the module definitions
28 ###
29
30 open IN, "html/modules.html" || die "Cannot parse html/modules.html. Did you really run doxygen?\n";
31
32 # pass headers
33 while (<IN>) {
34   last if /group__SimGrid__API.html/;
35 }
36
37 # Parse the tree
38 my $top;
39 my $current;
40 my $entry;
41
42 # $current->{'label'}="ROOT";
43 # push @{$top->{'down'}},$current;
44 # print "Push $current '".($current->{'label'})."' as child of $top '".($top->{'label'})."'\n" if $debug{'parse'};
45 # $current=$top;
46 $top->{'label'}="ROOT";
47 print "Create ROOT $top\n" if $debug{'parse'};
48 $current=$top;
49
50
51 # Read the whole data to postprocess it a bit
52 my $in;
53 while (<IN>) {
54     $in .= $_;
55 }
56 $in =~ s/<ul>/\n<ul>\n/sg;
57 foreach $_ (split(/\n/,$in)) {
58     next unless length($_);
59     next if ($_ =~ m|^</li>$|);
60     print "  Seen '$_'\n" if $debug{'parse'};
61   if (/<ul>/) {
62     print "DOWN: $current '$current->{'label'}' -> " if $debug{'parse'};
63     $current = $current->{'down'}[scalar @{$current->{'down'}} - 1];
64     print "$current '$current->{'label'}'\n" if $debug{'parse'};
65     next;
66   }
67   if (/<\/ul>/) {
68     $current = $current->{'up'};
69     print "UP to $current '$current->{'label'}'\n" if $debug{'parse'};
70     next;
71   }
72   if (/<p>/) {
73     last;
74   }
75   
76   m|href="([^"]*)">([^<]*)</a>|; #"
77   
78   $entry = {};
79   $entry->{'file'} = $1;  
80   $entry->{'label'} = $2;
81   $entry->{'up'} = $current;
82   push @{$current->{'down'}},$entry;
83   print "Push file:$1 label:'$2' as child of $current '$current->{'label'}'\n" if $debug{'parse'};
84   push @allfiles,"html/$1";
85 }
86 close IN;
87
88 # Check each file for extra information (short name, extra childs)
89 sub extra_info {
90   my $current=shift;
91
92   if (defined($current->{'file'})) {
93     open IN, "html/$current->{'file'}";
94     while (<IN>) {
95       if (/DOXYGEN_NAVBAR_LABEL/) {
96         if (/DOXYGEN_NAVBAR_LABEL="([^"]*)"/) {#"
97           print "Extra info from $current->{'file'}: label=$1, not $current->{'label'}\n" if $debug{'parse'};
98           $current->{'label'}=$1;
99         } else {
100           die "Malformated DOXYGEN_NAVBAR_LABEL line in $current->{'file'}";
101         }
102       }
103       if (/DOXYGEN_NAVBAR_CHILD/) {
104         if (/DOXYGEN_NAVBAR_CHILD *"([^"]*)"=([^ ]*)/) {#"
105           $entry = {};
106           $entry->{'label'} = $1;
107           $entry->{'file'} = $2;
108           chomp($entry->{'file'});
109           $entry->{'up'} = $current;
110           push @{$current->{'down'}},$entry;
111           print "Extra info from $current->{'file'}: New child $entry->{'label'}=$entry->{'file'}\n"  if $debug{'parse'};
112         } else {
113           die "Malformated DOXYGEN_NAVBAR_CHILD line in $current->{'file'}";
114         }
115       }
116     }
117   }
118   
119   foreach my $entry (@{$current->{'down'}}) {
120     extra_info($entry);
121   }  
122 }
123 extra_info($top);
124
125 ## debug function
126 sub display {
127   my $current=shift;
128   my $level=shift;
129   print "  " x $level;
130   print "$current: ".$current->{'label'}." ($current->{'file'})\n";
131   foreach my $entry (@{$current->{'down'}}) {
132     display($entry,$level+1);
133   }
134 }
135
136 display($top,0) if $debug{'input'};
137
138 ###
139 ### Generate the navbar
140 ###
141
142 # the root deserves some special handling
143 open IN,"html/modules.html" || die;
144 open OUT,">html/modules.new.html" || die;
145 my $line;
146 while ($line = <IN>) {
147   last if $line =~ /<h1>SimGrid Modules</;
148   print OUT $line;
149 }
150
151 print OUT "<div class=\"tabs\">\n  <ul class=\"tablist\">\n";
152 foreach $current (@{ ${$top->{'down'}}[0]->{'down'} }) {
153   print OUT "   <li><a href=\"$current->{'file'}\"><span>$current->{'label'}</span></a></li>\n";
154 }
155 print OUT "  </ul></div>\n";
156 print OUT $line;
157 while (<IN>) {
158   print OUT $_;
159 }
160
161 close OUT;
162 close IN;
163 rename("html/modules.new.html","html/modules.html") unless $debug{'rename'};
164
165 # the publication pages deserves some special handling too
166 my %pub_tabs = ("publis.html"       =>"Reference publications",
167                 "publis_core.html"  =>"Other publication about SimGrid",
168                 "publis_extern.html"=>"External papers using SimGrid",
169                 "publis_intra.html"=>"Internal papers using SimGrid");
170 # force ordering
171 my @pub_titles = ("publis.html", "publis_core.html", "publis_extern.html", "publis_intra.html");
172 sub handle_pub{
173     my $oldname = shift;
174     my $newname = $oldname;
175     $newname =~ s/\.html$/.new.html/;
176  
177 #    print "Handle_pub($oldname -> $newname)\n";
178     
179     open IN,"html/$oldname" || die "Cannot open $oldname";
180     open OUT,">html/$newname" || die "Cannot open $newname";
181     my $line;
182     while ($line = <IN>) {
183         last if $line =~ /<h1>/;
184         print OUT $line;
185     }
186
187     print OUT "<div class=\"tabs\">\n<ul class=\"tablist\">\n";
188     foreach my $page (@pub_titles) {
189         print OUT "         <li".($page eq $oldname? " class=\"current\"":"" )."> <a href=\"$page\"><span>".($pub_tabs{$page})."</span></a></li>\n";
190     }
191
192     print OUT "  </ul></div>\n";
193     print OUT $line;
194     while ($line = <IN>) {
195         print OUT $line;
196     }
197     close OUT;
198     close IN;
199     rename("html/$newname","html/$oldname") unless $debug{'rename'};
200 }
201 map {handle_pub($_)} @pub_titles;
202
203
204 # Operate the recursion
205 sub handle_page {
206   my $current=shift;
207   my $level=shift;
208
209   print "Handle $current->{'file'} at level $level\n" if $debug{'handle'};
210     
211   # we generate the tabs bottom up begining from where we are in the tree
212   # and display them top down, as it should in a file
213   my @tabs = ();
214
215   if (defined ($current->{'label'}) and $current->{'label'} ne 'ROOT') {
216 #    print "handle $current->{'file'}, at level $level\n";
217     # generate the tabs
218     my $iterator = $current;
219     my $lvl_it=$level;
220     while ($lvl_it >= 0) {
221       my $father = $iterator->{'up'};
222       $tabs[$lvl_it] = "<div class=\"tabs2\">\n<ul class=\"tablist\">\n";
223       foreach my $bro (@{$father->{'down'}}) {
224         $tabs[$lvl_it] .= "  <li".($bro==$iterator?" class=\"current\"":"")."> <a href=\"$bro->{'file'}\"><span>$bro->{'label'}</span></a></li>\n";      
225       }
226       $tabs[$lvl_it] .= "  </ul></div>\n";
227       $iterator = $father;
228       $lvl_it--;
229     }
230     if (defined $current->{'down'}) { # there's some kid. Display them too
231       $tabs[$level+1] = "<div class=\"tabs2\">\n  <ul class=\"tablist\">\n";
232       foreach my $kid (@{$current->{'down'}}) {
233         $tabs[$level+1] .= "  <li> <a href=\"$kid->{'file'}\"><span>$kid->{'label'}</span></a></li>\n";      
234       }
235       $tabs[$level+1] .= "  </ul></div>\n";      
236     }
237     
238     # put them in place
239     open FROM,"html/$current->{'file'}" || die;
240     my $newname="html/$current->{'file'}";
241     $newname =~ s/.html/.handlepage.html/;
242     open TO,">$newname" || die;
243 #    print "XXX Deal with html/$current->{'file'}  ->  $newname\n";
244     while (<FROM>) {
245 #      print "--Read  $_";
246       # add "current" to the module API granfather page
247       s|<li><a href="modules.html"><span>[^<]*</span></a></li>|<li class="current"><a href="modules.html"><span>Modules&nbsp;API</span></a></li>|;
248 #      print "++Write $_";
249       print TO "$_";
250       last if (m|</div>|);
251     }
252       
253     print TO "\n<!-- POST-PROCESSED TABS -->\n";
254     foreach (@tabs) {
255 #      print "TAB: $_";
256       print TO "$_";
257     }
258     print TO "\n<!-- END OF POST-PROCESSED TABS -->\n";
259       
260     if ($current->{'file'} =~ m/^class/) {
261         while (<FROM>) {
262             last if (m|</div>|);
263         }
264       print TO "$_";    
265     }
266     while (<FROM>) {
267       if (m/POST-PROCESSED TABS/) {
268           while (<FROM>) {
269               last if (m/END OF POST-PROCESSED TABS/);
270           }
271           next;
272       }
273
274       if (m/The documentation for/) {
275           while (<FROM>) {
276               last if (m/<p>/);
277           }
278       }
279       print TO "$_";
280     }    
281     close FROM;
282     close TO;
283     rename("$newname","html/$current->{'file'}") unless $debug{'rename'};
284   } 
285   
286   # recurse on childs
287   foreach my $entry (@{$current->{'down'}}) {
288     handle_page($entry,$level+1);
289   }
290 }
291
292 ###
293 ### Launch the modules navbar reworking
294 ###
295 handle_page($top,-2);# skip roots (we have 2 roots) in level counting
296
297
298 ###
299 ### Post-processsing common to all pages
300 ###
301 map {push @allfiles,$_} @extra_files;
302 print "All files: ".(join(", ",@allfiles))."\n" if $debug{'parse'};
303
304 foreach my $file (@allfiles) {
305     $file =~ s/.html/.handlepage.html/ if $debug{'rename'}; # Take right name if debugging
306         
307     open FROM,"$file" || die;
308     my $outfile = "$file";
309     $outfile =~ s/.(html|php)$/.new.$1/;
310     open TO,">$outfile" || die;
311 #    print "POSTPROCESSING $file (tmp=$outfile)\n";
312     while (<FROM>) {
313       # Add the simgrid css, just in case
314       print TO '<link href="simgrid.css" rel="stylesheet" type="text/css">'."\n"
315         if (m|</head>|);
316
317         
318       # Rework the navbar
319       if($file =~ "^html/index.*"){
320               if ($_ =~ /<li><a href="index.html"><span>Main&#160;Page<\/span><\/a><\/li>/) {
321                 print TO '      <li class="current"><a href="index.html"><span>Main&#160;Page</span></a></li>'."\n";
322                 next;
323               }
324               elsif ($_ =~ /[\ ]*<li class="current">.*/) {
325                 $_ =~ s/ class="current"//g;
326                 print TO $_;
327                 next;
328               }
329       }
330 #      if (m,<li><a href="(doc/)?annotated.html"><span>Data\&nbsp;Structures</span></a></li>,) {
331 #        print TO '    <li'.($file =~ m,(doc/)?publis(_[^.]*)?.html, ? " class='current'" :"").'><a href="'.$1.'publis.html"><span>Publications</span></a></li>'."\n";
332 #        print TO '    <li'.($file =~ m,(doc/)?people.html, ? " class='current'" :"").'><a href="'.$1.'people.html"><span>People</span></a></li>'."\n";
333 #        print TO '    <li'.($file =~ m,(doc/)?history.html, ? " class='current'" :"").'><a href="'.$1.'history.html"><span>History</span></a></li>'."\n";
334 #        print TO '    <li'.($file =~ m,(doc/)?contrib.html, ? " class='current'" :"").'><a href="'.$1.'contrib.html"><span>Contrib</span></a></li>'."\n";
335 #        next;
336 #      }
337       s|<span>Modules</span>|<span>Modules API</span>|g;
338       s|<span>Related&nbsp;Pages</span>|<span>Site&nbsp;Plan</span>|g;
339                                                                                                  
340       print TO $_;
341     }
342     close FROM;
343     close TO;
344     rename("$outfile", "$file") unless $debug{'rename'};
345 }
346
347
348