6 use vars qw($trysource $tryout $sentinel);
10 getopts('fF:ekvI:', \my %opt) or usage();
15 usage: $0 [options] <macro-name> [headers]
17 -f use 'indent' to format output
18 -F <tool> use <tool> to format output (instead of -f)
19 -e erase try.[ic] instead of failing when theyre present (errdetect)
20 -k keep them after generating (for handy inspection)
22 -I <indent-opts> passed into indent
27 usage "missing <macro-name>" unless defined $macro;
29 $sentinel = "$macro expands to";
31 usage "-f and -F <tool> are exclusive\n" if $opt{f} and $opt{F};
33 foreach($trysource, $tryout) {
35 die "You already have a $_" if -e $_;
39 open my $fh, '<', 'MANIFEST' or die "Can't open MANIFEST: $!";
41 push @ARGV, $1 if m!^([^/]+\.h)\t!;
49 next unless /^#\s*define\s+$macro\b/;
50 my ($def_args) = /^#\s*define\s+$macro\(([^)]*)\)/;
51 if (defined $def_args) {
52 my @args = split ',', $def_args;
53 print "# macro: $macro args: @args in $_\n" if $opt{v};
55 $args = '(' . join (', ', map {$argname++} 1..@args) . ')';
60 die "$macro not found\n" unless defined $header;
62 open my $out, '>', $trysource or die "Can't open $trysource: $!";
72 close $out or die "Can't close $trysource: $!";
74 print "doing: make $tryout\n" if $opt{v};
75 system "make $tryout" and die;
77 # if user wants 'indent' formatting ..
80 if ($opt{f} || $opt{F}) {
81 # a: indent is a well behaved filter when given 0 arguments, reading from
82 # stdin and writing to stdout
83 # b: all our braces should be balanced, indented back to column 0, in the
84 # headers, hence everything before our #line directive can be ignored
86 # We can take advantage of this to reduce the work to indent.
88 my $indent_command = $opt{f} ? 'indent' : $opt{F};
90 if (defined $opt{I}) {
91 $indent_command .= " $opt{I}";
93 open $out_fh, '|-', $indent_command or die $?;
98 open my $fh, '<', $tryout or die "Can't open $tryout: $!";
101 print $out_fh $_ if /$sentinel/o .. 1;
105 foreach($trysource, $tryout) {
106 die "Can't unlink $_" unless unlink $_;