This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add comment explaining where terrible code comes from
[perl5.git] / Porting / expand-macro.pl
CommitLineData
d1f3479f
NC
1#!perl -w
2use strict;
3
d5f33267 4use Pod::Usage;
a93e78e3 5use Getopt::Std;
2c949eae 6use Config;
d5f33267 7$Getopt::Std::STANDARD_HELP_VERSION = 1;
a93e78e3 8
d5f33267
MHM
9my $trysource = "try.c";
10my $tryout = "try.i";
d1f3479f 11
8553b68c 12getopts('fF:ekvI:X', \my %opt) or pod2usage();
a93e78e3 13
d5f33267 14my($expr, @headers) = @ARGV ? splice @ARGV : "-";
d1f3479f 15
d5f33267 16pod2usage "-f and -F <tool> are exclusive\n" if $opt{f} and $opt{F};
a93e78e3 17
d1f3479f 18foreach($trysource, $tryout) {
a93e78e3 19 unlink $_ if $opt{e};
d1f3479f
NC
20 die "You already have a $_" if -e $_;
21}
22
d5f33267
MHM
23if ($expr eq '-') {
24 warn "reading from stdin...\n";
25 $expr = do { local $/; <> };
26}
27
28my($macro, $args) = $expr =~ /^\s*(\w+)((?:\s*\(.*\))?)\s*;?\s*$/s
29 or pod2usage "$expr doesn't look like a macro-name or macro-expression to me";
30
31if (!(@ARGV = @headers)) {
d1f3479f
NC
32 open my $fh, '<', 'MANIFEST' or die "Can't open MANIFEST: $!";
33 while (<$fh>) {
34 push @ARGV, $1 if m!^([^/]+\.h)\t!;
35 }
ed690650 36 push @ARGV, 'config.h' if -f 'config.h';
d1f3479f
NC
37}
38
be4f373d 39my $header;
d1f3479f 40while (<>) {
e25a7dc2 41 next unless /^#\s*define\s+$macro\b/;
d1f3479f 42 my ($def_args) = /^#\s*define\s+$macro\(([^)]*)\)/;
d5f33267 43 if (defined $def_args && !$args) {
d1f3479f 44 my @args = split ',', $def_args;
a93e78e3 45 print "# macro: $macro args: @args in $_\n" if $opt{v};
d1f3479f
NC
46 my $argname = "A0";
47 $args = '(' . join (', ', map {$argname++} 1..@args) . ')';
48 }
be4f373d 49 $header = $ARGV;
d1f3479f
NC
50 last;
51}
be4f373d 52die "$macro not found\n" unless defined $header;
d1f3479f 53
390bf171
MM
54if ($^O =~ /MSWin(32|64)/) {
55 # The Win32 (and Win64) build process expects to be run from
56 # bleadperl/Win32
57 chdir "Win32"
58 or die "Couldn't chdir to win32: $!";
59};
60
d1f3479f
NC
61open my $out, '>', $trysource or die "Can't open $trysource: $!";
62
d5f33267
MHM
63my $sentinel = "$macro expands to";
64
8553b68c
NC
65my %done_header;
66
67sub do_header {
68 my $header = shift;
69 return if $done_header{$header}++;
70 print $out qq{#include "$header"\n};
71}
72
73print $out <<'EOF' if $opt{X};
74/* Need to do this like this, as cflags.sh sets it for us come what may. */
75#undef PERL_CORE
76
4784c5e8
NC
77EOF
78
8553b68c
NC
79do_header('EXTERN.h');
80do_header('perl.h');
81do_header($header);
82do_header('XSUB.h') if $opt{X};
4784c5e8
NC
83
84print $out <<"EOF";
be4f373d 85#line 4 "$sentinel"
d1f3479f
NC
86$macro$args
87EOF
88
89close $out or die "Can't close $trysource: $!";
90
2c949eae
MM
91print "doing: $Config{make} $tryout\n" if $opt{v};
92my $cmd = "$Config{make} $tryout";
93system( $cmd ) == 0
94 or die "Couldn't launch [$cmd]: $! / $?";
d1f3479f 95
a93e78e3 96# if user wants 'indent' formatting ..
27c6397c
NC
97my $out_fh;
98
99if ($opt{f} || $opt{F}) {
100 # a: indent is a well behaved filter when given 0 arguments, reading from
101 # stdin and writing to stdout
102 # b: all our braces should be balanced, indented back to column 0, in the
103 # headers, hence everything before our #line directive can be ignored
104 #
105 # We can take advantage of this to reduce the work to indent.
106
107 my $indent_command = $opt{f} ? 'indent' : $opt{F};
108
109 if (defined $opt{I}) {
110 $indent_command .= " $opt{I}";
111 }
112 open $out_fh, '|-', $indent_command or die $?;
113} else {
114 $out_fh = \*STDOUT;
115}
a93e78e3 116
390bf171
MM
117{
118 open my $fh, '<', $tryout or die "Can't open $tryout: $!";
d1f3479f 119
390bf171
MM
120 while (<$fh>) {
121 print $out_fh $_ if /$sentinel/o .. 1;
122 }
123};
d1f3479f 124
a93e78e3
JC
125unless ($opt{k}) {
126 foreach($trysource, $tryout) {
390bf171 127 die "Can't unlink $_: $!" unless unlink $_;
a93e78e3 128 }
d1f3479f 129}
d5f33267
MHM
130
131__END__
132
133=head1 NAME
134
135expand-macro.pl - expand C macros using the C preprocessor
136
137=head1 SYNOPSIS
138
139 expand-macro.pl [options] [ < macro-name | macro-expression | - > [headers] ]
140
141 options:
142 -f use 'indent' to format output
143 -F <tool> use <tool> to format output (instead of -f)
144 -e erase try.[ic] instead of failing when they're present (errdetect)
145 -k keep them after generating (for handy inspection)
146 -v verbose
147 -I <indent-opts> passed into indent
8553b68c 148 -X include "XSUB.h" (and undefine PERL_CORE)
d5f33267
MHM
149
150=cut