74e325013c341dd82dd08e555f54040710ede0e6
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / xsubpp
1 #!./miniperl
2
3 =head1 NAME
4
5 xsubpp - compiler to convert Perl XS code into C code
6
7 =head1 SYNOPSIS
8
9 B<xsubpp> [B<-v>] [B<-C++>] [B<-except>] [B<-s pattern>] [B<-prototypes>] [B<-noversioncheck>] [B<-typemap typemap>]... file.xs
10
11 =head1 DESCRIPTION
12
13 I<xsubpp> will compile XS code into C code by embedding the constructs
14 necessary to let C functions manipulate Perl values and creates the glue
15 necessary to let Perl access those functions.  The compiler uses typemaps to
16 determine how to map C function parameters and variables to Perl values.
17
18 The compiler will search for typemap files called I<typemap>.  It will use
19 the following search path to find default typemaps, with the rightmost
20 typemap taking precedence.
21
22         ../../../typemap:../../typemap:../typemap:typemap
23
24 =head1 OPTIONS
25
26 =over 5
27
28 =item B<-C++>
29
30 Adds ``extern "C"'' to the C code.
31
32
33 =item B<-except>
34
35 Adds exception handling stubs to the C code.
36
37 =item B<-typemap typemap>
38
39 Indicates that a user-supplied typemap should take precedence over the
40 default typemaps.  This option may be used multiple times, with the last
41 typemap having the highest precedence.
42
43 =item B<-v>
44
45 Prints the I<xsubpp> version number to standard output, then exits.
46
47 =item B<-prototypes>
48
49 By default I<xsubpp> will not automatically generate prototype code for
50 all xsubs. This flag will enable prototypes.
51
52 =item B<-noversioncheck>
53
54 Disables the run time test that determines if the object file (derived
55 from the C<.xs> file) and the C<.pm> files have the same version
56 number.
57
58 =back
59
60 =head1 ENVIRONMENT
61
62 No environment variables are used.
63
64 =head1 AUTHOR
65
66 Larry Wall
67
68 =head1 MODIFICATION HISTORY
69
70 See the file F<changes.pod>.
71
72 =head1 SEE ALSO
73
74 perl(1), perlxs(1), perlxstut(1), perlxs(1)
75
76 =cut
77
78 require 5.002;
79 use Cwd;
80 use vars '$cplusplus';
81
82 # Global Constants
83 $XSUBPP_version = "1.94001";
84 $Is_VMS = $^O eq 'VMS';
85
86 sub Q ;
87
88 $FH = 'File0000' ;
89
90 $usage = "Usage: xsubpp [-v] [-C++] [-except] [-prototypes] [-noversioncheck] [-s pattern] [-typemap typemap]... file.xs\n";
91
92 $proto_re = "[" . quotemeta('\$%&*@;') . "]" ;
93
94 $except = "";
95 $WantPrototypes = -1 ;
96 $WantVersionChk = 1 ;
97 $ProtoUsed = 0 ;
98 SWITCH: while (@ARGV and $ARGV[0] =~ /^-./) {
99     $flag = shift @ARGV;
100     $flag =~ s/^-// ;
101     $spat = quotemeta shift,    next SWITCH     if $flag eq 's';
102     $cplusplus = 1,     next SWITCH     if $flag eq 'C++';
103     $WantPrototypes = 0, next SWITCH    if $flag eq 'noprototypes';
104     $WantPrototypes = 1, next SWITCH    if $flag eq 'prototypes';
105     $WantVersionChk = 0, next SWITCH    if $flag eq 'noversioncheck';
106     $WantVersionChk = 1, next SWITCH    if $flag eq 'versioncheck';
107     $except = " TRY",   next SWITCH     if $flag eq 'except';
108     push(@tm,shift),    next SWITCH     if $flag eq 'typemap';
109     (print "xsubpp version $XSUBPP_version\n"), exit    
110         if $flag eq 'v';
111     die $usage;
112 }
113 if ($WantPrototypes == -1)
114   { $WantPrototypes = 0}
115 else
116   { $ProtoUsed = 1 }
117
118
119 @ARGV == 1 or die $usage;
120 ($dir, $filename) = $ARGV[0] =~ m#(.*)/(.*)#
121         or ($dir, $filename) = $ARGV[0] =~ m#(.*[>\]])(.*)#
122         or ($dir, $filename) = ('.', $ARGV[0]);
123 chdir($dir);
124 $pwd = cwd();
125
126 ++ $IncludedFiles{$ARGV[0]} ;
127
128 my(@XSStack) = ({type => 'none'});      # Stack of conditionals and INCLUDEs
129 my($XSS_work_idx, $cpp_next_tmp) = (0, "XSubPPtmpAAAA");
130
131 sub TrimWhitespace
132 {
133     $_[0] =~ s/^\s+|\s+$//go ;
134 }
135
136 sub TidyType
137 {
138     local ($_) = @_ ;
139
140     # rationalise any '*' by joining them into bunches and removing whitespace
141     s#\s*(\*+)\s*#$1#g;
142     s#(\*+)# $1 #g ;
143
144     # change multiple whitespace into a single space
145     s/\s+/ /g ;
146     
147     # trim leading & trailing whitespace
148     TrimWhitespace($_) ;
149
150     $_ ;
151 }
152
153 $typemap = shift @ARGV;
154 foreach $typemap (@tm) {
155     die "Can't find $typemap in $pwd\n" unless -r $typemap;
156 }
157 unshift @tm, qw(../../../../lib/ExtUtils/typemap ../../../lib/ExtUtils/typemap
158                 ../../lib/ExtUtils/typemap ../../../typemap ../../typemap
159                 ../typemap typemap);
160 foreach $typemap (@tm) {
161     next unless -e $typemap ;
162     # skip directories, binary files etc.
163     warn("Warning: ignoring non-text typemap file '$typemap'\n"), next 
164         unless -T $typemap ;
165     open(TYPEMAP, $typemap) 
166         or warn ("Warning: could not open typemap file '$typemap': $!\n"), next;
167     $mode = 'Typemap';
168     $junk = "" ;
169     $current = \$junk;
170     while (<TYPEMAP>) {
171         next if /^\s*#/;
172         my $line_no = $. + 1; 
173         if (/^INPUT\s*$/)   { $mode = 'Input';   $current = \$junk;  next; }
174         if (/^OUTPUT\s*$/)  { $mode = 'Output';  $current = \$junk;  next; }
175         if (/^TYPEMAP\s*$/) { $mode = 'Typemap'; $current = \$junk;  next; }
176         if ($mode eq 'Typemap') {
177             chomp;
178             my $line = $_ ;
179             TrimWhitespace($_) ;
180             # skip blank lines and comment lines
181             next if /^$/ or /^#/ ;
182             my($type,$kind, $proto) = /^\s*(.*?\S)\s+(\S+)\s*($proto_re*)\s*$/ or
183                 warn("Warning: File '$typemap' Line $. '$line' TYPEMAP entry needs 2 or 3 columns\n"), next;
184             $type = TidyType($type) ;
185             $type_kind{$type} = $kind ;
186             # prototype defaults to '$'
187             $proto = "\$" unless $proto ;
188             warn("Warning: File '$typemap' Line $. '$line' Invalid prototype '$proto'\n") 
189                 unless ValidProtoString($proto) ;
190             $proto_letter{$type} = C_string($proto) ;
191         }
192         elsif (/^\s/) {
193             $$current .= $_;
194         }
195         elsif ($mode eq 'Input') {
196             s/\s+$//;
197             $input_expr{$_} = '';
198             $current = \$input_expr{$_};
199         }
200         else {
201             s/\s+$//;
202             $output_expr{$_} = '';
203             $current = \$output_expr{$_};
204         }
205     }
206     close(TYPEMAP);
207 }
208
209 foreach $key (keys %input_expr) {
210     $input_expr{$key} =~ s/\n+$//;
211 }
212
213 $END = "!End!\n\n";             # "impossible" keyword (multiple newline)
214
215 # Match an XS keyword
216 $BLOCK_re= '\s*(' . join('|', qw(
217         REQUIRE BOOT CASE PREINIT INPUT INIT CODE PPCODE OUTPUT 
218         CLEANUP ALIAS PROTOTYPES PROTOTYPE VERSIONCHECK INCLUDE
219         SCOPE
220         )) . "|$END)\\s*:";
221
222 # Input:  ($_, @line) == unparsed input.
223 # Output: ($_, @line) == (rest of line, following lines).
224 # Return: the matched keyword if found, otherwise 0
225 sub check_keyword {
226         $_ = shift(@line) while !/\S/ && @line;
227         s/^(\s*)($_[0])\s*:\s*(?:#.*)?/$1/s && $2;
228 }
229
230
231 sub print_section {
232     my $count = 0;
233     $_ = shift(@line) while !/\S/ && @line;
234     for (;  defined($_) && !/^$BLOCK_re/o;  $_ = shift(@line)) {
235         print line_directive() unless ($count++);
236         print "$_\n";
237     }
238 }
239
240 sub process_keyword($)
241 {
242     my($pattern) = @_ ;
243     my $kwd ;
244
245     &{"${kwd}_handler"}() 
246         while $kwd = check_keyword($pattern) ;
247     print line_directive();
248 }
249
250 sub CASE_handler {
251     blurt ("Error: `CASE:' after unconditional `CASE:'")
252         if $condnum && $cond eq '';
253     $cond = $_;
254     TrimWhitespace($cond);
255     print "   ", ($condnum++ ? " else" : ""), ($cond ? " if ($cond)\n" : "\n");
256     $_ = '' ;
257 }
258
259 sub INPUT_handler {
260     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
261         last if /^\s*NOT_IMPLEMENTED_YET/;
262         next unless /\S/;       # skip blank lines 
263
264         TrimWhitespace($_) ;
265         my $line = $_ ;
266
267         # remove trailing semicolon if no initialisation
268         s/\s*;$//g unless /=/ ;
269
270         # check for optional initialisation code
271         my $var_init = '' ;
272         $var_init = $1 if s/\s*(=.*)$//s ;
273         $var_init =~ s/"/\\"/g;
274
275         s/\s+/ /g;
276         my ($var_type, $var_addr, $var_name) = /^(.*?[^& ]) *(\&?) *\b(\w+)$/s
277             or blurt("Error: invalid argument declaration '$line'"), next;
278
279         # Check for duplicate definitions
280         blurt ("Error: duplicate definition of argument '$var_name' ignored"), next
281             if $arg_list{$var_name} ++  ;
282
283         $thisdone |= $var_name eq "THIS";
284         $retvaldone |= $var_name eq "RETVAL";
285         $var_types{$var_name} = $var_type;
286         print "\t" . &map_type($var_type);
287         $var_num = $args_match{$var_name};
288
289         $proto_arg[$var_num] = ProtoString($var_type) 
290             if $var_num ;
291         if ($var_addr) {
292             $var_addr{$var_name} = 1;
293             $func_args =~ s/\b($var_name)\b/&$1/;
294         }
295         if ($var_init =~ /^=\s*NO_INIT\s*;?\s*$/) {
296             print "\t$var_name;\n";
297         } elsif ($var_init =~ /\S/) {
298             &output_init($var_type, $var_num, "$var_name $var_init");
299         } elsif ($var_num) {
300             # generate initialization code
301             &generate_init($var_type, $var_num, $var_name);
302         } else {
303             print ";\n";
304         }
305     }
306 }
307
308 sub OUTPUT_handler {
309     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
310         next unless /\S/;
311         my ($outarg, $outcode) = /^\s*(\S+)\s*(.*?)\s*$/s ;
312         blurt ("Error: duplicate OUTPUT argument '$outarg' ignored"), next
313             if $outargs{$outarg} ++ ;
314         if (!$gotRETVAL and $outarg eq 'RETVAL') {
315             # deal with RETVAL last
316             $RETVAL_code = $outcode ;
317             $gotRETVAL = 1 ;
318             next ;
319         }
320         blurt ("Error: OUTPUT $outarg not an argument"), next
321             unless defined($args_match{$outarg});
322         blurt("Error: No input definition for OUTPUT argument '$outarg' - ignored"), next
323             unless defined $var_types{$outarg} ;
324         print line_directive();
325         if ($outcode) {
326             print "\t$outcode\n";
327         } else {
328             $var_num = $args_match{$outarg};
329             &generate_output($var_types{$outarg}, $var_num, $outarg); 
330         }
331     }
332 }
333
334 sub CLEANUP_handler() { print_section() } 
335 sub PREINIT_handler() { print_section() } 
336 sub INIT_handler()    { print_section() } 
337
338 sub GetAliases
339 {
340     my ($line) = @_ ;
341     my ($orig) = $line ;
342     my ($alias) ;
343     my ($value) ;
344
345     # Parse alias definitions
346     # format is
347     #    alias = value alias = value ...
348
349     while ($line =~ s/^\s*([\w:]+)\s*=\s*(\w+)\s*//) {
350         $alias = $1 ;
351         $orig_alias = $alias ;
352         $value = $2 ;
353
354         # check for optional package definition in the alias
355         $alias = $Packprefix . $alias if $alias !~ /::/ ;
356         
357         # check for duplicate alias name & duplicate value
358         Warn("Warning: Ignoring duplicate alias '$orig_alias'")
359             if defined $XsubAliases{$alias} ;
360
361         Warn("Warning: Aliases '$orig_alias' and '$XsubAliasValues{$value}' have identical values")
362             if $XsubAliasValues{$value} ;
363
364         $XsubAliases = 1;
365         $XsubAliases{$alias} = $value ;
366         $XsubAliasValues{$value} = $orig_alias ;
367     }
368
369     blurt("Error: Cannot parse ALIAS definitions from '$orig'")
370         if $line ;
371 }
372
373 sub ALIAS_handler ()
374 {
375     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
376         next unless /\S/;
377         TrimWhitespace($_) ;
378         GetAliases($_) if $_ ;
379     }
380 }
381
382 sub REQUIRE_handler ()
383 {
384     # the rest of the current line should contain a version number
385     my ($Ver) = $_ ;
386
387     TrimWhitespace($Ver) ;
388
389     death ("Error: REQUIRE expects a version number")
390         unless $Ver ;
391
392     # check that the version number is of the form n.n
393     death ("Error: REQUIRE: expected a number, got '$Ver'")
394         unless $Ver =~ /^\d+(\.\d*)?/ ;
395
396     death ("Error: xsubpp $Ver (or better) required--this is only $XSUBPP_version.")
397         unless $XSUBPP_version >= $Ver ; 
398 }
399
400 sub VERSIONCHECK_handler ()
401 {
402     # the rest of the current line should contain either ENABLE or
403     # DISABLE
404  
405     TrimWhitespace($_) ;
406  
407     # check for ENABLE/DISABLE
408     death ("Error: VERSIONCHECK: ENABLE/DISABLE")
409         unless /^(ENABLE|DISABLE)/i ;
410  
411     $WantVersionChk = 1 if $1 eq 'ENABLE' ;
412     $WantVersionChk = 0 if $1 eq 'DISABLE' ;
413  
414 }
415
416 sub PROTOTYPE_handler ()
417 {
418     my $specified ;
419
420     death("Error: Only 1 PROTOTYPE definition allowed per xsub") 
421         if $proto_in_this_xsub ++ ;
422
423     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
424         next unless /\S/;
425         $specified = 1 ;
426         TrimWhitespace($_) ;
427         if ($_ eq 'DISABLE') {
428            $ProtoThisXSUB = 0 
429         }
430         elsif ($_ eq 'ENABLE') {
431            $ProtoThisXSUB = 1 
432         }
433         else {
434             # remove any whitespace
435             s/\s+//g ;
436             death("Error: Invalid prototype '$_'")
437                 unless ValidProtoString($_) ;
438             $ProtoThisXSUB = C_string($_) ;
439         }
440     }
441
442     # If no prototype specified, then assume empty prototype ""
443     $ProtoThisXSUB = 2 unless $specified ;
444
445     $ProtoUsed = 1 ;
446
447 }
448
449 sub SCOPE_handler ()
450 {
451     death("Error: Only 1 SCOPE declaration allowed per xsub") 
452         if $scope_in_this_xsub ++ ;
453
454     for (;  !/^$BLOCK_re/o;  $_ = shift(@line)) {
455                 next unless /\S/;
456                 TrimWhitespace($_) ;
457         if ($_ =~ /^DISABLE/i) {
458                    $ScopeThisXSUB = 0 
459         }
460         elsif ($_ =~ /^ENABLE/i) {
461                    $ScopeThisXSUB = 1 
462         }
463     }
464
465 }
466
467 sub PROTOTYPES_handler ()
468 {
469     # the rest of the current line should contain either ENABLE or
470     # DISABLE 
471
472     TrimWhitespace($_) ;
473
474     # check for ENABLE/DISABLE
475     death ("Error: PROTOTYPES: ENABLE/DISABLE")
476         unless /^(ENABLE|DISABLE)/i ;
477
478     $WantPrototypes = 1 if $1 eq 'ENABLE' ;
479     $WantPrototypes = 0 if $1 eq 'DISABLE' ;
480     $ProtoUsed = 1 ;
481
482 }
483
484 sub INCLUDE_handler ()
485 {
486     # the rest of the current line should contain a valid filename
487  
488     TrimWhitespace($_) ;
489  
490     death("INCLUDE: filename missing")
491         unless $_ ;
492
493     death("INCLUDE: output pipe is illegal")
494         if /^\s*\|/ ;
495
496     # simple minded recursion detector
497     death("INCLUDE loop detected")
498         if $IncludedFiles{$_} ;
499
500     ++ $IncludedFiles{$_} unless /\|\s*$/ ;
501
502     # Save the current file context.
503     push(@XSStack, {
504         type            => 'file',
505         LastLine        => $lastline,
506         LastLineNo      => $lastline_no,
507         Line            => \@line,
508         LineNo          => \@line_no,
509         Filename        => $filename,
510         Handle          => $FH,
511         }) ;
512  
513     ++ $FH ;
514
515     # open the new file
516     open ($FH, "$_") or death("Cannot open '$_': $!") ;
517  
518     print Q<<"EOF" ;
519 #
520 #/* INCLUDE:  Including '$_' from '$filename' */
521 #
522 EOF
523
524     $filename = $_ ;
525
526     # Prime the pump by reading the first 
527     # non-blank line
528
529     # skip leading blank lines
530     while (<$FH>) {
531         last unless /^\s*$/ ;
532     }
533
534     $lastline = $_ ;
535     $lastline_no = $. ;
536  
537 }
538  
539 sub PopFile()
540 {
541     return 0 unless $XSStack[-1]{type} eq 'file' ;
542
543     my $data     = pop @XSStack ;
544     my $ThisFile = $filename ;
545     my $isPipe   = ($filename =~ /\|\s*$/) ;
546  
547     -- $IncludedFiles{$filename}
548         unless $isPipe ;
549
550     close $FH ;
551
552     $FH         = $data->{Handle} ;
553     $filename   = $data->{Filename} ;
554     $lastline   = $data->{LastLine} ;
555     $lastline_no = $data->{LastLineNo} ;
556     @line       = @{ $data->{Line} } ;
557     @line_no    = @{ $data->{LineNo} } ;
558
559     if ($isPipe and $? ) {
560         -- $lastline_no ;
561         print STDERR "Error reading from pipe '$ThisFile': $! in $filename, line $lastline_no\n"  ;
562         exit 1 ;
563     }
564
565     print Q<<"EOF" ;
566 #
567 #/* INCLUDE: Returning to '$filename' from '$ThisFile' */
568 #
569 EOF
570
571     return 1 ;
572 }
573
574 sub ValidProtoString ($)
575 {
576     my($string) = @_ ;
577
578     if ( $string =~ /^$proto_re+$/ ) {
579         return $string ;
580     }
581
582     return 0 ;
583 }
584
585 sub C_string ($)
586 {
587     my($string) = @_ ;
588
589     $string =~ s[\\][\\\\]g ;
590     $string ;
591 }
592
593 sub ProtoString ($)
594 {
595     my ($type) = @_ ;
596
597     $proto_letter{$type} or "\$" ;
598 }
599
600 sub check_cpp {
601     my @cpp = grep(/^\#\s*(?:if|e\w+)/, @line);
602     if (@cpp) {
603         my ($cpp, $cpplevel);
604         for $cpp (@cpp) {
605             if ($cpp =~ /^\#\s*if/) {
606                 $cpplevel++;
607             } elsif (!$cpplevel) {
608                 Warn("Warning: #else/elif/endif without #if in this function");
609                 print STDERR "    (precede it with a blank line if the matching #if is outside the function)\n"
610                     if $XSStack[-1]{type} eq 'if';
611                 return;
612             } elsif ($cpp =~ /^\#\s*endif/) {
613                 $cpplevel--;
614             }
615         }
616         Warn("Warning: #if without #endif in this function") if $cpplevel;
617     }
618 }
619
620
621 sub Q {
622     my($text) = @_;
623     $text =~ s/^#//gm;
624     $text =~ s/\[\[/{/g;
625     $text =~ s/\]\]/}/g;
626     $text;
627 }
628
629 open($FH, $filename) or die "cannot open $filename: $!\n";
630
631 # Identify the version of xsubpp used
632 print <<EOM ;
633 /*
634  * This file was generated automatically by xsubpp version $XSUBPP_version from the 
635  * contents of $filename. Do not edit this file, edit $filename instead.
636  *
637  *      ANY CHANGES MADE HERE WILL BE LOST! 
638  *
639  */
640
641 EOM
642 print "#line 1 \"$filename\"\n"; 
643
644 while (<$FH>) {
645     last if ($Module, $Package, $Prefix) =
646         /^MODULE\s*=\s*([\w:]+)(?:\s+PACKAGE\s*=\s*([\w:]+))?(?:\s+PREFIX\s*=\s*(\S+))?\s*$/;
647     print $_;
648 }
649 &Exit unless defined $_;
650
651 $lastline    = $_;
652 $lastline_no = $.;
653
654 # Read next xsub into @line from ($lastline, <$FH>).
655 sub fetch_para {
656     # parse paragraph
657     death ("Error: Unterminated `#if/#ifdef/#ifndef'")
658         if !defined $lastline && $XSStack[-1]{type} eq 'if';
659     @line = ();
660     @line_no = () ;
661     return PopFile() if !defined $lastline;
662
663     if ($lastline =~
664         /^MODULE\s*=\s*([\w:]+)(?:\s+PACKAGE\s*=\s*([\w:]+))?(?:\s+PREFIX\s*=\s*(\S+))?\s*$/) {
665         $Module = $1;
666         $Package = defined($2) ? $2 : '';       # keep -w happy
667         $Prefix  = defined($3) ? $3 : '';       # keep -w happy
668         $Prefix = quotemeta $Prefix ;
669         ($Module_cname = $Module) =~ s/\W/_/g;
670         ($Packid = $Package) =~ tr/:/_/;
671         $Packprefix = $Package;
672         $Packprefix .= "::" if $Packprefix ne "";
673         $lastline = "";
674     }
675
676     for(;;) {
677         if ($lastline !~ /^\s*#/ ||
678             # CPP directives:
679             #   ANSI:   if ifdef ifndef elif else endif define undef
680             #           line error pragma
681             #   gcc:    warning include_next
682             #   obj-c:  import
683             #   others: ident (gcc notes that some cpps have this one)
684             $lastline =~ /^#[ \t]*(?:(?:if|ifn?def|elif|else|endif|define|undef|pragma|error|warning|line\s+\d+|ident)\b|(?:include(?:_next)?|import)\s*["<].*[>"])/) {
685             last if $lastline =~ /^\S/ && @line && $line[-1] eq "";
686             push(@line, $lastline);
687             push(@line_no, $lastline_no) ;
688         }
689
690         # Read next line and continuation lines
691         last unless defined($lastline = <$FH>);
692         $lastline_no = $.;
693         my $tmp_line;
694         $lastline .= $tmp_line
695             while ($lastline =~ /\\$/ && defined($tmp_line = <$FH>));
696             
697         chomp $lastline;
698         $lastline =~ s/^\s+$//;
699     }
700     pop(@line), pop(@line_no) while @line && $line[-1] eq "";
701     1;
702 }
703
704 PARAGRAPH:
705 while (fetch_para()) {
706     # Print initial preprocessor statements and blank lines
707     while (@line && $line[0] !~ /^[^\#]/) {
708         my $line = shift(@line);
709         print $line, "\n";
710         next unless $line =~ /^\#\s*((if)(?:n?def)?|elsif|else|endif)\b/;
711         my $statement = $+;
712         if ($statement eq 'if') {
713             $XSS_work_idx = @XSStack;
714             push(@XSStack, {type => 'if'});
715         } else {
716             death ("Error: `$statement' with no matching `if'")
717                 if $XSStack[-1]{type} ne 'if';
718             if ($XSStack[-1]{varname}) {
719                 push(@InitFileCode, "#endif\n");
720                 push(@BootCode,     "#endif");
721             }
722
723             my(@fns) = keys %{$XSStack[-1]{functions}};
724             if ($statement ne 'endif') {
725                 # Hide the functions defined in other #if branches, and reset.
726                 @{$XSStack[-1]{other_functions}}{@fns} = (1) x @fns;
727                 @{$XSStack[-1]}{qw(varname functions)} = ('', {});
728             } else {
729                 my($tmp) = pop(@XSStack);
730                 0 while (--$XSS_work_idx
731                          && $XSStack[$XSS_work_idx]{type} ne 'if');
732                 # Keep all new defined functions
733                 push(@fns, keys %{$tmp->{other_functions}});
734                 @{$XSStack[$XSS_work_idx]{functions}}{@fns} = (1) x @fns;
735             }
736         }
737     }
738
739     next PARAGRAPH unless @line;
740
741     if ($XSS_work_idx && !$XSStack[$XSS_work_idx]{varname}) {
742         # We are inside an #if, but have not yet #defined its xsubpp variable.
743         print "#define $cpp_next_tmp 1\n\n";
744         push(@InitFileCode, "#if $cpp_next_tmp\n");
745         push(@BootCode,     "#if $cpp_next_tmp");
746         $XSStack[$XSS_work_idx]{varname} = $cpp_next_tmp++;
747     }
748
749     death ("Code is not inside a function"
750            ." (maybe last function was ended by a blank line "
751            ." followed by a a statement on column one?)")
752         if $line[0] =~ /^\s/;
753
754     # initialize info arrays
755     undef(%args_match);
756     undef(%var_types);
757     undef(%var_addr);
758     undef(%defaults);
759     undef($class);
760     undef($static);
761     undef($elipsis);
762     undef($wantRETVAL) ;
763     undef(%arg_list) ;
764     undef(@proto_arg) ;
765     undef($proto_in_this_xsub) ;
766     undef($scope_in_this_xsub) ;
767     $ProtoThisXSUB = $WantPrototypes ;
768     $ScopeThisXSUB = 0;
769
770     $_ = shift(@line);
771     while ($kwd = check_keyword("REQUIRE|PROTOTYPES|VERSIONCHECK|INCLUDE")) {
772         &{"${kwd}_handler"}() ;
773         next PARAGRAPH unless @line ;
774         $_ = shift(@line);
775     }
776
777     if (check_keyword("BOOT")) {
778         &check_cpp;
779         push (@BootCode, $_, line_directive(), @line, "") ;
780         next PARAGRAPH ;
781     }
782
783
784     # extract return type, function name and arguments
785     my($ret_type) = TidyType($_);
786
787     # a function definition needs at least 2 lines
788     blurt ("Error: Function definition too short '$ret_type'"), next PARAGRAPH
789         unless @line ;
790
791     $static = 1 if $ret_type =~ s/^static\s+//;
792
793     $func_header = shift(@line);
794     blurt ("Error: Cannot parse function definition from '$func_header'"), next PARAGRAPH
795         unless $func_header =~ /^(?:([\w:]*)::)?(\w+)\s*\(\s*(.*?)\s*\)\s*$/s;
796
797     ($class, $func_name, $orig_args) =  ($1, $2, $3) ;
798     ($pname = $func_name) =~ s/^($Prefix)?/$Packprefix/;
799     ($clean_func_name = $func_name) =~ s/^$Prefix//;
800     $Full_func_name = "${Packid}_$clean_func_name";
801
802     # Check for duplicate function definition
803     for $tmp (@XSStack) {
804         next unless defined $tmp->{functions}{$Full_func_name};
805         Warn("Warning: duplicate function definition '$clean_func_name' detected");
806         last;
807     }
808     $XSStack[$XSS_work_idx]{functions}{$Full_func_name} ++ ;
809     %XsubAliases = %XsubAliasValues = ();
810
811     @args = split(/\s*,\s*/, $orig_args);
812     if (defined($class)) {
813         my $arg0 = ((defined($static) or $func_name =~ /^new/) ? "CLASS" : "THIS");
814         unshift(@args, $arg0);
815         ($orig_args = "$arg0, $orig_args") =~ s/^$arg0, $/$arg0/;
816     }
817     $orig_args =~ s/"/\\"/g;
818     $min_args = $num_args = @args;
819     foreach $i (0..$num_args-1) {
820             if ($args[$i] =~ s/\.\.\.//) {
821                     $elipsis = 1;
822                     $min_args--;
823                     if ($args[$i] eq '' && $i == $num_args - 1) {
824                         pop(@args);
825                         last;
826                     }
827             }
828             if ($args[$i] =~ /^([^=]*[^\s=])\s*=\s*(.*)/s) {
829                     $min_args--;
830                     $args[$i] = $1;
831                     $defaults{$args[$i]} = $2;
832                     $defaults{$args[$i]} =~ s/"/\\"/g;
833             }
834             $proto_arg[$i+1] = "\$" ;
835     }
836     if (defined($class)) {
837             $func_args = join(", ", @args[1..$#args]);
838     } else {
839             $func_args = join(", ", @args);
840     }
841     @args_match{@args} = 1..@args;
842
843     $PPCODE = grep(/^\s*PPCODE\s*:/, @line);
844     $CODE = grep(/^\s*CODE\s*:/, @line);
845     $EXPLICIT_RETURN = $CODE && ("@line" =~ /\bST\s*\([^;]*=/ );
846     $ALIAS  = grep(/^\s*ALIAS\s*:/,  @line);
847
848     # print function header
849     print Q<<"EOF";
850 #XS(XS_${Full_func_name})
851 #[[
852 #    dXSARGS;
853 EOF
854     print Q<<"EOF" if $ALIAS ;
855 #    dXSI32;
856 EOF
857     if ($elipsis) {
858         $cond = ($min_args ? qq(items < $min_args) : 0);
859     }
860     elsif ($min_args == $num_args) {
861         $cond = qq(items != $min_args);
862     }
863     else {
864         $cond = qq(items < $min_args || items > $num_args);
865     }
866
867     print Q<<"EOF" if $except;
868 #    char errbuf[1024];
869 #    *errbuf = '\0';
870 EOF
871
872     if ($ALIAS) 
873       { print Q<<"EOF" if $cond }
874 #    if ($cond)
875 #       croak("Usage: %s($orig_args)", GvNAME(CvGV(cv)));
876 EOF
877     else 
878       { print Q<<"EOF" if $cond }
879 #    if ($cond)
880 #       croak("Usage: $pname($orig_args)");
881 EOF
882
883     print Q<<"EOF" if $PPCODE;
884 #    SP -= items;
885 EOF
886
887     # Now do a block of some sort.
888
889     $condnum = 0;
890     $cond = '';                 # last CASE: condidional
891     push(@line, "$END:");
892     push(@line_no, $line_no[-1]);
893     $_ = '';
894     &check_cpp;
895     while (@line) {
896         &CASE_handler if check_keyword("CASE");
897         print Q<<"EOF";
898 #   $except [[
899 EOF
900
901         # do initialization of input variables
902         $thisdone = 0;
903         $retvaldone = 0;
904         $deferred = "";
905         %arg_list = () ;
906         $gotRETVAL = 0;
907
908         INPUT_handler() ;
909         process_keyword("INPUT|PREINIT|ALIAS|PROTOTYPE|SCOPE") ;
910
911         print Q<<"EOF" if $ScopeThisXSUB;
912 #   ENTER;
913 #   [[
914 EOF
915         
916         if (!$thisdone && defined($class)) {
917             if (defined($static) or $func_name =~ /^new/) {
918                 print "\tchar *";
919                 $var_types{"CLASS"} = "char *";
920                 &generate_init("char *", 1, "CLASS");
921             }
922             else {
923                 print "\t$class *";
924                 $var_types{"THIS"} = "$class *";
925                 &generate_init("$class *", 1, "THIS");
926             }
927         }
928
929         # do code
930         if (/^\s*NOT_IMPLEMENTED_YET/) {
931                 print "\n\tcroak(\"$pname: not implemented yet\");\n";
932                 $_ = '' ;
933         } else {
934                 if ($ret_type ne "void") {
935                         print "\t" . &map_type($ret_type) . "\tRETVAL;\n"
936                                 if !$retvaldone;
937                         $args_match{"RETVAL"} = 0;
938                         $var_types{"RETVAL"} = $ret_type;
939                 }
940
941                 print $deferred;
942
943         process_keyword("INIT|ALIAS|PROTOTYPE") ;
944
945                 if (check_keyword("PPCODE")) {
946                         print_section();
947                         death ("PPCODE must be last thing") if @line;
948                         print "\tLEAVE;\n" if $ScopeThisXSUB;
949                         print "\tPUTBACK;\n\treturn;\n";
950                 } elsif (check_keyword("CODE")) {
951                         print_section() ;
952                 } elsif (defined($class) and $func_name eq "DESTROY") {
953                         print "\n\t";
954                         print "delete THIS;\n";
955                 } else {
956                         print "\n\t";
957                         if ($ret_type ne "void") {
958                                 print "RETVAL = ";
959                                 $wantRETVAL = 1;
960                         }
961                         if (defined($static)) {
962                             if ($func_name =~ /^new/) {
963                                 $func_name = "$class";
964                             } else {
965                                 print "${class}::";
966                             }
967                         } elsif (defined($class)) {
968                             if ($func_name =~ /^new/) {
969                                 $func_name .= " $class";
970                             } else {
971                                 print "THIS->";
972                             }
973                         }
974                         $func_name =~ s/^($spat)//
975                             if defined($spat);
976                         print "$func_name($func_args);\n";
977                 }
978         }
979
980         # do output variables
981         $gotRETVAL = 0;
982         undef $RETVAL_code ;
983         undef %outargs ;
984         process_keyword("OUTPUT|ALIAS|PROTOTYPE"); 
985
986         # all OUTPUT done, so now push the return value on the stack
987         if ($gotRETVAL && $RETVAL_code) {
988             print "\t$RETVAL_code\n";
989         } elsif ($gotRETVAL || $wantRETVAL) {
990             &generate_output($ret_type, 0, 'RETVAL');
991         }
992         print line_directive();
993
994         # do cleanup
995         process_keyword("CLEANUP|ALIAS|PROTOTYPE") ;
996
997         print Q<<"EOF" if $ScopeThisXSUB;
998 #   ]]
999 EOF
1000         print Q<<"EOF" if $ScopeThisXSUB and not $PPCODE;
1001 #   LEAVE;
1002 EOF
1003
1004         # print function trailer
1005         print Q<<EOF;
1006 #    ]]
1007 EOF
1008         print Q<<EOF if $except;
1009 #    BEGHANDLERS
1010 #    CATCHALL
1011 #       sprintf(errbuf, "%s: %s\\tpropagated", Xname, Xreason);
1012 #    ENDHANDLERS
1013 EOF
1014         if (check_keyword("CASE")) {
1015             blurt ("Error: No `CASE:' at top of function")
1016                 unless $condnum;
1017             $_ = "CASE: $_";    # Restore CASE: label
1018             next;
1019         }
1020         last if $_ eq "$END:";
1021         death(/^$BLOCK_re/o ? "Misplaced `$1:'" : "Junk at end of function");
1022     }
1023
1024     print Q<<EOF if $except;
1025 #    if (errbuf[0])
1026 #       croak(errbuf);
1027 EOF
1028
1029     if ($ret_type ne "void" or $EXPLICIT_RETURN) {
1030         print Q<<EOF unless $PPCODE;
1031 #    XSRETURN(1);
1032 EOF
1033     } else {
1034         print Q<<EOF unless $PPCODE;
1035 #    XSRETURN_EMPTY;
1036 EOF
1037     }
1038
1039     print Q<<EOF;
1040 #]]
1041 #
1042 EOF
1043
1044     my $newXS = "newXS" ;
1045     my $proto = "" ;
1046
1047     # Build the prototype string for the xsub
1048     if ($ProtoThisXSUB) {
1049         $newXS = "newXSproto";
1050
1051         if ($ProtoThisXSUB == 2) {
1052             # User has specified empty prototype
1053             $proto = ', ""' ;
1054         }
1055         elsif ($ProtoThisXSUB != 1) {
1056             # User has specified a prototype
1057             $proto = ', "' . $ProtoThisXSUB . '"';
1058         }
1059         else {
1060             my $s = ';';
1061             if ($min_args < $num_args)  {
1062                 $s = ''; 
1063                 $proto_arg[$min_args] .= ";" ;
1064             }
1065             push @proto_arg, "$s\@" 
1066                 if $elipsis ;
1067     
1068             $proto = ', "' . join ("", @proto_arg) . '"';
1069         }
1070     }
1071
1072     if (%XsubAliases) {
1073         $XsubAliases{$pname} = 0 
1074             unless defined $XsubAliases{$pname} ;
1075         while ( ($name, $value) = each %XsubAliases) {
1076             push(@InitFileCode, Q<<"EOF");
1077 #        cv = newXS(\"$name\", XS_$Full_func_name, file);
1078 #        XSANY.any_i32 = $value ;
1079 EOF
1080         push(@InitFileCode, Q<<"EOF") if $proto;
1081 #        sv_setpv((SV*)cv$proto) ;
1082 EOF
1083         }
1084     }
1085     else {
1086         push(@InitFileCode,
1087              "        ${newXS}(\"$pname\", XS_$Full_func_name, file$proto);\n");
1088     }
1089 }
1090
1091 # print initialization routine
1092 print Q<<"EOF";
1093 ##ifdef __cplusplus
1094 #extern "C"
1095 ##endif
1096 #XS(boot_$Module_cname)
1097 #[[
1098 #    dXSARGS;
1099 #    char* file = __FILE__;
1100 #
1101 EOF
1102
1103 print Q<<"EOF" if $WantVersionChk ;
1104 #    XS_VERSION_BOOTCHECK ;
1105 #
1106 EOF
1107
1108 print Q<<"EOF" if defined $XsubAliases ;
1109 #    {
1110 #        CV * cv ;
1111 #
1112 EOF
1113
1114 print @InitFileCode;
1115
1116 print Q<<"EOF" if defined $XsubAliases ;
1117 #    }
1118 EOF
1119
1120 if (@BootCode)
1121 {
1122     print "\n    /* Initialisation Section */\n" ;
1123     print grep (s/$/\n/, @BootCode) ;
1124     print "\n    /* End of Initialisation Section */\n\n" ;
1125 }
1126
1127 print Q<<"EOF";;
1128 #    ST(0) = &sv_yes;
1129 #    XSRETURN(1);
1130 #]]
1131 EOF
1132
1133 warn("Please specify prototyping behavior for $filename (see perlxs manual)\n") 
1134     unless $ProtoUsed ;
1135 &Exit;
1136
1137
1138 sub output_init {
1139     local($type, $num, $init) = @_;
1140     local($arg) = "ST(" . ($num - 1) . ")";
1141
1142     eval qq/print " $init\\\n"/;
1143 }
1144
1145 sub line_directive
1146 {
1147     # work out the line number
1148     my $line_no = $line_no[@line_no - @line -1] ;
1149  
1150     return "#line $line_no \"$filename\"\n" ;
1151
1152 }
1153
1154 sub Warn
1155 {
1156     # work out the line number
1157     my $line_no = $line_no[@line_no - @line -1] ;
1158  
1159     print STDERR "@_ in $filename, line $line_no\n" ;
1160 }
1161
1162 sub blurt 
1163
1164     Warn @_ ;
1165     $errors ++ 
1166 }
1167
1168 sub death
1169 {
1170     Warn @_ ;
1171     exit 1 ;
1172 }
1173
1174 sub generate_init {
1175     local($type, $num, $var) = @_;
1176     local($arg) = "ST(" . ($num - 1) . ")";
1177     local($argoff) = $num - 1;
1178     local($ntype);
1179     local($tk);
1180
1181     $type = TidyType($type) ;
1182     blurt("Error: '$type' not in typemap"), return 
1183         unless defined($type_kind{$type});
1184
1185     ($ntype = $type) =~ s/\s*\*/Ptr/g;
1186     ($subtype = $ntype) =~ s/(?:Array)?(?:Ptr)?$//;
1187     $tk = $type_kind{$type};
1188     $tk =~ s/OBJ$/REF/ if $func_name =~ /DESTROY$/;
1189     $type =~ tr/:/_/;
1190     blurt("Error: No INPUT definition for type '$type' found"), return
1191         unless defined $input_expr{$tk} ;
1192     $expr = $input_expr{$tk};
1193     if ($expr =~ /DO_ARRAY_ELEM/) {
1194         blurt("Error: '$subtype' not in typemap"), return 
1195             unless defined($type_kind{$subtype});
1196         blurt("Error: No INPUT definition for type '$subtype' found"), return
1197             unless defined $input_expr{$type_kind{$subtype}} ;
1198         $subexpr = $input_expr{$type_kind{$subtype}};
1199         $subexpr =~ s/ntype/subtype/g;
1200         $subexpr =~ s/\$arg/ST(ix_$var)/g;
1201         $subexpr =~ s/\n\t/\n\t\t/g;
1202         $subexpr =~ s/is not of (.*\")/[arg %d] is not of $1, ix_$var + 1/g;
1203         $subexpr =~ s/\$var/${var}[ix_$var - $argoff]/;
1204         $expr =~ s/DO_ARRAY_ELEM/$subexpr/;
1205     }
1206     if ($expr =~ m#/\*.*scope.*\*/#i) { # "scope" in C comments
1207         $ScopeThisXSUB = 1;
1208     }
1209     if (defined($defaults{$var})) {
1210             $expr =~ s/(\t+)/$1    /g;
1211             $expr =~ s/        /\t/g;
1212             eval qq/print "\\t$var;\\n"/;
1213             $deferred .= eval qq/"\\n\\tif (items < $num)\\n\\t    $var = $defaults{$var};\\n\\telse {\\n$expr;\\n\\t}\\n"/;
1214     } elsif ($ScopeThisXSUB or $expr !~ /^\t\$var =/) {
1215             eval qq/print "\\t$var;\\n"/;
1216             $deferred .= eval qq/"\\n$expr;\\n"/;
1217     } else {
1218             eval qq/print "$expr;\\n"/;
1219     }
1220 }
1221
1222 sub generate_output {
1223     local($type, $num, $var) = @_;
1224     local($arg) = "ST(" . ($num - ($num != 0)) . ")";
1225     local($argoff) = $num - 1;
1226     local($ntype);
1227
1228     $type = TidyType($type) ;
1229     if ($type =~ /^array\(([^,]*),(.*)\)/) {
1230             print "\tsv_setpvn($arg, (char *)$var, $2 * sizeof($1)), XFree((char *)$var);\n";
1231     } else {
1232             blurt("Error: '$type' not in typemap"), return
1233                 unless defined($type_kind{$type});
1234             blurt("Error: No OUTPUT definition for type '$type' found"), return
1235                 unless defined $output_expr{$type_kind{$type}} ;
1236             ($ntype = $type) =~ s/\s*\*/Ptr/g;
1237             $ntype =~ s/\(\)//g;
1238             ($subtype = $ntype) =~ s/(?:Array)?(?:Ptr)?$//;
1239             $expr = $output_expr{$type_kind{$type}};
1240             if ($expr =~ /DO_ARRAY_ELEM/) {
1241                 blurt("Error: '$subtype' not in typemap"), return
1242                     unless defined($type_kind{$subtype});
1243                 blurt("Error: No OUTPUT definition for type '$subtype' found"), return
1244                     unless defined $output_expr{$type_kind{$subtype}} ;
1245                 $subexpr = $output_expr{$type_kind{$subtype}};
1246                 $subexpr =~ s/ntype/subtype/g;
1247                 $subexpr =~ s/\$arg/ST(ix_$var)/g;
1248                 $subexpr =~ s/\$var/${var}[ix_$var]/g;
1249                 $subexpr =~ s/\n\t/\n\t\t/g;
1250                 $expr =~ s/DO_ARRAY_ELEM\n/$subexpr/;
1251                 eval "print qq\a$expr\a";
1252             }
1253             elsif ($var eq 'RETVAL') {
1254                 if ($expr =~ /^\t\$arg = new/) {
1255                     # We expect that $arg has refcnt 1, so we need to
1256                     # mortalize it.
1257                     eval "print qq\a$expr\a";
1258                     print "\tsv_2mortal(ST(0));\n";
1259                 }
1260                 elsif ($expr =~ /^\s*\$arg\s*=/) {
1261                     # We expect that $arg has refcnt >=1, so we need
1262                     # to mortalize it. However, the extension may have
1263                     # returned the built-in perl value, which is
1264                     # read-only, thus not mortalizable. However, it is
1265                     # safe to leave it as it is, since it would be
1266                     # ignored by REFCNT_dec. Builtin values have REFCNT==0.
1267                     eval "print qq\a$expr\a";
1268                     print "\tif (SvREFCNT(ST(0))) sv_2mortal(ST(0));\n";
1269                 }
1270                 else {
1271                     # Just hope that the entry would safely write it
1272                     # over an already mortalized value. By
1273                     # coincidence, something like $arg = &sv_undef
1274                     # works too.
1275                     print "\tST(0) = sv_newmortal();\n";
1276                     eval "print qq\a$expr\a";
1277                 }
1278             }
1279             elsif ($arg =~ /^ST\(\d+\)$/) {
1280                 eval "print qq\a$expr\a";
1281             }
1282     }
1283 }
1284
1285 sub map_type {
1286     my($type) = @_;
1287
1288     $type =~ tr/:/_/;
1289     $type =~ s/^array\(([^,]*),(.*)\).*/$1 */s;
1290     $type;
1291 }
1292
1293
1294 sub Exit {
1295 # If this is VMS, the exit status has meaning to the shell, so we
1296 # use a predictable value (SS$_Normal or SS$_Abort) rather than an
1297 # arbitrary number.
1298     exit ($Is_VMS ? ($errors ? 44 : 1) : $errors) ;
1299 }