1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130
|
#! /usr/bin/env perl
## This script generates the GtkAda documentation from the sources
## All the .ads in the src/ subdirectory are searched for relevant
## tags, and the documentation is automatically generated.
## The tags are looked for anywhere in the file.
##
## SETUP NOTES:
## This script should be run from the $prefix/doc/gtkada_ug
## directory in the GtkAda package.
##
## The following tags are known:
##
## <description>...</description>
## This is the description for a package. It can span multiple
## lines, and contain any kind of text
## It no such tag is found, no documentation is generated for
## the package.
## Multiple such tags are concatenated.
## Lists are automatically replaced by @itemize items (a list
## is a set of paragraphs that start with '-'; the list ends
## at the first empty-line not followed by a paragraph that
## starts with '-').
##
## <c_version>...</c_version>
## Version number of gtk+ that was used to generate this file.
## ex/ 1.2.6
## The package should be fully synchronized with the c header
## when this tag is used.
## If not such tag is found, the package is assumed to be more
## or less synchronized with gtk+1.2. Some functions might not
## have an Ada binding.
##
## <screenshot>...</screenshot>
## Specifies the name of a file that shows a screenshot of the
## widget. The name should not include any extension (it will
## be ".eps" for the latex version of the documentation and
## ".jpg" for the html version.
## This tag won't be shown in the info file.
## The pixmap should be in the directory where you are compiling
## the documentation.
##
## <example>...</example>
## Gives an example of use of the widget. The keywords and comments
## are automatically highlighted. Unless the example is short, we
## recommended using <include> to include its code from an external
## compilable source file.
##
## <include>...</include>
## Includes an external source file. The file is included inline, thus
## any enclosing tag is taken into account, as in
## <example><include>file</include></example>
## Note that comment starts are added at the beginning of each line.
## You can use relative pathnames (relative to the directory of the file
## containing this file).
## Both tags (opening and closing) should be on the same line.
##
## <signals>
## - "signal_name"
## signal description
## - "signal_name" ....
## </signals>
## This tag describes all the new signals defined by a widget.
##
## <doc_ignore>...</doc_ignore>
## Indicates a section which should not be included in the documentation.
## All the subprograms inside the section will not be documented. The lines
## on which these tags are are completly deleted.
##
## The functions and procedures are automatically associated with
## the comments that follow them, and that stops at the first blank
## line.
## No documentation is generated for the following special subprograms:
## Initialize, Generate
##
$src_dir = "../../src/";
# name of the source directory for GtkAda
$output_file_name = "generated.texi";
$menu_file_name = "generated_menu.texi";
$with_html = 0;
## Whether we should output HTML support code
$makeinfo_for_html = 0;
## Set to 1 if we use makeinfo to generate the HTML, to 0 if we use texi2html
if ($ARGV[0] eq "-usemakeinfo") {
$makeinfo_for_html = 1;
$with_html = 1;
shift @ARGV;
} elsif ($ARG[0] eq "-usetexi2html") {
$makeinfo_for_html = 0;
$with_html = 1;
shift @ARGV;
}
@source_files = @ARGV;
local (@Ada_keywords) = ('abort', 'abs', 'accept', 'access', 'all', 'and',
'array', 'at', 'begin', 'body', 'case', 'constant',
'declare', 'delay', 'delta', 'digits', 'do', 'else',
'elsif', 'end', 'entry', 'exception', 'exit', 'for',
'function', 'generic', 'goto', 'if', 'in', 'is',
'limited', 'loop', 'mod', 'new', 'not', 'null', 'of',
'or', 'others', 'out', 'package', 'pragma', 'private',
'procedure', 'raise', 'range', 'record', 'rem',
'renames', 'return', 'reverse', 'select', 'separate',
'subtype', 'task', 'terminate', 'then', 'type',
'until', 'use', 'when', 'while', 'with', 'xor');
local (@Ada95_keywords) = ('abstract', 'aliased', 'protected', 'requeue',
'tagged');
local ($keywords_reg) = join ("|", @Ada95_keywords, @Ada_keywords);
%package_from_type = ("Gtk_Plot" => "Gtk.Extra.Plot",
"Gtk_Check_Item" => "Gtk.Extra.Check_Item",
"Gtk_Plot_Layout" => "Gtk.Extra.Plot_Layout",
"Gtk_Plot_Canvas" => "Gtk.Extra.Plot_Canvas",
"Gtk_Plot_3D" => "Gtk.Extra.Plot_3D",
"Gtk_Plot_Bar" => "Gtk.Extra.Plot_Bar",
"Gtk_Plot_Box" => "Gtk.Extra.Plot_Box",
"Gtk_Plot_Data" => "Gtk.Extra.Plot_Data",
"Gtk_Plot_Polar" => "Gtk.Extra.Plot_Polar",
"Gtk_Plot_Surface" => "Gtk.Extra.Plot_Surface",
"Gtk_Combo_Box" => "Gtk.Extra.Combo_Box",
"Gtk_Sheet" => "Gtk.Extra.Sheet",
"Gtk_Color_Combo" => "Gtk.Extra.Color_Combo",
"Gtk_Border_Combo" => "Gtk.Extra.Border_Combo",
"Gtk_Font_Combo" => "Gtk.Extra.Font_Combo",
"Gtk_IEntry" => "Gtk.Extra.Item_Entry",
"Gtk_Item_Entry" => "Gtk.Extra.Item_Entry",
"Gtk_Entry" => "Gtk.GEntry",
"Gtk_Plot_Canvas_Child" => "Gtk.Extra.Plot_Canvas",
"Gtk_Range" => "Gtk.Grange",
"Gtk_Hbox" => "Gtk.Box",
"Gtk_Vbox" => "Gtk.Box",
"Gtk_Hpaned" => "Gtk.Paned",
"Gtk_Vpaned" => "Gtk.Paned",
"Gtk_Hruler" => "Gtk.Ruler",
"Gtk_Vruler" => "Gtk.Ruler",
"Gtk_Hscale" => "Gtk.Scale",
"Gtk_Vscale" => "Gtk.Scale",
"Gtk_Hscrollbar" => "Gtk.Scrollbar",
"Gtk_Vscrollbar" => "Gtk.Scrollbar",
"Gtk_Hseparator" => "Gtk.Separator",
"Gtk_Vseparator" => "Gtk.Separator");
## Contains the parent of each widget
%parent = ();
## The output file (stored here so that we can sort the output)
## It is indexed on the package name
%output = ();
## List of packages defined in GtkAda
my (%packages) = ();
## Name of the package that is currently being proposed.
$package_name="";
## Colors used
$chapter_bg="#FFF0D0";
$chapter_fg="#000000";
$section_bg="#FFD0D0";
$section_fg="#000000";
$subsection_bg="#FFF0D0";
$subprog_bg="#D6E8FF";
$hierarchy_bg="#FFF0D0";
$tab1_width="7%";
$tab2_width="30%";
$tab3_width="63%";
$tab23_width="93%"; # $tab2_width + $tab3_witdh
# Prepares the menu
foreach $source_file (@source_files) {
open (FILE, $source_file);
@content = <FILE>;
close (FILE);
# Only generate documentation if we have a <description> tag
if (grep (/\<description\>/, @content)) {
@content = &delete_ignore(&expand_include (@content));
print "Generating doc for $source_file\n";
# Get the package name
$package_name = &get_package_name (@content);
my ($cfile) = &get_c_file ($package_name);
# Underscores are incorrectly written in the table of contents
# because of the font that is used in there. We thus use another
# font just for them...
local ($pack) = $package_name;
$packages{$package_name} = "";
$pack =~ s/_/\@code{_}/g;
&output ("\@page\n",
"\@node Package_$package_name\n",
"\@chapter Package $pack\n",
"\@cindex $package_name\n");
&output ("\n\@noindent\n");
my ($description) = &clean_comment_marks
(&get_tag_value ("description", @content), 0);
$description =~ s/^\s*//;
$description = &process_list ($description);
# Add support for <example> tags in the description
$description =~ s/^\s+<(small)?example>/\@\2example\n/gm;
$description =~ s/^\s+<\/(small)?example>/\@end \2example\n/gm;
# Protect special characters
$description =~ s/([{}@])/@\1/g;
&output ("$description\n");
if (&get_tag_value ("screenshot", @content)) {
if (-f &get_tag_value ("screenshot") . ".eps") {
&output ("\@iftex\n\@image{",
&get_tag_value ("screenshot", @content),
",}\n\@end iftex\n\n");
}
}
my (%signals) = &find_signals ($cfile . ".h", @content);
my (@hierarchy) = &find_hierarchy (@content);
my (@subprogs) = &get_subprograms (@content);
my (%types) = &get_types (@content);
## Widget hierarchy
if (@hierarchy) {
my ($hierarchy, $hierarchy_short) = ("", "");
$hierarchy = sprintf ("\@b{%-30s (\@pxref{Package_%s})\n",
"GObject}", "Glib.Object");
$hierarchy .= sprintf ("\@b{%-30s (\@pxref{Package_%s})\n",
"Gtk_Object}", "Gtk.Object");
$hierarchy_short = sprintf ("%-30s (Package %s)\n",
"Gtk_Object", "Gtk.Object");
for ($level = 1; $level < @hierarchy; $level ++) {
$hierarchy .= " " x ($level * 3)
. sprintf ("\\___ \@b{%-" . (25 - $level * 3)
. "s (\@pxref{Package_%s})\n",
$hierarchy[$level] . "}",
&package_from_type ($hierarchy[$level]));
my ($line) = " " x ($level * 3)
. sprintf ("\\___ %-" . (25 - $level * 3)
. "s (Package %s)\n",
$hierarchy[$level],
&package_from_type ($hierarchy[$level]));
if (length ($line) > 75) {
my ($length) = " " x ($level * 3);
$line =~ s/\(/\n$length \(/;
}
$hierarchy_short .= $line;
}
§ion_output ("Widget Hierarchy");
&html_output ("<table class='hierarchy'><tr><td>");
&output ("\n\@ifnottex\n");
&output ("\@smallexample\n$hierarchy\n\@end smallexample\n");
&output ("\@end ifnottex\n");
if ($with_html) {
&output ("\@ifnothtml\n\@iftex\n\@smallexample\n$hierarchy_short\n",
"\@end smallexample\n\@end iftex\n\@end ifnothtml\n");
} else {
&output ("\@iftex\n\@smallexample\n$hierarchy_short\n",
"\@end smallexample\n\@end iftex\n");
}
&html_output ("</td></tr></table>");
} else {
$parent{$package_name} = "<>";
}
## List of signals
if (keys %signals) {
§ion_output ("Signals");
&output ("\@itemize \@bullet\n\n");
foreach $signal (sort keys %signals) {
&output ("\@item \"\@b{$signal}\"\n\n");
my ($handler, $comment) =
($signals{$signal} =~ /^([^)]+\)[^;]*;)(.*)$/s);
$handler = &highlight_keywords ($handler);
if ($with_html) {
&html_output ("<table class='subprograms noindent'><tr><td class='profile'>");
&output ("$handler");
&html_output ("</td></tr></table>");
} else {
&output ("\@smallexample\n");
&output ("$handler");
&output ("\n\@end smallexample\n");
}
&output ("$comment\n");
}
&output ("\@end itemize\n\n");
}
## List of types (sorted)
if (%types) {
§ion_output ("Types");
&html_output ("<table class='types'>");
foreach $type (sort keys %types) {
if ($with_html) {
&html_output ("<tr><td class='profile'>");
&output ($types{$type}[0]);
&html_output ("</td></tr><tr class='comment'><td>");
&output ($types{$type}[1]);
&html_output ("</td></tr>");
} else {
&output ("\@smallexample\n\@exdent ",
$types{$type}[0],
"\n\@end smallexample\n");
&output ("\@noindent\n",
$types{$type}[1], "\@*\n");
}
}
&html_output ("</table>");
}
## List of subprograms (sorted)
if (@subprogs) {
my ($has_itemize) = 0;
§ion_output ("Subprograms");
&html_output ("<table class='subprograms'>");
foreach $subprog (@subprogs) {
my ($name, $return, $comment, @params)
= ($$subprog[1], $$subprog[0], $$subprog[2],
@{$$subprog[3]});
if ($return eq "--") {
if ($has_itemize == 1) {
$has_itemize = 0;
}
&html_output ("<TR><TD colspan=\"3\" BGCOLOR=\"$subsection_bg\">");
if ($name !~ /^\s*$/) {
&output ("\@subsection $name\n\n");
}
&html_output ("</TD></TR><TR><TD><BR></TD></TR>");
$comment =~ s/^\s*//;
if ($comment ne "") {
# Protect special characters
$comment = &process_list
(&clean_comment_marks ($comment, 1));
$comment =~ s/([{}@])/@\1/g;
&html_output ("<TR><TD colspan=\"3\">");
&output ($comment, "\n\n");
&html_output ("<BR></TD></TR>");
}
next;
}
if ($has_itemize == 0) {
$has_itemize = 1;
}
my ($profile) = "";
if ($return eq "" && scalar (@params) == 0) {
$name .= ";";
}
$profile = sprintf ("%-35s",
($return eq "") ? "\@b{procedure} $name"
: "\@b{function} $name");
if (scalar (@params) > 0) {
$profile .= "\n (";
for ($i=0; $i<=$#params; $i++) {
$profile .= " " x 3 if ($i != 0);
my ($type) = $params[$i][2];
my ($default) = "";
if ($params[$i][2] =~ /:=/
&& length ($params[$i][2]) > 30) {
$type =~ s/\s*:=.*//;
$default = $params[$i][2];
$default =~ s/.*:=/:=/;
}
$profile .= sprintf ("%-18s : \@b{%-6s} %s",
$params[$i][0],
$params[$i][1],
$type);
if ($default ne '') {
$profile .= "\n" . (' ' x 23) . $default;
}
$profile .= (($i == $#params) ? ")" : ";\n");
}
}
if ($return eq "") {
$profile .= ";" if (scalar (@params) != 0);
} else {
$profile .= "\n" . " " x 3 if (scalar (@params) > 0);
$profile .= "\@b{return} $return;";
}
$comment =~ s/^\s*//;
$comment = &process_list (&clean_comment_marks ($comment, 1));
if ($with_html) {
&output ("\@ifnothtml\n\@smallexample\n$profile\n",
"\@end smallexample\n\@end ifnothtml\n");
} else {
&output ("\@smallexample\n$profile\n",
"\@end smallexample\n");
}
&html_output ("<tr><td class='profile'>$profile</td>",
"</tr><tr><td class='descr'>");
&output ("$comment\n");
&html_output ("</td></tr>");
}
&html_output ("</table>");
}
## Examples if any
if (&get_tag_value ("example", @content)) {
§ion_output ("Example");
&output ("\n\@example\n",
&highlight_keywords
(&clean_comment_marks (&get_tag_value
("example", @content),
0)),
"\n\@end example\n");
}
} else { # No <description> tag
# print "no description tag for $source_file\n";
}
}
## Creates empty nodes for the packages that are referenced but not
## already created.
# $parent{"Gtk_Object"} = "";
$parent{"GObject"} = "";
foreach $package_name (keys %parent) {
$package_name = &package_from_type ($package_name);
unless (defined $output{$package_name}) {
&output ("\@node Package_$package_name\n",
"\@chapter Package $package_name\n\n",
"\@cindex $package_name\n");
}
}
## Outputs the files
## Requires the global variables $output and $package_name
foreach (keys %parent) {
$packages{&package_from_type ($_)} = "";
}
open (MENU, ">$menu_file_name");
print MENU "\@menu\n";
print MENU "* Package_", join ("::\n* Package_", sort keys %packages), "::\n";
print MENU "* Index::\n";
print MENU "\@end menu\n";
close MENU;
open (OUT, ">$output_file_name");
foreach $package_name (sort
{ if ($a =~ /Glib/ && $b =~ /Glib/) {
return $a cmp $b;
} elsif ($a =~ /Glib/) {
return -1;
} elsif ($b =~ /Glib/) {
return 1;
} else {
if ($a =~ /GtkAda/i && $b =~ /GtkAda/i) {
return $a cmp $b;
} elsif ($a =~ /GtkAda/i) {
return -1;
} elsif ($b =~ /GtkAda/i) {
return 1;
} else {
return $a cmp $b;
}
}} keys %output) {
print OUT join ("", @{$output{$package_name}}), "\n";
}
close OUT;
# Outputs some lines
sub output () {
push (@{$output{$package_name}},
@_);
}
# Outputs the block, only for html
sub html_output () {
if ($with_html) {
if ($makeinfo_for_html) {
&output ("\@ifhtml\n\@html\n", @_, "\n\@end html\n\@end ifhtml\n");
} else {
&output ("\@ifhtml\n", @_, "\n\@end ifhtml\n");
}
}
}
# Outputs the block, only for tex
sub tex_output () {
&output ("\n\@tex\n", @_, "\n\@end tex\n");
}
# Print some output with special colors
# $1 = name of the current package
# $2 = name of the current section (doesn't include the name of the package)
sub section_output () {
my ($section) = shift;
&html_output ("<table class='section'><tr><th>$section</th><tr></table>");
if ($with_html) {
&output ("\@ifnothtml\n\@section $section\n\@end ifnothtml\n");
} else {
&output ("\@section $section\n");
}
}
# Returns the name of the widget defined in the package whose contents is
# @1.
# The htable %parent is initialized, as a side effect
sub find_type_in_package () {
my ($type) = shift; ## if "", returns the main type. Otherwise, returns
## that type specifically
my (@content) = @_;
my ($line, $origin, $p);
# If $type is unspecified, return the main type
if ($type eq "") {
$type = "[^ \t]+";
}
# Ignore everything except for the private part (but see exception below)
while (@content && $line !~ /^private/) {
$line = shift @content;
# Special Case: subtype declarations in the public part.
if ($line =~ /subtype/) {
# get the rest of the line
while (@content && $line !~ /;/) {
$line .= shift @content;
}
# Extract hierarchy information from a "recognized" declaration
if ($line =~ /subtype ($type)_Record\s+is\s+([^;\s]+)/) {
$origin = $1;
unless ($parent{$origin}) {
$p = $2;
$p =~ s/_Record//;
$p =~ s/.*\.([^.]+)/$1/;
}
}
}
}
# Find the name of the type in the package @content
while (@content && ! defined $p) {
# read the current line, and make sure we get the end of the current
# declaration
$line = shift @content;
while (@content && $line !~ /;/) {
$line .= shift @content;
}
if ($line =~ /type ($type)_Record\s+is\s+new\s/) {
$origin = $1;
# Do not keep the package name
$origin =~ s/.*\.([^.]+)/$1/;
unless ($parent{$origin}) {
if ($line =~ /is\s+new\s+([^\s]+)/) {
if ($1 eq "") {
$line = shift @content;
$line =~ /\s+([^\s]+)/;
}
$p = $1;
} else {
$line = shift @content;
$line =~ /((is)?\s+new)? ([^\s]+)/;
$p = $3;
}
$p =~ s/_Record//;
$p =~ s/.*\.([^.]+)/$1/;
}
}
}
if ($p ne "") {
$parent{$origin} = $p;
}
return $origin;
}
# Expands a given <include>...</include> and replace it with the content of
# the file
# Parameter: array of strings to check and possibly expand
# Returns the new array where tags have been expanded.
sub expand_include () {
my (@content) = @_;
my (@strings);
my ($line);
foreach $line (@content) {
if ($line =~ /(.*)\<include\>(.*)\<\/include\>(.*)/) {
push (@strings, $1);
my ($file, $rest) = ($2, $3);
if (open (INCLUDE_FILE, "$src_dir/$file")) {
push (@strings, "\n-- " . join ("-- ", <INCLUDE_FILE>) . "\n" . $rest);
close (INCLUDE_FILE);
}
} else {
push (@strings, $line);
}
}
return @strings;
}
# Return the list of types defined in the Ada file $1.
# This function does not return the type defined in the private part of the
# package.
# It returns a hash-table:
# return ::= (type_name => (string_to_display, comment), ...)
sub get_types () {
my (@content) = @_;
my (%types) = ();
my ($current) = "";
my ($description);
while (($line = shift @content)) {
# Skip the private part
if ($line =~ /^\s*private/) {
return %types;
}
if ($line =~ /^\s*((sub)?type)\s*(\S+)\s+(.)/) {
$current = $3;
# print "======$current====\n";
$description = "$1 $current is ";
# Be sure that we have on the same line the "is" and the following
# character or word (open parenthesis or new).
if ($line =~ /\sis\s*$/ || $line !~ /\sis/) {
$line .= shift @content;
}
# Likewise for an access type, which could be an access to
# subprogram
if ($line =~ /access\s*$/) {
$line .= shift @content;
}
$line =~ s/^\s+/ /g;
# For an access to function type
if ($line =~ s/access\s+(function|procedure)/access $1/) {
my ($is_function) = ($1 eq "function");
$line =~ s/\(/\n \(/;
$line =~ /(access (.|\n)*)/;
$description .= $1;
my ($length) = " ";
# If there is a non-empty argument list, include it.
if ($line =~ /\(/) {
while ($line !~ /\)/) {
$line = shift @content;
$line =~ s/^\s+/ /;
$description .= $length . $line;
}
}
# Add the 'return' line
if ($is_function && $line !~ /\Wreturn\W/) {
$line = shift @content;
$line =~ s/^\s+/ /;
$description .= " $line";
}
}
# Else for a record type
elsif ($line =~ /\Wrecord\W/) {
$description .= "record\n";
while ($line !~ /record;/) {
$line = shift @content;
chop $line;
$line =~ s/^\s+//;
if ($line =~ s/^\s*--\s*//) {
$description .= " -- $line\n";
} else {
$description .= " $line\n";
}
}
}
# Else if we have an enumeration type, get all the possible values
# and the associated comments
elsif ($line =~ s/^.*\sis\s+\(\s*(.*)//) {
# There can be multiple values on the same line, separated
# by commas.
my ($length) = ' ' x (length ($description) - 0);
$description .= "\n ($1\n";
$length = " ";
while ($description !~ /\)/) {
$line = shift @content;
# If we have a comment
if ($line =~ /^\s*--\s*(.*)$/) {
$description .= $length . " -- $1\n";
}
# Else we have one or more possible values
else {
$line =~ s/\s+/ /g;
$description .= "$length$line\n";
}
}
}
# Else for a simple type, skip to the end of its definition
else {
$line =~ /\sis\s+(.*)$/;
$description .= $1;
while ($line !~ /;/) {
$line = shift @content;
$line =~ s/\s+/ /g;
$description .= $line;
}
}
# print $description;
$line = shift @content;
# If we have a comment associated with the type, read it.
my ($comment) = "";
if ($line =~ /^\s*--/) {
while ($line !~ /^\s*$/) {
$line =~ s/^\s*--\s*/ /;
$comment .= $line;
$line = shift @content;
}
} else {
unshift (@content, $line);
}
# print "\n===>\n$comment\n==============\n";
# print $description, "\n";
# print &highlight_keywords ($description), "\n";
# Do not keep the widgets themselves
if ($current !~ /_Record/
&& $description !~ /access all .*_Record/) {
$types{$current} = [&highlight_keywords ($description),
$comment];
}
}
}
return %types;
}
# Returns the list of signals defined in the C file $1.
# The Ada file is defined in $2
# If the Ada file has a "<signals>" tag, then this is used instead
# ( signal_name => profile, signal_name => profile)
sub find_signals () {
my ($cfile) = shift;
my (@content) = @_;
my (%signals);
my ($ada_signals) = &get_tag_value ("signals", @content);
# If the tag is found in the Ada file, use it
if ($ada_signals ne "") {
my ($signal, $descr);
my (@lines) = split (/\n/, $ada_signals);
my ($in_handler) = 0;
foreach $line (@lines) {
$line =~ s/^\s*--\s*//;
if ($line =~ /- \"([^\"]+)\"/) {
$signals{$signal} = $descr if ($signal ne "");
$signal = $1;
$descr = "";
$in_handler = 1;
} elsif ($line =~ /^\s*$/) {
if ($in_handler == 1) {
$in_handler = 0;
$descr .= "";
}
$descr .= "\n";
} else {
$descr .= $line . "\n";
}
}
$signals{$signal} = $descr if ($signal ne "");
}
return %signals;
}
# Returns the type hierarchy of the main type defined in the file whose
# content is @1
sub find_hierarchy () {
my (@content) = @_;
my ($origin) = &find_type_in_package ("", @content);
if ($origin =~ /^Gtk/) {
return &find_hierarchy_array ($origin);
} else {
return ();
}
}
sub find_hierarchy_array () {
my ($type) = shift;
if ($type =~ /Gtk_Object/ || $type =~ /GObject/i) {
return ($type);
};
unless ($parent{$type}) {
my ($filename) = &file_from_package (&package_from_type($type));
if (-f $src_dir . "/gtk-" . $filename) {
open (FILE, $src_dir . "/gtk-" . $filename);
} elsif (-f $src_dir . "/gtk-extra-" . $filename) {
open (FILE, $src_dir . "/gtk-extra-" . $filename);
} else {
die "file not found for type $type ($filename)\n";
}
my ($origin) = &find_type_in_package ($type, <FILE>);
close (FILE);
return (&find_hierarchy_array ($parent{$type}), $type);
}
return (&find_hierarchy_array ($parent{$type}), $type);
}
# Returns the name of the file that contains a given package
sub file_from_package () {
my ($package) = shift;
$package =~ s/G[dt]k\.//;
$package =~ s/\./-/g;
$package =~ tr/A-Z/a-z/;
return $package . ".ads";
}
# Returns the name of the Ada package that contains the type $1
sub package_from_type () {
my ($string) = shift;
if (defined $package_from_type{$string}) {
return $package_from_type{$string};
} else {
$string =~ s/(G[td]k)_/$1./;
return $string;
}
}
# Prepare the string $1 for output (highlight keywords and comments)
sub highlight_keywords () {
my ($string) = shift;
# Protect texi special characters
$string =~ s/([{}])/\@$1/g;
# Highlight keywords and commands
$string =~ s/--([^\n]*)/-\@:-\@i{$1}/g;
$string =~ s/\b($keywords_reg)\b/\@b{$1}/g;
# Do not highlight keywords in comments !
while (($string =~ s/\@i(.*)\@b{([^\}]+)}(.*)/\@i$1$2$3/g)){};
return $string;
}
# Returns the name of the C file corresponding to the Ada package $1
sub get_c_file () {
my ($file) = shift;
$file =~ tr/A-Z/a-z/;
$file =~ s/[_.]//g;
return $file;
}
# Delete all the sections that should be ignored in the documentation
sub delete_ignore () {
my (@content) = @_;
my (@output) = ();
my ($ignore)=0;
foreach $line (@content) {
if ($line =~ /\<doc_ignore\>/) {
$ignore=1;
}
push (@output, $line) if (! $ignore);
if ($line =~ /\<\/doc_ignore\>/) {
$ignore=0;
}
}
return @output;
}
# Returns the package name from the file whose content is $1
sub get_package_name () {
my (@content) = @_;
($_) = grep (/^package /, @content);
$_ =~ /^package\s*([^\s]+)/;
return $1;
}
# Eliminates the comment marks in the string (i.e suppress the -- at
# the beginning of each line in $1)
# When there is an empty line, replaces it with @*
# And the first line is ended with @* if $2 is 1
sub clean_comment_marks() {
my ($string) = shift;
my ($first_line) = shift;
# get rid of comments
$string =~ s/^[ \t]*-- ?//;
$string =~ s/\n[ \t]*-- ?/\n/g;
# If needed, separate the first line from the rest (if there is more
# than one line)
if ($first_line) {
if ($string =~ /\n.*\n/) {
$string =~ s/\n/\@*\n/;
}
}
return $string;
}
# Processes the lists, and replaces them with some @itemize instructions.
# A list is recognized when at least one line starts with '-' as the first
# non-white character, and ends after the next empty line.
sub process_list() {
my ($value) = shift;
my (@lines) = split (/\n/, $value);
my ($output);
my ($in_list) = 0;
my ($terminate_list) = 0;
foreach $line (@lines) {
if ($line =~ /^\s*-\s/) {
$output .= "\@itemize \@bullet\n" if (! $in_list);
$in_list = 1;
$terminate_list = 0;
$line =~ s/^\s*-/\@item /;
} elsif ($in_list && $line =~ /^\s*$/) {
$terminate_list = 1;
} elsif ($terminate_list) {
$output .= "\@end itemize\n";
$terminate_list = 0;
$in_list = 0;
}
$output .= $line . "\n";
}
$output .= "\@end itemize\n" if ($in_list);
return $output;
}
# Returns the value of the tag $1, in the file whose content is $2
# All the matching tags found in the documentation are concatenated,
# with a blank line added between them.
sub get_tag_value () {
my ($tag) = shift;
my (@content) = @_;
my ($value) = "";
my ($line, $add);
while (@content) {
$line = shift @content;
if ($line =~ /\<$tag\>/) {
if ($value ne "") {
$value .= "\n";
}
$line =~ /\<$tag\>(.*)/;
$value .= $1;
while ($line !~ /<\/$tag\>/) {
$line = shift @content;
$value .= $line;
}
$value =~ s/\<\/$tag\>.*//;
}
}
return $value;
}
# Returns a list of all the subprograms defined in the file whose
# content is $1.
# The format of the list is the following:
# ( (subprogram_return_type, # "" for a procedure "--" for a separator
# subprogram_name,
# comments
# (param1_name,
# param1_access, # "in", "in out", "access", ""
# param1_type)
# (param2_name,
# param2_access,
# param2_type),
# ...
# )
# (subprogram_return_type, ....
#
sub get_subprograms () {
my (@content) = @_;
my ($line);
my (@result) = ();
my ($saw_package_start) = 0;
my ($last_was_section) = 0;
while (@content) {
$line = shift @content;
if ($line =~ /^package /) {
$saw_package_start = 1;
next;
}
if ($saw_package_start
&& $line =~ /^\s*------*/)
{
# Delete the previous section if it was empty
if ($last_was_section != 0) {
pop (@result);
}
$line = shift @content;
$line =~ /-- (.*) --/;
my ($comments) = "";
my ($section) = $1;
$line = shift @content;
while ($content [0] =~ /^\s*--/) {
$comments .= shift @content;
}
push (@result, ['--', $section, "$comments", ()]);
$last_was_section = 1;
# Else if we have a subprogram or operator definition
} elsif ($line =~ /^\s*(procedure|function)\s+([\w\"+\-*\/&]+)\s*(.*)/) {
my ($type) = $1;
my ($name) = $2;
my ($params) = $3;
# If the line was over multiple lines
if ($params !~ /;/) {
$params .= shift @content;
}
# Get the whole parameter list
if ($params =~ /\(/) {
while ($params !~ /\)/) {
$params .= shift @content;
}
}
$params =~ s/\s+/ /g;
my ($dummy, $profile, $return) = ($params =~ /^\s*(\(\s*([^\)]+)\))?(.*)/);
# If we expect a return type, make sure we have it
if ($type eq "function") {
while ($return !~ /;/) {
$return .= shift @content;
}
}
my ($ret_type) = ($return =~ /return\s+([^\s;]+)/);
# Memorizes the comments (if we have any)
my ($comments) = "";
$line = shift @content;
if ($line !~ /^\s*--/) {
unshift @content, $line;
}
while ($line =~ /^\s*--/) {
$comments .= $line;
$line = shift @content;
}
# Parses the profile
my (@param_list) = ();
while ($profile !~ /^ *$/) {
my ($all, $tname, $taccess, $ttype)
= ($profile =~ /(\s*([\w\s,]+)\s*:\s*(in out|in|out|access)?\s*([^;]+);?)/);
push (@param_list, [$tname, $taccess, $ttype]);
$all =~ s/([()])/\\\1/g;
$profile =~ s/$all//;
}
# Ignore the special subprogram "Generate" and "Initialize"
if ($name ne "Generate" && $name !~ /^Initialize/) {
push (@result, [ $ret_type, $name, $comments, \@param_list]);
$last_was_section = 0;
}
}
}
if ($last_was_section == 1) {
pop @result;
}
return @result;
}
|