4 # gtk-doc - GTK DocBook documentation generator.
5 # Copyright (C) 1998 Damon Chaplin
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 #############################################################################
23 # Script : gtkdoc-fixxref
24 # Description : This fixes cross-references in the HTML documentation.
25 #############################################################################
31 push @INC, '@PACKAGE_DATA_DIR@';
32 require "gtkdoc-common.pl";
36 # name of documentation module
44 my %optctl = ('module' => \$MODULE,
45 'module-dir' => \$MODULE_DIR,
46 'html-dir' => \$HTML_DIR,
47 'extra-dir' => \@EXTRA_DIRS,
48 'version' => \$PRINT_VERSION,
49 'help' => \$PRINT_HELP);
50 GetOptions(\%optctl, "module=s", "module-dir=s", "html-dir:s", "extra-dir=s@",
60 gtkdoc-fixxref version @VERSION@ - fix cross references in html files
62 --module=MODULE_NAME Name of the doc module being parsed
63 --module-dir=MODULE_DIR The directory which contains the generated HTML
64 --html-dir=HTML_DIR The directory where gtk-doc generated documentation is
66 --extra-dir=EXTRA_DIR Directories to recursively scan for indices (index.sgml)
67 in addition to HTML_DIR
68 May be used more than once for multiple directories
69 --version Print the version of this program
70 --help Print this help
75 # This contains all the entities and their relative URLs.
77 # This hold the path entries we already scanned
80 # failing link targets we don't warn about even once
99 if ($HTML_DIR =~ m%(.*?)/share/gtk-doc/html%) {
101 #print "Path prefix: $path_prefix\n";
104 if (!defined $MODULE_DIR) {
105 $MODULE_DIR="$HTML_DIR/$MODULE";
110 # We scan the directory containing GLib and any directories in GNOME2_PATH
111 # first, but these will be overriden by any later scans.
112 $dir = `pkg-config --variable=prefix glib-2.0`;
114 $dir = $dir . "/share/gtk-doc/html";
115 if (-d $dir && $dir ne $HTML_DIR) {
116 #print "Scanning GLib directory: $dir\n";
117 if ($dir !~ m%^\Q$path_prefix\E/%) {
118 &ScanIndices ($dir, 1);
120 &ScanIndices ($dir, 0);
122 push (@VisitedPaths, $dir);
125 if (defined ($ENV{"GNOME2_PATH"})) {
126 foreach $dir (split (/:/, $ENV{"GNOME2_PATH"})) {
127 $dir = $dir . "/share/gtk-doc/html";
128 if (-d $dir && $dir ne $HTML_DIR) {
129 #print "Scanning GNOME2_PATH directory: $dir\n";
130 if ($dir !~ m%^\Q$path_prefix\E/%) {
131 &ScanIndices ($dir, 1);
133 &ScanIndices ($dir, 0);
135 push (@VisitedPaths, $dir);
137 # ubuntu started to compress this as index.sgml.gz :/
138 # https://bugs.launchpad.net/ubuntu/+source/gtk-doc/+bug/77138
142 #print "Scanning HTML_DIR directory: $HTML_DIR\n";
143 &ScanIndices ($HTML_DIR, 0);
144 push (@VisitedPaths, $HTML_DIR);
145 #print "Scanning HTML_DIR directory: $MODULE_DIR\n";
146 &ScanIndices ($MODULE_DIR, 0);
147 push (@VisitedPaths, $MODULE_DIR);
149 # check all extra dirs, but skip already scanned dirs or subdirs of those
150 foreach my $dir (@EXTRA_DIRS) {
154 foreach $vdir (@VisitedPaths) {
155 if ($dir eq $vdir || $dir =~ m%^\Q$vdir\E/%) {
156 #print "Skipping EXTRA_DIR directory: $dir\n";
161 #print "Scanning EXTRA_DIR directory: $dir\n";
162 push (@VisitedPaths, $dir);
164 # If the --extra-dir option is not relative and is not sharing the same
165 # prefix as the target directory of the docs, we need to use absolute
166 # directories for the links
167 if ($dir !~m/^\.\./ && $dir !~ m%\Q$path_prefix\E/%) {
168 &ScanIndices ($dir, 1);
170 &ScanIndices ($dir, 0);
174 if (defined($MODULE)) {
175 open (INPUT, "$MODULE-sections.txt")
176 || die "Can't open $MODULE-sections.txt: $!";
182 } elsif (m/^<SECTION>/) {
184 } elsif (m/^<SUBSECTION\s*(.*)>/i) {
186 } elsif (m/^<SUBSECTION>/) {
188 } elsif (m/^<TITLE>(.*)<\/TITLE>/) {
190 } elsif (m/^<FILE>(.*)<\/FILE>/) {
192 } elsif (m/^<INCLUDE>(.*)<\/INCLUDE>/) {
194 } elsif (m/^<\/SECTION>/) {
196 } elsif (m/^(\S+)/) {
197 my $symbol=CreateValidSGMLID($1);
199 if ($subsection eq "Standard" || $subsection eq "Private") {
200 $NoLinks{$symbol} = 1;
207 &FixCrossReferences ($MODULE_DIR);
210 my ($scan_dir, $use_absolute_links) = @_;
212 #print "Scanning source directory: $scan_dir absolute: $use_absolute_links\n";
214 # This array holds any subdirectories found.
217 opendir (HTMLDIR, $scan_dir) || return;
219 foreach $file (readdir (HTMLDIR)) {
220 if ($file eq '.' || $file eq '..') {
222 } elsif (-d "$scan_dir/$file") {
223 push (@subdirs, $file);
224 } elsif ($file eq "index.sgml") {
225 &ScanIndex ("$scan_dir/$file", $use_absolute_links);
227 # ubuntu started to compress this as index.sgml.gz :/
228 # https://bugs.launchpad.net/ubuntu/+source/gtk-doc/+bug/77138
232 # Now recursively scan the subdirectories.
234 foreach $dir (@subdirs) {
235 &ScanIndices ("$scan_dir/$dir", $use_absolute_links);
240 my ($file, $use_absolute_links) = @_;
241 #print "Scanning index file: $file absolute: $use_absolute_links\n";
243 # Determine the absolute directory, to be added to links in index.sgml
244 # if we need to use an absolute link.
245 # $file will be something like /opt/gnome/share/gtk-doc/html/gtk/index.sgml
246 # We want the part up to 'html' since the links in index.sgml include
249 if ($use_absolute_links) {
250 $file =~ /(.*\/)(.*?)\/index\.sgml/;
254 open (INDEXFILE, $file)
255 || die "Can't open $file: $!";
256 while (<INDEXFILE>) {
257 if (m/^<ANCHOR\s+id\s*=\s*"([^"]*)"\s+href\s*=\s*"([^"]*)"\s*>/) {
258 #print "Found id: $1 href: $2\n";
259 $Links{$1} = "$dir$2";
266 sub FixCrossReferences {
269 opendir (HTMLDIR, $scan_dir)
270 || die "Can't open HTML directory $scan_dir: $!";
272 foreach $file (readdir (HTMLDIR)) {
273 if ($file eq '.' || $file eq '..') {
275 } elsif ($file =~ m/.html?$/) {
276 &FixHTMLFile ("$scan_dir/$file");
285 #print "Fixing file: $file\n";
287 open (HTMLFILE, $file)
288 || die "Can't open $file: $!";
290 my $entire_file = <HTMLFILE>;
293 if ("@HIGHLIGHT@" ne "") {
294 if ("@HIGHLIGHT@" =~ m%/vim$%) {
295 $entire_file =~ s%<div class=\"(example-contents|informalexample)\"><pre class=\"programlisting\">(.*?)</pre></div>%&HighlightSourceVim($1,$2);%gse;
298 $entire_file =~ s%<div class=\"(example-contents|informalexample)\"><pre class=\"programlisting\">(.*?)</pre></div>%&HighlightSource($1,$2);%gse;
300 # this just broke existing GTKDOCLINK tags
301 # <GTKDOCLINK HREF="GST-PAD-SINK:CAPS">GST_PAD_SINK</GTKDOCLINK>
302 $entire_file =~ s%\<GTKDOCLINK\s+HREF=\"(.*?)\"\>(.*?)\</GTKDOCLINK\>%\<GTKDOCLINK\ HREF=\"$1\"\>$2\</GTKDOCLINK\>%gs;
304 # from the highlighter we get all the functions marked up
305 # now we could turn them into GTKDOCLINK items
306 $entire_file =~ s%(<span class=\"function\">)(.*?)(</span>)%&MakeGtkDocLink($1,$2,$3);%gse;
307 # we could also try the first item in stuff marked up as 'normal'
308 $entire_file =~ s%(<span class=\"normal\">\s*)(.+?)((\s+.+?)?\s*</span>)%&MakeGtkDocLink($1,$2,$3);%gse;
311 my @lines = split(/\n/, $entire_file);
312 for (my $i=0; $i<$#lines; $i++) {
313 $lines[$i] =~ s%<GTKDOCLINK\s+HREF="([^"]*)"\s*>(.*?)</GTKDOCLINK\s*>% &MakeXRef($file,$i+1,$1,$2); %ge;
314 #if ($lines[$i] =~ m/GTKDOCLINK/) {
315 # print "make xref failed for line: ",$lines[$i], "\n";
318 $entire_file = join("\n",@lines);
320 open (NEWFILE, ">$file.new")
321 || die "Can't open $file: $!";
322 print NEWFILE $entire_file;
326 || die "Can't delete $file: $!";
327 rename ("$file.new", $file)
328 || die "Can't rename $file.new: $!";
332 my ($file, $line, $id, $text) = @_;
334 my $href = $Links{$id};
336 # this is a workaround for some inconsitency we have with CreateValidSGMLID
337 if (!$href && $id =~ m/:/) {
340 $href = $Links{$tid};
342 # poor mans plural support
343 if (!$href && $id =~ m/s$/) {
346 $href = $Links{$tid};
350 # if it is a link to same module, remove path to make it work
352 if (defined($MODULE) && $href =~ m%^\.\./$MODULE/(.*)$%) {
355 #print " Fixing link: $id, $href, $text\n";
356 return "<a href=\"$href\">$text</a>";
359 #print " no link for: $id, $text\n";
361 # don't warn multiple times and also skip blacklisted (ctypes)
362 $warn = 0 if exists $NoLinks{$id};
363 # if it's a function, don't warn if it does not contain a "_"
364 # (transformed to "-")
365 # - gnome coding style would use '_'
366 # - will avoid wrong warnings for ansi c functions
367 $warn = 0 if ($text =~ m/ class=\"function\"/ && $id !~ m/-/);
368 # if it's a 'return value', don't warn (implicitly created link)
369 $warn = 0 if ($text =~ m/ class=\"returnvalue\"/);
370 # if it's a 'type', don't warn if it starts with lowercase
371 # - gnome coding style would use CamelCase
372 $warn = 0 if ($text =~ m/ class=\"type\"/ && ($id =~ m/^[a-z]/));
375 &LogWarning ($file, $line, "no link for: '$id' -> ($text).");
384 my ($pre,$symbol,$post) = @_;
386 my $id=CreateValidSGMLID($symbol);
388 # these are implicitely created links in highlighed sources
389 # we don't want warnings for those if the links cannot be resolved.
392 #return "<span class=\"$type\"><GTKDOCLINK HREF=\"$id\">$symbol</GTKDOCLINK></span>";
393 return "$pre<GTKDOCLINK HREF=\"$id\">$symbol</GTKDOCLINK>$post";
397 sub HighlightSource {
398 my ($type, $source) = @_;
400 # chop of leading and trailing empty lines
401 $source =~ s/^\s*\n+//gs;
402 $source =~ s/[\s\n]+$//gs;
404 $source =~ m/^(\s*)/;
405 $source =~ s/^$1//gms;
406 # avoid double entity replacement
407 $source =~ s/</</g;
408 $source =~ s/>/>/g;
409 $source =~ s/&/&/g;
411 # write source to a temp file
412 # FIXME: use .c for now to hint the language to the highlighter
413 my $temp_source_file="$MODULE_DIR/_temp_src.$$.c";
414 open (NEWFILE, ">$temp_source_file") || die "Can't open $temp_source_file: $!";
415 print NEWFILE $source;
418 #print" running @HIGHLIGHT@ @HIGHLIGHT_OPTIONS@$temp_source_file \n";
421 my $highlighted_source=`@HIGHLIGHT@ @HIGHLIGHT_OPTIONS@$temp_source_file`;
422 if ("@HIGHLIGHT@" =~ m%/source-highlight$%) {
423 $highlighted_source =~ s%^<\!-- .*? -->%%gs;
424 $highlighted_source =~ s%<pre><tt>(.*?)</tt></pre>%$1%gs;
426 elsif ("@HIGHLIGHT@" =~ m%/highlight$%) {
427 # need to rewrite the stylesheet classes
428 $highlighted_source =~ s%<span class="gtkdoc com">%<span class="comment">%gs;
429 $highlighted_source =~ s%<span class="gtkdoc dir">%<span class="preproc">%gs;
430 $highlighted_source =~ s%<span class="gtkdoc kwd">%<span class="function">%gs;
431 $highlighted_source =~ s%<span class="gtkdoc kwa">%<span class="keyword">%gs;
432 $highlighted_source =~ s%<span class="gtkdoc line">%<span class="linenum">%gs;
433 $highlighted_source =~ s%<span class="gtkdoc num">%<span class="number">%gs;
434 $highlighted_source =~ s%<span class="gtkdoc str">%<span class="string">%gs;
435 $highlighted_source =~ s%<span class="gtkdoc sym">%<span class="symbol">%gs;
437 # $highlighted_source =~ s%</span>(.+)<span%</span><span class="normal">$1</span><span%gs;
440 unlink ($temp_source_file)
441 || die "Can't delete $temp_source_file: $!";
443 return &HighlightSourcePostprocess($type, $highlighted_source);
446 sub HighlightSourceVim {
447 my ($type, $source) = @_;
449 # chop of leading and trailing empty lines
450 $source =~ s/^[\s\n]+//gs;
451 $source =~ s/[\s\n]+$//gs;
452 # avoid double entity replacement
453 $source =~ s/</</g;
454 $source =~ s/>/>/g;
455 $source =~ s/&/&/g;
457 # write source to a temp file
458 my $temp_source_file="$MODULE_DIR/_temp_src.$$.h";
459 open (NEWFILE, ">$temp_source_file") || die "Can't open $temp_source_file: $!";
460 print NEWFILE $source;
464 system "echo 'let html_number_lines=0|let html_use_css=1|let use_xhtml=1|syn on|e $temp_source_file|run! syntax/2html.vim|wa!|qa!' | @HIGHLIGHT@ -n -e -u /dev/null -T xterm >/dev/null";
466 my $highlighted_source;
469 open (NEWFILE, "<$temp_source_file.html");
470 $highlighted_source = <NEWFILE>;
473 $highlighted_source =~ s#.*<pre>\n##s;
474 $highlighted_source =~ s#</pre>.*##s;
476 # need to rewrite the stylesheet classes
477 # FIXME: Vim has somewhat different syntax groups
478 $highlighted_source =~ s%<span class="Comment">%<span class="comment">%gs;
479 $highlighted_source =~ s%<span class="PreProc">%<span class="preproc">%gs;
480 $highlighted_source =~ s%<span class="Statement">%<span class="keyword">%gs;
481 $highlighted_source =~ s%<span class="Identifier">%<span class="function">%gs;
482 $highlighted_source =~ s%<span class="Constant">%<span class="number">%gs;
483 $highlighted_source =~ s%<span class="Special">%<span class="symbol">%gs;
484 $highlighted_source =~ s%<span class="Type">%<span class="type">%gs;
487 unlink ($temp_source_file)
488 || die "Can't delete $temp_source_file: $!";
489 unlink ("$temp_source_file.html")
490 || die "Can't delete $temp_source_file.html: $!";
492 return &HighlightSourcePostprocess($type, $highlighted_source);
495 sub HighlightSourcePostprocess {
496 my ($type, $highlighted_source) = @_;
498 # chop of leading and trailing empty lines
499 $highlighted_source =~ s/^[\s\n]+//gs;
500 $highlighted_source =~ s/[\s\n]+$//gs;
502 # turn common urls in comments into links
503 $highlighted_source =~ s%<span class="url">(.*?)</span>%<span class="url"><a href="$1">$1</a></span>%gs;
505 # we do own line-numbering
507 my $line_count = () = $highlighted_source =~ /\n/gs;
508 for (my $i=1; $i < ($line_count+2); $i++) {
509 $source_lines.="$i\n";
511 $source_lines =~ s/\n\Z//;
515 <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
518 <td class="listing_lines" align="right"><pre>$source_lines</pre></td>
519 <td class="listing_code"><pre class="programlisting">$highlighted_source</pre></td>