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