home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / h2xs < prev    next >
Text File  |  2003-11-07  |  60KB  |  2,165 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4.  
  5. use warnings;
  6.  
  7. =head1 NAME
  8.  
  9. h2xs - convert .h C header files to Perl extensions
  10.  
  11. =head1 SYNOPSIS
  12.  
  13. B<h2xs> [B<OPTIONS> ...] [headerfile ... [extra_libraries]]
  14.  
  15. B<h2xs> B<-h>|B<-?>|B<--help>
  16.  
  17. =head1 DESCRIPTION
  18.  
  19. I<h2xs> builds a Perl extension from C header files.  The extension
  20. will include functions which can be used to retrieve the value of any
  21. #define statement which was in the C header files.
  22.  
  23. The I<module_name> will be used for the name of the extension.  If
  24. module_name is not supplied then the name of the first header file
  25. will be used, with the first character capitalized.
  26.  
  27. If the extension might need extra libraries, they should be included
  28. here.  The extension Makefile.PL will take care of checking whether
  29. the libraries actually exist and how they should be loaded.  The extra
  30. libraries should be specified in the form -lm -lposix, etc, just as on
  31. the cc command line.  By default, the Makefile.PL will search through
  32. the library path determined by Configure.  That path can be augmented
  33. by including arguments of the form B<-L/another/library/path> in the
  34. extra-libraries argument.
  35.  
  36. =head1 OPTIONS
  37.  
  38. =over 5
  39.  
  40. =item B<-A>, B<--omit-autoload>
  41.  
  42. Omit all autoload facilities.  This is the same as B<-c> but also
  43. removes the S<C<use AutoLoader>> statement from the .pm file.
  44.  
  45. =item B<-B>, B<--beta-version>
  46.  
  47. Use an alpha/beta style version number.  Causes version number to
  48. be "0.00_01" unless B<-v> is specified.
  49.  
  50. =item B<-C>, B<--omit-changes>
  51.  
  52. Omits creation of the F<Changes> file, and adds a HISTORY section to
  53. the POD template.
  54.  
  55. =item B<-F>, B<--cpp-flags>=I<addflags>
  56.  
  57. Additional flags to specify to C preprocessor when scanning header for
  58. function declarations.  Writes these options in the generated F<Makefile.PL>
  59. too.
  60.  
  61. =item B<-M>, B<--func-mask>=I<regular expression>
  62.  
  63. selects functions/macros to process.
  64.  
  65. =item B<-O>, B<--overwrite-ok>
  66.  
  67. Allows a pre-existing extension directory to be overwritten.
  68.  
  69. =item B<-P>, B<--omit-pod>
  70.  
  71. Omit the autogenerated stub POD section. 
  72.  
  73. =item B<-X>, B<--omit-XS>
  74.  
  75. Omit the XS portion.  Used to generate templates for a module which is not
  76. XS-based.  C<-c> and C<-f> are implicitly enabled.
  77.  
  78. =item B<-a>, B<--gen-accessors>
  79.  
  80. Generate an accessor method for each element of structs and unions. The
  81. generated methods are named after the element name; will return the current
  82. value of the element if called without additional arguments; and will set
  83. the element to the supplied value (and return the new value) if called with
  84. an additional argument. Embedded structures and unions are returned as a
  85. pointer rather than the complete structure, to facilitate chained calls.
  86.  
  87. These methods all apply to the Ptr type for the structure; additionally
  88. two methods are constructed for the structure type itself, C<_to_ptr>
  89. which returns a Ptr type pointing to the same structure, and a C<new>
  90. method to construct and return a new structure, initialised to zeroes.
  91.  
  92. =item B<-b>, B<--compat-version>=I<version>
  93.  
  94. Generates a .pm file which is backwards compatible with the specified
  95. perl version.
  96.  
  97. For versions < 5.6.0, the changes are.
  98.     - no use of 'our' (uses 'use vars' instead)
  99.     - no 'use warnings'
  100.  
  101. Specifying a compatibility version higher than the version of perl you
  102. are using to run h2xs will have no effect.  If unspecified h2xs will default
  103. to compatibility with the version of perl you are using to run h2xs.
  104.  
  105. =item B<-c>, B<--omit-constant>
  106.  
  107. Omit C<constant()> from the .xs file and corresponding specialised
  108. C<AUTOLOAD> from the .pm file.
  109.  
  110. =item B<-d>, B<--debugging>
  111.  
  112. Turn on debugging messages.
  113.  
  114. =item B<-e>, B<--omit-enums>=[I<regular expression>]
  115.  
  116. If I<regular expression> is not given, skip all constants that are defined in
  117. a C enumeration. Otherwise skip only those constants that are defined in an
  118. enum whose name matches I<regular expression>.
  119.  
  120. Since I<regular expression> is optional, make sure that this switch is followed
  121. by at least one other switch if you omit I<regular expression> and have some
  122. pending arguments such as header-file names. This is ok:
  123.  
  124.     h2xs -e -n Module::Foo foo.h
  125.  
  126. This is not ok:
  127.  
  128.     h2xs -n Module::Foo -e foo.h
  129.  
  130. In the latter, foo.h is taken as I<regular expression>.
  131.  
  132. =item B<-f>, B<--force>
  133.  
  134. Allows an extension to be created for a header even if that header is
  135. not found in standard include directories.
  136.  
  137. =item B<-g>, B<--global>
  138.  
  139. Include code for safely storing static data in the .xs file. 
  140. Extensions that do no make use of static data can ignore this option.
  141.  
  142. =item B<-h>, B<-?>, B<--help>
  143.  
  144. Print the usage, help and version for this h2xs and exit.
  145.  
  146. =item B<-k>, B<--omit-const-func>
  147.  
  148. For function arguments declared as C<const>, omit the const attribute in the
  149. generated XS code.
  150.  
  151. =item B<-m>, B<--gen-tied-var>
  152.  
  153. B<Experimental>: for each variable declared in the header file(s), declare
  154. a perl variable of the same name magically tied to the C variable.
  155.  
  156. =item B<-n>, B<--name>=I<module_name>
  157.  
  158. Specifies a name to be used for the extension, e.g., S<-n RPC::DCE>
  159.  
  160. =item B<-o>, B<--opaque-re>=I<regular expression>
  161.  
  162. Use "opaque" data type for the C types matched by the regular
  163. expression, even if these types are C<typedef>-equivalent to types
  164. from typemaps.  Should not be used without B<-x>.
  165.  
  166. This may be useful since, say, types which are C<typedef>-equivalent
  167. to integers may represent OS-related handles, and one may want to work
  168. with these handles in OO-way, as in C<$handle-E<gt>do_something()>.
  169. Use C<-o .> if you want to handle all the C<typedef>ed types as opaque
  170. types.
  171.  
  172. The type-to-match is whitewashed (except for commas, which have no
  173. whitespace before them, and multiple C<*> which have no whitespace
  174. between them).
  175.  
  176. =item B<-p>, B<--remove-prefix>=I<prefix>
  177.  
  178. Specify a prefix which should be removed from the Perl function names,
  179. e.g., S<-p sec_rgy_> This sets up the XS B<PREFIX> keyword and removes
  180. the prefix from functions that are autoloaded via the C<constant()>
  181. mechanism.
  182.  
  183. =item B<-s>, B<--const-subs>=I<sub1,sub2>
  184.  
  185. Create a perl subroutine for the specified macros rather than autoload
  186. with the constant() subroutine.  These macros are assumed to have a
  187. return type of B<char *>, e.g.,
  188. S<-s sec_rgy_wildcard_name,sec_rgy_wildcard_sid>.
  189.  
  190. =item B<-t>, B<--default-type>=I<type>
  191.  
  192. Specify the internal type that the constant() mechanism uses for macros.
  193. The default is IV (signed integer).  Currently all macros found during the
  194. header scanning process will be assumed to have this type.  Future versions
  195. of C<h2xs> may gain the ability to make educated guesses.
  196.  
  197. =item B<--use-new-tests>
  198.  
  199. When B<--compat-version> (B<-b>) is present the generated tests will use
  200. C<Test::More> rather than C<Test> which is the default for versions before
  201. 5.7.2 .   C<Test::More> will be added to PREREQ_PM in the generated
  202. C<Makefile.PL>.
  203.  
  204. =item B<--use-old-tests>
  205.  
  206. Will force the generation of test code that uses the older C<Test> module.
  207.  
  208. =item B<--skip-exporter>
  209.  
  210. Do not use C<Exporter> and/or export any symbol.
  211.  
  212. =item B<--skip-ppport>
  213.  
  214. Do not use C<Devel::PPPort>: no portability to older version.
  215.  
  216. =item B<--skip-autoloader>
  217.  
  218. Do not use the module C<AutoLoader>; but keep the constant() function
  219. and C<sub AUTOLOAD> for constants.
  220.  
  221. =item B<--skip-strict>
  222.  
  223. Do not use the pragma C<strict>.
  224.  
  225. =item B<--skip-warnings>
  226.  
  227. Do not use the pragma C<warnings>.
  228.  
  229. =item B<-v>, B<--version>=I<version>
  230.  
  231. Specify a version number for this extension.  This version number is added
  232. to the templates.  The default is 0.01, or 0.00_01 if C<-B> is specified.
  233. The version specified should be numeric.
  234.  
  235. =item B<-x>, B<--autogen-xsubs>
  236.  
  237. Automatically generate XSUBs basing on function declarations in the
  238. header file.  The package C<C::Scan> should be installed. If this
  239. option is specified, the name of the header file may look like
  240. C<NAME1,NAME2>. In this case NAME1 is used instead of the specified
  241. string, but XSUBs are emitted only for the declarations included from
  242. file NAME2.
  243.  
  244. Note that some types of arguments/return-values for functions may
  245. result in XSUB-declarations/typemap-entries which need
  246. hand-editing. Such may be objects which cannot be converted from/to a
  247. pointer (like C<long long>), pointers to functions, or arrays.  See
  248. also the section on L<LIMITATIONS of B<-x>>.
  249.  
  250. =back
  251.  
  252. =head1 EXAMPLES
  253.  
  254.  
  255.     # Default behavior, extension is Rusers
  256.     h2xs rpcsvc/rusers
  257.  
  258.     # Same, but extension is RUSERS
  259.     h2xs -n RUSERS rpcsvc/rusers
  260.  
  261.     # Extension is rpcsvc::rusers. Still finds <rpcsvc/rusers.h>
  262.     h2xs rpcsvc::rusers
  263.  
  264.     # Extension is ONC::RPC.  Still finds <rpcsvc/rusers.h>
  265.     h2xs -n ONC::RPC rpcsvc/rusers
  266.  
  267.     # Without constant() or AUTOLOAD
  268.     h2xs -c rpcsvc/rusers
  269.  
  270.     # Creates templates for an extension named RPC
  271.     h2xs -cfn RPC
  272.  
  273.     # Extension is ONC::RPC.
  274.     h2xs -cfn ONC::RPC
  275.     
  276.     # Extension is Lib::Foo which works at least with Perl5.005_03.
  277.     # Constants are created for all #defines and enums h2xs can find
  278.     # in foo.h.
  279.     h2xs -b 5.5.3 -n Lib::Foo foo.h
  280.  
  281.     # Extension is Lib::Foo which works at least with Perl5.005_03.
  282.     # Constants are created for all #defines but only for enums
  283.     # whose names do not start with 'bar_'.
  284.     h2xs -b 5.5.3 -e '^bar_' -n Lib::Foo foo.h
  285.  
  286.     # Makefile.PL will look for library -lrpc in 
  287.     # additional directory /opt/net/lib
  288.     h2xs rpcsvc/rusers -L/opt/net/lib -lrpc
  289.  
  290.     # Extension is DCE::rgynbase
  291.     # prefix "sec_rgy_" is dropped from perl function names
  292.     h2xs -n DCE::rgynbase -p sec_rgy_ dce/rgynbase
  293.  
  294.     # Extension is DCE::rgynbase
  295.     # prefix "sec_rgy_" is dropped from perl function names
  296.     # subroutines are created for sec_rgy_wildcard_name and 
  297.     # sec_rgy_wildcard_sid
  298.     h2xs -n DCE::rgynbase -p sec_rgy_ \
  299.     -s sec_rgy_wildcard_name,sec_rgy_wildcard_sid dce/rgynbase
  300.  
  301.     # Make XS without defines in perl.h, but with function declarations
  302.     # visible from perl.h. Name of the extension is perl1.
  303.     # When scanning perl.h, define -DEXT=extern -DdEXT= -DINIT(x)=
  304.     # Extra backslashes below because the string is passed to shell.
  305.     # Note that a directory with perl header files would 
  306.     #  be added automatically to include path.
  307.     h2xs -xAn perl1 -F "-DEXT=extern -DdEXT= -DINIT\(x\)=" perl.h
  308.  
  309.     # Same with function declaration in proto.h as visible from perl.h.
  310.     h2xs -xAn perl2 perl.h,proto.h
  311.  
  312.     # Same but select only functions which match /^av_/
  313.     h2xs -M '^av_' -xAn perl2 perl.h,proto.h
  314.  
  315.     # Same but treat SV* etc as "opaque" types
  316.     h2xs -o '^[S]V \*$' -M '^av_' -xAn perl2 perl.h,proto.h
  317.  
  318. =head2 Extension based on F<.h> and F<.c> files
  319.  
  320. Suppose that you have some C files implementing some functionality,
  321. and the corresponding header files.  How to create an extension which
  322. makes this functionality accessable in Perl?  The example below
  323. assumes that the header files are F<interface_simple.h> and
  324. I<interface_hairy.h>, and you want the perl module be named as
  325. C<Ext::Ension>.  If you need some preprocessor directives and/or
  326. linking with external libraries, see the flags C<-F>, C<-L> and C<-l>
  327. in L<"OPTIONS">.
  328.  
  329. =over
  330.  
  331. =item Find the directory name
  332.  
  333. Start with a dummy run of h2xs:
  334.  
  335.   h2xs -Afn Ext::Ension
  336.  
  337. The only purpose of this step is to create the needed directories, and
  338. let you know the names of these directories.  From the output you can
  339. see that the directory for the extension is F<Ext/Ension>.
  340.  
  341. =item Copy C files
  342.  
  343. Copy your header files and C files to this directory F<Ext/Ension>.
  344.  
  345. =item Create the extension
  346.  
  347. Run h2xs, overwriting older autogenerated files:
  348.  
  349.   h2xs -Oxan Ext::Ension interface_simple.h interface_hairy.h
  350.  
  351. h2xs looks for header files I<after> changing to the extension
  352. directory, so it will find your header files OK.
  353.  
  354. =item Archive and test
  355.  
  356. As usual, run
  357.  
  358.   cd Ext/Ension
  359.   perl Makefile.PL
  360.   make dist
  361.   make
  362.   make test
  363.  
  364. =item Hints
  365.  
  366. It is important to do C<make dist> as early as possible.  This way you
  367. can easily merge(1) your changes to autogenerated files if you decide
  368. to edit your C<.h> files and rerun h2xs.
  369.  
  370. Do not forget to edit the documentation in the generated F<.pm> file.
  371.  
  372. Consider the autogenerated files as skeletons only, you may invent
  373. better interfaces than what h2xs could guess.
  374.  
  375. Consider this section as a guideline only, some other options of h2xs
  376. may better suit your needs.
  377.  
  378. =back
  379.  
  380. =head1 ENVIRONMENT
  381.  
  382. No environment variables are used.
  383.  
  384. =head1 AUTHOR
  385.  
  386. Larry Wall and others
  387.  
  388. =head1 SEE ALSO
  389.  
  390. L<perl>, L<perlxstut>, L<ExtUtils::MakeMaker>, and L<AutoLoader>.
  391.  
  392. =head1 DIAGNOSTICS
  393.  
  394. The usual warnings if it cannot read or write the files involved.
  395.  
  396. =head1 LIMITATIONS of B<-x>
  397.  
  398. F<h2xs> would not distinguish whether an argument to a C function
  399. which is of the form, say, C<int *>, is an input, output, or
  400. input/output parameter.  In particular, argument declarations of the
  401. form
  402.  
  403.     int
  404.     foo(n)
  405.     int *n
  406.  
  407. should be better rewritten as
  408.  
  409.     int
  410.     foo(n)
  411.     int &n
  412.  
  413. if C<n> is an input parameter.
  414.  
  415. Additionally, F<h2xs> has no facilities to intuit that a function
  416.  
  417.    int
  418.    foo(addr,l)
  419.     char *addr
  420.     int   l
  421.  
  422. takes a pair of address and length of data at this address, so it is better
  423. to rewrite this function as
  424.  
  425.     int
  426.     foo(sv)
  427.         SV *addr
  428.     PREINIT:
  429.         STRLEN len;
  430.         char *s;
  431.     CODE:
  432.         s = SvPV(sv,len);
  433.         RETVAL = foo(s, len);
  434.     OUTPUT:
  435.         RETVAL
  436.  
  437. or alternately
  438.  
  439.     static int
  440.     my_foo(SV *sv)
  441.     {
  442.     STRLEN len;
  443.     char *s = SvPV(sv,len);
  444.  
  445.     return foo(s, len);
  446.     }
  447.  
  448.     MODULE = foo    PACKAGE = foo    PREFIX = my_
  449.  
  450.     int
  451.     foo(sv)
  452.     SV *sv
  453.  
  454. See L<perlxs> and L<perlxstut> for additional details.
  455.  
  456. =cut
  457.  
  458. # ' # Grr
  459. use strict;
  460.  
  461.  
  462. my( $H2XS_VERSION ) = ' $Revision: 1.23 $ ' =~ /\$Revision:\s+([^\s]+)/;
  463. my $TEMPLATE_VERSION = '0.01';
  464. my @ARGS = @ARGV;
  465. my $compat_version = $];
  466.  
  467. use Getopt::Long;
  468. use Config;
  469. use Text::Wrap;
  470. $Text::Wrap::huge = 'overflow';
  471. $Text::Wrap::columns = 80;
  472. use ExtUtils::Constant qw (WriteConstants WriteMakefileSnippet autoload);
  473. use File::Compare;
  474. use File::Path;
  475.  
  476. sub usage {
  477.     warn "@_\n" if @_;
  478.     die <<EOFUSAGE;
  479. h2xs [OPTIONS ... ] [headerfile [extra_libraries]]
  480. version: $H2XS_VERSION
  481. OPTIONS:
  482.     -A, --omit-autoload   Omit all autoloading facilities (implies -c).
  483.     -B, --beta-version    Use beta \$VERSION of 0.00_01 (ignored if -v).
  484.     -C, --omit-changes    Omit creating the Changes file, add HISTORY heading
  485.                           to stub POD.
  486.     -F, --cpp-flags       Additional flags for C preprocessor/compile.
  487.     -M, --func-mask       Mask to select C functions/macros
  488.                           (default is select all).
  489.     -O, --overwrite-ok    Allow overwriting of a pre-existing extension directory.
  490.     -P, --omit-pod        Omit the stub POD section.
  491.     -X, --omit-XS         Omit the XS portion (implies both -c and -f).
  492.     -a, --gen-accessors   Generate get/set accessors for struct and union members                           (used with -x).
  493.     -b, --compat-version  Specify a perl version to be backwards compatibile with
  494.     -c, --omit-constant   Omit the constant() function and specialised AUTOLOAD
  495.                           from the XS file.
  496.     -d, --debugging       Turn on debugging messages.
  497.     -e, --omit-enums      Omit constants from enums in the constant() function.
  498.                           If a pattern is given, only the matching enums are 
  499.                           ignored.
  500.     -f, --force           Force creation of the extension even if the C header
  501.                           does not exist.
  502.     -g, --global          Include code for safely storing static data in the .xs file. 
  503.     -h, -?, --help        Display this help message
  504.     -k, --omit-const-func Omit 'const' attribute on function arguments
  505.                           (used with -x).
  506.     -m, --gen-tied-var    Generate tied variables for access to declared
  507.                           variables.
  508.     -n, --name            Specify a name to use for the extension (recommended).
  509.     -o, --opaque-re       Regular expression for \"opaque\" types.
  510.     -p, --remove-prefix   Specify a prefix which should be removed from the
  511.                           Perl function names.
  512.     -s, --const-subs      Create subroutines for specified macros.
  513.     -t, --default-type    Default type for autoloaded constants (default is IV)
  514.         --use-new-tests   Use Test::More in backward compatible modules
  515.         --use-old-tests   Use the module Test rather than Test::More
  516.         --skip-exporter   Do not export symbols
  517.         --skip-ppport     Do not use portability layer
  518.         --skip-autoloader Do not use the module C<AutoLoader>
  519.         --skip-strict     Do not use the pragma C<strict>
  520.         --skip-warnings   Do not use the pragma C<warnings>
  521.     -v, --version         Specify a version number for this extension.
  522.     -x, --autogen-xsubs   Autogenerate XSUBs using C::Scan.
  523.  
  524. extra_libraries
  525.          are any libraries that might be needed for loading the
  526.          extension, e.g. -lm would try to link in the math library.
  527. EOFUSAGE
  528. }
  529.  
  530. my ($opt_A,
  531.     $opt_B,
  532.     $opt_C,
  533.     $opt_F,
  534.     $opt_M,
  535.     $opt_O,
  536.     $opt_P,
  537.     $opt_X,
  538.     $opt_a,
  539.     $opt_c,
  540.     $opt_d,
  541.     $opt_e,
  542.     $opt_f,
  543.     $opt_g,
  544.     $opt_h,
  545.     $opt_k,
  546.     $opt_m,
  547.     $opt_n,
  548.     $opt_o,
  549.     $opt_p,
  550.     $opt_s,
  551.     $opt_v,
  552.     $opt_x,
  553.     $opt_b,
  554.     $opt_t,
  555.     $new_test,
  556.     $old_test,
  557.     $skip_exporter,
  558.     $skip_ppport,
  559.     $skip_autoloader,
  560.     $skip_strict,
  561.     $skip_warnings,
  562.    );
  563.  
  564. Getopt::Long::Configure('bundling');
  565. Getopt::Long::Configure('pass_through');
  566.  
  567. my %options = (
  568.                 'omit-autoload|A'    => \$opt_A,
  569.                 'beta-version|B'     => \$opt_B,
  570.                 'omit-changes|C'     => \$opt_C,
  571.                 'cpp-flags|F=s'      => \$opt_F,
  572.                 'func-mask|M=s'      => \$opt_M,
  573.                 'overwrite_ok|O'     => \$opt_O,
  574.                 'omit-pod|P'         => \$opt_P,
  575.                 'omit-XS|X'          => \$opt_X,
  576.                 'gen-accessors|a'    => \$opt_a,
  577.                 'compat-version|b=s' => \$opt_b,
  578.                 'omit-constant|c'    => \$opt_c,
  579.                 'debugging|d'        => \$opt_d,
  580.                 'omit-enums|e:s'     => \$opt_e,
  581.                 'force|f'            => \$opt_f,
  582.                 'global|g'           => \$opt_g,
  583.                 'help|h|?'           => \$opt_h,
  584.                 'omit-const-func|k'  => \$opt_k,
  585.                 'gen-tied-var|m'     => \$opt_m,
  586.                 'name|n=s'           => \$opt_n,
  587.                 'opaque-re|o=s'      => \$opt_o,
  588.                 'remove-prefix|p=s'  => \$opt_p,
  589.                 'const-subs|s=s'     => \$opt_s,
  590.                 'default-type|t=s'   => \$opt_t,
  591.                 'version|v=s'        => \$opt_v,
  592.                 'autogen-xsubs|x'    => \$opt_x,
  593.                 'use-new-tests'      => \$new_test,
  594.                 'use-old-tests'      => \$old_test,
  595.                 'skip-exporter'      => \$skip_exporter,
  596.                 'skip-ppport'        => \$skip_ppport,
  597.                 'skip-autoloader'    => \$skip_autoloader,
  598.                 'skip-warnings'      => \$skip_warnings,
  599.                 'skip-strict'        => \$skip_strict,
  600.               );
  601.  
  602. GetOptions(%options) || usage;
  603.  
  604. usage if $opt_h;
  605.  
  606. if( $opt_b ){
  607.     usage "You cannot use -b and -m at the same time.\n" if ($opt_b && $opt_m);
  608.     $opt_b =~ /^\d+\.\d+\.\d+/ ||
  609.     usage "You must provide the backwards compatibility version in X.Y.Z form. "
  610.           .  "(i.e. 5.5.0)\n";
  611.     my ($maj,$min,$sub) = split(/\./,$opt_b,3);
  612.     if ($maj < 5 || ($maj == 5 && $min < 6)) {
  613.         $compat_version =
  614.         $sub ? sprintf("%d.%03d%02d",$maj,$min,$sub) :
  615.                sprintf("%d.%03d",    $maj,$min);
  616.     } else {
  617.         $compat_version =
  618.         $sub ? sprintf("%d.%03d%03d",$maj,$min,$sub) :
  619.            sprintf("%d.%03d",    $maj,$min);
  620.     }
  621. } else {
  622.     my ($maj,$min,$sub) = $compat_version =~ /(\d+)\.(\d\d\d)(\d*)/;
  623.     $sub ||= 0;
  624.     warn sprintf <<'EOF', $maj,$min,$sub;
  625. Defaulting to backwards compatibility with perl %d.%d.%d
  626. If you intend this module to be compatible with earlier perl versions, please
  627. specify a minimum perl version with the -b option.
  628.  
  629. EOF
  630. }
  631.  
  632. if( $opt_B ){
  633.     $TEMPLATE_VERSION = '0.00_01';
  634. }
  635.  
  636. if( $opt_v ){
  637.     $TEMPLATE_VERSION = $opt_v;
  638.  
  639.     # check if it is numeric
  640.     my $temp_version = $TEMPLATE_VERSION;
  641.     my $beta_version = $temp_version =~ s/(\d)_(\d\d)/$1$2/;
  642.     my $notnum;
  643.     {
  644.         local $SIG{__WARN__} = sub { $notnum = 1 };
  645.         use warnings 'numeric';
  646.         $temp_version = 0+$temp_version;
  647.     }
  648.  
  649.     if ($notnum) {
  650.         my $module = $opt_n || 'Your::Module';
  651.         warn <<"EOF";
  652. You have specified a non-numeric version.  Unless you supply an
  653. appropriate VERSION class method, users may not be able to specify a
  654. minimum required version with C<use $module versionnum>.
  655.  
  656. EOF
  657.     }
  658.     else {
  659.         $opt_B = $beta_version;
  660.     }
  661. }
  662.  
  663. # -A implies -c.
  664. $skip_autoloader = $opt_c = 1 if $opt_A;
  665.  
  666. # -X implies -c and -f
  667. $opt_c = $opt_f = 1 if $opt_X;
  668.  
  669. $opt_t ||= 'IV';
  670.  
  671. my %const_xsub = map { $_,1 } split(/,+/, $opt_s) if $opt_s;
  672.  
  673. my $extralibs = '';
  674.  
  675. my @path_h;
  676.  
  677. while (my $arg = shift) {
  678.     if ($arg =~ /^-l/i) {
  679.         $extralibs .= "$arg ";
  680.         next;
  681.     }
  682.     last if $extralibs;
  683.     push(@path_h, $arg);
  684. }
  685.  
  686. usage "Must supply header file or module name\n"
  687.         unless (@path_h or $opt_n);
  688.  
  689. my $fmask;
  690. my $tmask;
  691.  
  692. $fmask = qr{$opt_M} if defined $opt_M;
  693. $tmask = qr{$opt_o} if defined $opt_o;
  694. my $tmask_all = $tmask && $opt_o eq '.';
  695.  
  696. if ($opt_x) {
  697.   eval {require C::Scan; 1}
  698.     or die <<EOD;
  699. C::Scan required if you use -x option.
  700. To install C::Scan, execute
  701.    perl -MCPAN -e "install C::Scan"
  702. EOD
  703.   unless ($tmask_all) {
  704.     $C::Scan::VERSION >= 0.70
  705.       or die <<EOD;
  706. C::Scan v. 0.70 or later required unless you use -o . option.
  707. You have version $C::Scan::VERSION installed as $INC{'C/Scan.pm'}.
  708. To install C::Scan, execute
  709.    perl -MCPAN -e "install C::Scan"
  710. EOD
  711.   }
  712.   if (($opt_m || $opt_a) && $C::Scan::VERSION < 0.73) {
  713.     die <<EOD;
  714. C::Scan v. 0.73 or later required to use -m or -a options.
  715. You have version $C::Scan::VERSION installed as $INC{'C/Scan.pm'}.
  716. To install C::Scan, execute
  717.    perl -MCPAN -e "install C::Scan"
  718. EOD
  719.   }
  720. }
  721. elsif ($opt_o or $opt_F) {
  722.   warn <<EOD if $opt_o;
  723. Option -o does not make sense without -x.
  724. EOD
  725.   warn <<EOD if $opt_F and $opt_X ;
  726. Option -F does not make sense with -X.
  727. EOD
  728. }
  729.  
  730. my @path_h_ini = @path_h;
  731. my ($name, %fullpath, %prefix, %seen_define, %prefixless, %const_names);
  732.  
  733. my $module = $opt_n;
  734.  
  735. if( @path_h ){
  736.     use File::Spec;
  737.     my @paths;
  738.     my $pre_sub_tri_graphs = 1;
  739.     if ($^O eq 'VMS') {  # Consider overrides of default location
  740.       # XXXX This is not equivalent to what the older version did:
  741.       #        it was looking at $hadsys header-file per header-file...
  742.       my($hadsys) = grep s!^sys/!!i , @path_h;
  743.       @paths = qw( Sys$Library VAXC$Include );
  744.       push @paths, ($hadsys ? 'GNU_CC_Include[vms]' : 'GNU_CC_Include[000000]');
  745.       push @paths, qw( DECC$Library_Include DECC$System_Include );
  746.     }
  747.     else {
  748.       @paths = (File::Spec->curdir(), $Config{usrinc},
  749.         (split ' ', $Config{locincpth}), '/usr/include');
  750.     }
  751.     foreach my $path_h (@path_h) {
  752.         $name ||= $path_h;
  753.     $module ||= do {
  754.       $name =~ s/\.h$//;
  755.       if ( $name !~ /::/ ) {
  756.     $name =~ s#^.*/##;
  757.     $name = "\u$name";
  758.       }
  759.       $name;
  760.     };
  761.  
  762.     if( $path_h =~ s#::#/#g && $opt_n ){
  763.     warn "Nesting of headerfile ignored with -n\n";
  764.     }
  765.     $path_h .= ".h" unless $path_h =~ /\.h$/;
  766.     my $fullpath = $path_h;
  767.     $path_h =~ s/,.*$// if $opt_x;
  768.     $fullpath{$path_h} = $fullpath;
  769.  
  770.     # Minor trickery: we can't chdir() before we processed the headers
  771.     # (so know the name of the extension), but the header may be in the
  772.     # extension directory...
  773.     my $tmp_path_h = $path_h;
  774.     my $rel_path_h = $path_h;
  775.     my @dirs = @paths;
  776.     if (not -f $path_h) {
  777.       my $found;
  778.       for my $dir (@paths) {
  779.     $found++, last
  780.       if -f ($path_h = File::Spec->catfile($dir, $tmp_path_h));
  781.       }
  782.       if ($found) {
  783.     $rel_path_h = $path_h;
  784.     $fullpath{$path_h} = $fullpath;
  785.       } else {
  786.     (my $epath = $module) =~ s,::,/,g;
  787.     $epath = File::Spec->catdir('ext', $epath) if -d 'ext';
  788.     $rel_path_h = File::Spec->catfile($epath, $tmp_path_h);
  789.     $path_h = $tmp_path_h;    # Used during -x
  790.     push @dirs, $epath;
  791.       }
  792.     }
  793.  
  794.     if (!$opt_c) {
  795.       die "Can't find $tmp_path_h in @dirs\n" 
  796.     if ( ! $opt_f && ! -f "$rel_path_h" );
  797.       # Scan the header file (we should deal with nested header files)
  798.       # Record the names of simple #define constants into const_names
  799.             # Function prototypes are processed below.
  800.       open(CH, "<$rel_path_h") || die "Can't open $rel_path_h: $!\n";
  801.     defines:
  802.       while (<CH>) {
  803.     if ($pre_sub_tri_graphs) {
  804.         # Preprocess all tri-graphs 
  805.         # including things stuck in quoted string constants.
  806.         s/\?\?=/#/g;                         # | ??=|  #|
  807.         s/\?\?\!/|/g;                        # | ??!|  ||
  808.         s/\?\?'/^/g;                         # | ??'|  ^|
  809.         s/\?\?\(/[/g;                        # | ??(|  [|
  810.         s/\?\?\)/]/g;                        # | ??)|  ]|
  811.         s/\?\?\-/~/g;                        # | ??-|  ~|
  812.         s/\?\?\//\\/g;                       # | ??/|  \|
  813.         s/\?\?</{/g;                         # | ??<|  {|
  814.         s/\?\?>/}/g;                         # | ??>|  }|
  815.     }
  816.     if (/^[ \t]*#[ \t]*define\s+([\$\w]+)\b(?!\()\s*(?=[^"\s])(.*)/) {
  817.         my $def = $1;
  818.         my $rest = $2;
  819.         $rest =~ s!/\*.*?(\*/|\n)|//.*!!g; # Remove comments
  820.         $rest =~ s/^\s+//;
  821.         $rest =~ s/\s+$//;
  822.         # Cannot do: (-1) and ((LHANDLE)3) are OK:
  823.         #print("Skip non-wordy $def => $rest\n"),
  824.         #  next defines if $rest =~ /[^\w\$]/;
  825.         if ($rest =~ /"/) {
  826.           print("Skip stringy $def => $rest\n") if $opt_d;
  827.           next defines;
  828.         }
  829.         print "Matched $_ ($def)\n" if $opt_d;
  830.         $seen_define{$def} = $rest;
  831.         $_ = $def;
  832.         next if /^_.*_h_*$/i; # special case, but for what?
  833.         if (defined $opt_p) {
  834.           if (!/^$opt_p(\d)/) {
  835.         ++$prefix{$_} if s/^$opt_p//;
  836.           }
  837.           else {
  838.         warn "can't remove $opt_p prefix from '$_'!\n";
  839.           }
  840.         }
  841.         $prefixless{$def} = $_;
  842.         if (!$fmask or /$fmask/) {
  843.         print "... Passes mask of -M.\n" if $opt_d and $fmask;
  844.         $const_names{$_}++;
  845.         }
  846.       }
  847.       }
  848.       if (defined $opt_e and !$opt_e) {
  849.         close(CH);
  850.       }
  851.       else {
  852.     # Work from miniperl too - on "normal" systems
  853.         my $SEEK_SET = eval 'use Fcntl qw/SEEK_SET/; SEEK_SET' or 0;
  854.         seek CH, 0, $SEEK_SET;
  855.         my $src = do { local $/; <CH> };
  856.         close CH;
  857.         no warnings 'uninitialized';
  858.         
  859.         # Remove C and C++ comments 
  860.         $src =~ s#/\*[^*]*\*+([^/*][^*]*\*+)*/|("(\\.|[^"\\])*"|'(\\.|[^'\\])*'|.[^/"'\\]*)#$2#gs;
  861.         
  862.         while ($src =~ /(\benum\s*([\w_]*)\s*\{\s([\s\w=,]+)\})/gsc) {
  863.             my ($enum_name, $enum_body) = 
  864.                 $1 =~ /enum\s*([\w_]*)\s*\{\s([\s\w=,]+)\}/gs;
  865.             # skip enums matching $opt_e
  866.             next if $opt_e && $enum_name =~ /$opt_e/;
  867.             my $val = 0;
  868.             for my $item (split /,/, $enum_body) {
  869.                 my ($key, $declared_val) = $item =~ /(\w*)\s*=\s*(.*)/;
  870.                 $val = length($declared_val) ? $declared_val : 1 + $val;
  871.                 $seen_define{$key} = $declared_val;
  872.                 $const_names{$key}++;
  873.             }
  874.         } # while (...)
  875.       } # if (!defined $opt_e or $opt_e)
  876.     }
  877.     }
  878. }
  879.  
  880. # Save current directory so that C::Scan can use it
  881. my $cwd = File::Spec->rel2abs( File::Spec->curdir );
  882.  
  883. # As Ilya suggested, use a name that contains - and then it can't clash with
  884. # the names of any packages. A directory 'fallback' will clash with any
  885. # new pragmata down the fallback:: tree, but that seems unlikely.
  886. my $constscfname = 'const-c.inc';
  887. my $constsxsfname = 'const-xs.inc';
  888. my $fallbackdirname = 'fallback';
  889.  
  890. my $ext = chdir 'ext' ? 'ext/' : '';
  891.   
  892. my @modparts  = split(/::/,$module);
  893. my $modpname  = join('-', @modparts);
  894. my $modfname  = pop @modparts;
  895. my $modpmdir  = join '/', 'lib', @modparts;
  896. my $modpmname = join '/', $modpmdir, $modfname.'.pm';
  897.   
  898. if ($opt_O) {
  899.     warn "Overwriting existing $ext$modpname!!!\n" if -e $modpname;
  900. }
  901. else {
  902.     die "Won't overwrite existing $ext$modpname\n" if -e $modpname;
  903. }
  904. -d "$modpname"   || mkpath([$modpname], 0, 0775);
  905. chdir($modpname) || die "Can't chdir $ext$modpname: $!\n";
  906.  
  907. my %types_seen;
  908. my %std_types;
  909. my $fdecls = [];
  910. my $fdecls_parsed = [];
  911. my $typedef_rex;
  912. my %typedefs_pre;
  913. my %known_fnames;
  914. my %structs;
  915.  
  916. my @fnames;
  917. my @fnames_no_prefix;
  918. my %vdecl_hash;
  919. my @vdecls;
  920.  
  921. if( ! $opt_X ){  # use XS, unless it was disabled
  922.   unless ($skip_ppport) {
  923.     require Devel::PPPort;
  924.     warn "Writing $ext$modpname/ppport.h\n";
  925.     Devel::PPPort::WriteFile('ppport.h')
  926.         || die "Can't create $ext$modpname/ppport.h: $!\n";
  927.   }
  928.   open(XS, ">$modfname.xs") || die "Can't create $ext$modpname/$modfname.xs: $!\n";
  929.   if ($opt_x) {
  930.     warn "Scanning typemaps...\n";
  931.     get_typemap();
  932.     my @td;
  933.     my @good_td;
  934.     my $addflags = $opt_F || '';
  935.  
  936.     foreach my $filename (@path_h) {
  937.       my $c;
  938.       my $filter;
  939.  
  940.       if ($fullpath{$filename} =~ /,/) {
  941.     $filename = $`;
  942.     $filter = $';
  943.       }
  944.       warn "Scanning $filename for functions...\n";
  945.       my @styles = $Config{gccversion} ? qw(C++ C9X GNU) : qw(C++ C9X);
  946.       $c = new C::Scan 'filename' => $filename, 'filename_filter' => $filter,
  947.     'add_cppflags' => $addflags, 'c_styles' => \@styles;
  948.       $c->set('includeDirs' => ["$Config::Config{archlib}/CORE", $cwd]);
  949.  
  950.       push @$fdecls_parsed, @{ $c->get('parsed_fdecls') };
  951.       push(@$fdecls, @{$c->get('fdecls')});
  952.  
  953.       push @td, @{$c->get('typedefs_maybe')};
  954.       if ($opt_a) {
  955.     my $structs = $c->get('typedef_structs');
  956.     @structs{keys %$structs} = values %$structs;
  957.       }
  958.  
  959.       if ($opt_m) {
  960.     %vdecl_hash = %{ $c->get('vdecl_hash') };
  961.     @vdecls = sort keys %vdecl_hash;
  962.     for (local $_ = 0; $_ < @vdecls; ++$_) {
  963.       my $var = $vdecls[$_];
  964.       my($type, $post) = @{ $vdecl_hash{$var} };
  965.       if (defined $post) {
  966.         warn "Can't handle variable '$type $var $post', skipping.\n";
  967.         splice @vdecls, $_, 1;
  968.         redo;
  969.       }
  970.       $type = normalize_type($type);
  971.       $vdecl_hash{$var} = $type;
  972.     }
  973.       }
  974.  
  975.       unless ($tmask_all) {
  976.     warn "Scanning $filename for typedefs...\n";
  977.     my $td = $c->get('typedef_hash');
  978.     # eval {require 'dumpvar.pl'; ::dumpValue($td)} or warn $@ if $opt_d;
  979.     my @f_good_td = grep $td->{$_}[1] eq '', keys %$td;
  980.     push @good_td, @f_good_td;
  981.     @typedefs_pre{@f_good_td}  = map $_->[0], @$td{@f_good_td};
  982.       }
  983.     }
  984.     { local $" = '|';
  985.       $typedef_rex = qr(\b(?<!struct )(?:@good_td)\b) if @good_td;
  986.     }
  987.     %known_fnames = map @$_[1,3], @$fdecls_parsed; # [1,3] is NAME, FULLTEXT
  988.     if ($fmask) {
  989.       my @good;
  990.       for my $i (0..$#$fdecls_parsed) {
  991.     next unless $fdecls_parsed->[$i][1] =~ /$fmask/; # [1] is NAME
  992.     push @good, $i;
  993.     print "... Function $fdecls_parsed->[$i][1] passes -M mask.\n"
  994.       if $opt_d;
  995.       }
  996.       $fdecls = [@$fdecls[@good]];
  997.       $fdecls_parsed = [@$fdecls_parsed[@good]];
  998.     }
  999.     @fnames = sort map $_->[1], @$fdecls_parsed; # 1 is NAME
  1000.     # Sort declarations:
  1001.     {
  1002.       my %h = map( ($_->[1], $_), @$fdecls_parsed);
  1003.       $fdecls_parsed = [ @h{@fnames} ];
  1004.     }
  1005.     @fnames_no_prefix = @fnames;
  1006.     @fnames_no_prefix
  1007.       = sort map { ++$prefix{$_} if s/^$opt_p(?!\d)//; $_ } @fnames_no_prefix
  1008.          if defined $opt_p;
  1009.     # Remove macros which expand to typedefs
  1010.     print "Typedefs are @td.\n" if $opt_d;
  1011.     my %td = map {($_, $_)} @td;
  1012.     # Add some other possible but meaningless values for macros
  1013.     for my $k (qw(char double float int long short unsigned signed void)) {
  1014.       $td{"$_$k"} = "$_$k" for ('', 'signed ', 'unsigned ');
  1015.     }
  1016.     # eval {require 'dumpvar.pl'; ::dumpValue( [\@td, \%td] ); 1} or warn $@;
  1017.     my $n = 0;
  1018.     my %bad_macs;
  1019.     while (keys %td > $n) {
  1020.       $n = keys %td;
  1021.       my ($k, $v);
  1022.       while (($k, $v) = each %seen_define) {
  1023.     # print("found '$k'=>'$v'\n"), 
  1024.     $bad_macs{$k} = $td{$k} = $td{$v} if exists $td{$v};
  1025.       }
  1026.     }
  1027.     # Now %bad_macs contains names of bad macros
  1028.     for my $k (keys %bad_macs) {
  1029.       delete $const_names{$prefixless{$k}};
  1030.       print "Ignoring macro $k which expands to a typedef name '$bad_macs{$k}'\n" if $opt_d;
  1031.     }
  1032.   }
  1033. }
  1034. my @const_names = sort keys %const_names;
  1035.  
  1036. -d $modpmdir || mkpath([$modpmdir], 0, 0775);
  1037. open(PM, ">$modpmname") || die "Can't create $ext$modpname/$modpmname: $!\n";
  1038.  
  1039. $" = "\n\t";
  1040. warn "Writing $ext$modpname/$modpmname\n";
  1041.  
  1042. print PM <<"END";
  1043. package $module;
  1044.  
  1045. use $compat_version;
  1046. END
  1047.  
  1048. print PM <<"END" unless $skip_strict;
  1049. use strict;
  1050. END
  1051.  
  1052. print PM "use warnings;\n" unless $skip_warnings or $compat_version < 5.006;
  1053.  
  1054. unless( $opt_X || $opt_c || $opt_A ){
  1055.     # we'll have an AUTOLOAD(), and it will have $AUTOLOAD and
  1056.     # will want Carp.
  1057.     print PM <<'END';
  1058. use Carp;
  1059. END
  1060. }
  1061.  
  1062. print PM <<'END' unless $skip_exporter;
  1063.  
  1064. require Exporter;
  1065. END
  1066.  
  1067. my $use_Dyna = (not $opt_X and $compat_version < 5.006);
  1068. print PM <<"END" if $use_Dyna;  # use DynaLoader, unless XS was disabled
  1069. require DynaLoader;
  1070. END
  1071.  
  1072.  
  1073. # Are we using AutoLoader or not?
  1074. unless ($skip_autoloader) { # no autoloader whatsoever.
  1075.     unless ($opt_c) { # we're doing the AUTOLOAD
  1076.         print PM "use AutoLoader;\n";
  1077.     }
  1078.     else {
  1079.         print PM "use AutoLoader qw(AUTOLOAD);\n"
  1080.     }
  1081. }
  1082.  
  1083. if ( $compat_version < 5.006 ) {
  1084.     my $vars = '$VERSION @ISA';
  1085.     $vars .= ' @EXPORT @EXPORT_OK %EXPORT_TAGS' unless $skip_exporter;
  1086.     $vars .= ' $AUTOLOAD' unless $opt_X || $opt_c || $opt_A;
  1087.     $vars .= ' $XS_VERSION' if $opt_B && !$opt_X;
  1088.     print PM "use vars qw($vars);";
  1089. }
  1090.  
  1091. # Determine @ISA.
  1092. my @modISA;
  1093. push @modISA, 'Exporter'    unless $skip_exporter; 
  1094. push @modISA, 'DynaLoader'     if $use_Dyna;  # no XS
  1095. my $myISA = "our \@ISA = qw(@modISA);";
  1096. $myISA =~ s/^our // if $compat_version < 5.006;
  1097.  
  1098. print PM "\n$myISA\n\n";
  1099.  
  1100. my @exported_names = (@const_names, @fnames_no_prefix, map '$'.$_, @vdecls);
  1101.  
  1102. my $tmp='';
  1103. $tmp .= <<"END" unless $skip_exporter;
  1104. # Items to export into callers namespace by default. Note: do not export
  1105. # names by default without a very good reason. Use EXPORT_OK instead.
  1106. # Do not simply export all your public functions/methods/constants.
  1107.  
  1108. # This allows declaration    use $module ':all';
  1109. # If you do not need this, moving things directly into \@EXPORT or \@EXPORT_OK
  1110. # will save memory.
  1111. our %EXPORT_TAGS = ( 'all' => [ qw(
  1112.     @exported_names
  1113. ) ] );
  1114.  
  1115. our \@EXPORT_OK = ( \@{ \$EXPORT_TAGS{'all'} } );
  1116.  
  1117. our \@EXPORT = qw(
  1118.     @const_names
  1119. );
  1120.  
  1121. END
  1122.  
  1123. $tmp .= "our \$VERSION = '$TEMPLATE_VERSION';\n";
  1124. if ($opt_B) {
  1125.     $tmp .= "our \$XS_VERSION = \$VERSION;\n" unless $opt_X;
  1126.     $tmp .= "\$VERSION = eval \$VERSION;  # see L<perlmodstyle>\n";
  1127. }
  1128. $tmp .= "\n";
  1129.  
  1130. $tmp =~ s/^our //mg if $compat_version < 5.006;
  1131. print PM $tmp;
  1132.  
  1133. if (@vdecls) {
  1134.     printf PM "our(@{[ join ', ', map '$'.$_, @vdecls ]});\n\n";
  1135. }
  1136.  
  1137.  
  1138. print PM autoload ($module, $compat_version) unless $opt_c or $opt_X;
  1139.  
  1140. if( ! $opt_X ){ # print bootstrap, unless XS is disabled
  1141.   if ($use_Dyna) {
  1142.     $tmp = <<"END";
  1143. bootstrap $module \$VERSION;
  1144. END
  1145.   } else {
  1146.     $tmp = <<"END";
  1147. require XSLoader;
  1148. XSLoader::load('$module', \$VERSION);
  1149. END
  1150.   }
  1151.   $tmp =~ s:\$VERSION:\$XS_VERSION:g if $opt_B;
  1152.   print PM $tmp;
  1153. }
  1154.  
  1155. # tying the variables can happen only after bootstrap
  1156. if (@vdecls) {
  1157.     printf PM <<END;
  1158. {
  1159. @{[ join "\n", map "    _tievar_$_(\$$_);", @vdecls ]}
  1160. }
  1161.  
  1162. END
  1163. }
  1164.  
  1165. my $after;
  1166. if( $opt_P ){ # if POD is disabled
  1167.     $after = '__END__';
  1168. }
  1169. else {
  1170.     $after = '=cut';
  1171. }
  1172.  
  1173. print PM <<"END";
  1174.  
  1175. # Preloaded methods go here.
  1176. END
  1177.  
  1178. print PM <<"END" unless $opt_A;
  1179.  
  1180. # Autoload methods go after $after, and are processed by the autosplit program.
  1181. END
  1182.  
  1183. print PM <<"END";
  1184.  
  1185. 1;
  1186. __END__
  1187. END
  1188.  
  1189. my ($email,$author,$licence);
  1190.  
  1191. eval {
  1192.        my $username;
  1193.        ($username,$author) = (getpwuid($>))[0,6];
  1194.        if (defined $username && defined $author) {
  1195.        $author =~ s/,.*$//; # in case of sub fields
  1196.        my $domain = $Config{'mydomain'};
  1197.        $domain =~ s/^\.//;
  1198.        $email = "$username\@$domain";
  1199.        }
  1200.      };
  1201.  
  1202. $author ||= "A. U. Thor";
  1203. $email  ||= 'a.u.thor@a.galaxy.far.far.away';
  1204.  
  1205. $licence = sprintf << "DEFAULT", $^V;
  1206. Copyright (C) ${\(1900 + (localtime) [5])} by $author
  1207.  
  1208. This library is free software; you can redistribute it and/or modify
  1209. it under the same terms as Perl itself, either Perl version %vd or,
  1210. at your option, any later version of Perl 5 you may have available.
  1211. DEFAULT
  1212.  
  1213. my $revhist = '';
  1214. $revhist = <<EOT if $opt_C;
  1215. #
  1216. #=head1 HISTORY
  1217. #
  1218. #=over 8
  1219. #
  1220. #=item $TEMPLATE_VERSION
  1221. #
  1222. #Original version; created by h2xs $H2XS_VERSION with options
  1223. #
  1224. #  @ARGS
  1225. #
  1226. #=back
  1227. #
  1228. EOT
  1229.  
  1230. my $exp_doc = $skip_exporter ? '' : <<EOD;
  1231. #
  1232. #=head2 EXPORT
  1233. #
  1234. #None by default.
  1235. #
  1236. EOD
  1237.  
  1238. if (@const_names and not $opt_P) {
  1239.   $exp_doc .= <<EOD unless $skip_exporter;
  1240. #=head2 Exportable constants
  1241. #
  1242. #  @{[join "\n  ", @const_names]}
  1243. #
  1244. EOD
  1245. }
  1246.  
  1247. if (defined $fdecls and @$fdecls and not $opt_P) {
  1248.   $exp_doc .= <<EOD unless $skip_exporter;
  1249. #=head2 Exportable functions
  1250. #
  1251. EOD
  1252.  
  1253. #  $exp_doc .= <<EOD if $opt_p;
  1254. #When accessing these functions from Perl, prefix C<$opt_p> should be removed.
  1255. #
  1256. #EOD
  1257.   $exp_doc .= <<EOD unless $skip_exporter;
  1258. #  @{[join "\n  ", @known_fnames{@fnames}]}
  1259. #
  1260. EOD
  1261. }
  1262.  
  1263. my $meth_doc = '';
  1264.  
  1265. if ($opt_x && $opt_a) {
  1266.   my($name, $struct);
  1267.   $meth_doc .= accessor_docs($name, $struct)
  1268.     while ($name, $struct) = each %structs;
  1269. }
  1270.  
  1271. # Prefix the default licence with hash symbols.
  1272. # Is this just cargo cult - it seems that the first thing that happens to this
  1273. # block is that all the hashes are then s///g out.
  1274. my $licence_hash = $licence;
  1275. $licence_hash =~ s/^/#/gm;
  1276.  
  1277. my $pod = <<"END" unless $opt_P;
  1278. ## Below is stub documentation for your module. You'd better edit it!
  1279. #
  1280. #=head1 NAME
  1281. #
  1282. #$module - Perl extension for blah blah blah
  1283. #
  1284. #=head1 SYNOPSIS
  1285. #
  1286. #  use $module;
  1287. #  blah blah blah
  1288. #
  1289. #=head1 DESCRIPTION
  1290. #
  1291. #Stub documentation for $module, created by h2xs. It looks like the
  1292. #author of the extension was negligent enough to leave the stub
  1293. #unedited.
  1294. #
  1295. #Blah blah blah.
  1296. $exp_doc$meth_doc$revhist
  1297. #
  1298. #=head1 SEE ALSO
  1299. #
  1300. #Mention other useful documentation such as the documentation of
  1301. #related modules or operating system documentation (such as man pages
  1302. #in UNIX), or any relevant external documentation such as RFCs or
  1303. #standards.
  1304. #
  1305. #If you have a mailing list set up for your module, mention it here.
  1306. #
  1307. #If you have a web site set up for your module, mention it here.
  1308. #
  1309. #=head1 AUTHOR
  1310. #
  1311. #$author, E<lt>${email}E<gt>
  1312. #
  1313. #=head1 COPYRIGHT AND LICENSE
  1314. #
  1315. $licence_hash
  1316. #
  1317. #=cut
  1318. END
  1319.  
  1320. $pod =~ s/^\#//gm unless $opt_P;
  1321. print PM $pod unless $opt_P;
  1322.  
  1323. close PM;
  1324.  
  1325.  
  1326. if( ! $opt_X ){ # print XS, unless it is disabled
  1327. warn "Writing $ext$modpname/$modfname.xs\n";
  1328.  
  1329. print XS <<"END";
  1330. #include "EXTERN.h"
  1331. #include "perl.h"
  1332. #include "XSUB.h"
  1333.  
  1334. END
  1335.  
  1336. print XS <<"END" unless $skip_ppport;
  1337. #include "ppport.h"
  1338.  
  1339. END
  1340.  
  1341. if( @path_h ){
  1342.     foreach my $path_h (@path_h_ini) {
  1343.     my($h) = $path_h;
  1344.     $h =~ s#^/usr/include/##;
  1345.     if ($^O eq 'VMS') { $h =~ s#.*vms\]#sys/# or $h =~ s#.*[:>\]]##; }
  1346.         print XS qq{#include <$h>\n};
  1347.     }
  1348.     print XS "\n";
  1349. }
  1350.  
  1351. print XS <<"END" if $opt_g;
  1352.  
  1353. /* Global Data */
  1354.  
  1355. #define MY_CXT_KEY "${module}::_guts" XS_VERSION
  1356.  
  1357. typedef struct {
  1358.     /* Put Global Data in here */
  1359.     int dummy;        /* you can access this elsewhere as MY_CXT.dummy */
  1360. } my_cxt_t;
  1361.  
  1362. START_MY_CXT
  1363.  
  1364. END
  1365.  
  1366. my %pointer_typedefs;
  1367. my %struct_typedefs;
  1368.  
  1369. sub td_is_pointer {
  1370.   my $type = shift;
  1371.   my $out = $pointer_typedefs{$type};
  1372.   return $out if defined $out;
  1373.   my $otype = $type;
  1374.   $out = ($type =~ /\*$/);
  1375.   # This converts only the guys which do not have trailing part in the typedef
  1376.   if (not $out
  1377.       and $typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1378.     $type = normalize_type($type);
  1379.     print "Is-Pointer: Type mutation via typedefs: $otype ==> $type\n"
  1380.       if $opt_d;
  1381.     $out = td_is_pointer($type);
  1382.   }
  1383.   return ($pointer_typedefs{$otype} = $out);
  1384. }
  1385.  
  1386. sub td_is_struct {
  1387.   my $type = shift;
  1388.   my $out = $struct_typedefs{$type};
  1389.   return $out if defined $out;
  1390.   my $otype = $type;
  1391.   $out = ($type =~ /^(struct|union)\b/) && !td_is_pointer($type);
  1392.   # This converts only the guys which do not have trailing part in the typedef
  1393.   if (not $out
  1394.       and $typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1395.     $type = normalize_type($type);
  1396.     print "Is-Struct: Type mutation via typedefs: $otype ==> $type\n"
  1397.       if $opt_d;
  1398.     $out = td_is_struct($type);
  1399.   }
  1400.   return ($struct_typedefs{$otype} = $out);
  1401. }
  1402.  
  1403. print_tievar_subs(\*XS, $_, $vdecl_hash{$_}) for @vdecls;
  1404.  
  1405. if( ! $opt_c ) {
  1406.   # We write the "sample" files used when this module is built by perl without
  1407.   # ExtUtils::Constant.
  1408.   # h2xs will later check that these are the same as those generated by the
  1409.   # code embedded into Makefile.PL
  1410.   unless (-d $fallbackdirname) {
  1411.     mkdir "$fallbackdirname" or die "Cannot mkdir $fallbackdirname: $!\n";
  1412.   }
  1413.   warn "Writing $ext$modpname/$fallbackdirname/$constscfname\n";
  1414.   warn "Writing $ext$modpname/$fallbackdirname/$constsxsfname\n";
  1415.   my $cfallback = File::Spec->catfile($fallbackdirname, $constscfname);
  1416.   my $xsfallback = File::Spec->catfile($fallbackdirname, $constsxsfname);
  1417.   WriteConstants ( C_FILE =>       $cfallback,
  1418.                    XS_FILE =>      $xsfallback,
  1419.                    DEFAULT_TYPE => $opt_t,
  1420.                    NAME =>         $module,
  1421.                    NAMES =>        \@const_names,
  1422.                  );
  1423.   print XS "#include \"$constscfname\"\n";
  1424. }
  1425.  
  1426.  
  1427. my $prefix = defined $opt_p ? "PREFIX = $opt_p" : '';
  1428.  
  1429. # Now switch from C to XS by issuing the first MODULE declaration:
  1430. print XS <<"END";
  1431.  
  1432. MODULE = $module        PACKAGE = $module        $prefix
  1433.  
  1434. END
  1435.  
  1436. # If a constant() function was #included then output a corresponding
  1437. # XS declaration:
  1438. print XS "INCLUDE: $constsxsfname\n" unless $opt_c;
  1439.  
  1440. print XS <<"END" if $opt_g;
  1441.  
  1442. BOOT:
  1443. {
  1444.     MY_CXT_INIT;
  1445.     /* If any of the fields in the my_cxt_t struct need
  1446.        to be initialised, do it here.
  1447.      */
  1448. }
  1449.  
  1450. END
  1451.  
  1452. foreach (sort keys %const_xsub) {
  1453.     print XS <<"END";
  1454. char *
  1455. $_()
  1456.  
  1457.     CODE:
  1458. #ifdef $_
  1459.     RETVAL = $_;
  1460. #else
  1461.     croak("Your vendor has not defined the $module macro $_");
  1462. #endif
  1463.  
  1464.     OUTPUT:
  1465.     RETVAL
  1466.  
  1467. END
  1468. }
  1469.  
  1470. my %seen_decl;
  1471. my %typemap;
  1472.  
  1473. sub print_decl {
  1474.   my $fh = shift;
  1475.   my $decl = shift;
  1476.   my ($type, $name, $args) = @$decl;
  1477.   return if $seen_decl{$name}++; # Need to do the same for docs as well?
  1478.  
  1479.   my @argnames = map {$_->[1]} @$args;
  1480.   my @argtypes = map { normalize_type( $_->[0], 1 ) } @$args;
  1481.   if ($opt_k) {
  1482.     s/^\s*const\b\s*// for @argtypes;
  1483.   }
  1484.   my @argarrays = map { $_->[4] || '' } @$args;
  1485.   my $numargs = @$args;
  1486.   if ($numargs and $argtypes[-1] eq '...') {
  1487.     $numargs--;
  1488.     $argnames[-1] = '...';
  1489.   }
  1490.   local $" = ', ';
  1491.   $type = normalize_type($type, 1);
  1492.  
  1493.   print $fh <<"EOP";
  1494.  
  1495. $type
  1496. $name(@argnames)
  1497. EOP
  1498.  
  1499.   for my $arg (0 .. $numargs - 1) {
  1500.     print $fh <<"EOP";
  1501.     $argtypes[$arg]    $argnames[$arg]$argarrays[$arg]
  1502. EOP
  1503.   }
  1504. }
  1505.  
  1506. sub print_tievar_subs {
  1507.   my($fh, $name, $type) = @_;
  1508.   print $fh <<END;
  1509. I32
  1510. _get_$name(IV index, SV *sv) {
  1511.     dSP;
  1512.     PUSHMARK(SP);
  1513.     XPUSHs(sv);
  1514.     PUTBACK;
  1515.     (void)call_pv("$module\::_get_$name", G_DISCARD);
  1516.     return (I32)0;
  1517. }
  1518.  
  1519. I32
  1520. _set_$name(IV index, SV *sv) {
  1521.     dSP;
  1522.     PUSHMARK(SP);
  1523.     XPUSHs(sv);
  1524.     PUTBACK;
  1525.     (void)call_pv("$module\::_set_$name", G_DISCARD);
  1526.     return (I32)0;
  1527. }
  1528.  
  1529. END
  1530. }
  1531.  
  1532. sub print_tievar_xsubs {
  1533.   my($fh, $name, $type) = @_;
  1534.   print $fh <<END;
  1535. void
  1536. _tievar_$name(sv)
  1537.     SV* sv
  1538.     PREINIT:
  1539.     struct ufuncs uf;
  1540.     CODE:
  1541.     uf.uf_val = &_get_$name;
  1542.     uf.uf_set = &_set_$name;
  1543.     uf.uf_index = (IV)&_get_$name;
  1544.     sv_magic(sv, 0, 'U', (char*)&uf, sizeof(uf));
  1545.  
  1546. void
  1547. _get_$name(THIS)
  1548.     $type THIS = NO_INIT
  1549.     CODE:
  1550.     THIS = $name;
  1551.     OUTPUT:
  1552.     SETMAGIC: DISABLE
  1553.     THIS
  1554.  
  1555. void
  1556. _set_$name(THIS)
  1557.     $type THIS
  1558.     CODE:
  1559.     $name = THIS;
  1560.  
  1561. END
  1562. }
  1563.  
  1564. sub print_accessors {
  1565.   my($fh, $name, $struct) = @_;
  1566.   return unless defined $struct && $name !~ /\s|_ANON/;
  1567.   $name = normalize_type($name);
  1568.   my $ptrname = normalize_type("$name *");
  1569.   print $fh <<"EOF";
  1570.  
  1571. MODULE = $module        PACKAGE = ${name}        $prefix
  1572.  
  1573. $name *
  1574. _to_ptr(THIS)
  1575.     $name THIS = NO_INIT
  1576.     PROTOTYPE: \$
  1577.     CODE:
  1578.     if (sv_derived_from(ST(0), "$name")) {
  1579.         STRLEN len;
  1580.         char *s = SvPV((SV*)SvRV(ST(0)), len);
  1581.         if (len != sizeof(THIS))
  1582.         croak("Size \%d of packed data != expected \%d",
  1583.             len, sizeof(THIS));
  1584.         RETVAL = ($name *)s;
  1585.     }   
  1586.     else
  1587.         croak("THIS is not of type $name");
  1588.     OUTPUT:
  1589.     RETVAL
  1590.  
  1591. $name
  1592. new(CLASS)
  1593.     char *CLASS = NO_INIT
  1594.     PROTOTYPE: \$
  1595.     CODE:
  1596.     Zero((void*)&RETVAL, sizeof(RETVAL), char);
  1597.     OUTPUT:
  1598.     RETVAL
  1599.  
  1600. MODULE = $module        PACKAGE = ${name}Ptr        $prefix
  1601.  
  1602. EOF
  1603.   my @items = @$struct;
  1604.   while (@items) {
  1605.     my $item = shift @items;
  1606.     if ($item->[0] =~ /_ANON/) {
  1607.       if (defined $item->[2]) {
  1608.     push @items, map [
  1609.       @$_[0, 1], "$item->[2]_$_->[2]", "$item->[2].$_->[2]",
  1610.     ], @{ $structs{$item->[0]} };
  1611.       } else {
  1612.     push @items, @{ $structs{$item->[0]} };
  1613.       }
  1614.     } else {
  1615.       my $type = normalize_type($item->[0]);
  1616.       my $ttype = $structs{$type} ? normalize_type("$type *") : $type;
  1617.       print $fh <<"EOF";
  1618. $ttype
  1619. $item->[2](THIS, __value = NO_INIT)
  1620.     $ptrname THIS
  1621.     $type __value
  1622.     PROTOTYPE: \$;\$
  1623.     CODE:
  1624.     if (items > 1)
  1625.         THIS->$item->[-1] = __value;
  1626.     RETVAL = @{[
  1627.         $type eq $ttype ? "THIS->$item->[-1]" : "&(THIS->$item->[-1])"
  1628.     ]};
  1629.     OUTPUT:
  1630.     RETVAL
  1631.  
  1632. EOF
  1633.     }
  1634.   }
  1635. }
  1636.  
  1637. sub accessor_docs {
  1638.   my($name, $struct) = @_;
  1639.   return unless defined $struct && $name !~ /\s|_ANON/;
  1640.   $name = normalize_type($name);
  1641.   my $ptrname = $name . 'Ptr';
  1642.   my @items = @$struct;
  1643.   my @list;
  1644.   while (@items) {
  1645.     my $item = shift @items;
  1646.     if ($item->[0] =~ /_ANON/) {
  1647.       if (defined $item->[2]) {
  1648.     push @items, map [
  1649.       @$_[0, 1], "$item->[2]_$_->[2]", "$item->[2].$_->[2]",
  1650.     ], @{ $structs{$item->[0]} };
  1651.       } else {
  1652.     push @items, @{ $structs{$item->[0]} };
  1653.       }
  1654.     } else {
  1655.       push @list, $item->[2];
  1656.     }
  1657.   }
  1658.   my $methods = (join '(...)>, C<', @list) . '(...)';
  1659.  
  1660.   my $pod = <<"EOF";
  1661. #
  1662. #=head2 Object and class methods for C<$name>/C<$ptrname>
  1663. #
  1664. #The principal Perl representation of a C object of type C<$name> is an
  1665. #object of class C<$ptrname> which is a reference to an integer
  1666. #representation of a C pointer.  To create such an object, one may use
  1667. #a combination
  1668. #
  1669. #  my \$buffer = $name->new();
  1670. #  my \$obj = \$buffer->_to_ptr();
  1671. #
  1672. #This exersizes the following two methods, and an additional class
  1673. #C<$name>, the internal representation of which is a reference to a
  1674. #packed string with the C structure.  Keep in mind that \$buffer should
  1675. #better survive longer than \$obj.
  1676. #
  1677. #=over
  1678. #
  1679. #=item C<\$object_of_type_$name-E<gt>_to_ptr()>
  1680. #
  1681. #Converts an object of type C<$name> to an object of type C<$ptrname>.
  1682. #
  1683. #=item C<$name-E<gt>new()>
  1684. #
  1685. #Creates an empty object of type C<$name>.  The corresponding packed
  1686. #string is zeroed out.
  1687. #
  1688. #=item C<$methods>
  1689. #
  1690. #return the current value of the corresponding element if called
  1691. #without additional arguments.  Set the element to the supplied value
  1692. #(and return the new value) if called with an additional argument.
  1693. #
  1694. #Applicable to objects of type C<$ptrname>.
  1695. #
  1696. #=back
  1697. #
  1698. EOF
  1699.   $pod =~ s/^\#//gm;
  1700.   return $pod;
  1701. }
  1702.  
  1703. # Should be called before any actual call to normalize_type().
  1704. sub get_typemap {
  1705.   # We do not want to read ./typemap by obvios reasons.
  1706.   my @tm =  qw(../../../typemap ../../typemap ../typemap);
  1707.   my $stdtypemap =  "$Config::Config{privlib}/ExtUtils/typemap";
  1708.   unshift @tm, $stdtypemap;
  1709.   my $proto_re = "[" . quotemeta('\$%&*@;') . "]" ;
  1710.  
  1711.   # Start with useful default values
  1712.   $typemap{float} = 'T_NV';
  1713.  
  1714.   foreach my $typemap (@tm) {
  1715.     next unless -e $typemap ;
  1716.     # skip directories, binary files etc.
  1717.     warn " Scanning $typemap\n";
  1718.     warn("Warning: ignoring non-text typemap file '$typemap'\n"), next 
  1719.       unless -T $typemap ;
  1720.     open(TYPEMAP, $typemap) 
  1721.       or warn ("Warning: could not open typemap file '$typemap': $!\n"), next;
  1722.     my $mode = 'Typemap';
  1723.     while (<TYPEMAP>) {
  1724.       next if /^\s*\#/;
  1725.       if (/^INPUT\s*$/)   { $mode = 'Input'; next; }
  1726.       elsif (/^OUTPUT\s*$/)  { $mode = 'Output'; next; }
  1727.       elsif (/^TYPEMAP\s*$/) { $mode = 'Typemap'; next; }
  1728.       elsif ($mode eq 'Typemap') {
  1729.     next if /^\s*($|\#)/ ;
  1730.     my ($type, $image);
  1731.     if ( ($type, $image) =
  1732.          /^\s*(.*?\S)\s+(\S+)\s*($proto_re*)\s*$/o
  1733.          # This may reference undefined functions:
  1734.          and not ($image eq 'T_PACKED' and $typemap eq $stdtypemap)) {
  1735.       $typemap{normalize_type($type)} = $image;
  1736.     }
  1737.       }
  1738.     }
  1739.     close(TYPEMAP) or die "Cannot close $typemap: $!";
  1740.   }
  1741.   %std_types = %types_seen;
  1742.   %types_seen = ();
  1743. }
  1744.  
  1745.  
  1746. sub normalize_type {        # Second arg: do not strip const's before \*
  1747.   my $type = shift;
  1748.   my $do_keep_deep_const = shift;
  1749.   # If $do_keep_deep_const this is heuristical only
  1750.   my $keep_deep_const = ($do_keep_deep_const ? '\b(?![^(,)]*\*)' : '');
  1751.   my $ignore_mods 
  1752.     = "(?:\\b(?:(?:__const__|const)$keep_deep_const|static|inline|__inline__)\\b\\s*)*";
  1753.   if ($do_keep_deep_const) {    # Keep different compiled /RExen/o separately!
  1754.     $type =~ s/$ignore_mods//go;
  1755.   }
  1756.   else {
  1757.     $type =~ s/$ignore_mods//go;
  1758.   }
  1759.   $type =~ s/([^\s\w])/ $1 /g;
  1760.   $type =~ s/\s+$//;
  1761.   $type =~ s/^\s+//;
  1762.   $type =~ s/\s+/ /g;
  1763.   $type =~ s/\* (?=\*)/*/g;
  1764.   $type =~ s/\. \. \./.../g;
  1765.   $type =~ s/ ,/,/g;
  1766.   $types_seen{$type}++ 
  1767.     unless $type eq '...' or $type eq 'void' or $std_types{$type};
  1768.   $type;
  1769. }
  1770.  
  1771. my $need_opaque;
  1772.  
  1773. sub assign_typemap_entry {
  1774.   my $type = shift;
  1775.   my $otype = $type;
  1776.   my $entry;
  1777.   if ($tmask and $type =~ /$tmask/) {
  1778.     print "Type $type matches -o mask\n" if $opt_d;
  1779.     $entry = (td_is_struct($type) ? "T_OPAQUE_STRUCT" : "T_PTROBJ");
  1780.   }
  1781.   elsif ($typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1782.     $type = normalize_type $type;
  1783.     print "Type mutation via typedefs: $otype ==> $type\n" if $opt_d;
  1784.     $entry = assign_typemap_entry($type);
  1785.   }
  1786.   # XXX good do better if our UV happens to be long long
  1787.   return "T_NV" if $type =~ /^(unsigned\s+)?long\s+(long|double)\z/;
  1788.   $entry ||= $typemap{$otype}
  1789.     || (td_is_struct($type) ? "T_OPAQUE_STRUCT" : "T_PTROBJ");
  1790.   $typemap{$otype} = $entry;
  1791.   $need_opaque = 1 if $entry eq "T_OPAQUE_STRUCT";
  1792.   return $entry;
  1793. }
  1794.  
  1795. for (@vdecls) {
  1796.   print_tievar_xsubs(\*XS, $_, $vdecl_hash{$_});
  1797. }
  1798.  
  1799. if ($opt_x) {
  1800.   for my $decl (@$fdecls_parsed) { print_decl(\*XS, $decl) }
  1801.   if ($opt_a) {
  1802.     while (my($name, $struct) = each %structs) {
  1803.       print_accessors(\*XS, $name, $struct);
  1804.     }
  1805.   }
  1806. }
  1807.  
  1808. close XS;
  1809.  
  1810. if (%types_seen) {
  1811.   my $type;
  1812.   warn "Writing $ext$modpname/typemap\n";
  1813.   open TM, ">typemap" or die "Cannot open typemap file for write: $!";
  1814.  
  1815.   for $type (sort keys %types_seen) {
  1816.     my $entry = assign_typemap_entry $type;
  1817.     print TM $type, "\t" x (5 - int((length $type)/8)), "\t$entry\n"
  1818.   }
  1819.  
  1820.   print TM <<'EOP' if $need_opaque; # Older Perls do not have correct entry
  1821. #############################################################################
  1822. INPUT
  1823. T_OPAQUE_STRUCT
  1824.     if (sv_derived_from($arg, \"${ntype}\")) {
  1825.         STRLEN len;
  1826.         char  *s = SvPV((SV*)SvRV($arg), len);
  1827.  
  1828.         if (len != sizeof($var))
  1829.         croak(\"Size %d of packed data != expected %d\",
  1830.             len, sizeof($var));
  1831.         $var = *($type *)s;
  1832.     }
  1833.     else
  1834.         croak(\"$var is not of type ${ntype}\")
  1835. #############################################################################
  1836. OUTPUT
  1837. T_OPAQUE_STRUCT
  1838.     sv_setref_pvn($arg, \"${ntype}\", (char *)&$var, sizeof($var));
  1839. EOP
  1840.  
  1841.   close TM or die "Cannot close typemap file for write: $!";
  1842. }
  1843.  
  1844. } # if( ! $opt_X )
  1845.  
  1846. warn "Writing $ext$modpname/Makefile.PL\n";
  1847. open(PL, ">Makefile.PL") || die "Can't create $ext$modpname/Makefile.PL: $!\n";
  1848.  
  1849. my $prereq_pm;
  1850.  
  1851. if ( $compat_version < 5.00702 and $new_test )
  1852. {
  1853.   $prereq_pm = q%'Test::More'  =>  0%;
  1854. }
  1855. else
  1856. {
  1857.   $prereq_pm = '';
  1858. }
  1859.  
  1860. print PL <<"END";
  1861. use $compat_version;
  1862. use ExtUtils::MakeMaker;
  1863. # See lib/ExtUtils/MakeMaker.pm for details of how to influence
  1864. # the contents of the Makefile that is written.
  1865. WriteMakefile(
  1866.     NAME              => '$module',
  1867.     VERSION_FROM      => '$modpmname', # finds \$VERSION
  1868.     PREREQ_PM         => {$prereq_pm}, # e.g., Module::Name => 1.1
  1869.     (\$] >= 5.005 ?     ## Add these new keywords supported since 5.005
  1870.       (ABSTRACT_FROM  => '$modpmname', # retrieve abstract from module
  1871.        AUTHOR         => '$author <$email>') : ()),
  1872. END
  1873. if (!$opt_X) { # print C stuff, unless XS is disabled
  1874.   $opt_F = '' unless defined $opt_F;
  1875.   my $I = (((glob '*.h') || (glob '*.hh')) ? '-I.' : '');
  1876.   my $Ihelp = ($I ? '-I. ' : '');
  1877.   my $Icomment = ($I ? '' : <<EOC);
  1878.     # Insert -I. if you add *.h files later:
  1879. EOC
  1880.  
  1881.   print PL <<END;
  1882.     LIBS              => ['$extralibs'], # e.g., '-lm'
  1883.     DEFINE            => '$opt_F', # e.g., '-DHAVE_SOMETHING'
  1884. $Icomment    INC               => '$I', # e.g., '${Ihelp}-I/usr/include/other'
  1885. END
  1886.  
  1887.   my $C = grep {$_ ne "$modfname.c"}
  1888.     (glob '*.c'), (glob '*.cc'), (glob '*.C');
  1889.   my $Cpre = ($C ? '' : '# ');
  1890.   my $Ccomment = ($C ? '' : <<EOC);
  1891.     # Un-comment this if you add C files to link with later:
  1892. EOC
  1893.  
  1894.   print PL <<END;
  1895. $Ccomment    ${Cpre}OBJECT            => '\$(O_FILES)', # link all the C files too
  1896. END
  1897. } # ' # Grr
  1898. print PL ");\n";
  1899. if (!$opt_c) {
  1900.   my $generate_code =
  1901.     WriteMakefileSnippet ( C_FILE =>       $constscfname,
  1902.                            XS_FILE =>      $constsxsfname,
  1903.                            DEFAULT_TYPE => $opt_t,
  1904.                            NAME =>         $module,
  1905.                            NAMES =>        \@const_names,
  1906.                  );
  1907.   print PL <<"END";
  1908. if  (eval {require ExtUtils::Constant; 1}) {
  1909.   # If you edit these definitions to change the constants used by this module,
  1910.   # you will need to use the generated $constscfname and $constsxsfname
  1911.   # files to replace their "fallback" counterparts before distributing your
  1912.   # changes.
  1913. $generate_code
  1914. }
  1915. else {
  1916.   use File::Copy;
  1917.   use File::Spec;
  1918.   foreach my \$file ('$constscfname', '$constsxsfname') {
  1919.     my \$fallback = File::Spec->catfile('$fallbackdirname', \$file);
  1920.     copy (\$fallback, \$file) or die "Can't copy \$fallback to \$file: \$!";
  1921.   }
  1922. }
  1923. END
  1924.  
  1925.   eval $generate_code;
  1926.   if ($@) {
  1927.     warn <<"EOM";
  1928. Attempting to test constant code in $ext$modpname/Makefile.PL:
  1929. $generate_code
  1930. __END__
  1931. gave unexpected error $@
  1932. Please report the circumstances of this bug in h2xs version $H2XS_VERSION
  1933. using the perlbug script.
  1934. EOM
  1935.   } else {
  1936.     my $fail;
  1937.  
  1938.     foreach my $file ($constscfname, $constsxsfname) {
  1939.       my $fallback = File::Spec->catfile($fallbackdirname, $file);
  1940.       if (compare($file, $fallback)) {
  1941.         warn << "EOM";
  1942. Files "$ext$modpname/$fallbackdirname/$file" and "$ext$modpname/$file" differ.
  1943. EOM
  1944.         $fail++;
  1945.       }
  1946.     }
  1947.     if ($fail) {
  1948.       warn fill ('','', <<"EOM") . "\n";
  1949. It appears that the code in $ext$modpname/Makefile.PL does not autogenerate
  1950. the files $ext$modpname/$constscfname and $ext$modpname/$constsxsfname
  1951. correctly.
  1952.  
  1953. Please report the circumstances of this bug in h2xs version $H2XS_VERSION
  1954. using the perlbug script.
  1955. EOM
  1956.     } else {
  1957.       unlink $constscfname, $constsxsfname;
  1958.     }
  1959.   }
  1960. }
  1961. close(PL) || die "Can't close $ext$modpname/Makefile.PL: $!\n";
  1962.  
  1963. # Create a simple README since this is a CPAN requirement
  1964. # and it doesnt hurt to have one
  1965. warn "Writing $ext$modpname/README\n";
  1966. open(RM, ">README") || die "Can't create $ext$modpname/README:$!\n";
  1967. my $thisyear = (gmtime)[5] + 1900;
  1968. my $rmhead = "$modpname version $TEMPLATE_VERSION";
  1969. my $rmheadeq = "=" x length($rmhead);
  1970.  
  1971. my $rm_prereq;
  1972.  
  1973. if ( $compat_version < 5.00702 and $new_test )
  1974. {
  1975.    $rm_prereq = 'Test::More';
  1976. }
  1977. else
  1978. {
  1979.    $rm_prereq = 'blah blah blah';
  1980. }
  1981.  
  1982. print RM <<_RMEND_;
  1983. $rmhead
  1984. $rmheadeq
  1985.  
  1986. The README is used to introduce the module and provide instructions on
  1987. how to install the module, any machine dependencies it may have (for
  1988. example C compilers and installed libraries) and any other information
  1989. that should be provided before the module is installed.
  1990.  
  1991. A README file is required for CPAN modules since CPAN extracts the
  1992. README file from a module distribution so that people browsing the
  1993. archive can use it get an idea of the modules uses. It is usually a
  1994. good idea to provide version information here so that people can
  1995. decide whether fixes for the module are worth downloading.
  1996.  
  1997. INSTALLATION
  1998.  
  1999. To install this module type the following:
  2000.  
  2001.    perl Makefile.PL
  2002.    make
  2003.    make test
  2004.    make install
  2005.  
  2006. DEPENDENCIES
  2007.  
  2008. This module requires these other modules and libraries:
  2009.  
  2010.   $rm_prereq
  2011.  
  2012. COPYRIGHT AND LICENCE
  2013.  
  2014. Put the correct copyright and licence information here.
  2015.  
  2016. $licence
  2017.  
  2018. _RMEND_
  2019. close(RM) || die "Can't close $ext$modpname/README: $!\n";
  2020.  
  2021. my $testdir  = "t";
  2022. my $testfile = "$testdir/$modpname.t";
  2023. unless (-d "$testdir") {
  2024.   mkdir "$testdir" or die "Cannot mkdir $testdir: $!\n";
  2025. }
  2026. warn "Writing $ext$modpname/$testfile\n";
  2027. my $tests = @const_names ? 2 : 1;
  2028.  
  2029. open EX, ">$testfile" or die "Can't create $ext$modpname/$testfile: $!\n";
  2030.  
  2031. print EX <<_END_;
  2032. # Before `make install' is performed this script should be runnable with
  2033. # `make test'. After `make install' it should work as `perl $modpname.t'
  2034.  
  2035. #########################
  2036.  
  2037. # change 'tests => $tests' to 'tests => last_test_to_print';
  2038.  
  2039. _END_
  2040.  
  2041. my $test_mod = 'Test::More';
  2042.  
  2043. if ( $old_test or ($compat_version < 5.007 and not $new_test ))
  2044. {
  2045.   my $test_mod = 'Test';
  2046.  
  2047.   print EX <<_END_;
  2048. use Test;
  2049. BEGIN { plan tests => $tests };
  2050. use $module;
  2051. ok(1); # If we made it this far, we're ok.
  2052.  
  2053. _END_
  2054.  
  2055.    if (@const_names) {
  2056.      my $const_names = join " ", @const_names;
  2057.      print EX <<'_END_';
  2058.  
  2059. my $fail;
  2060. foreach my $constname (qw(
  2061. _END_
  2062.  
  2063.      print EX wrap ("\t", "\t", $const_names);
  2064.      print EX (")) {\n");
  2065.  
  2066.      print EX <<_END_;
  2067.   next if (eval "my \\\$a = \$constname; 1");
  2068.   if (\$\@ =~ /^Your vendor has not defined $module macro \$constname/) {
  2069.     print "# pass: \$\@";
  2070.   } else {
  2071.     print "# fail: \$\@";
  2072.     \$fail = 1;    
  2073.   }
  2074. }
  2075. if (\$fail) {
  2076.   print "not ok 2\\n";
  2077. } else {
  2078.   print "ok 2\\n";
  2079. }
  2080.  
  2081. _END_
  2082.   }
  2083. }
  2084. else
  2085. {
  2086.   print EX <<_END_;
  2087. use Test::More tests => $tests;
  2088. BEGIN { use_ok('$module') };
  2089.  
  2090. _END_
  2091.  
  2092.    if (@const_names) {
  2093.      my $const_names = join " ", @const_names;
  2094.      print EX <<'_END_';
  2095.  
  2096. my $fail = 0;
  2097. foreach my $constname (qw(
  2098. _END_
  2099.  
  2100.      print EX wrap ("\t", "\t", $const_names);
  2101.      print EX (")) {\n");
  2102.  
  2103.      print EX <<_END_;
  2104.   next if (eval "my \\\$a = \$constname; 1");
  2105.   if (\$\@ =~ /^Your vendor has not defined $module macro \$constname/) {
  2106.     print "# pass: \$\@";
  2107.   } else {
  2108.     print "# fail: \$\@";
  2109.     \$fail = 1;
  2110.   }
  2111.  
  2112. }
  2113.  
  2114. ok( \$fail == 0 , 'Constants' );
  2115. _END_
  2116.   }
  2117. }
  2118.  
  2119. print EX <<_END_;
  2120. #########################
  2121.  
  2122. # Insert your test code below, the $test_mod module is use()ed here so read
  2123. # its man page ( perldoc $test_mod ) for help writing this test script.
  2124.  
  2125. _END_
  2126.  
  2127. close(EX) || die "Can't close $ext$modpname/$testfile: $!\n";
  2128.  
  2129. unless ($opt_C) {
  2130.   warn "Writing $ext$modpname/Changes\n";
  2131.   $" = ' ';
  2132.   open(EX, ">Changes") || die "Can't create $ext$modpname/Changes: $!\n";
  2133.   @ARGS = map {/[\s\"\'\`\$*?^|&<>\[\]\{\}\(\)]/ ? "'$_'" : $_} @ARGS;
  2134.   print EX <<EOP;
  2135. Revision history for Perl extension $module.
  2136.  
  2137. $TEMPLATE_VERSION  @{[scalar localtime]}
  2138. \t- original version; created by h2xs $H2XS_VERSION with options
  2139. \t\t@ARGS
  2140.  
  2141. EOP
  2142.   close(EX) || die "Can't close $ext$modpname/Changes: $!\n";
  2143. }
  2144.  
  2145. warn "Writing $ext$modpname/MANIFEST\n";
  2146. open(MANI,'>MANIFEST') or die "Can't create MANIFEST: $!";
  2147. my @files = grep { -f } (<*>, <t/*>, <$fallbackdirname/*>, <$modpmdir/*>);
  2148. if (!@files) {
  2149.   eval {opendir(D,'.');};
  2150.   unless ($@) { @files = readdir(D); closedir(D); }
  2151. }
  2152. if (!@files) { @files = map {chomp && $_} `ls`; }
  2153. if ($^O eq 'VMS') {
  2154.   foreach (@files) {
  2155.     # Clip trailing '.' for portability -- non-VMS OSs don't expect it
  2156.     s%\.$%%;
  2157.     # Fix up for case-sensitive file systems
  2158.     s/$modfname/$modfname/i && next;
  2159.     $_ = "\U$_" if $_ eq 'manifest' or $_ eq 'changes';
  2160.     $_ = 'Makefile.PL' if $_ eq 'makefile.pl';
  2161.   }
  2162. }
  2163. print MANI join("\n",@files), "\n";
  2164. close MANI;
  2165.