17 "html|h=s" => \
$SOURCE_DIR,
18 "target|t=s" => \
$TARGET_DIR,
19 "warnings|W" => \
$WARNINGS,
22 pod2usage
(0) if $HELP;
32 my $stylesheet = load_stylesheet
($SOURCE_DIR);
33 load_templates
($SOURCE_DIR, \
%templates);
34 process_source_files
(\
%docs);
35 merge
(\
%docs, \
%templates, \
$stylesheet);
39 # Load CSS stylesheet.
43 my $file_path = "$dir_path/api-style.css";
44 open (my $file, '<', $file_path) or die "Could not open $file_path";
46 my $contents = <$file>;
52 # Load HTML templates.
55 my ($dir_path, $templates) = @_;
56 opendir (my $dir, "$dir_path/sources/") or die "Could not open $dir_path";
57 while (my $file_name = readdir ($dir)) {
58 next if $file_name !~ /mono-api-.*\.html$/;
59 open (my $file, "$dir_path/sources/$file_name") or die "Could not open $file_name";
64 if (/name="api:(.*?)"/) {
65 s/.*name="api:(\w+?)".*/$1/;
70 $templates->{$file_name}->{contents
} = $contents;
71 $templates->{$file_name}->{api
} = \
@api;
77 # Extract documentation from all source files.
79 sub process_source_files
{
81 for my $file_path (@ARGV) {
82 process_source_file
($file_path, $docs);
87 # Extract documentation from a single source file.
89 sub process_source_file
{
90 my ($file_path, $docs) = @_;
91 open (my $file, '<', $file_path) or die "Could not open $file_path";
93 next if (!/\/\
*\
* *\n/);
94 process_function
($file, $file_path, $docs);
100 # Extract documentation from a single function.
102 sub process_function
{
104 my ($file, $file_path, $docs) = @_;
106 my $PARAMETER_SECTION = 0;
107 my $BODY_SECTION = 1;
108 my $RETURN_SECTION = 2;
109 my $section = $PARAMETER_SECTION;
119 # Ignore irrelevant functions, and those with the wrong doc format.
120 return if $name !~ /^mono_\w+$/;
127 my $codeblock = 'false';
131 # We've reached the last line in the documentation block.
134 # Grab function prototype.
140 # Clean up prototype.
143 # Strip braces and trailing whitespace.
146 # Turn "Type * xxx" into "Type* xxx"
151 # Process formatting within sections.
152 for my $parameter (@parameters) {
153 process_formatting
(\
$parameter->{description
}, $file_path, $.);
155 process_formatting
(\
$returns, $file_path, $.);
156 process_formatting
(\
$body, $file_path, $.);
157 if (defined($deprecated)) {
158 process_formatting
(\
$deprecated, $file_path, $.);
161 if (exists($docs->{body
}->{$name})) {
162 my $origin = $docs->{origin
}->{$name};
165 "$file_path:$.: Redundant documentation for $name\n",
166 "$origin->{file}:$origin->{line}: Previously defined here\n";
169 $docs->{origin
}->{$name} = { file
=> $file_path, line
=> $. };
170 $docs->{body
}->{$name} = $body;
171 $docs->{parameters
}->{$name} = \
@parameters;
172 $docs->{deprecated
}->{$name} = $deprecated if defined $deprecated;
173 $docs->{return}->{$name} = $returns;
174 $docs->{prototype}->{$name} = $prototype;
179 # Strip newlines and asterisk prefix.
185 } elsif (/\s*\\endcode$/) {
186 $codeblock = 'false';
189 # Replace blank lines with paragraph breaks if we're not in a code block.
191 $_ = '<p>' if $codeblock eq 'false';
194 if ($section == $PARAMETER_SECTION) {
195 if (/\s*\\param +(\w+)(.*)/) {
196 # print "$file_path:$.: warning: Got parameter $1\n";
197 push @parameters, { name
=> $1, description
=> $2 };
198 } elsif (/\s*\\deprecated(.*)/) {
199 # print "$file_path:$.: warning: Got deprecated annotation\n";
201 } elsif (/\s*(\w+):(.*)/) {
202 if ($1 eq 'deprecated') {
203 warn "$file_path:$.: Old-style monodoc notation 'deprecated:' used\n"
207 warn "$file_path:$.: Old-style monodoc notation 'param:' used\n"
209 push @parameters, { name
=> $1, description
=> $2 };
213 $section = $BODY_SECTION;
216 } elsif ($section == $BODY_SECTION) {
217 if (s/(Returns?:\s*|\\returns?\s*)//) {
219 $section = $RETURN_SECTION;
223 } elsif ($section == $RETURN_SECTION) {
224 $returns .= "\n\t$_";
226 die "Invalid section $section\n";
232 # Substitute formatting within documentation text.
234 sub process_formatting
{
235 my ($content, $file_path, $current_line) = @_;
239 s{\\b +(\w+)}{<strong>$1</strong>}g;
240 s{\\a +(\w+)}{<i>$1</i>}g;
241 s{\\e +(\w+)}{<i>$1</i>}g;
242 s{\\em +(\w+)}{<i>$1</i>}g;
245 s{NULL}{<code>NULL</code>}g;
246 s{TRUE}{<code>TRUE</code>}g;
247 s{FALSE}{<code>FALSE</code>}g;
250 warn "$file_path:$current_line: Old-style monodoc notation '\@param' used\n"
251 if s{@(\w+)}{<i>$1</i>}g && $WARNINGS;
252 s{\\p +(\w+)}{<i>$1</i>}g;
255 warn "$file_path:$current_line: Old-style monodoc notation '#code' used\n"
256 if s{#(\w+)}{<code>$1</code>}g && $WARNINGS;
257 warn "$file_path:$current_line: Old-style monodoc notation '`code`' used\n"
258 if s{\`((?!api:)[:.\w\*]+)\`}{<code>$1</code>}g && $WARNINGS;
259 s{\\c +(\S+(?<![.,:;]))}{<code>$1</code>}g;
260 s{\\code}{<pre><code class="mapi-codeblock">}g;
261 s{\\endcode}{</code></pre>}g;
267 # Merge templates with stylesheet and documentation extracted from sources.
270 my ($docs, $templates, $stylesheet) = @_;
272 for my $name (keys %$templates) {
273 open (my $output_file, '>', "$TARGET_DIR/html/$name")
274 or die "Could not create $TARGET_DIR/html/$name";
275 print "Merging: $name\n";
276 print $output_file <<EOF;
277 <?xml version="1.0" encoding="utf-8"?>
278 <html xmlns="http://www.w3.org/1999/xhtml">
281 <style type="text/css">
286 <div class="mapi-docs">
288 my @a = split (/\n/, $templates->{$name}->{contents
});
290 my $strikeextra = '';
292 for (my $ai = 0; $ai < $#a; $ai++) {
294 if (my ($api, $caption) = ($line =~ /<h4><a name=\"api:(\w+)\">(\w+)<\/a><\
/h4>/)) {
295 if ($api_shown == 1) {
296 print $output_file "</div> <!-- class=mapi -->\n\n";
297 if ($docs->{deprecated
}->{$api}) {
298 $strike = "mapi-strike";
299 $strikeextra = "</div><br><div class='mapi-deprecated'><b>Deprecated:</b> " . $docs->{deprecated
}->{$api};
306 my $proto = $docs->{prototype}->{$api} // $api;
308 print $output_file <<EOF;
309 <a name="api:$api"></a>
311 <div class="mapi-entry $strike"><code>$api$strikeextra</code></div>
312 <div class="mapi-height-container">
313 <div class="mapi-ptr-container"></div>
314 <div class="mapi-description">
315 <div class="mapi-ptr"></div>
317 <div class="mapi-declaration mapi-section">Syntax</div>
318 <div class="mapi-prototype">$proto</div>
321 if (exists ($docs->{parameters
}->{$api})) {
322 my $ppars = $docs->{parameters
}->{$api};
325 " <div class=\"mapi-section\">Parameters</div>\n",
326 " <table class=\"mapi-parameters\"><tbody>",
327 render_parameters
($ppars),
332 opt_print
($output_file, "Return value", $docs->{return}->{$api});
333 opt_print
($output_file, "Description", $docs->{body
}->{$api});
334 print $output_file " </div><!--mapi-description-->\n </div><!--height container-->\n";
336 if ($line =~ /\@API_IDX\@/) {
337 my $apis_toc = create_toc
($docs, $templates->{$name}->{api
});
338 $line =~ s/\@API_IDX\@/$apis_toc/;
340 if ($line =~ /^<h4/) {
341 print $output_file "</div>\n";
346 print $output_file "$line\n";
354 system ("$ENV{runtimedir}/mono-wrapper convert.exe $TARGET_DIR/html/$name $TARGET_DIR/html/x-$name");
356 # Clean up the mess that AgilityPack makes (it CDATAs our CSS).
357 open (my $hack_input, '<', "$TARGET_DIR/html/x-$name")
358 or die "Could not open $TARGET_DIR/html/x-$name";
359 open (my $hack_output, '>', "$TARGET_DIR/deploy/$name")
360 or die "Could not open output";
364 while (<$hack_input>) {
365 print $hack_output $last if ($doprint);
367 s/^\/\/<!\
[CDATA\
[//;
370 # Remove the junk <span> wrapper generated by AgilityPack.
375 # Replace the CSS in the XHTML output with the original CSS.
376 print $hack_output $_;
377 print $hack_output $$stylesheet;
378 while (<$hack_input>) {
379 last if (/<\/style
>/);
385 if (!($last =~ /span/)) {
386 print $hack_output $last;
388 # system ("cp.exe $TARGET_DIR/html/$name $TARGET_DIR/deploy/$name");
393 my ($docs, $apis_listed) = @_;
396 my ($ret, $xname, $args);
399 # Try to align things; compute type size, method size, and arguments.
400 foreach my $line (split /\n/, $apis_listed) {
401 if (exists ($docs->{prototype}->{$line})) {
402 my $p = $docs->{prototype}->{$line};
403 if (my ($ret, $xname, $args) = ($p =~ /(.*)\n(\w+)[ \t](.*)/)) {
404 my $tl = length ($ret);
405 my $pl = length ($xname);
406 $type_size = $tl if ($tl > $type_size);
407 $name_size = $pl if ($pl > $name_size);
415 foreach my $line (split /\n/, $apis_listed) {
417 if (exists($docs->{prototype}->{$line})) {
418 my $p = $docs->{prototype}->{$line};
419 if (my ($ret, $xname, $args) = ($p =~ /(.*)\n(\w+)[ \t](.*)/)) {
420 $xname = $line if $xname eq "";
421 my $rspace = " " x
($type_size - length ($ret));
422 my $nspace = " " x
($name_size - length ($xname));
423 $args = wrap
($args, length ($ret . $rspace . $xname . $nspace), 60);
424 $apis_toc .= "$ret$rspace<a href=\"\#api:$line\">$xname</a>$nspace$args\n";
432 my ($args, $size, $limit) = @_;
435 # return $args if ((length (args) + size) < $limit);
437 my $remain = $limit - $size;
438 my @sa = split /,/, $args;
440 foreach my $arg (@sa) {
443 $linelen += length ($sret);
445 if ($linelen + length ($arg) < $limit) {
446 $sret .= "FITS" . $arg . ", ";
448 my $newline = " " x
($size) . $arg . ", ";
449 my $linelen = length ($newline);
450 $sret .= "\n" . $newline;
459 # Print a section if non-empty.
462 my ($output, $caption, $opttext) = @_;
463 if (defined($opttext) && $opttext ne '' && $opttext !~ /^[ \t]+$/) {
465 " <div class=\"mapi-section\">$caption</div>\n",
466 " <div>$opttext</div>\n";
471 # Render parameter information as table.
473 sub render_parameters
{
474 my ($parameters) = @_;
476 for my $parameter (@
$parameters) {
477 $result .= "<tr><td><i>$parameter->{name}</i></td><td>$parameter->{description}</td></tr>";
486 exdoc - Compiles API docs from Mono sources and HTML templates.
490 exdoc [OPTIONS] [FILE...]
498 Print this help message.
500 =item B<--html> I<DIR>, B<-h> I<DIR>
502 Use I<DIR> as the input path for HTML sources.
504 =item B<--target> I<DIR>, B<-t> I<DIR>
506 Use I<DIR> as the target path for output.
508 =item B<--warnings>, B<-W>
510 Enable warnings about documentation errors.
516 Reads HTML templates and C sources, extracting documentation from the sources and splicing it into the templates.