chiark / gitweb /
3caf4e65a0bac0d559c7d891904cefae29584179
[subdirmk.git] / generate
1 #!/usr/bin/perl -w
2 #
3 # subdirmk - &-filter (makefile generation program)
4 #  Copyright 2019 Ian Jackson
5 # SPDX-License-Identifier: LGPL-2.0-or-later
6 #
7 # $(srcdir)/subdirmk/generate [--srcdir=SRCDIR] [--] SUBDIR...
8 #
9 # generates in each subdirectory
10 #     Dir.mk.tmp
11 #     Makefile
12 # and in toplevel
13 #     main.mk.tmp
14
15 use strict;
16 use POSIX;
17
18 print "$0 @ARGV\n" or die $!;
19
20 our $srcdir='.';
21
22 # error handling methods:
23 #
24 # Error in input file, while $err_file and $. set, eg in most of
25 # process_input_mk:
26 #         err "message";
27 #
28 # Other input or usage errors:
29 #         die "subdirmk: $file:$lno: problem\n";
30 #         die "subdirmk: some problem not locatable in that way\n";
31 #
32 # Usage error:
33 #         die "subdirmk $0: explanation of problem\n";
34 #
35 # System call error (not ENOENT) accessing input/output files:
36 #         die "description of problem eg maybe erbing noun: $!\n";
37 #
38 # Bug detedcted in `generate':
39 #         die "internal error (some information)?"; # or similar
40
41 while (@ARGV && $ARGV[0] =~ m/^-/) {
42     $_ = shift @ARGV;
43     last if $_ eq '--';
44     if (s/^--srcdir=//) {
45         $srcdir=$';
46     } else {
47         die "subdirmk $0: unknown option \`$_'\n";
48     }
49 }
50 our @subdirs = @ARGV;
51
52 s{/+$}{} foreach @subdirs;
53
54 our $root = [ '.', [ ], 1 ];
55 # each node is [ 'relative subdir name', \@children, $mentioned ]
56
57 sub build_tree () {
58     foreach my $subdir (@subdirs) {
59         my @path = $subdir eq '.' ? () : split m{/+}, $subdir;
60         my $node = $root;
61         foreach my $d (@path) {
62             my ($c,) = grep { $_->[0] eq $d } @{ $node->[1] };
63             if (!$c) {
64                 $c = [ $d, [ ] ];
65                 push @{ $node->[1] }, $c;
66             }
67             $node = $c;
68         }
69         $node->[2] = 1;
70     }
71 }
72
73 sub target_varname ($$) {
74     my ($var_prefix, $target) = @_;
75     return $var_prefix.'TARGETS'.($target eq 'all' ? '' : "_$target");
76 }
77
78 our $writing_output;
79 our $buffering_output;
80 our %output_files;
81 our %input_files;
82 our @output_makefiles;
83
84 sub close_any_output_file() {
85     return unless defined $writing_output;
86     O->error and die "error writing $writing_output.tmp: $! (?)\n";
87     close O or die "error closing $writing_output.tmp: $!\n";
88     $writing_output = undef;
89 }
90
91 sub oraw {
92     die 'internal error' unless defined $writing_output;
93     print O @_ or die "error writing $writing_output.tmp: $!\n";
94 }
95
96 sub oud { # undoubled
97     if (defined $buffering_output) {
98         $buffering_output .= $_ foreach @_;
99         return;
100     }
101     oraw @_;
102 }
103
104 our $ddbl;
105
106 sub od { # maybe $-doubled
107     if (!$ddbl) {
108         oud @_;
109         return;
110     }
111     foreach (@_) {
112         my $e = $_;
113         $e =~ s{\$}{\$\$}g;
114         oud $e;
115     }
116 }
117
118 sub start_output_file ($) {
119     close_any_output_file();
120     ($writing_output) = @_;
121     die "internal error ($writing_output?)"
122         if $output_files{$writing_output}++;
123     my $tmp = "$writing_output.tmp";
124     open O, ">", $tmp or die "create $tmp: $!\n";
125     oraw "# autogenerated - do not edit\n";
126 }
127
128 sub install_output_files () {
129     close_any_output_file();
130     foreach my $f (sort keys %output_files) {
131         rename "$f.tmp", $f or die "install new $f: $!\n";
132     }
133 }
134
135 sub write_makefile ($$) {
136     my ($dir_prefix,$depth) = @_;
137     #print STDERR "write_makefile @_\n";
138     start_output_file("${dir_prefix}Makefile");
139     my $cd = $depth ? join('/', ('..',) x $depth) : '.';
140     my $suppress_templates=
141         '$(if $(filter-out clean real-clean, $(subdirmk_targets)),,'.
142         ' MAKEFILE_TEMPLATES=)';
143     oraw <<END;
144 default: all
145 \$(filter-out all,\$(MAKECMDGOALS)) all: run-main.mk
146         \@:
147 subdirmk_targets:=\$(or \$(MAKECMDGOALS),all)
148 Makefile run-main.mk:
149         \$(MAKE) -C $cd -f main.mk \$(addprefix ${dir_prefix},\$(subdirmk_targets))$suppress_templates
150 .SUFFIXES:
151 .PHONY: run-main.mk
152 END
153 }
154
155 our %varref;
156
157 our ($dir_prefix, $dir_suffix, $dir_name,
158      $var_prefix, $var_prefix_name);
159
160 sub dir_prefix ($) {
161     my ($path) = @_;
162     join '', map { "$_/" } @$path;
163 }
164
165 sub set_dir_vars ($) {
166     my ($path) = @_;
167     $dir_prefix = dir_prefix($path);
168     $dir_suffix = join '', map { "/$_" } @$path;
169     $dir_name = join '/', @$path ? @$path : '.';
170     $var_prefix_name = join '_', @$path ? @$path : qw(TOP);
171     $var_prefix = "${var_prefix_name}_";
172 }
173
174 our $err_file;
175
176 our @warn_ena_dfl = map { $_ => 1 } qw(
177     local+global
178     single-char-var
179     unknown-warning
180 );
181 our %warn_ena = @warn_ena_dfl;
182
183 our $warned;
184 our %warn_unk;
185
186 sub err ($) {
187     my ($m) = @_;
188     die "subdirmk: ${err_file}:$.: $m\n";
189 }
190
191 sub wrncore ($$) {
192     my ($wk,$m) = @_;
193     return 0 unless $warn_ena{$wk} // warn "internal error $wk ?";
194     $warned++;
195     print STDERR "subdirmk: warning ($wk): $m\n";
196     return 1;
197 }
198
199 sub wrn ($$) {
200     my ($wk,$m) = @_;
201     wrncore($wk, "${err_file}:$.: $m");
202 }
203
204 sub ddbl_only ($) {
205     my ($e) = @_;
206     return if $ddbl;
207     err "escape &$e is valid only during \$-doubling";
208 }
209
210 sub process_input_mk ($$$$);
211 sub process_input_mk ($$$$) {
212     my ($targets, $f, $esclitr, $enoent_ok) = @_;
213
214     my $caps_re = qr{[A-Z]};
215     my $lc_re = qr{[a-z]};
216
217     my $esc;
218     my $set_esc = sub {
219         $esc = $$esclitr;
220         $esc =~ s/\W/\\$&/g;
221     };
222     $set_esc->();
223
224     my $input = new IO::File $f, '<';
225     if (!$input) {
226         err "open $f: $!" unless $!==ENOENT && $enoent_ok;
227         return;
228     }
229     $input_files{$f}++;
230
231     local $err_file=$f;
232
233     my %srcdirmap = (
234                   '^' => "\$(top_srcdir)${dir_suffix}",
235                   '~' => "\$(top_srcdir)",
236                     );
237     my %pfxmap = (
238                   ''  => $dir_prefix,
239                  );
240     $pfxmap{$_} = $srcdirmap{$_}.'/' foreach keys %srcdirmap;
241
242     local $ddbl;
243     my @nest = (['']);
244     my $evalcall_brackets;
245
246     my $push_nest = sub {
247         my ($nk, $nndbl, $what) = @_;
248         unshift @nest, [ $nk, $ddbl, $what, $. ];
249         $ddbl = $nndbl;
250     };
251     my $pop_nest = sub {
252         my ($nk) = @_;
253         err "unexpectedly closed $nk in middle of $nest[0][0] ($nest[0][2])"
254             unless $nest[0][0] eq $nk;
255         $ddbl = (shift @nest)[1];
256     };
257
258     # Our detection of variable settings does not have to be completely
259     # accurate, since it is only going to be used for advice to the user.
260     my $note_varref = sub {
261         my ($vn,$amp) = @_;
262         $varref{$vn}{$amp}{"$f:$."} = 1;
263     };
264
265     while (<$input>) {
266         if (m#^\s*($esc)?(\w+)\s*(?:=|\+=|\?=|:=)# ||
267             m#^\s*(?:$esc\:macro|define)\s+($esc)?(\S+)\s#) {
268             $note_varref->($2,!!$1);
269         }
270         if (s#^\s*$esc\:changequote\s+(\S+)\s+$##) {
271             $$esclitr = $1;
272             $set_esc->();
273             next;
274         } elsif (s#^\s*$esc\:endm\s+$##) {
275             $pop_nest->('macro');
276             od "endef\n";
277             next;
278         } elsif (s#^\s*$esc\:warn\s+(\S.*)$##) {
279             foreach my $wk (split /\s+/, $1) {
280                 my $yes = $wk !~ s{^!}{};
281                 if (defined $warn_ena{$wk}) {
282                     $warn_ena{$wk} = $yes;
283                     next;
284                 } elsif ($yes) {
285                     wrn 'unknown-warning',
286                         "unknown warning $wk requested";
287                 } else {
288                     $warn_unk{$wk} //= "$f:$.";
289                 }
290             }
291             next;
292         } elsif (s#^\s*$esc\:(?=(-?)include|macro)##) {
293             $buffering_output='';
294         } elsif (m#^\s*$esc\:([a-z][-0-9a-z_]*)#) {
295             err "unknown directive &:$1 or bad argumnt syntax";
296         } elsif (s{^\s*${esc}TARGETS(?:_([0-9a-zA-Z_]+))?(?=\W)}{}) {
297             my $t = $1 // 'all';
298             my $vn = target_varname($var_prefix, $t);
299             $note_varref->($vn,1);
300             od $vn;
301             $targets->{$t} //= [ ];
302         }
303         for (;;) {
304             err 'cannot $-double &-processed RHS of directive'
305                 if $ddbl && defined $buffering_output;
306             unless ($nest[0][0] eq 'eval'
307                     ? s{^(.*?)($esc|\$|[{}])}{}
308                     : s{^(.*?)($esc|\$)}{}) { od $_; last; }
309             od $1;
310             if ($2 eq '{') {
311                 od $2;
312                 $evalcall_brackets++;
313                 next;
314             } elsif ($2 eq '}') {
315                 od $2;
316                 next if --$evalcall_brackets;
317                 $pop_nest->('eval');
318                 od '}';
319                 next;
320             } elsif ($2 eq '$') {
321                 od $2;
322                 if (s{^\$}{}) { od $&; }
323                 elsif (m{^[a-zA-Z]\w}) {
324                     wrn 'single-char-var',
325                     'possibly confusing unbracketed single-char $-expansion';
326                 }
327                 elsif (m{^\(($esc)?([^()\$]+)\)} ||
328                        m{^\{($esc)?([^{}\$]+)\}}) {
329                     $note_varref->($2,!!$1);
330                 }
331                 next;
332             }
333             if (s{^\\$esc}{}) { od "$$esclitr" }
334             elsif (s{^\\\$}{}) { oud '$' }
335             elsif (s{^\\\s+$}{}) { }
336             elsif (s{^$esc}{}) { od "$$esclitr$$esclitr" }
337             elsif (m{^(?=$caps_re)}) { od $var_prefix }
338             elsif (s{^\$([A-Za-z]\w+)}{}) {
339                 $note_varref->($1,1);
340                 od "\$(${var_prefix}$1)";
341             }
342             elsif (s{^([~^]?)(?=$lc_re)}{}) { od $pfxmap{$1} }
343             elsif (s{^_}{}) { od $var_prefix }
344             elsif (s{^=}{}) { od $var_prefix_name }
345             elsif (s{^([~^]?)/}{}) { od $pfxmap{$1} }
346             elsif (s{^\.}{}) { od $dir_name }
347             elsif (s{^([~^])\.}{}) { od $srcdirmap{$1} }
348             elsif (s{^\$\-}{}) { $ddbl=undef; }
349             elsif (s{^\$\+}{}) { $ddbl=1; }
350             elsif (s{^\$\(}{}) {
351                 ddbl_only($&); oud "\$(";
352                 $note_varref->($2,!!$1) if m{^($esc)?([^()\$]+\))};
353             }
354             elsif (s{^\$(\d+)}{}) { ddbl_only($&); oud "\$($1)"; }
355             elsif (s{^\$\{}{}) {
356                 err 'macro invocation cannot be re-$-doubled' if $ddbl;
357                 od '${eval ${call ';
358                 $evalcall_brackets = 1;
359                 $push_nest->('eval',1, '&${...}');
360                 $note_varref->($2,!!$1) if m{^\s*($esc)?([^,{}\$]+)};
361             } elsif (s{^([~^]?)(?=[ \t])}{}) {
362                 my $prefix = $pfxmap{$1} // die "internal error ($1?)";
363                 my $after='';
364                 if (m{([ \t])$esc}) { ($_,$after) = ($`, $1.$'); }
365                 s{(?<=[ \t])(?=\S)(?!\\\s*$)}{$prefix}g;
366                 od $_;
367                 $_ = $after;
368             } elsif (s{^\#}{}) {
369                 $_ = '';
370             } elsif (s{^![ \t]+}{}) {
371                 od $_;
372                 $_ = '';
373             } else {
374                 m{^.{0,5}};
375                 err "bad &-escape \`$$esclitr$&'";
376             }
377         }
378         if (defined $buffering_output) {
379             $_=$buffering_output;
380             $buffering_output=undef;
381             if (m#^(-?)include\s+(\S+)\s+$#) {
382                 my $subf = "$srcdir/$2";
383                 process_input_mk($targets, $subf, $esclitr, $1);
384                 od "\n";
385             } elsif (m#^macro\s+(\S+)\s+$#) {
386                 od "define $1\n";
387                 $push_nest->('macro', 1, '&:macro');
388             } else {
389                 err "bad directive argument syntax";
390             }
391         }
392     }
393     die "subdirmk: $f:$nest[0][3]: unclosed $nest[0][0] ($nest[0][2])\n"
394         if $nest[0][0];
395     $input->error and die "read $f: $!\n";
396     close $input or die "close $f: $!\n";
397 }
398
399 sub filter_subdir_mk ($) {
400     my ($targets) = @_;
401
402     #use Data::Dumper;
403     #print STDERR "filter @_\n";
404
405     my $esclit = '&';
406
407     my $pi = sub {
408         my ($f, $enoentok) = @_;
409         process_input_mk($targets, "${srcdir}/$f", \$esclit, $enoentok);
410     };
411     $pi->("Prefix.sd.mk",           1);
412     $pi->("${dir_prefix}Dir.sd.mk", 0);
413     $pi->("Suffix.sd.mk",           1);
414 }
415
416 sub process_subtree ($$);
417 sub process_subtree ($$) {
418     # => list of targets (in form SUBDIR/)
419     # recursive, children first
420     my ($node, $path) = @_;
421
422     #use Data::Dumper;
423     #print STDERR Dumper(\@_);
424
425     my $dir_prefix = dir_prefix($path);
426     # ^ this is the only var which we need before we come back from
427     #   the recursion.
428
429     push @output_makefiles, "${dir_prefix}Dir.mk";
430     write_makefile($dir_prefix, scalar @$path);
431
432     my %targets = (all => []);
433     foreach my $child (@{ $node->[1] }) {
434         my @childpath = (@$path, $child->[0]);
435         my $child_subdir = join '/', @childpath;
436         mkdir $child_subdir or $!==EEXIST or die "mkdir $child_subdir: $!\n";
437         local %warn_ena = @warn_ena_dfl;
438         push @{ $targets{$_} }, $child_subdir foreach
439             process_subtree($child, \@childpath);
440     }
441
442     set_dir_vars($path);
443     start_output_file("${dir_prefix}Dir.mk.tmp");
444
445     if ($node->[2]) {
446         filter_subdir_mk(\%targets);
447     } else {
448         my $sdmk = "${dir_prefix}Dir.sd.mk";
449         if (stat $sdmk) {
450             die
451  "subdirmk: $sdmk unexpectedly exists (${dir_prefix} not mentioned on subdirmk/generate command line, maybe directory is missing from SUBDIRMK_SUBDIRS)";
452         } elsif ($!==ENOENT) {
453         } else {
454             die "stat $sdmk: $!\n";
455         }
456     }
457
458     oraw "\n";
459
460     my @targets = sort keys %targets;
461     foreach my $target (@targets) {
462         my $target_varname = target_varname($var_prefix, $target);
463         oraw "${dir_prefix}${target}:: \$($target_varname)";
464         foreach my $child_subdir (@{ $targets{$target} }) {
465             oraw " $child_subdir/$target";
466         }
467         oraw "\n";
468     }
469     if (@targets) {
470         oraw ".PHONY:";
471         oraw " ${dir_prefix}${_}" foreach @targets;
472         oraw "\n";
473     }
474
475     return @targets;
476 }
477
478 sub process_final ($) {
479     my ($otargets) = @_;
480     set_dir_vars([]);
481     push @output_makefiles, "Final.mk";
482     start_output_file("Final.mk.tmp");
483     my %ntargets;
484     my $esclit='&';
485     process_input_mk(\%ntargets, "${srcdir}/Final.sd.mk", \$esclit, 1);
486     delete $ntargets{$_} foreach @$otargets;
487     my @ntargets = sort keys %ntargets;
488     die "subdirmk: Final.sd.mk may not introduce new top-level targets".
489         " (@ntargets)\n" if @ntargets;
490 }
491
492 sub process_tree() {
493     my @targets = process_subtree($root, [ ]);
494     process_final(\@targets);
495     start_output_file("main.mk.tmp");
496     foreach my $v (qw(top_srcdir abs_top_srcdir)) {
497         oraw "$v=\@$v@\n";
498     }
499     oraw "SUBDIRMK_MAKEFILES :=\n";
500     oraw "MAKEFILE_TEMPLATES :=\n";
501     foreach my $mf (@output_makefiles) {
502         oraw "SUBDIRMK_MAKEFILES += $mf\n";
503     }
504     foreach my $input (sort keys %input_files) {
505         oraw "MAKEFILE_TEMPLATES += $input\n";
506     }
507     oraw "include \$(SUBDIRMK_MAKEFILES)\n";
508 }
509
510 sub flmap ($) { local ($_) = @_; s{:(\d+)$}{ sprintf ":%10d", $1 }e; $_; }
511
512 sub print_varref_warnings () {
513     foreach my $vn (sort keys %varref) {
514         my $vv = $varref{$vn};
515         next unless $vv->{''} && $vv->{1};
516         wrncore 'local+global', "saw both $vn and &$vn" or return;
517         foreach my $amp ('', 1) {
518             printf STDERR " saw %s%s at %s\n",
519                 ($amp ? '&' : ''), $vn, $_
520                 foreach
521                 sort { flmap($a) cmp flmap($b) }
522                 keys %{ $vv->{$amp} };
523         }
524     }
525 }
526
527 sub print_warning_warnings () {
528     return unless $warned;
529     foreach my $wk (sort keys %warn_unk) {
530         wrncore 'unknown-warning',
531             "$warn_unk{$wk}: attempt to suppress unknown warning(s) \`$wk'";
532     }
533 }
534
535 build_tree();
536 process_tree();
537 print_varref_warnings();
538 print_warning_warnings();
539 install_output_files();