]> git.proxmox.com Git - pve-docs.git/blob - asciidoc-pve.in
bump version to 4.3-13
[pve-docs.git] / asciidoc-pve.in
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5 use Getopt::Long;
6 use File::Path;
7 use File::Basename;
8 use IO::File;
9 use Cwd;
10
11 use JSON;
12
13 my $verbose;
14 my $keep_artifacts;
15
16 my $release = '@RELEASE@';
17
18 my $clicmd = shift or
19 die "no command specified\n";
20
21 my $data_str = "";
22 while (<main::DATA>) { $data_str .= $_; }
23
24 my $fileinfo = decode_json($data_str);
25
26 my $tmpprefix = ".asciidoc-pve-tmp_";
27
28 my $adoc_source_dir = "/usr/share/pve-doc-generator";
29
30 # inside pve-docs source dir?
31 if (-f "attributes.txt" && -f "pve-admin-guide.adoc") {
32 $adoc_source_dir = "."
33 }
34
35 my $prepared_files = {};
36
37 my $man_target = 'man';
38 my $env_stack = [];
39 my $env_skip = 0;
40
41 my $online_help_links = {
42 'pve_service_daemons' => {
43 link => '/pve-docs/index.html#_service_daemons',
44 title => 'Service Daemons',
45 },
46 'pve_documentation_index' => {
47 link => '/pve-docs/index.html',
48 title => 'Proxmox VE Documentation Index',
49 },
50 'pve_admin_guide' => {
51 link => '/pve-docs/pve-admin-guide.html',
52 title => 'Proxmox VE Administration Guide',
53 },
54 };
55
56 sub debug {
57 my $msg = shift;
58
59 return if !$verbose;
60
61 print STDERR "asciidoc-pve: $msg\n";
62 }
63
64 sub push_environment {
65 my ($env, $skip) = @_;
66
67 $skip = 1 if $env_skip;
68 $skip = 0 if !defined($skip);
69
70 push @$env_stack, [$env, $skip];
71
72 $env_skip = $skip;
73 }
74
75 sub pop_environment {
76 my ($env) = @_;
77
78 my $last_stack_entry = pop @$env_stack;
79 die "unable to pop env '$env'" if !defined($last_stack_entry);
80
81 my ($last_env, $skip) = @$last_stack_entry;
82 die "environment missmatch (${last_env} != $env)\n" if $last_env ne $env;
83
84 if (!scalar(@$env_stack)) {
85 $env_skip = 0;
86 } else {
87 my (undef, $skip) = @{$env_stack->[-1]};
88 $env_skip = $skip;
89 }
90 }
91
92 my $files_for_cleanup = [];
93
94 sub cleanup {
95
96 return if $keep_artifacts;
97
98 foreach my $file (@$files_for_cleanup) {
99 unlink $file;
100 }
101 }
102
103 sub replace_wiki_xref {
104 my ($blockid, $text) = @_;
105
106 my $link = $fileinfo->{blockid_target}->{wiki}->{$blockid};
107 my $reftext = $fileinfo->{reftext}->{wiki}->{$blockid};
108
109 die "unable to resolve wiki link (xref:$blockid)\n"
110 if !defined($link);
111
112 $text = $reftext if !length($text);
113
114 die "xref: no text for wiki link '$blockid'\n" if !$text;
115
116 return "$link\[$text\]";
117 }
118
119 sub replace_default_xref {
120 my ($blockid, $text) = @_;
121
122 my $link = $fileinfo->{blockid_target}->{default}->{$blockid};
123 my $reftext = $fileinfo->{reftext}->{default}->{$blockid};
124
125 die "unable to resolve chapter link (xref:$blockid)\n"
126 if !defined($link);
127
128 $text = $reftext if !length($text);
129
130 die "xref: no text for chapter link '$blockid'\n" if !$text;
131
132 return "$link\[$text\]";
133 }
134
135 sub replace_man_xref {
136 my ($blockid, $text) = @_;
137
138 my $link = $fileinfo->{blockid_target}->{manvolnum}->{$blockid};
139 my $reftext = $fileinfo->{reftext}->{manvolnum}->{$blockid};
140
141 die "unable to resolve man page link (xref:$blockid)\n"
142 if !defined($link);
143
144 $text = $reftext if !length($text);
145
146 die "xref: no text for man page link '$blockid'\n" if !$text;
147
148 my $section = $fileinfo->{mansection}->{manvolnum}->{$link};
149 die "link target is not a manual page" if !defined($section);
150
151
152 if ($man_target eq 'html') {
153 my $target = $link;
154 $target =~ s/\.adoc//;
155 $target .= ".$section";
156 return "link:${target}.html#${blockid}\[$text\]";
157 } elsif ($man_target eq 'man') {
158 my $command = $link;
159 $command =~ s/\.adoc//;
160 return "\*${text}\* (man \*${command}\*($section))";
161 } else {
162 die "internal error"
163 }
164 }
165
166 sub replace_xref {
167 my ($env, $blockid, $text) = @_;
168
169 if ($env eq 'wiki') {
170 return replace_wiki_xref($blockid, $text);
171 } elsif ($env eq 'manvolnum') {
172 if (($man_target eq 'man') || ($man_target eq 'html')) {
173 return replace_man_xref($blockid, $text);
174 } elsif ($man_target eq 'wiki') {
175 return replace_wiki_xref($blockid, $text);
176 } else {
177 die "internal error"
178 }
179 } elsif ($env eq 'default') {
180 return replace_default_xref($blockid, $text);
181 } else {
182 die "internal error";
183 }
184 }
185
186 sub prepare_adoc_file {
187 my ($target_env, $filename, $attributes) = @_;
188
189 return $prepared_files->{$filename} if defined($prepared_files->{$filename});
190
191 debug("prepare $filename");
192
193 my $dirname = dirname($filename);
194 my $basename = basename($filename);
195
196 my $outfilename = "$dirname/${tmpprefix}$basename";
197
198 $prepared_files->{$filename} = $outfilename;
199
200 my $fh = IO::File->new("$filename", "r") or
201 die "unable to open file '$filename' - $!\n";
202
203 my $outfh = IO::File->new("$outfilename", "w") or
204 die "unable to open temporary file '$outfilename'\n";
205
206 push @$files_for_cleanup, $outfilename;
207
208 while (defined (my $line = <$fh>)) {
209 chomp $line;
210 if ($line =~ m/^if(n?)def::(\S+)\[(.*)\]\s*$/) {
211 my ($not, $env, $text) = ($1, $2, $3);
212 die "unsuported ifdef usage - implement me" if $text;
213
214 my $skip = !exists($attributes->{$env}) ? 1 : 0;
215 $skip = ($skip ? 0 : 1 ) if $not;
216
217 push_environment($env, $skip);
218 next;
219 } elsif ($line =~ m/^endif::(\S+)\[(.*)\]\s*$/) {
220 my ($env, $text) = ($1, $2);
221 die "unsuported ifdef usage - implement me" if $text;
222 pop_environment($env);
223 next;
224 }
225
226 next if $env_skip;
227
228 if ($line =~ m/^include::(\S+)(\[.*\]\s*)$/) {
229 my ($fn, $rest) = ($1, $2);
230 debug("include $fn");
231 my $new_fn = prepare_adoc_file($target_env, $fn, $attributes);
232
233 print $outfh "include::${new_fn}$rest\n";
234 next;
235 }
236
237 if ($line =~ m/xref:\S+?\[[^\]]*$/) {
238 die "possible xref spanning multiple lines in '$filename':\n(line $.): $line\n";
239 }
240 if ($line =~ m/<<((?!\>\>).)*$/) {
241 die "possible xref spanning multiple lines in '$filename':\n(line $.): $line\n";
242 }
243 # fix xrefs
244 $line =~ s/xref:([^\s\[\]]+)\[([^\]]*)\]/replace_xref(${target_env},$1,$2)/ge;
245
246 $line =~ s/<<([^\s,\[\]]+)(?:,(.*?))?>>/replace_xref(${target_env},$1,$2)/ge;
247
248 print $outfh $line . "\n";
249 }
250
251 return $outfilename;
252 }
253
254 sub compile_asciidoc {
255 my ($env) = @_;
256
257 my $outfile;
258
259 GetOptions ("outfile=s" => \$outfile,
260 "keep-artifacts" => \$keep_artifacts,
261 "verbose" => \$verbose) or
262 die("Error in command line arguments\n");
263
264 my $infile = shift(@ARGV) or
265 die "no input file specified\n";
266
267 scalar(@ARGV) == 0 or
268 die "too many arguments...\n";
269
270 my $outfilemap = $fileinfo->{outfile}->{$env}->{$infile} ||
271 die "no output file mapping for '$infile' ($env)";
272
273 if ($man_target eq 'html') {
274 $outfilemap .= '.html';
275 } elsif ($man_target eq 'wiki') {
276 $outfilemap .= '-plain.html';
277 }
278
279 if (defined($outfile)) {
280 die "wrong output file name '$outfile != $outfilemap' ($env)"
281 if $outfile ne $outfilemap;
282 } else {
283 $outfile = $outfilemap;
284 }
285
286 defined($fileinfo->{titles}->{$env}) ||
287 die "unknown environment '$env'";
288
289 my $title = $fileinfo->{titles}->{$env}->{$infile} or
290 die "unable to get title for '$infile'$env\n";
291
292 debug("compile $title");
293
294 my $leveloffset = 0;
295
296 my $doctype = $fileinfo->{doctype}->{$env}->{$infile};
297
298 die "unable to get document type for '$infile'\n"
299 if !defined($doctype);
300
301 $leveloffset = - $doctype;
302
303 my $date = `date`;
304 chomp $date;
305
306 my $attributes = {
307 $env => undef,
308 leveloffset => $leveloffset,
309 revnumber => $release,
310 revdate => $date,
311 };
312
313 my $mansection = $fileinfo->{mansection}->{$env}->{$infile};
314
315 if ($env eq 'wiki') {
316 } elsif ($env eq 'manvolnum') {
317 die "undefined man section" if !defined($mansection);
318 $attributes->{manvolnum} = $mansection;
319 } elsif ($env eq 'default') {
320 die "$infile: wrong doctype\n" if $doctype != 0;
321 $attributes->{toc} = undef;
322 }
323
324 if (!defined($outfile)) {
325 $outfile = $infile;
326 $outfile =~ s/\.adoc$//;
327 if ($env eq 'manvolnum') {
328 if (($man_target eq 'html') || ($man_target eq 'wiki')) {
329 $outfile .= ".$mansection.html";
330 } else {
331 $outfile .= ".$mansection";
332 }
333 } else {
334 $outfile .= ".html";
335 }
336 }
337
338 if (($env eq 'manvolnum') && ($man_target eq 'man')) {
339
340 # asciidoc /etc/asciidoc/docbook-xsl/manpage.xsl skip REFERENCES
341 # section like footnotes, so we cannot use a2x.
342 # We use xmlto instead.
343
344 my $cmd = ['asciidoc', '-dmanpage', '-bdocbook', '-a', 'docinfo1'];
345
346 foreach my $key (keys %$attributes) {
347 my $value = $attributes->{$key};
348 if (defined($value)) {
349 push @$cmd, '-a', "$key=$value";
350 } else {
351 push @$cmd, '-a', $key;
352 }
353 }
354
355 push @$cmd, '--verbose' if $verbose;
356
357 my $tmpxmlfile = "${outfile}.xml.tmp";
358
359 push @$cmd, '--out-file', $tmpxmlfile;
360
361 push @$files_for_cleanup, $tmpxmlfile;
362
363 my $new_infile = prepare_adoc_file($env, $infile, $attributes);
364
365 push @$cmd, $new_infile;
366
367 debug("run " . join(' ', @$cmd));
368
369 system(@$cmd) == 0 or
370 die "aciidoc error";
371
372 $cmd = ['xmlto', 'man', $tmpxmlfile];
373
374 push @$cmd, '-v' if $verbose;
375
376 debug("run " . join(' ', @$cmd));
377
378 system(@$cmd) == 0 or
379 die "xmlto error";
380
381 } else {
382
383 $attributes->{icons} = undef;
384 $attributes->{'data-uri'} = undef;
385
386 my $cmd = ['asciidoc'];
387
388 if (($env eq 'wiki') ||
389 (($env eq 'manvolnum') && ($man_target eq 'wiki'))) {
390
391 if (-f "./asciidoc/mediawiki.conf") {
392 my $cwd = getcwd();
393 push @$cmd, '-b', "$cwd/asciidoc/mediawiki";
394 } else {
395 push @$cmd, '-b', "mediawiki";
396 }
397 }
398
399 foreach my $key (keys %$attributes) {
400 my $value = $attributes->{$key};
401 if (defined($value)) {
402 push @$cmd, '-a', "$key=$value";
403 } else {
404 push @$cmd, '-a', $key;
405 }
406 }
407
408 push @$cmd, '--verbose' if $verbose;
409
410 push @$cmd, '--out-file', $outfile;
411
412 my $new_infile = prepare_adoc_file($env, $infile, $attributes);
413
414 push @$cmd, $new_infile;
415
416 debug("run " . join(' ', @$cmd));
417
418 system(@$cmd) == 0 or
419 die "aciidoc error";
420 }
421 }
422
423 sub get_links {
424
425 my $data = {};
426
427 foreach my $blockid (sort keys %{$fileinfo->{blockid_target}->{default}}) {
428 my $link = $fileinfo->{blockid_target}->{default}->{$blockid};
429 my $reftitle = $fileinfo->{reftitle}->{default}->{$blockid};
430 my $reftext = $fileinfo->{reftext}->{default}->{$blockid};
431 die "internal error" if $link !~ m/^link:/;
432 $link =~ s/^link://;
433
434 my $file = $fileinfo->{blockid}->{default}->{$blockid};
435 die "internal error - no filename" if ! defined($file);
436 my $title = $fileinfo->{titles}->{default}->{$file} ||
437 die "internal error - no title";
438
439 $data->{$blockid}->{title} = $title;
440 $data->{$blockid}->{link} = $link;
441 my $subtitle = $reftitle || $reftext;
442 $data->{$blockid}->{subtitle} = $subtitle
443 if $subtitle && ($title ne $subtitle);
444 }
445
446 return $data;
447 }
448
449 sub scan_extjs_file {
450 my ($filename, $res_data) = @_;
451
452 my $fh = IO::File->new($filename, "r") ||
453 die "unable to open '$filename' - $!\n";
454
455 debug("scan-extjs $filename");
456
457 while(defined(my $line = <$fh>)) {
458 if ($line =~ m/\s+onlineHelp:\s*[\'\"](.*?)[\'\"]/) {
459 my $blockid = $1;
460 my $link = $fileinfo->{blockid_target}->{default}->{$blockid};
461 die "undefined blockid '$blockid' ($filename, line $.)\n"
462 if !(defined($link) || defined($online_help_links->{$blockid}));
463
464 $res_data->{$blockid} = 1;
465 }
466 }
467 }
468
469 if ($clicmd eq 'compile-wiki') {
470
471 eval { compile_asciidoc('wiki'); };
472 my $err = $@;
473
474 cleanup();
475
476 die $err if $err;
477
478 } elsif ($clicmd eq 'compile-chapter') {
479
480 eval { compile_asciidoc('default'); };
481 my $err = $@;
482
483 cleanup();
484
485 die $err if $err;
486
487 } elsif ($clicmd eq 'compile-man-html') {
488
489 $man_target = 'html';
490
491 eval { compile_asciidoc('manvolnum'); };
492 my $err = $@;
493
494 cleanup();
495
496 die $err if $err;
497
498 } elsif ($clicmd eq 'compile-man-wiki') {
499
500 $man_target = 'wiki';
501
502 eval { compile_asciidoc('manvolnum'); };
503 my $err = $@;
504
505 cleanup();
506
507 die $err if $err;
508
509 } elsif ($clicmd eq 'compile-man') {
510
511 eval { compile_asciidoc('manvolnum'); };
512 my $err = $@;
513
514 cleanup();
515
516 die $err if $err;
517
518 } elsif ($clicmd eq 'print-links') {
519
520 my $outfile;
521
522 GetOptions("outfile=s" => \$outfile,
523 "verbose" => \$verbose) or
524 die("Error in command line arguments\n");
525
526 scalar(@ARGV) == 0 or
527 die "too many arguments...\n";
528
529 my $data = get_links();
530
531 my $res = to_json($data, { pretty => 1, canonical => 1 } );
532
533 if (defined($outfile)) {
534 my $outfh = IO::File->new("$outfile", "w") or
535 die "unable to open temporary file '$outfile'\n";
536
537 print $outfh $res;
538
539 } else {
540
541 print $res;
542 }
543
544 } elsif ($clicmd eq 'scan-extjs') {
545
546 GetOptions("verbose" => \$verbose) or
547 die("Error in command line arguments\n");
548
549 my $link_hash = {};
550 my $scanned_files = {};
551 while (my $filename = shift) {
552 die "got strange file name '$filename'\n"
553 if $filename !~ m/\.js$/;
554 next if $scanned_files->{$filename};
555
556 scan_extjs_file($filename, $link_hash);
557 $scanned_files->{$filename} = 1;
558 }
559
560 my $data = get_links();
561
562 my $res_data = {};
563
564 foreach my $blockid (keys %$link_hash) {
565 $res_data->{$blockid} = $data->{$blockid} || $online_help_links->{$blockid} ||
566 die "internal error - no data for '$blockid'";
567 }
568
569 my $data_str = to_json($res_data, { pretty => 1, canonical => 1 });
570 chomp $data_str;
571
572 print "var pveOnlineHelpInfo = ${data_str};\n";
573
574 } elsif ($clicmd eq 'chapter-table') {
575
576 print '[width="100%",options="header"]' . "\n";
577 print "|====\n";
578 print "|Title|Link\n";
579
580 my $filelist = $fileinfo->{outfile}->{default};
581 foreach my $sourcefile (sort keys %$filelist) {
582 my $target = $filelist->{$sourcefile};
583 next if $target eq 'pve-admin-guide.html';
584 my $title = $fileinfo->{titles}->{default}->{$sourcefile} ||
585 die "not title for '$sourcefile'";
586 print "|$title|link:$target\[\]\n";
587 }
588
589 print "|====\n";
590
591 } elsif ($clicmd =~ m/^man([158])page-table$/) {
592
593 my $section = $1;
594 print '[width="100%",cols="5*d",options="header"]' . "\n";
595 print "|====\n";
596 print "|Name 3+|Title|Link\n";
597
598 my $filelist = $fileinfo->{outfile}->{manvolnum};
599 foreach my $manpage (sort keys %$filelist) {
600 next if $section ne $fileinfo->{mansection}->{manvolnum}->{$manpage};
601 my $mantitle = $fileinfo->{titles}->{manvolnum}->{$manpage} ||
602 die "not manual title for '$manpage'";
603 my $title = $fileinfo->{titles}->{default}->{$manpage} ||
604 die "not title for '$manpage'";
605
606 # hack - remove command name prefix from titles
607 $title =~ s/^[a-z]+\s*-\s*//;
608
609 my $target = $filelist->{$manpage};
610 print "|$mantitle 3+|$title|link:$target.html\[$target\]\n";
611 }
612
613 print "|====\n";
614
615 } else {
616
617 die "unknown command '$clicmd'\n";
618
619 }
620
621
622 exit 0;
623
624 __END__