home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd1.bin / zkuste / Perl / ActivePerl-5.6.0.613.msi / 䆊䌷䈹䈙䏵-䞅䞆䞀㡆䞃䄦䠥 / _6af3e7868793bfe58443f50ee6b159e6 < prev    next >
Text File  |  2000-03-24  |  41KB  |  1,573 lines

  1. @rem = '--*-Perl-*--
  2. @echo off
  3. if "%OS%" == "Windows_NT" goto WinNT
  4. perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
  5. goto endofperl
  6. :WinNT
  7. perl -x -S "%0" %*
  8. if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
  9. if %errorlevel% == 9009 echo You do not have Perl in your PATH.
  10. if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
  11. goto endofperl
  12. @rem ';
  13. #!perl
  14. #line 15
  15.     eval 'exec D:\p4-view\main\Apps\Gecko\MSI\data\ActivePerl\Perl\bin\perl.exe -S $0 ${1+"$@"}'
  16.     if $running_under_some_shell;
  17.  
  18. =head1 NAME
  19.  
  20. h2xs - convert .h C header files to Perl extensions
  21.  
  22. =head1 SYNOPSIS
  23.  
  24. B<h2xs> [B<-ACOPXcdf>] [B<-v> version] [B<-n> module_name] [B<-p> prefix] [B<-s> sub] [headerfile ... [extra_libraries]]
  25.  
  26. B<h2xs> B<-h>
  27.  
  28. =head1 DESCRIPTION
  29.  
  30. I<h2xs> builds a Perl extension from C header files.  The extension
  31. will include functions which can be used to retrieve the value of any
  32. #define statement which was in the C header files.
  33.  
  34. The I<module_name> will be used for the name of the extension.  If
  35. module_name is not supplied then the name of the first header file
  36. will be used, with the first character capitalized.
  37.  
  38. If the extension might need extra libraries, they should be included
  39. here.  The extension Makefile.PL will take care of checking whether
  40. the libraries actually exist and how they should be loaded.
  41. The extra libraries should be specified in the form -lm -lposix, etc,
  42. just as on the cc command line.  By default, the Makefile.PL will
  43. search through the library path determined by Configure.  That path
  44. can be augmented by including arguments of the form B<-L/another/library/path>
  45. in the extra-libraries argument.
  46.  
  47. =head1 OPTIONS
  48.  
  49. =over 5
  50.  
  51. =item B<-A>
  52.  
  53. Omit all autoload facilities.  This is the same as B<-c> but also removes the
  54. S<C<use AutoLoader>> statement from the .pm file.
  55.  
  56. =item B<-C>
  57.  
  58. Omits creation of the F<Changes> file, and adds a HISTORY section to
  59. the POD template.
  60.  
  61. =item B<-F>
  62.  
  63. Additional flags to specify to C preprocessor when scanning header for
  64. function declarations.  Should not be used without B<-x>.
  65.  
  66. =item B<-M> I<regular expression>
  67.  
  68. selects functions/macros to process.
  69.  
  70. =item B<-O>
  71.  
  72. Allows a pre-existing extension directory to be overwritten.
  73.  
  74. =item B<-P>
  75.  
  76. Omit the autogenerated stub POD section. 
  77.  
  78. =item B<-X>
  79.  
  80. Omit the XS portion.  Used to generate templates for a module which is not
  81. XS-based.  C<-c> and C<-f> are implicitly enabled.
  82.  
  83. =item B<-a>
  84.  
  85. Generate an accessor method for each element of structs and unions. The
  86. generated methods are named after the element name; will return the current
  87. value of the element if called without additional arguments; and will set
  88. the element to the supplied value (and return the new value) if called with
  89. an additional argument. Embedded structures and unions are returned as a
  90. pointer rather than the complete structure, to facilitate chained calls.
  91.  
  92. These methods all apply to the Ptr type for the structure; additionally
  93. two methods are constructed for the structure type itself, C<_to_ptr>
  94. which returns a Ptr type pointing to the same structure, and a C<new>
  95. method to construct and return a new structure, initialised to zeroes.
  96.  
  97. =item B<-c>
  98.  
  99. Omit C<constant()> from the .xs file and corresponding specialised
  100. C<AUTOLOAD> from the .pm file.
  101.  
  102. =item B<-d>
  103.  
  104. Turn on debugging messages.
  105.  
  106. =item B<-f>
  107.  
  108. Allows an extension to be created for a header even if that header is
  109. not found in standard include directories.
  110.  
  111. =item B<-h>
  112.  
  113. Print the usage, help and version for this h2xs and exit.
  114.  
  115. =item B<-k>
  116.  
  117. For function arguments declared as C<const>, omit the const attribute in the
  118. generated XS code.
  119.  
  120. =item B<-m>
  121.  
  122. B<Experimental>: for each variable declared in the header file(s), declare
  123. a perl variable of the same name magically tied to the C variable.
  124.  
  125. =item B<-n> I<module_name>
  126.  
  127. Specifies a name to be used for the extension, e.g., S<-n RPC::DCE>
  128.  
  129. =item B<-o> I<regular expression>
  130.  
  131. Use "opaque" data type for the C types matched by the regular
  132. expression, even if these types are C<typedef>-equivalent to types
  133. from typemaps.  Should not be used without B<-x>.
  134.  
  135. This may be useful since, say, types which are C<typedef>-equivalent
  136. to integers may represent OS-related handles, and one may want to work
  137. with these handles in OO-way, as in C<$handle-E<gt>do_something()>.
  138. Use C<-o .> if you want to handle all the C<typedef>ed types as opaque types.
  139.  
  140. The type-to-match is whitewashed (except for commas, which have no
  141. whitespace before them, and multiple C<*> which have no whitespace
  142. between them).
  143.  
  144. =item B<-p> I<prefix>
  145.  
  146. Specify a prefix which should be removed from the Perl function names, e.g., S<-p sec_rgy_> 
  147. This sets up the XS B<PREFIX> keyword and removes the prefix from functions that are
  148. autoloaded via the C<constant()> mechanism.
  149.  
  150. =item B<-s> I<sub1,sub2>
  151.  
  152. Create a perl subroutine for the specified macros rather than autoload with the constant() subroutine.
  153. These macros are assumed to have a return type of B<char *>, e.g., S<-s sec_rgy_wildcard_name,sec_rgy_wildcard_sid>.
  154.  
  155. =item B<-v> I<version>
  156.  
  157. Specify a version number for this extension.  This version number is added
  158. to the templates.  The default is 0.01.
  159.  
  160. =item B<-x>
  161.  
  162. Automatically generate XSUBs basing on function declarations in the
  163. header file.  The package C<C::Scan> should be installed. If this
  164. option is specified, the name of the header file may look like
  165. C<NAME1,NAME2>. In this case NAME1 is used instead of the specified string,
  166. but XSUBs are emitted only for the declarations included from file NAME2.
  167.  
  168. Note that some types of arguments/return-values for functions may
  169. result in XSUB-declarations/typemap-entries which need
  170. hand-editing. Such may be objects which cannot be converted from/to a
  171. pointer (like C<long long>), pointers to functions, or arrays.  See
  172. also the section on L<LIMITATIONS of B<-x>>.
  173.  
  174. =back
  175.  
  176. =head1 EXAMPLES
  177.  
  178.  
  179.     # Default behavior, extension is Rusers
  180.     h2xs rpcsvc/rusers
  181.  
  182.     # Same, but extension is RUSERS
  183.     h2xs -n RUSERS rpcsvc/rusers
  184.  
  185.     # Extension is rpcsvc::rusers. Still finds <rpcsvc/rusers.h>
  186.     h2xs rpcsvc::rusers
  187.  
  188.     # Extension is ONC::RPC.  Still finds <rpcsvc/rusers.h>
  189.     h2xs -n ONC::RPC rpcsvc/rusers
  190.  
  191.     # Without constant() or AUTOLOAD
  192.     h2xs -c rpcsvc/rusers
  193.  
  194.     # Creates templates for an extension named RPC
  195.     h2xs -cfn RPC
  196.  
  197.     # Extension is ONC::RPC.
  198.     h2xs -cfn ONC::RPC
  199.  
  200.     # Makefile.PL will look for library -lrpc in 
  201.     # additional directory /opt/net/lib
  202.     h2xs rpcsvc/rusers -L/opt/net/lib -lrpc
  203.  
  204.         # Extension is DCE::rgynbase
  205.         # prefix "sec_rgy_" is dropped from perl function names
  206.         h2xs -n DCE::rgynbase -p sec_rgy_ dce/rgynbase
  207.  
  208.         # Extension is DCE::rgynbase
  209.         # prefix "sec_rgy_" is dropped from perl function names
  210.         # subroutines are created for sec_rgy_wildcard_name and sec_rgy_wildcard_sid
  211.         h2xs -n DCE::rgynbase -p sec_rgy_ \
  212.         -s sec_rgy_wildcard_name,sec_rgy_wildcard_sid dce/rgynbase
  213.  
  214.     # Make XS without defines in perl.h, but with function declarations
  215.     # visible from perl.h. Name of the extension is perl1.
  216.     # When scanning perl.h, define -DEXT=extern -DdEXT= -DINIT(x)=
  217.     # Extra backslashes below because the string is passed to shell.
  218.     # Note that a directory with perl header files would 
  219.     #  be added automatically to include path.
  220.     h2xs -xAn perl1 -F "-DEXT=extern -DdEXT= -DINIT\(x\)=" perl.h
  221.  
  222.     # Same with function declaration in proto.h as visible from perl.h.
  223.     h2xs -xAn perl2 perl.h,proto.h
  224.  
  225.     # Same but select only functions which match /^av_/
  226.     h2xs -M '^av_' -xAn perl2 perl.h,proto.h
  227.  
  228.     # Same but treat SV* etc as "opaque" types
  229.     h2xs -o '^[S]V \*$' -M '^av_' -xAn perl2 perl.h,proto.h
  230.  
  231. =head1 ENVIRONMENT
  232.  
  233. No environment variables are used.
  234.  
  235. =head1 AUTHOR
  236.  
  237. Larry Wall and others
  238.  
  239. =head1 SEE ALSO
  240.  
  241. L<perl>, L<perlxstut>, L<ExtUtils::MakeMaker>, and L<AutoLoader>.
  242.  
  243. =head1 DIAGNOSTICS
  244.  
  245. The usual warnings if it cannot read or write the files involved.
  246.  
  247. =head1 LIMITATIONS of B<-x>
  248.  
  249. F<h2xs> would not distinguish whether an argument to a C function
  250. which is of the form, say, C<int *>, is an input, output, or
  251. input/output parameter.  In particular, argument declarations of the
  252. form
  253.  
  254.     int
  255.     foo(n)
  256.     int *n
  257.  
  258. should be better rewritten as
  259.  
  260.     int
  261.     foo(n)
  262.     int &n
  263.  
  264. if C<n> is an input parameter.
  265.  
  266. Additionally, F<h2xs> has no facilities to intuit that a function
  267.  
  268.    int
  269.    foo(addr,l)
  270.     char *addr
  271.     int   l
  272.  
  273. takes a pair of address and length of data at this address, so it is better
  274. to rewrite this function as
  275.  
  276.     int
  277.     foo(sv)
  278.         SV *addr
  279.     PREINIT:
  280.         STRLEN len;
  281.         char *s;
  282.     CODE:
  283.         s = SvPV(sv,len);
  284.         RETVAL = foo(s, len);
  285.     OUTPUT:
  286.         RETVAL
  287.  
  288. or alternately
  289.  
  290.     static int
  291.     my_foo(SV *sv)
  292.     {
  293.     STRLEN len;
  294.     char *s = SvPV(sv,len);
  295.  
  296.     return foo(s, len);
  297.     }
  298.  
  299.     MODULE = foo    PACKAGE = foo    PREFIX = my_
  300.  
  301.     int
  302.     foo(sv)
  303.     SV *sv
  304.  
  305. See L<perlxs> and L<perlxstut> for additional details.
  306.  
  307. =cut
  308.  
  309. use strict;
  310.  
  311.  
  312. my( $H2XS_VERSION ) = ' $Revision: 1.20 $ ' =~ /\$Revision:\s+([^\s]+)/;
  313. my $TEMPLATE_VERSION = '0.01';
  314. my @ARGS = @ARGV;
  315.  
  316. use Getopt::Std;
  317.  
  318. sub usage{
  319.     warn "@_\n" if @_;
  320.     die "h2xs [-ACOPXcdfh] [-v version] [-n module_name] [-p prefix] [-s subs] [headerfile [extra_libraries]]
  321. version: $H2XS_VERSION
  322.     -A   Omit all autoloading facilities (implies -c).
  323.     -C   Omit creating the Changes file, add HISTORY heading to stub POD.
  324.     -F   Additional flags for C preprocessor (used with -x).
  325.     -M   Mask to select C functions/macros (default is select all).
  326.     -O   Allow overwriting of a pre-existing extension directory.
  327.     -P   Omit the stub POD section.
  328.     -X   Omit the XS portion (implies both -c and -f).
  329.     -a   Generate get/set accessors for struct and union members (used with -x).
  330.     -c   Omit the constant() function and specialised AUTOLOAD from the XS file.
  331.     -d   Turn on debugging messages.
  332.     -f   Force creation of the extension even if the C header does not exist.
  333.     -h   Display this help message
  334.     -k   Omit 'const' attribute on function arguments (used with -x).
  335.     -m   Generate tied variables for access to declared variables.
  336.     -n   Specify a name to use for the extension (recommended).
  337.     -o   Regular expression for \"opaque\" types.
  338.     -p   Specify a prefix which should be removed from the Perl function names.
  339.     -s   Create subroutines for specified macros.
  340.     -v   Specify a version number for this extension.
  341.     -x   Autogenerate XSUBs using C::Scan.
  342. extra_libraries
  343.          are any libraries that might be needed for loading the
  344.          extension, e.g. -lm would try to link in the math library.
  345. ";
  346. }
  347.  
  348.  
  349. getopts("ACF:M:OPXacdfhkmn:o:p:s:v:x") || usage;
  350. use vars qw($opt_A $opt_C $opt_F $opt_M $opt_O $opt_P $opt_X $opt_a $opt_c $opt_d
  351.         $opt_f $opt_h $opt_k $opt_m $opt_n $opt_o $opt_p $opt_s $opt_v $opt_x);
  352.  
  353. usage if $opt_h;
  354.  
  355. if( $opt_v ){
  356.     $TEMPLATE_VERSION = $opt_v;
  357. }
  358.  
  359. # -A implies -c.
  360. $opt_c = 1 if $opt_A;
  361.  
  362. # -X implies -c and -f
  363. $opt_c = $opt_f = 1 if $opt_X;
  364.  
  365. my %const_xsub = map { $_,1 } split(/,+/, $opt_s) if $opt_s;
  366. my $extralibs;
  367. my @path_h;
  368.  
  369. while (my $arg = shift) {
  370.     if ($arg =~ /^-l/i) {
  371.         $extralibs = "$arg @ARGV";
  372.         last;
  373.     }
  374.     push(@path_h, $arg);
  375. }
  376.  
  377. usage "Must supply header file or module name\n"
  378.         unless (@path_h or $opt_n);
  379.  
  380. my $fmask;
  381. my $tmask;
  382.  
  383. $fmask = qr{$opt_M} if defined $opt_M;
  384. $tmask = qr{$opt_o} if defined $opt_o;
  385. my $tmask_all = $tmask && $opt_o eq '.';
  386.  
  387. if ($opt_x) {
  388.   eval {require C::Scan; 1}
  389.     or die <<EOD;
  390. C::Scan required if you use -x option.
  391. To install C::Scan, execute
  392.    perl -MCPAN -e "install C::Scan"
  393. EOD
  394.   unless ($tmask_all) {
  395.     $C::Scan::VERSION >= 0.70
  396.       or die <<EOD;
  397. C::Scan v. 0.70 or later required unless you use -o . option.
  398. You have version $C::Scan::VERSION installed as $INC{'C/Scan.pm'}.
  399. To install C::Scan, execute
  400.    perl -MCPAN -e "install C::Scan"
  401. EOD
  402.   }
  403.   if (($opt_m || $opt_a) && $C::Scan::VERSION < 0.73) {
  404.     die <<EOD;
  405. C::Scan v. 0.73 or later required to use -m or -a options.
  406. You have version $C::Scan::VERSION installed as $INC{'C/Scan.pm'}.
  407. To install C::Scan, execute
  408.    perl -MCPAN -e "install C::Scan"
  409. EOD
  410.   }
  411. }
  412. elsif ($opt_o or $opt_F) {
  413.   warn <<EOD;
  414. Options -o and -F do not make sense without -x.
  415. EOD
  416. }
  417.  
  418. my @path_h_ini = @path_h;
  419. my ($name, %fullpath, %prefix, %seen_define, %prefixless, %const_names);
  420.  
  421. if( @path_h ){
  422.     use Config;
  423.     use File::Spec;
  424.     my @paths;
  425.     if ($^O eq 'VMS') {  # Consider overrides of default location
  426.       # XXXX This is not equivalent to what the older version did:
  427.       #        it was looking at $hadsys header-file per header-file...
  428.       my($hadsys) = grep s!^sys/!!i , @path_h;
  429.       @paths = qw( Sys$Library VAXC$Include );
  430.       push @paths, ($hadsys ? 'GNU_CC_Include[vms]' : 'GNU_CC_Include[000000]');
  431.       push @paths, qw( DECC$Library_Include DECC$System_Include );
  432.     }
  433.     else {
  434.       @paths = (File::Spec->curdir(), $Config{usrinc},
  435.         (split ' ', $Config{locincpth}), '/usr/include');
  436.     }
  437.     foreach my $path_h (@path_h) {
  438.         $name ||= $path_h;
  439.     if( $path_h =~ s#::#/#g && $opt_n ){
  440.     warn "Nesting of headerfile ignored with -n\n";
  441.     }
  442.     $path_h .= ".h" unless $path_h =~ /\.h$/;
  443.     my $fullpath = $path_h;
  444.     $path_h =~ s/,.*$// if $opt_x;
  445.     $fullpath{$path_h} = $fullpath;
  446.  
  447.     if (not -f $path_h) {
  448.       my $tmp_path_h = $path_h;
  449.       for my $dir (@paths) {
  450.     last if -f ($path_h = File::Spec->catfile($dir, $tmp_path_h));
  451.       }
  452.     }
  453.  
  454.     if (!$opt_c) {
  455.       die "Can't find $path_h\n" if ( ! $opt_f && ! -f $path_h );
  456.       # Scan the header file (we should deal with nested header files)
  457.       # Record the names of simple #define constants into const_names
  458.             # Function prototypes are processed below.
  459.       open(CH, "<$path_h") || die "Can't open $path_h: $!\n";
  460.     defines:
  461.       while (<CH>) {
  462.     if (/^[ \t]*#[ \t]*define\s+([\$\w]+)\b(?!\()\s*(?=[^" \t])(.*)/) {
  463.         my $def = $1;
  464.         my $rest = $2;
  465.         $rest =~ s!/\*.*?(\*/|\n)|//.*!!g; # Remove comments
  466.         $rest =~ s/^\s+//;
  467.         $rest =~ s/\s+$//;
  468.         # Cannot do: (-1) and ((LHANDLE)3) are OK:
  469.         #print("Skip non-wordy $def => $rest\n"),
  470.         #  next defines if $rest =~ /[^\w\$]/;
  471.         if ($rest =~ /"/) {
  472.           print("Skip stringy $def => $rest\n") if $opt_d;
  473.           next defines;
  474.         }
  475.         print "Matched $_ ($def)\n" if $opt_d;
  476.         $seen_define{$def} = $rest;
  477.         $_ = $def;
  478.         next if /^_.*_h_*$/i; # special case, but for what?
  479.         if (defined $opt_p) {
  480.           if (!/^$opt_p(\d)/) {
  481.         ++$prefix{$_} if s/^$opt_p//;
  482.           }
  483.           else {
  484.         warn "can't remove $opt_p prefix from '$_'!\n";
  485.           }
  486.         }
  487.         $prefixless{$def} = $_;
  488.         if (!$fmask or /$fmask/) {
  489.         print "... Passes mask of -M.\n" if $opt_d and $fmask;
  490.         $const_names{$_}++;
  491.         }
  492.       }
  493.       }
  494.       close(CH);
  495.     }
  496.     }
  497. }
  498.  
  499.  
  500. my $module = $opt_n || do {
  501.     $name =~ s/\.h$//;
  502.     if( $name !~ /::/ ){
  503.         $name =~ s#^.*/##;
  504.         $name = "\u$name";
  505.     }
  506.     $name;
  507. };
  508.  
  509. my ($ext, $nested, @modparts, $modfname, $modpname);
  510. (chdir 'ext', $ext = 'ext/') if -d 'ext';
  511.  
  512. if( $module =~ /::/ ){
  513.     $nested = 1;
  514.     @modparts = split(/::/,$module);
  515.     $modfname = $modparts[-1];
  516.     $modpname = join('/',@modparts);
  517. }
  518. else {
  519.     $nested = 0;
  520.     @modparts = ();
  521.     $modfname = $modpname = $module;
  522. }
  523.  
  524.  
  525. if ($opt_O) {
  526.     warn "Overwriting existing $ext$modpname!!!\n" if -e $modpname;
  527. }
  528. else {
  529.     die "Won't overwrite existing $ext$modpname\n" if -e $modpname;
  530. }
  531. if( $nested ){
  532.     my $modpath = "";
  533.     foreach (@modparts){
  534.         mkdir("$modpath$_", 0777);
  535.         $modpath .= "$_/";
  536.     }
  537. }
  538. mkdir($modpname, 0777);
  539. chdir($modpname) || die "Can't chdir $ext$modpname: $!\n";
  540.  
  541. my %types_seen;
  542. my %std_types;
  543. my $fdecls = [];
  544. my $fdecls_parsed = [];
  545. my $typedef_rex;
  546. my %typedefs_pre;
  547. my %known_fnames;
  548. my %structs;
  549.  
  550. my @fnames;
  551. my @fnames_no_prefix;
  552. my %vdecl_hash;
  553. my @vdecls;
  554.  
  555. if( ! $opt_X ){  # use XS, unless it was disabled
  556.   open(XS, ">$modfname.xs") || die "Can't create $ext$modpname/$modfname.xs: $!\n";
  557.   if ($opt_x) {
  558.     require Config;        # Run-time directive
  559.     warn "Scanning typemaps...\n";
  560.     get_typemap();
  561.     my @td;
  562.     my @good_td;
  563.     my $addflags = $opt_F || '';
  564.  
  565.     foreach my $filename (@path_h) {
  566.       my $c;
  567.       my $filter;
  568.  
  569.       if ($fullpath{$filename} =~ /,/) {
  570.     $filename = $`;
  571.     $filter = $';
  572.       }
  573.       warn "Scanning $filename for functions...\n";
  574.       $c = new C::Scan 'filename' => $filename, 'filename_filter' => $filter,
  575.     'add_cppflags' => $addflags, 'c_styles' => [qw(C++ C9X)];
  576.       $c->set('includeDirs' => ["$Config::Config{archlib}/CORE"]);
  577.  
  578.       push @$fdecls_parsed, @{ $c->get('parsed_fdecls') };
  579.       push(@$fdecls, @{$c->get('fdecls')});
  580.  
  581.       push @td, @{$c->get('typedefs_maybe')};
  582.       if ($opt_a) {
  583.     my $structs = $c->get('typedef_structs');
  584.     @structs{keys %$structs} = values %$structs;
  585.       }
  586.  
  587.       if ($opt_m) {
  588.     %vdecl_hash = %{ $c->get('vdecl_hash') };
  589.     @vdecls = sort keys %vdecl_hash;
  590.     for (local $_ = 0; $_ < @vdecls; ++$_) {
  591.       my $var = $vdecls[$_];
  592.       my($type, $post) = @{ $vdecl_hash{$var} };
  593.       if (defined $post) {
  594.         warn "Can't handle variable '$type $var $post', skipping.\n";
  595.         splice @vdecls, $_, 1;
  596.         redo;
  597.       }
  598.       $type = normalize_type($type);
  599.       $vdecl_hash{$var} = $type;
  600.     }
  601.       }
  602.  
  603.       unless ($tmask_all) {
  604.     warn "Scanning $filename for typedefs...\n";
  605.     my $td = $c->get('typedef_hash');
  606.     # eval {require 'dumpvar.pl'; ::dumpValue($td)} or warn $@ if $opt_d;
  607.     my @f_good_td = grep $td->{$_}[1] eq '', keys %$td;
  608.     push @good_td, @f_good_td;
  609.     @typedefs_pre{@f_good_td}  = map $_->[0], @$td{@f_good_td};
  610.       }
  611.     }
  612.     { local $" = '|';
  613.       $typedef_rex = qr(\b(?<!struct )(?:@good_td)\b) if @good_td;
  614.     }
  615.     %known_fnames = map @$_[1,3], @$fdecls_parsed; # [1,3] is NAME, FULLTEXT
  616.     if ($fmask) {
  617.       my @good;
  618.       for my $i (0..$#$fdecls_parsed) {
  619.     next unless $fdecls_parsed->[$i][1] =~ /$fmask/; # [1] is NAME
  620.     push @good, $i;
  621.     print "... Function $fdecls_parsed->[$i][1] passes -M mask.\n"
  622.       if $opt_d;
  623.       }
  624.       $fdecls = [@$fdecls[@good]];
  625.       $fdecls_parsed = [@$fdecls_parsed[@good]];
  626.     }
  627.     @fnames = sort map $_->[1], @$fdecls_parsed; # 1 is NAME
  628.     # Sort declarations:
  629.     {
  630.       my %h = map( ($_->[1], $_), @$fdecls_parsed);
  631.       $fdecls_parsed = [ @h{@fnames} ];
  632.     }
  633.     @fnames_no_prefix = @fnames;
  634.     @fnames_no_prefix
  635.       = sort map { ++$prefix{$_} if s/^$opt_p(?!\d)//; $_ } @fnames_no_prefix;
  636.     # Remove macros which expand to typedefs
  637.     print "Typedefs are @td.\n" if $opt_d;
  638.     my %td = map {($_, $_)} @td;
  639.     # Add some other possible but meaningless values for macros
  640.     for my $k (qw(char double float int long short unsigned signed void)) {
  641.       $td{"$_$k"} = "$_$k" for ('', 'signed ', 'unsigned ');
  642.     }
  643.     # eval {require 'dumpvar.pl'; ::dumpValue( [\@td, \%td] ); 1} or warn $@;
  644.     my $n = 0;
  645.     my %bad_macs;
  646.     while (keys %td > $n) {
  647.       $n = keys %td;
  648.       my ($k, $v);
  649.       while (($k, $v) = each %seen_define) {
  650.     # print("found '$k'=>'$v'\n"), 
  651.     $bad_macs{$k} = $td{$k} = $td{$v} if exists $td{$v};
  652.       }
  653.     }
  654.     # Now %bad_macs contains names of bad macros
  655.     for my $k (keys %bad_macs) {
  656.       delete $const_names{$prefixless{$k}};
  657.       print "Ignoring macro $k which expands to a typedef name '$bad_macs{$k}'\n" if $opt_d;
  658.     }
  659.   }
  660. }
  661. my @const_names = sort keys %const_names;
  662.  
  663. open(PM, ">$modfname.pm") || die "Can't create $ext$modpname/$modfname.pm: $!\n";
  664.  
  665. $" = "\n\t";
  666. warn "Writing $ext$modpname/$modfname.pm\n";
  667.  
  668. print PM <<"END";
  669. package $module;
  670.  
  671. require 5.005_62;
  672. use strict;
  673. use warnings;
  674. END
  675.  
  676. unless( $opt_X || $opt_c || $opt_A ){
  677.     # we'll have an AUTOLOAD(), and it will have $AUTOLOAD and
  678.     # will want Carp.
  679.     print PM <<'END';
  680. use Carp;
  681. END
  682. }
  683.  
  684. print PM <<'END';
  685.  
  686. require Exporter;
  687. END
  688.  
  689. print PM <<"END" if ! $opt_X;  # use DynaLoader, unless XS was disabled
  690. require DynaLoader;
  691. END
  692.  
  693.  
  694. # Are we using AutoLoader or not?
  695. unless ($opt_A) { # no autoloader whatsoever.
  696.     unless ($opt_c) { # we're doing the AUTOLOAD
  697.         print PM "use AutoLoader;\n";
  698.     }
  699.     else {
  700.         print PM "use AutoLoader qw(AUTOLOAD);\n"
  701.     }
  702. }
  703.  
  704. # Determine @ISA.
  705. my $myISA = 'our @ISA = qw(Exporter';    # We seem to always want this.
  706. $myISA .= ' DynaLoader'     unless $opt_X;  # no XS
  707. $myISA .= ');';
  708. print PM "\n$myISA\n\n";
  709.  
  710. my @exported_names = (@const_names, @fnames_no_prefix, map '$'.$_, @vdecls);
  711.  
  712. print PM<<"END";
  713. # Items to export into callers namespace by default. Note: do not export
  714. # names by default without a very good reason. Use EXPORT_OK instead.
  715. # Do not simply export all your public functions/methods/constants.
  716.  
  717. # This allows declaration    use $module ':all';
  718. # If you do not need this, moving things directly into \@EXPORT or \@EXPORT_OK
  719. # will save memory.
  720. our %EXPORT_TAGS = ( 'all' => [ qw(
  721.     @exported_names
  722. ) ] );
  723.  
  724. our \@EXPORT_OK = ( \@{ \$EXPORT_TAGS{'all'} } );
  725.  
  726. our \@EXPORT = qw(
  727.     @const_names
  728. );
  729. our \$VERSION = '$TEMPLATE_VERSION';
  730.  
  731. END
  732.  
  733. if (@vdecls) {
  734.     printf PM "our(@{[ join ', ', map '$'.$_, @vdecls ]});\n\n";
  735. }
  736.  
  737. print PM <<"END" unless $opt_c or $opt_X;
  738. sub AUTOLOAD {
  739.     # This AUTOLOAD is used to 'autoload' constants from the constant()
  740.     # XS function.  If a constant is not found then control is passed
  741.     # to the AUTOLOAD in AutoLoader.
  742.  
  743.     my \$constname;
  744.     our \$AUTOLOAD;
  745.     (\$constname = \$AUTOLOAD) =~ s/.*:://;
  746.     croak "&$module::constant not defined" if \$constname eq 'constant';
  747.     my \$val = constant(\$constname, \@_ ? \$_[0] : 0);
  748.     if (\$! != 0) {
  749.     if (\$! =~ /Invalid/ || \$!{EINVAL}) {
  750.         \$AutoLoader::AUTOLOAD = \$AUTOLOAD;
  751.         goto &AutoLoader::AUTOLOAD;
  752.     }
  753.     else {
  754.         croak "Your vendor has not defined $module macro \$constname";
  755.     }
  756.     }
  757.     {
  758.     no strict 'refs';
  759.     # Fixed between 5.005_53 and 5.005_61
  760.     if (\$] >= 5.00561) {
  761.         *\$AUTOLOAD = sub () { \$val };
  762.     }
  763.     else {
  764.         *\$AUTOLOAD = sub { \$val };
  765.     }
  766.     }
  767.     goto &\$AUTOLOAD;
  768. }
  769.  
  770. END
  771.  
  772. if( ! $opt_X ){ # print bootstrap, unless XS is disabled
  773.     print PM <<"END";
  774. bootstrap $module \$VERSION;
  775. END
  776. }
  777.  
  778. # tying the variables can happen only after bootstrap
  779. if (@vdecls) {
  780.     printf PM <<END;
  781. {
  782. @{[ join "\n", map "    _tievar_$_(\$$_);", @vdecls ]}
  783. }
  784.  
  785. END
  786. }
  787.  
  788. my $after;
  789. if( $opt_P ){ # if POD is disabled
  790.     $after = '__END__';
  791. }
  792. else {
  793.     $after = '=cut';
  794. }
  795.  
  796. print PM <<"END";
  797.  
  798. # Preloaded methods go here.
  799. END
  800.  
  801. print PM <<"END" unless $opt_A;
  802.  
  803. # Autoload methods go after $after, and are processed by the autosplit program.
  804. END
  805.  
  806. print PM <<"END";
  807.  
  808. 1;
  809. __END__
  810. END
  811.  
  812. my $author = "A. U. Thor";
  813. my $email = 'a.u.thor@a.galaxy.far.far.away';
  814.  
  815. my $revhist = '';
  816. $revhist = <<EOT if $opt_C;
  817.  
  818. =head1 HISTORY
  819.  
  820. =over 8
  821.  
  822. =item $TEMPLATE_VERSION
  823.  
  824. Original version; created by h2xs $H2XS_VERSION with options
  825.  
  826.   @ARGS
  827.  
  828. =back
  829.  
  830. EOT
  831.  
  832. my $exp_doc = <<EOD;
  833.  
  834. =head2 EXPORT
  835.  
  836. None by default.
  837.  
  838. EOD
  839. if (@const_names and not $opt_P) {
  840.   $exp_doc .= <<EOD;
  841. =head2 Exportable constants
  842.  
  843.   @{[join "\n  ", @const_names]}
  844.  
  845. EOD
  846. }
  847. if (defined $fdecls and @$fdecls and not $opt_P) {
  848.   $exp_doc .= <<EOD;
  849. =head2 Exportable functions
  850.  
  851. EOD
  852.   $exp_doc .= <<EOD if $opt_p;
  853. When accessing these functions from Perl, prefix C<$opt_p> should be removed.
  854.  
  855. EOD
  856.   $exp_doc .= <<EOD;
  857.   @{[join "\n  ", @known_fnames{@fnames}]}
  858.  
  859. EOD
  860. }
  861.  
  862. my $pod = <<"END" unless $opt_P;
  863. ## Below is stub documentation for your module. You better edit it!
  864. #
  865. #=head1 NAME
  866. #
  867. #$module - Perl extension for blah blah blah
  868. #
  869. #=head1 SYNOPSIS
  870. #
  871. #  use $module;
  872. #  blah blah blah
  873. #
  874. #=head1 DESCRIPTION
  875. #
  876. #Stub documentation for $module, created by h2xs. It looks like the
  877. #author of the extension was negligent enough to leave the stub
  878. #unedited.
  879. #
  880. #Blah blah blah.
  881. #$exp_doc$revhist
  882. #=head1 AUTHOR
  883. #
  884. #$author, $email
  885. #
  886. #=head1 SEE ALSO
  887. #
  888. #perl(1).
  889. #
  890. #=cut
  891. END
  892.  
  893. $pod =~ s/^\#//gm unless $opt_P;
  894. print PM $pod unless $opt_P;
  895.  
  896. close PM;
  897.  
  898.  
  899. if( ! $opt_X ){ # print XS, unless it is disabled
  900. warn "Writing $ext$modpname/$modfname.xs\n";
  901.  
  902. print XS <<"END";
  903. #include "EXTERN.h"
  904. #include "perl.h"
  905. #include "XSUB.h"
  906.  
  907. END
  908. if( @path_h ){
  909.     foreach my $path_h (@path_h_ini) {
  910.     my($h) = $path_h;
  911.     $h =~ s#^/usr/include/##;
  912.     if ($^O eq 'VMS') { $h =~ s#.*vms\]#sys/# or $h =~ s#.*[:>\]]##; }
  913.         print XS qq{#include <$h>\n};
  914.     }
  915.     print XS "\n";
  916. }
  917.  
  918. my %pointer_typedefs;
  919. my %struct_typedefs;
  920.  
  921. sub td_is_pointer {
  922.   my $type = shift;
  923.   my $out = $pointer_typedefs{$type};
  924.   return $out if defined $out;
  925.   my $otype = $type;
  926.   $out = ($type =~ /\*$/);
  927.   # This converts only the guys which do not have trailing part in the typedef
  928.   if (not $out
  929.       and $typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  930.     $type = normalize_type($type);
  931.     print "Is-Pointer: Type mutation via typedefs: $otype ==> $type\n"
  932.       if $opt_d;
  933.     $out = td_is_pointer($type);
  934.   }
  935.   return ($pointer_typedefs{$otype} = $out);
  936. }
  937.  
  938. sub td_is_struct {
  939.   my $type = shift;
  940.   my $out = $struct_typedefs{$type};
  941.   return $out if defined $out;
  942.   my $otype = $type;
  943.   $out = ($type =~ /^(struct|union)\b/) && !td_is_pointer($type);
  944.   # This converts only the guys which do not have trailing part in the typedef
  945.   if (not $out
  946.       and $typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  947.     $type = normalize_type($type);
  948.     print "Is-Struct: Type mutation via typedefs: $otype ==> $type\n"
  949.       if $opt_d;
  950.     $out = td_is_struct($type);
  951.   }
  952.   return ($struct_typedefs{$otype} = $out);
  953. }
  954.  
  955. # Some macros will bomb if you try to return them from a double-returning func.
  956. # Say, ((char *)0), or strlen (if somebody #define STRLEN strlen).
  957. # Fortunately, we can detect both these cases...
  958. sub protect_convert_to_double {
  959.   my $in = shift;
  960.   my $val;
  961.   return '' unless defined ($val = $seen_define{$in});
  962.   return '(IV)' if $known_fnames{$val};
  963.   # OUT_t of ((OUT_t)-1):
  964.   return '' unless $val =~ /^\s*(\(\s*)?\(\s*([^()]*?)\s*\)/;
  965.   td_is_pointer($2) ? '(IV)' : '';
  966. }
  967.  
  968. # For each of the generated functions, length($pref) leading
  969. # letters are already checked.  Moreover, it is recommended that
  970. # the generated functions uses switch on letter at offset at least
  971. # $off + length($pref).
  972. #
  973. # The given list has length($pref) chars removed at front, it is
  974. # guarantied that $off leading chars in the rest are the same for all
  975. # elts of the list.
  976. #
  977. # Returns: how at which offset it was decided to make a switch, or -1 if none.
  978.  
  979. sub write_const;
  980.  
  981. sub write_const {
  982.   my ($fh, $pref, $off, $list) = (shift,shift,shift,shift);
  983.   my %leading;
  984.   my $offarg = length $pref;
  985.  
  986.   if (@$list == 0) {        # Can happen on the initial iteration only
  987.     print $fh <<"END";
  988. static double
  989. constant(char *name, int len, int arg)
  990. {
  991.     errno = EINVAL;
  992.     return 0;
  993. }
  994. END
  995.     return -1;
  996.   }
  997.  
  998.   if (@$list == 1) {        # Can happen on the initial iteration only
  999.     my $protect = protect_convert_to_double("$pref$list->[0]");
  1000.  
  1001.     print $fh <<"END";
  1002. static double
  1003. constant(char *name, int len, int arg)
  1004. {
  1005.     errno = 0;
  1006.     if (strEQ(name + $offarg, "$list->[0]")) {    /* $pref removed */
  1007. #ifdef $pref$list->[0]
  1008.     return $protect$pref$list->[0];
  1009. #else
  1010.     errno = ENOENT;
  1011.     return 0;
  1012. #endif
  1013.     }
  1014.     errno = EINVAL;
  1015.     return 0;
  1016. }
  1017. END
  1018.     return -1;
  1019.   }
  1020.  
  1021.   for my $n (@$list) {
  1022.     my $c = substr $n, $off, 1;
  1023.     $leading{$c} = [] unless exists $leading{$c};
  1024.     push @{$leading{$c}}, substr $n, $off + 1;
  1025.   }
  1026.  
  1027.   if (keys(%leading) == 1) {
  1028.     return 1 + write_const $fh, $pref, $off + 1, $list;
  1029.   }
  1030.  
  1031.   my $leader = substr $list->[0], 0, $off;
  1032.   foreach my $letter (keys %leading) {
  1033.     write_const $fh, "$pref$leader$letter", 0, $leading{$letter}
  1034.       if @{$leading{$letter}} > 1;
  1035.   }
  1036.  
  1037.   my $npref = "_$pref";
  1038.   $npref = '' if $pref eq '';
  1039.  
  1040.   print $fh <<"END";
  1041. static double
  1042. constant$npref(char *name, int len, int arg)
  1043. {
  1044. END
  1045.  
  1046.   print $fh <<"END" if $npref eq '';
  1047.     errno = 0;
  1048. END
  1049.  
  1050.   print $fh <<"END" if $off;
  1051.     if ($offarg + $off >= len ) {
  1052.     errno = EINVAL;
  1053.     return 0;
  1054.     }
  1055. END
  1056.  
  1057.   print $fh <<"END";
  1058.     switch (name[$offarg + $off]) {
  1059. END
  1060.  
  1061.   foreach my $letter (sort keys %leading) {
  1062.     my $let = $letter;
  1063.     $let = '\0' if $letter eq '';
  1064.  
  1065.     print $fh <<EOP;
  1066.     case '$let':
  1067. EOP
  1068.     if (@{$leading{$letter}} > 1) {
  1069.       # It makes sense to call a function
  1070.       if ($off) {
  1071.     print $fh <<EOP;
  1072.     if (!strnEQ(name + $offarg,"$leader", $off))
  1073.         break;
  1074. EOP
  1075.       }
  1076.       print $fh <<EOP;
  1077.     return constant_$pref$leader$letter(name, len, arg);
  1078. EOP
  1079.     }
  1080.     else {
  1081.       # Do it ourselves
  1082.       my $protect
  1083.     = protect_convert_to_double("$pref$leader$letter$leading{$letter}[0]");
  1084.  
  1085.       print $fh <<EOP;
  1086.     if (strEQ(name + $offarg, "$leader$letter$leading{$letter}[0]")) {    /* $pref removed */
  1087. #ifdef $pref$leader$letter$leading{$letter}[0]
  1088.         return $protect$pref$leader$letter$leading{$letter}[0];
  1089. #else
  1090.         goto not_there;
  1091. #endif
  1092.     }
  1093. EOP
  1094.     }
  1095.   }
  1096.   print $fh <<"END";
  1097.     }
  1098.     errno = EINVAL;
  1099.     return 0;
  1100.  
  1101. not_there:
  1102.     errno = ENOENT;
  1103.     return 0;
  1104. }
  1105.  
  1106. END
  1107.  
  1108. }
  1109.  
  1110. if( ! $opt_c ) {
  1111.   print XS <<"END";
  1112. static int
  1113. not_here(char *s)
  1114. {
  1115.     croak("$module::%s not implemented on this architecture", s);
  1116.     return -1;
  1117. }
  1118.  
  1119. END
  1120.  
  1121.   write_const(\*XS, '', 0, \@const_names);
  1122. }
  1123.  
  1124. print_tievar_subs(\*XS, $_, $vdecl_hash{$_}) for @vdecls;
  1125.  
  1126. my $prefix;
  1127. $prefix = "PREFIX = $opt_p" if defined $opt_p;
  1128.  
  1129. # Now switch from C to XS by issuing the first MODULE declaration:
  1130. print XS <<"END";
  1131.  
  1132. MODULE = $module        PACKAGE = $module        $prefix
  1133.  
  1134. END
  1135.  
  1136. foreach (sort keys %const_xsub) {
  1137.     print XS <<"END";
  1138. char *
  1139. $_()
  1140.  
  1141.     CODE:
  1142. #ifdef $_
  1143.     RETVAL = $_;
  1144. #else
  1145.     croak("Your vendor has not defined the $module macro $_");
  1146. #endif
  1147.  
  1148.     OUTPUT:
  1149.     RETVAL
  1150.  
  1151. END
  1152. }
  1153.  
  1154. # If a constant() function was written then output a corresponding
  1155. # XS declaration:
  1156. print XS <<"END" unless $opt_c;
  1157.  
  1158. double
  1159. constant(sv,arg)
  1160.     PREINIT:
  1161.     STRLEN        len;
  1162.     INPUT:
  1163.     SV *        sv
  1164.     char *        s = SvPV(sv, len);
  1165.     int        arg
  1166.     CODE:
  1167.     RETVAL = constant(s,len,arg);
  1168.     OUTPUT:
  1169.     RETVAL
  1170.  
  1171. END
  1172.  
  1173. my %seen_decl;
  1174. my %typemap;
  1175.  
  1176. sub print_decl {
  1177.   my $fh = shift;
  1178.   my $decl = shift;
  1179.   my ($type, $name, $args) = @$decl;
  1180.   return if $seen_decl{$name}++; # Need to do the same for docs as well?
  1181.  
  1182.   my @argnames = map {$_->[1]} @$args;
  1183.   my @argtypes = map { normalize_type( $_->[0], 1 ) } @$args;
  1184.   if ($opt_k) {
  1185.     s/^\s*const\b\s*// for @argtypes;
  1186.   }
  1187.   my @argarrays = map { $_->[4] || '' } @$args;
  1188.   my $numargs = @$args;
  1189.   if ($numargs and $argtypes[-1] eq '...') {
  1190.     $numargs--;
  1191.     $argnames[-1] = '...';
  1192.   }
  1193.   local $" = ', ';
  1194.   $type = normalize_type($type, 1);
  1195.  
  1196.   print $fh <<"EOP";
  1197.  
  1198. $type
  1199. $name(@argnames)
  1200. EOP
  1201.  
  1202.   for my $arg (0 .. $numargs - 1) {
  1203.     print $fh <<"EOP";
  1204.     $argtypes[$arg]    $argnames[$arg]$argarrays[$arg]
  1205. EOP
  1206.   }
  1207. }
  1208.  
  1209. sub print_tievar_subs {
  1210.   my($fh, $name, $type) = @_;
  1211.   print $fh <<END;
  1212. I32
  1213. _get_$name(IV index, SV *sv) {
  1214.     dSP;
  1215.     PUSHMARK(SP);
  1216.     XPUSHs(sv);
  1217.     PUTBACK;
  1218.     (void)call_pv("$module\::_get_$name", G_DISCARD);
  1219.     return (I32)0;
  1220. }
  1221.  
  1222. I32
  1223. _set_$name(IV index, SV *sv) {
  1224.     dSP;
  1225.     PUSHMARK(SP);
  1226.     XPUSHs(sv);
  1227.     PUTBACK;
  1228.     (void)call_pv("$module\::_set_$name", G_DISCARD);
  1229.     return (I32)0;
  1230. }
  1231.  
  1232. END
  1233. }
  1234.  
  1235. sub print_tievar_xsubs {
  1236.   my($fh, $name, $type) = @_;
  1237.   print $fh <<END;
  1238. void
  1239. _tievar_$name(sv)
  1240.     SV* sv
  1241.     PREINIT:
  1242.     struct ufuncs uf;
  1243.     CODE:
  1244.     uf.uf_val = &_get_$name;
  1245.     uf.uf_set = &_set_$name;
  1246.     uf.uf_index = (IV)&_get_$name;
  1247.     sv_magic(sv, 0, 'U', (char*)&uf, sizeof(uf));
  1248.  
  1249. void
  1250. _get_$name(THIS)
  1251.     $type THIS = NO_INIT
  1252.     CODE:
  1253.     THIS = $name;
  1254.     OUTPUT:
  1255.     SETMAGIC: DISABLE
  1256.     THIS
  1257.  
  1258. void
  1259. _set_$name(THIS)
  1260.     $type THIS
  1261.     CODE:
  1262.     $name = THIS;
  1263.  
  1264. END
  1265. }
  1266.  
  1267. sub print_accessors {
  1268.   my($fh, $name, $struct) = @_;
  1269.   return unless defined $struct && $name !~ /\s|_ANON/;
  1270.   $name = normalize_type($name);
  1271.   my $ptrname = normalize_type("$name *");
  1272.   print $fh <<"EOF";
  1273.  
  1274. MODULE = $module        PACKAGE = ${name}        $prefix
  1275.  
  1276. $name *
  1277. _to_ptr(THIS)
  1278.     $name THIS = NO_INIT
  1279.     PROTOTYPE: \$
  1280.     CODE:
  1281.     if (sv_derived_from(ST(0), "$name")) {
  1282.         STRLEN len;
  1283.         char *s = SvPV((SV*)SvRV(ST(0)), len);
  1284.         if (len != sizeof(THIS))
  1285.         croak("Size \%d of packed data != expected \%d",
  1286.             len, sizeof(THIS));
  1287.         RETVAL = ($name *)s;
  1288.     }   
  1289.     else
  1290.         croak("THIS is not of type $name");
  1291.     OUTPUT:
  1292.     RETVAL
  1293.  
  1294. $name
  1295. new(CLASS)
  1296.     char *CLASS = NO_INIT
  1297.     PROTOTYPE: \$
  1298.     CODE:
  1299.     Zero((void*)&RETVAL, sizeof(RETVAL), char);
  1300.     OUTPUT:
  1301.     RETVAL
  1302.  
  1303. MODULE = $module        PACKAGE = ${name}Ptr        $prefix
  1304.  
  1305. EOF
  1306.   my @items = @$struct;
  1307.   while (@items) {
  1308.     my $item = shift @items;
  1309.     if ($item->[0] =~ /_ANON/) {
  1310.       if (defined $item->[2]) {
  1311.     push @items, map [
  1312.       @$_[0, 1], "$item->[2]_$_->[2]", "$item->[2].$_->[2]",
  1313.     ], @{ $structs{$item->[0]} };
  1314.       } else {
  1315.     push @items, @{ $structs{$item->[0]} };
  1316.       }
  1317.     } else {
  1318.       my $type = normalize_type($item->[0]);
  1319.       my $ttype = $structs{$type} ? normalize_type("$type *") : $type;
  1320.       print $fh <<"EOF";
  1321. $ttype
  1322. $item->[2](THIS, __value = NO_INIT)
  1323.     $ptrname THIS
  1324.     $type __value
  1325.     PROTOTYPE: \$;\$
  1326.     CODE:
  1327.     if (items > 1)
  1328.         THIS->$item->[-1] = __value;
  1329.     RETVAL = @{[
  1330.         $type eq $ttype ? "THIS->$item->[-1]" : "&(THIS->$item->[-1])"
  1331.     ]};
  1332.     OUTPUT:
  1333.     RETVAL
  1334.  
  1335. EOF
  1336.     }
  1337.   }
  1338. }
  1339.  
  1340. # Should be called before any actual call to normalize_type().
  1341. sub get_typemap {
  1342.   # We do not want to read ./typemap by obvios reasons.
  1343.   my @tm =  qw(../../../typemap ../../typemap ../typemap);
  1344.   my $stdtypemap =  "$Config::Config{privlib}/ExtUtils/typemap";
  1345.   unshift @tm, $stdtypemap;
  1346.   my $proto_re = "[" . quotemeta('\$%&*@;') . "]" ;
  1347.  
  1348.   # Start with useful default values
  1349.   $typemap{float} = 'T_DOUBLE';
  1350.  
  1351.   foreach my $typemap (@tm) {
  1352.     next unless -e $typemap ;
  1353.     # skip directories, binary files etc.
  1354.     warn " Scanning $typemap\n";
  1355.     warn("Warning: ignoring non-text typemap file '$typemap'\n"), next 
  1356.       unless -T $typemap ;
  1357.     open(TYPEMAP, $typemap) 
  1358.       or warn ("Warning: could not open typemap file '$typemap': $!\n"), next;
  1359.     my $mode = 'Typemap';
  1360.     while (<TYPEMAP>) {
  1361.       next if /^\s*\#/;
  1362.       if (/^INPUT\s*$/)   { $mode = 'Input'; next; }
  1363.       elsif (/^OUTPUT\s*$/)  { $mode = 'Output'; next; }
  1364.       elsif (/^TYPEMAP\s*$/) { $mode = 'Typemap'; next; }
  1365.       elsif ($mode eq 'Typemap') {
  1366.     next if /^\s*($|\#)/ ;
  1367.     my ($type, $image);
  1368.     if ( ($type, $image) =
  1369.          /^\s*(.*?\S)\s+(\S+)\s*($proto_re*)\s*$/o
  1370.          # This may reference undefined functions:
  1371.          and not ($image eq 'T_PACKED' and $typemap eq $stdtypemap)) {
  1372.       $typemap{normalize_type($type)} = $image;
  1373.     }
  1374.       }
  1375.     }
  1376.     close(TYPEMAP) or die "Cannot close $typemap: $!";
  1377.   }
  1378.   %std_types = %types_seen;
  1379.   %types_seen = ();
  1380. }
  1381.  
  1382.  
  1383. sub normalize_type {        # Second arg: do not strip const's before \*
  1384.   my $type = shift;
  1385.   my $do_keep_deep_const = shift;
  1386.   # If $do_keep_deep_const this is heuristical only
  1387.   my $keep_deep_const = ($do_keep_deep_const ? '\b(?![^(,)]*\*)' : '');
  1388.   my $ignore_mods 
  1389.     = "(?:\\b(?:(?:__const__|const)$keep_deep_const|static|inline|__inline__)\\b\\s*)*";
  1390.   if ($do_keep_deep_const) {    # Keep different compiled /RExen/o separately!
  1391.     $type =~ s/$ignore_mods//go;
  1392.   }
  1393.   else {
  1394.     $type =~ s/$ignore_mods//go;
  1395.   }
  1396.   $type =~ s/([^\s\w])/ \1 /g;
  1397.   $type =~ s/\s+$//;
  1398.   $type =~ s/^\s+//;
  1399.   $type =~ s/\s+/ /g;
  1400.   $type =~ s/\* (?=\*)/*/g;
  1401.   $type =~ s/\. \. \./.../g;
  1402.   $type =~ s/ ,/,/g;
  1403.   $types_seen{$type}++ 
  1404.     unless $type eq '...' or $type eq 'void' or $std_types{$type};
  1405.   $type;
  1406. }
  1407.  
  1408. my $need_opaque;
  1409.  
  1410. sub assign_typemap_entry {
  1411.   my $type = shift;
  1412.   my $otype = $type;
  1413.   my $entry;
  1414.   if ($tmask and $type =~ /$tmask/) {
  1415.     print "Type $type matches -o mask\n" if $opt_d;
  1416.     $entry = (td_is_struct($type) ? "T_OPAQUE_STRUCT" : "T_PTROBJ");
  1417.   }
  1418.   elsif ($typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1419.     $type = normalize_type $type;
  1420.     print "Type mutation via typedefs: $otype ==> $type\n" if $opt_d;
  1421.     $entry = assign_typemap_entry($type);
  1422.   }
  1423.   $entry ||= $typemap{$otype}
  1424.     || (td_is_struct($type) ? "T_OPAQUE_STRUCT" : "T_PTROBJ");
  1425.   $typemap{$otype} = $entry;
  1426.   $need_opaque = 1 if $entry eq "T_OPAQUE_STRUCT";
  1427.   return $entry;
  1428. }
  1429.  
  1430. for (@vdecls) {
  1431.   print_tievar_xsubs(\*XS, $_, $vdecl_hash{$_});
  1432. }
  1433.  
  1434. if ($opt_x) {
  1435.   for my $decl (@$fdecls_parsed) { print_decl(\*XS, $decl) }
  1436.   if ($opt_a) {
  1437.     while (my($name, $struct) = each %structs) {
  1438.       print_accessors(\*XS, $name, $struct);
  1439.     }
  1440.   }
  1441. }
  1442.  
  1443. close XS;
  1444.  
  1445. if (%types_seen) {
  1446.   my $type;
  1447.   warn "Writing $ext$modpname/typemap\n";
  1448.   open TM, ">typemap" or die "Cannot open typemap file for write: $!";
  1449.  
  1450.   for $type (sort keys %types_seen) {
  1451.     my $entry = assign_typemap_entry $type;
  1452.     print TM $type, "\t" x (5 - int((length $type)/8)), "\t$entry\n"
  1453.   }
  1454.  
  1455.   print TM <<'EOP' if $need_opaque; # Older Perls do not have correct entry
  1456. #############################################################################
  1457. INPUT
  1458. T_OPAQUE_STRUCT
  1459.     if (sv_derived_from($arg, \"${ntype}\")) {
  1460.         STRLEN len;
  1461.         char  *s = SvPV((SV*)SvRV($arg), len);
  1462.  
  1463.         if (len != sizeof($var))
  1464.         croak(\"Size %d of packed data != expected %d\",
  1465.             len, sizeof($var));
  1466.         $var = *($type *)s;
  1467.     }
  1468.     else
  1469.         croak(\"$var is not of type ${ntype}\")
  1470. #############################################################################
  1471. OUTPUT
  1472. T_OPAQUE_STRUCT
  1473.     sv_setref_pvn($arg, \"${ntype}\", (char *)&$var, sizeof($var));
  1474. EOP
  1475.  
  1476.   close TM or die "Cannot close typemap file for write: $!";
  1477. }
  1478.  
  1479. } # if( ! $opt_X )
  1480.  
  1481. warn "Writing $ext$modpname/Makefile.PL\n";
  1482. open(PL, ">Makefile.PL") || die "Can't create $ext$modpname/Makefile.PL: $!\n";
  1483.  
  1484. print PL <<END;
  1485. use ExtUtils::MakeMaker;
  1486. # See lib/ExtUtils/MakeMaker.pm for details of how to influence
  1487. # the contents of the Makefile that is written.
  1488. WriteMakefile(
  1489.     'NAME'        => '$module',
  1490.     'VERSION_FROM'    => '$modfname.pm', # finds \$VERSION
  1491.     'PREREQ_PM'        => {}, # e.g., Module::Name => 1.1
  1492. END
  1493. if (!$opt_X) { # print C stuff, unless XS is disabled
  1494.   $opt_F = '' unless defined $opt_F;
  1495.   print PL <<END;
  1496.     'LIBS'        => ['$extralibs'], # e.g., '-lm'
  1497.     'DEFINE'        => '$opt_F', # e.g., '-DHAVE_SOMETHING'
  1498.     'INC'        => '', # e.g., '-I/usr/include/other'
  1499. END
  1500. }
  1501. print PL ");\n";
  1502. close(PL) || die "Can't close $ext$modpname/Makefile.PL: $!\n";
  1503.  
  1504. warn "Writing $ext$modpname/test.pl\n";
  1505. open(EX, ">test.pl") || die "Can't create $ext$modpname/test.pl: $!\n";
  1506. print EX <<'_END_';
  1507. # Before `make install' is performed this script should be runnable with
  1508. # `make test'. After `make install' it should work as `perl test.pl'
  1509.  
  1510. ######################### We start with some black magic to print on failure.
  1511.  
  1512. # Change 1..1 below to 1..last_test_to_print .
  1513. # (It may become useful if the test is moved to ./t subdirectory.)
  1514.  
  1515. BEGIN { $| = 1; print "1..1\n"; }
  1516. END {print "not ok 1\n" unless $loaded;}
  1517. _END_
  1518. print EX <<_END_;
  1519. use $module;
  1520. _END_
  1521. print EX <<'_END_';
  1522. $loaded = 1;
  1523. print "ok 1\n";
  1524.  
  1525. ######################### End of black magic.
  1526.  
  1527. # Insert your test code below (better if it prints "ok 13"
  1528. # (correspondingly "not ok 13") depending on the success of chunk 13
  1529. # of the test code):
  1530.  
  1531. _END_
  1532. close(EX) || die "Can't close $ext$modpname/test.pl: $!\n";
  1533.  
  1534. unless ($opt_C) {
  1535.   warn "Writing $ext$modpname/Changes\n";
  1536.   $" = ' ';
  1537.   open(EX, ">Changes") || die "Can't create $ext$modpname/Changes: $!\n";
  1538.   @ARGS = map {/[\s\"\'\`\$*?^|&<>\[\]\{\}\(\)]/ ? "'$_'" : $_} @ARGS;
  1539.   print EX <<EOP;
  1540. Revision history for Perl extension $module.
  1541.  
  1542. $TEMPLATE_VERSION  @{[scalar localtime]}
  1543. \t- original version; created by h2xs $H2XS_VERSION with options
  1544. \t\t@ARGS
  1545.  
  1546. EOP
  1547.   close(EX) || die "Can't close $ext$modpname/Changes: $!\n";
  1548. }
  1549.  
  1550. warn "Writing $ext$modpname/MANIFEST\n";
  1551. open(MANI,'>MANIFEST') or die "Can't create MANIFEST: $!";
  1552. my @files = <*>;
  1553. if (!@files) {
  1554.   eval {opendir(D,'.');};
  1555.   unless ($@) { @files = readdir(D); closedir(D); }
  1556. }
  1557. if (!@files) { @files = map {chomp && $_} `ls`; }
  1558. if ($^O eq 'VMS') {
  1559.   foreach (@files) {
  1560.     # Clip trailing '.' for portability -- non-VMS OSs don't expect it
  1561.     s%\.$%%;
  1562.     # Fix up for case-sensitive file systems
  1563.     s/$modfname/$modfname/i && next;
  1564.     $_ = "\U$_" if $_ eq 'manifest' or $_ eq 'changes';
  1565.     $_ = 'Makefile.PL' if $_ eq 'makefile.pl';
  1566.   }
  1567. }
  1568. print MANI join("\n",@files), "\n";
  1569. close MANI;
  1570.  
  1571. __END__
  1572. :endofperl
  1573.