home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December (Special) / PCWorld_2005-12_Special_cd.bin / Bezpecnost / lsti / lsti.exe / framework-2.5.exe / h2xs < prev    next >
Text File  |  2005-01-27  |  60KB  |  2,169 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;
  672. %const_xsub = map { $_,1 } split(/,+/, $opt_s) if $opt_s;
  673.  
  674. my $extralibs = '';
  675.  
  676. my @path_h;
  677.  
  678. while (my $arg = shift) {
  679.     if ($arg =~ /^-l/i) {
  680.         $extralibs .= "$arg ";
  681.         next;
  682.     }
  683.     last if $extralibs;
  684.     push(@path_h, $arg);
  685. }
  686.  
  687. usage "Must supply header file or module name\n"
  688.         unless (@path_h or $opt_n);
  689.  
  690. my $fmask;
  691. my $tmask;
  692.  
  693. $fmask = qr{$opt_M} if defined $opt_M;
  694. $tmask = qr{$opt_o} if defined $opt_o;
  695. my $tmask_all = $tmask && $opt_o eq '.';
  696.  
  697. if ($opt_x) {
  698.   eval {require C::Scan; 1}
  699.     or die <<EOD;
  700. C::Scan required if you use -x option.
  701. To install C::Scan, execute
  702.    perl -MCPAN -e "install C::Scan"
  703. EOD
  704.   unless ($tmask_all) {
  705.     $C::Scan::VERSION >= 0.70
  706.       or die <<EOD;
  707. C::Scan v. 0.70 or later required unless you use -o . option.
  708. You have version $C::Scan::VERSION installed as $INC{'C/Scan.pm'}.
  709. To install C::Scan, execute
  710.    perl -MCPAN -e "install C::Scan"
  711. EOD
  712.   }
  713.   if (($opt_m || $opt_a) && $C::Scan::VERSION < 0.73) {
  714.     die <<EOD;
  715. C::Scan v. 0.73 or later required to use -m or -a options.
  716. You have version $C::Scan::VERSION installed as $INC{'C/Scan.pm'}.
  717. To install C::Scan, execute
  718.    perl -MCPAN -e "install C::Scan"
  719. EOD
  720.   }
  721. }
  722. elsif ($opt_o or $opt_F) {
  723.   warn <<EOD if $opt_o;
  724. Option -o does not make sense without -x.
  725. EOD
  726.   warn <<EOD if $opt_F and $opt_X ;
  727. Option -F does not make sense with -X.
  728. EOD
  729. }
  730.  
  731. my @path_h_ini = @path_h;
  732. my ($name, %fullpath, %prefix, %seen_define, %prefixless, %const_names);
  733.  
  734. my $module = $opt_n;
  735.  
  736. if( @path_h ){
  737.     use File::Spec;
  738.     my @paths;
  739.     my $pre_sub_tri_graphs = 1;
  740.     if ($^O eq 'VMS') {  # Consider overrides of default location
  741.       # XXXX This is not equivalent to what the older version did:
  742.       #        it was looking at $hadsys header-file per header-file...
  743.       my($hadsys) = grep s!^sys/!!i , @path_h;
  744.       @paths = qw( Sys$Library VAXC$Include );
  745.       push @paths, ($hadsys ? 'GNU_CC_Include[vms]' : 'GNU_CC_Include[000000]');
  746.       push @paths, qw( DECC$Library_Include DECC$System_Include );
  747.     }
  748.     else {
  749.       @paths = (File::Spec->curdir(), $Config{usrinc},
  750.         (split ' ', $Config{locincpth}), '/usr/include');
  751.     }
  752.     foreach my $path_h (@path_h) {
  753.         $name ||= $path_h;
  754.     $module ||= do {
  755.       $name =~ s/\.h$//;
  756.       if ( $name !~ /::/ ) {
  757.     $name =~ s#^.*/##;
  758.     $name = "\u$name";
  759.       }
  760.       $name;
  761.     };
  762.  
  763.     if( $path_h =~ s#::#/#g && $opt_n ){
  764.     warn "Nesting of headerfile ignored with -n\n";
  765.     }
  766.     $path_h .= ".h" unless $path_h =~ /\.h$/;
  767.     my $fullpath = $path_h;
  768.     $path_h =~ s/,.*$// if $opt_x;
  769.     $fullpath{$path_h} = $fullpath;
  770.  
  771.     # Minor trickery: we can't chdir() before we processed the headers
  772.     # (so know the name of the extension), but the header may be in the
  773.     # extension directory...
  774.     my $tmp_path_h = $path_h;
  775.     my $rel_path_h = $path_h;
  776.     my @dirs = @paths;
  777.     if (not -f $path_h) {
  778.       my $found;
  779.       for my $dir (@paths) {
  780.     $found++, last
  781.       if -f ($path_h = File::Spec->catfile($dir, $tmp_path_h));
  782.       }
  783.       if ($found) {
  784.     $rel_path_h = $path_h;
  785.     $fullpath{$path_h} = $fullpath;
  786.       } else {
  787.     (my $epath = $module) =~ s,::,/,g;
  788.     $epath = File::Spec->catdir('ext', $epath) if -d 'ext';
  789.     $rel_path_h = File::Spec->catfile($epath, $tmp_path_h);
  790.     $path_h = $tmp_path_h;    # Used during -x
  791.     push @dirs, $epath;
  792.       }
  793.     }
  794.  
  795.     if (!$opt_c) {
  796.       die "Can't find $tmp_path_h in @dirs\n"
  797.     if ( ! $opt_f && ! -f "$rel_path_h" );
  798.       # Scan the header file (we should deal with nested header files)
  799.       # Record the names of simple #define constants into const_names
  800.             # Function prototypes are processed below.
  801.       open(CH, "<$rel_path_h") || die "Can't open $rel_path_h: $!\n";
  802.     defines:
  803.       while (<CH>) {
  804.     if ($pre_sub_tri_graphs) {
  805.         # Preprocess all tri-graphs
  806.         # including things stuck in quoted string constants.
  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.         s/\?\?>/}/g;                         # | ??>|  }|
  816.     }
  817.     if (/^[ \t]*#[ \t]*define\s+([\$\w]+)\b(?!\()\s*(?=[^"\s])(.*)/) {
  818.         my $def = $1;
  819.         my $rest = $2;
  820.         $rest =~ s!/\*.*?(\*/|\n)|//.*!!g; # Remove comments
  821.         $rest =~ s/^\s+//;
  822.         $rest =~ s/\s+$//;
  823.         # Cannot do: (-1) and ((LHANDLE)3) are OK:
  824.         #print("Skip non-wordy $def => $rest\n"),
  825.         #  next defines if $rest =~ /[^\w\$]/;
  826.         if ($rest =~ /"/) {
  827.           print("Skip stringy $def => $rest\n") if $opt_d;
  828.           next defines;
  829.         }
  830.         print "Matched $_ ($def)\n" if $opt_d;
  831.         $seen_define{$def} = $rest;
  832.         $_ = $def;
  833.         next if /^_.*_h_*$/i; # special case, but for what?
  834.         if (defined $opt_p) {
  835.           if (!/^$opt_p(\d)/) {
  836.         ++$prefix{$_} if s/^$opt_p//;
  837.           }
  838.           else {
  839.         warn "can't remove $opt_p prefix from '$_'!\n";
  840.           }
  841.         }
  842.         $prefixless{$def} = $_;
  843.         if (!$fmask or /$fmask/) {
  844.         print "... Passes mask of -M.\n" if $opt_d and $fmask;
  845.         $const_names{$_}++;
  846.         }
  847.       }
  848.       }
  849.       if (defined $opt_e and !$opt_e) {
  850.         close(CH);
  851.       }
  852.       else {
  853.     # Work from miniperl too - on "normal" systems
  854.         my $SEEK_SET = eval 'use Fcntl qw/SEEK_SET/; SEEK_SET' or 0;
  855.         seek CH, 0, $SEEK_SET;
  856.         my $src = do { local $/; <CH> };
  857.         close CH;
  858.         no warnings 'uninitialized';
  859.  
  860.         # Remove C and C++ comments
  861.         $src =~ s#/\*[^*]*\*+([^/*][^*]*\*+)*/|("(\\.|[^"\\])*"|'(\\.|[^'\\])*'|.[^/"'\\]*)#$2#gs;
  862.  
  863.         while ($src =~ /(\benum\s*([\w_]*)\s*\{\s([\s\w=,]+)\})/gsc) {
  864.             my ($enum_name, $enum_body) =
  865.                 $1 =~ /enum\s*([\w_]*)\s*\{\s([\s\w=,]+)\}/gs;
  866.             # skip enums matching $opt_e
  867.             next if $opt_e && $enum_name =~ /$opt_e/;
  868.             my $val = 0;
  869.             for my $item (split /,/, $enum_body) {
  870.                 my ($key, $declared_val) = $item =~ /(\w+)\s*=\s*(.*)/;
  871.                 $val = length($declared_val) ? $declared_val : 1 + $val;
  872.                 $seen_define{$key} = $declared_val;
  873.                 $const_names{$key}++;
  874.             }
  875.         } # while (...)
  876.       } # if (!defined $opt_e or $opt_e)
  877.     }
  878.     }
  879. }
  880.  
  881. # Save current directory so that C::Scan can use it
  882. my $cwd = File::Spec->rel2abs( File::Spec->curdir );
  883.  
  884. # As Ilya suggested, use a name that contains - and then it can't clash with
  885. # the names of any packages. A directory 'fallback' will clash with any
  886. # new pragmata down the fallback:: tree, but that seems unlikely.
  887. my $constscfname = 'const-c.inc';
  888. my $constsxsfname = 'const-xs.inc';
  889. my $fallbackdirname = 'fallback';
  890.  
  891. my $ext = chdir 'ext' ? 'ext/' : '';
  892.  
  893. my @modparts  = split(/::/,$module);
  894. my $modpname  = join('-', @modparts);
  895. my $modfname  = pop @modparts;
  896. my $modpmdir  = join '/', 'lib', @modparts;
  897. my $modpmname = join '/', $modpmdir, $modfname.'.pm';
  898.  
  899. if ($opt_O) {
  900.     warn "Overwriting existing $ext$modpname!!!\n" if -e $modpname;
  901. }
  902. else {
  903.     die "Won't overwrite existing $ext$modpname\n" if -e $modpname;
  904. }
  905. -d "$modpname"   || mkpath([$modpname], 0, 0775);
  906. chdir($modpname) || die "Can't chdir $ext$modpname: $!\n";
  907.  
  908. my %types_seen;
  909. my %std_types;
  910. my $fdecls = [];
  911. my $fdecls_parsed = [];
  912. my $typedef_rex;
  913. my %typedefs_pre;
  914. my %known_fnames;
  915. my %structs;
  916.  
  917. my @fnames;
  918. my @fnames_no_prefix;
  919. my %vdecl_hash;
  920. my @vdecls;
  921.  
  922. if( ! $opt_X ){  # use XS, unless it was disabled
  923.   unless ($skip_ppport) {
  924.     require Devel::PPPort;
  925.     warn "Writing $ext$modpname/ppport.h\n";
  926.     Devel::PPPort::WriteFile('ppport.h')
  927.         || die "Can't create $ext$modpname/ppport.h: $!\n";
  928.   }
  929.   open(XS, ">$modfname.xs") || die "Can't create $ext$modpname/$modfname.xs: $!\n";
  930.   if ($opt_x) {
  931.     warn "Scanning typemaps...\n";
  932.     get_typemap();
  933.     my @td;
  934.     my @good_td;
  935.     my $addflags = $opt_F || '';
  936.  
  937.     foreach my $filename (@path_h) {
  938.       my $c;
  939.       my $filter;
  940.  
  941.       if ($fullpath{$filename} =~ /,/) {
  942.     $filename = $`;
  943.     $filter = $';
  944.       }
  945.       warn "Scanning $filename for functions...\n";
  946.       my @styles = $Config{gccversion} ? qw(C++ C9X GNU) : qw(C++ C9X);
  947.       $c = new C::Scan 'filename' => $filename, 'filename_filter' => $filter,
  948.     'add_cppflags' => $addflags, 'c_styles' => \@styles;
  949.       $c->set('includeDirs' => ["$Config::Config{archlib}/CORE", $cwd]);
  950.  
  951.       $c->get('keywords')->{'__restrict'} = 1;
  952.  
  953.       push @$fdecls_parsed, @{ $c->get('parsed_fdecls') };
  954.       push(@$fdecls, @{$c->get('fdecls')});
  955.  
  956.       push @td, @{$c->get('typedefs_maybe')};
  957.       if ($opt_a) {
  958.     my $structs = $c->get('typedef_structs');
  959.     @structs{keys %$structs} = values %$structs;
  960.       }
  961.  
  962.       if ($opt_m) {
  963.     %vdecl_hash = %{ $c->get('vdecl_hash') };
  964.     @vdecls = sort keys %vdecl_hash;
  965.     for (local $_ = 0; $_ < @vdecls; ++$_) {
  966.       my $var = $vdecls[$_];
  967.       my($type, $post) = @{ $vdecl_hash{$var} };
  968.       if (defined $post) {
  969.         warn "Can't handle variable '$type $var $post', skipping.\n";
  970.         splice @vdecls, $_, 1;
  971.         redo;
  972.       }
  973.       $type = normalize_type($type);
  974.       $vdecl_hash{$var} = $type;
  975.     }
  976.       }
  977.  
  978.       unless ($tmask_all) {
  979.     warn "Scanning $filename for typedefs...\n";
  980.     my $td = $c->get('typedef_hash');
  981.     # eval {require 'dumpvar.pl'; ::dumpValue($td)} or warn $@ if $opt_d;
  982.     my @f_good_td = grep $td->{$_}[1] eq '', keys %$td;
  983.     push @good_td, @f_good_td;
  984.     @typedefs_pre{@f_good_td}  = map $_->[0], @$td{@f_good_td};
  985.       }
  986.     }
  987.     { local $" = '|';
  988.       $typedef_rex = qr(\b(?<!struct )(?:@good_td)\b) if @good_td;
  989.     }
  990.     %known_fnames = map @$_[1,3], @$fdecls_parsed; # [1,3] is NAME, FULLTEXT
  991.     if ($fmask) {
  992.       my @good;
  993.       for my $i (0..$#$fdecls_parsed) {
  994.     next unless $fdecls_parsed->[$i][1] =~ /$fmask/; # [1] is NAME
  995.     push @good, $i;
  996.     print "... Function $fdecls_parsed->[$i][1] passes -M mask.\n"
  997.       if $opt_d;
  998.       }
  999.       $fdecls = [@$fdecls[@good]];
  1000.       $fdecls_parsed = [@$fdecls_parsed[@good]];
  1001.     }
  1002.     @fnames = sort map $_->[1], @$fdecls_parsed; # 1 is NAME
  1003.     # Sort declarations:
  1004.     {
  1005.       my %h = map( ($_->[1], $_), @$fdecls_parsed);
  1006.       $fdecls_parsed = [ @h{@fnames} ];
  1007.     }
  1008.     @fnames_no_prefix = @fnames;
  1009.     @fnames_no_prefix
  1010.       = sort map { ++$prefix{$_} if s/^$opt_p(?!\d)//; $_ } @fnames_no_prefix
  1011.          if defined $opt_p;
  1012.     # Remove macros which expand to typedefs
  1013.     print "Typedefs are @td.\n" if $opt_d;
  1014.     my %td = map {($_, $_)} @td;
  1015.     # Add some other possible but meaningless values for macros
  1016.     for my $k (qw(char double float int long short unsigned signed void)) {
  1017.       $td{"$_$k"} = "$_$k" for ('', 'signed ', 'unsigned ');
  1018.     }
  1019.     # eval {require 'dumpvar.pl'; ::dumpValue( [\@td, \%td] ); 1} or warn $@;
  1020.     my $n = 0;
  1021.     my %bad_macs;
  1022.     while (keys %td > $n) {
  1023.       $n = keys %td;
  1024.       my ($k, $v);
  1025.       while (($k, $v) = each %seen_define) {
  1026.     # print("found '$k'=>'$v'\n"),
  1027.     $bad_macs{$k} = $td{$k} = $td{$v} if exists $td{$v};
  1028.       }
  1029.     }
  1030.     # Now %bad_macs contains names of bad macros
  1031.     for my $k (keys %bad_macs) {
  1032.       delete $const_names{$prefixless{$k}};
  1033.       print "Ignoring macro $k which expands to a typedef name '$bad_macs{$k}'\n" if $opt_d;
  1034.     }
  1035.   }
  1036. }
  1037. my @const_names = sort keys %const_names;
  1038.  
  1039. -d $modpmdir || mkpath([$modpmdir], 0, 0775);
  1040. open(PM, ">$modpmname") || die "Can't create $ext$modpname/$modpmname: $!\n";
  1041.  
  1042. $" = "\n\t";
  1043. warn "Writing $ext$modpname/$modpmname\n";
  1044.  
  1045. print PM <<"END";
  1046. package $module;
  1047.  
  1048. use $compat_version;
  1049. END
  1050.  
  1051. print PM <<"END" unless $skip_strict;
  1052. use strict;
  1053. END
  1054.  
  1055. print PM "use warnings;\n" unless $skip_warnings or $compat_version < 5.006;
  1056.  
  1057. unless( $opt_X || $opt_c || $opt_A ){
  1058.     # we'll have an AUTOLOAD(), and it will have $AUTOLOAD and
  1059.     # will want Carp.
  1060.     print PM <<'END';
  1061. use Carp;
  1062. END
  1063. }
  1064.  
  1065. print PM <<'END' unless $skip_exporter;
  1066.  
  1067. require Exporter;
  1068. END
  1069.  
  1070. my $use_Dyna = (not $opt_X and $compat_version < 5.006);
  1071. print PM <<"END" if $use_Dyna;  # use DynaLoader, unless XS was disabled
  1072. require DynaLoader;
  1073. END
  1074.  
  1075.  
  1076. # Are we using AutoLoader or not?
  1077. unless ($skip_autoloader) { # no autoloader whatsoever.
  1078.     unless ($opt_c) { # we're doing the AUTOLOAD
  1079.         print PM "use AutoLoader;\n";
  1080.     }
  1081.     else {
  1082.         print PM "use AutoLoader qw(AUTOLOAD);\n"
  1083.     }
  1084. }
  1085.  
  1086. if ( $compat_version < 5.006 ) {
  1087.     my $vars = '$VERSION @ISA';
  1088.     $vars .= ' @EXPORT @EXPORT_OK %EXPORT_TAGS' unless $skip_exporter;
  1089.     $vars .= ' $AUTOLOAD' unless $opt_X || $opt_c || $opt_A;
  1090.     $vars .= ' $XS_VERSION' if $opt_B && !$opt_X;
  1091.     print PM "use vars qw($vars);";
  1092. }
  1093.  
  1094. # Determine @ISA.
  1095. my @modISA;
  1096. push @modISA, 'Exporter'    unless $skip_exporter;
  1097. push @modISA, 'DynaLoader'     if $use_Dyna;  # no XS
  1098. my $myISA = "our \@ISA = qw(@modISA);";
  1099. $myISA =~ s/^our // if $compat_version < 5.006;
  1100.  
  1101. print PM "\n$myISA\n\n";
  1102.  
  1103. my @exported_names = (@const_names, @fnames_no_prefix, map '$'.$_, @vdecls);
  1104.  
  1105. my $tmp='';
  1106. $tmp .= <<"END" unless $skip_exporter;
  1107. # Items to export into callers namespace by default. Note: do not export
  1108. # names by default without a very good reason. Use EXPORT_OK instead.
  1109. # Do not simply export all your public functions/methods/constants.
  1110.  
  1111. # This allows declaration    use $module ':all';
  1112. # If you do not need this, moving things directly into \@EXPORT or \@EXPORT_OK
  1113. # will save memory.
  1114. our %EXPORT_TAGS = ( 'all' => [ qw(
  1115.     @exported_names
  1116. ) ] );
  1117.  
  1118. our \@EXPORT_OK = ( \@{ \$EXPORT_TAGS{'all'} } );
  1119.  
  1120. our \@EXPORT = qw(
  1121.     @const_names
  1122. );
  1123.  
  1124. END
  1125.  
  1126. $tmp .= "our \$VERSION = '$TEMPLATE_VERSION';\n";
  1127. if ($opt_B) {
  1128.     $tmp .= "our \$XS_VERSION = \$VERSION;\n" unless $opt_X;
  1129.     $tmp .= "\$VERSION = eval \$VERSION;  # see L<perlmodstyle>\n";
  1130. }
  1131. $tmp .= "\n";
  1132.  
  1133. $tmp =~ s/^our //mg if $compat_version < 5.006;
  1134. print PM $tmp;
  1135.  
  1136. if (@vdecls) {
  1137.     printf PM "our(@{[ join ', ', map '$'.$_, @vdecls ]});\n\n";
  1138. }
  1139.  
  1140.  
  1141. print PM autoload ($module, $compat_version) unless $opt_c or $opt_X;
  1142.  
  1143. if( ! $opt_X ){ # print bootstrap, unless XS is disabled
  1144.   if ($use_Dyna) {
  1145.     $tmp = <<"END";
  1146. bootstrap $module \$VERSION;
  1147. END
  1148.   } else {
  1149.     $tmp = <<"END";
  1150. require XSLoader;
  1151. XSLoader::load('$module', \$VERSION);
  1152. END
  1153.   }
  1154.   $tmp =~ s:\$VERSION:\$XS_VERSION:g if $opt_B;
  1155.   print PM $tmp;
  1156. }
  1157.  
  1158. # tying the variables can happen only after bootstrap
  1159. if (@vdecls) {
  1160.     printf PM <<END;
  1161. {
  1162. @{[ join "\n", map "    _tievar_$_(\$$_);", @vdecls ]}
  1163. }
  1164.  
  1165. END
  1166. }
  1167.  
  1168. my $after;
  1169. if( $opt_P ){ # if POD is disabled
  1170.     $after = '__END__';
  1171. }
  1172. else {
  1173.     $after = '=cut';
  1174. }
  1175.  
  1176. print PM <<"END";
  1177.  
  1178. # Preloaded methods go here.
  1179. END
  1180.  
  1181. print PM <<"END" unless $opt_A;
  1182.  
  1183. # Autoload methods go after $after, and are processed by the autosplit program.
  1184. END
  1185.  
  1186. print PM <<"END";
  1187.  
  1188. 1;
  1189. __END__
  1190. END
  1191.  
  1192. my ($email,$author,$licence);
  1193.  
  1194. eval {
  1195.        my $username;
  1196.        ($username,$author) = (getpwuid($>))[0,6];
  1197.        if (defined $username && defined $author) {
  1198.        $author =~ s/,.*$//; # in case of sub fields
  1199.        my $domain = $Config{'mydomain'};
  1200.        $domain =~ s/^\.//;
  1201.        $email = "$username\@$domain";
  1202.        }
  1203.      };
  1204.  
  1205. $author ||= "A. U. Thor";
  1206. $email  ||= 'a.u.thor@a.galaxy.far.far.away';
  1207.  
  1208. $licence = sprintf << "DEFAULT", $^V;
  1209. Copyright (C) ${\(1900 + (localtime) [5])} by $author
  1210.  
  1211. This library is free software; you can redistribute it and/or modify
  1212. it under the same terms as Perl itself, either Perl version %vd or,
  1213. at your option, any later version of Perl 5 you may have available.
  1214. DEFAULT
  1215.  
  1216. my $revhist = '';
  1217. $revhist = <<EOT if $opt_C;
  1218. #
  1219. #=head1 HISTORY
  1220. #
  1221. #=over 8
  1222. #
  1223. #=item $TEMPLATE_VERSION
  1224. #
  1225. #Original version; created by h2xs $H2XS_VERSION with options
  1226. #
  1227. #  @ARGS
  1228. #
  1229. #=back
  1230. #
  1231. EOT
  1232.  
  1233. my $exp_doc = $skip_exporter ? '' : <<EOD;
  1234. #
  1235. #=head2 EXPORT
  1236. #
  1237. #None by default.
  1238. #
  1239. EOD
  1240.  
  1241. if (@const_names and not $opt_P) {
  1242.   $exp_doc .= <<EOD unless $skip_exporter;
  1243. #=head2 Exportable constants
  1244. #
  1245. #  @{[join "\n  ", @const_names]}
  1246. #
  1247. EOD
  1248. }
  1249.  
  1250. if (defined $fdecls and @$fdecls and not $opt_P) {
  1251.   $exp_doc .= <<EOD unless $skip_exporter;
  1252. #=head2 Exportable functions
  1253. #
  1254. EOD
  1255.  
  1256. #  $exp_doc .= <<EOD if $opt_p;
  1257. #When accessing these functions from Perl, prefix C<$opt_p> should be removed.
  1258. #
  1259. #EOD
  1260.   $exp_doc .= <<EOD unless $skip_exporter;
  1261. #  @{[join "\n  ", @known_fnames{@fnames}]}
  1262. #
  1263. EOD
  1264. }
  1265.  
  1266. my $meth_doc = '';
  1267.  
  1268. if ($opt_x && $opt_a) {
  1269.   my($name, $struct);
  1270.   $meth_doc .= accessor_docs($name, $struct)
  1271.     while ($name, $struct) = each %structs;
  1272. }
  1273.  
  1274. # Prefix the default licence with hash symbols.
  1275. # Is this just cargo cult - it seems that the first thing that happens to this
  1276. # block is that all the hashes are then s///g out.
  1277. my $licence_hash = $licence;
  1278. $licence_hash =~ s/^/#/gm;
  1279.  
  1280. my $pod;
  1281. $pod = <<"END" unless $opt_P;
  1282. ## Below is stub documentation for your module. You'd better edit it!
  1283. #
  1284. #=head1 NAME
  1285. #
  1286. #$module - Perl extension for blah blah blah
  1287. #
  1288. #=head1 SYNOPSIS
  1289. #
  1290. #  use $module;
  1291. #  blah blah blah
  1292. #
  1293. #=head1 DESCRIPTION
  1294. #
  1295. #Stub documentation for $module, created by h2xs. It looks like the
  1296. #author of the extension was negligent enough to leave the stub
  1297. #unedited.
  1298. #
  1299. #Blah blah blah.
  1300. $exp_doc$meth_doc$revhist
  1301. #
  1302. #=head1 SEE ALSO
  1303. #
  1304. #Mention other useful documentation such as the documentation of
  1305. #related modules or operating system documentation (such as man pages
  1306. #in UNIX), or any relevant external documentation such as RFCs or
  1307. #standards.
  1308. #
  1309. #If you have a mailing list set up for your module, mention it here.
  1310. #
  1311. #If you have a web site set up for your module, mention it here.
  1312. #
  1313. #=head1 AUTHOR
  1314. #
  1315. #$author, E<lt>${email}E<gt>
  1316. #
  1317. #=head1 COPYRIGHT AND LICENSE
  1318. #
  1319. $licence_hash
  1320. #
  1321. #=cut
  1322. END
  1323.  
  1324. $pod =~ s/^\#//gm unless $opt_P;
  1325. print PM $pod unless $opt_P;
  1326.  
  1327. close PM;
  1328.  
  1329.  
  1330. if( ! $opt_X ){ # print XS, unless it is disabled
  1331. warn "Writing $ext$modpname/$modfname.xs\n";
  1332.  
  1333. print XS <<"END";
  1334. #include "EXTERN.h"
  1335. #include "perl.h"
  1336. #include "XSUB.h"
  1337.  
  1338. END
  1339.  
  1340. print XS <<"END" unless $skip_ppport;
  1341. #include "ppport.h"
  1342.  
  1343. END
  1344.  
  1345. if( @path_h ){
  1346.     foreach my $path_h (@path_h_ini) {
  1347.     my($h) = $path_h;
  1348.     $h =~ s#^/usr/include/##;
  1349.     if ($^O eq 'VMS') { $h =~ s#.*vms\]#sys/# or $h =~ s#.*[:>\]]##; }
  1350.         print XS qq{#include <$h>\n};
  1351.     }
  1352.     print XS "\n";
  1353. }
  1354.  
  1355. print XS <<"END" if $opt_g;
  1356.  
  1357. /* Global Data */
  1358.  
  1359. #define MY_CXT_KEY "${module}::_guts" XS_VERSION
  1360.  
  1361. typedef struct {
  1362.     /* Put Global Data in here */
  1363.     int dummy;        /* you can access this elsewhere as MY_CXT.dummy */
  1364. } my_cxt_t;
  1365.  
  1366. START_MY_CXT
  1367.  
  1368. END
  1369.  
  1370. my %pointer_typedefs;
  1371. my %struct_typedefs;
  1372.  
  1373. sub td_is_pointer {
  1374.   my $type = shift;
  1375.   my $out = $pointer_typedefs{$type};
  1376.   return $out if defined $out;
  1377.   my $otype = $type;
  1378.   $out = ($type =~ /\*$/);
  1379.   # This converts only the guys which do not have trailing part in the typedef
  1380.   if (not $out
  1381.       and $typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1382.     $type = normalize_type($type);
  1383.     print "Is-Pointer: Type mutation via typedefs: $otype ==> $type\n"
  1384.       if $opt_d;
  1385.     $out = td_is_pointer($type);
  1386.   }
  1387.   return ($pointer_typedefs{$otype} = $out);
  1388. }
  1389.  
  1390. sub td_is_struct {
  1391.   my $type = shift;
  1392.   my $out = $struct_typedefs{$type};
  1393.   return $out if defined $out;
  1394.   my $otype = $type;
  1395.   $out = ($type =~ /^(struct|union)\b/) && !td_is_pointer($type);
  1396.   # This converts only the guys which do not have trailing part in the typedef
  1397.   if (not $out
  1398.       and $typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1399.     $type = normalize_type($type);
  1400.     print "Is-Struct: Type mutation via typedefs: $otype ==> $type\n"
  1401.       if $opt_d;
  1402.     $out = td_is_struct($type);
  1403.   }
  1404.   return ($struct_typedefs{$otype} = $out);
  1405. }
  1406.  
  1407. print_tievar_subs(\*XS, $_, $vdecl_hash{$_}) for @vdecls;
  1408.  
  1409. if( ! $opt_c ) {
  1410.   # We write the "sample" files used when this module is built by perl without
  1411.   # ExtUtils::Constant.
  1412.   # h2xs will later check that these are the same as those generated by the
  1413.   # code embedded into Makefile.PL
  1414.   unless (-d $fallbackdirname) {
  1415.     mkdir "$fallbackdirname" or die "Cannot mkdir $fallbackdirname: $!\n";
  1416.   }
  1417.   warn "Writing $ext$modpname/$fallbackdirname/$constscfname\n";
  1418.   warn "Writing $ext$modpname/$fallbackdirname/$constsxsfname\n";
  1419.   my $cfallback = File::Spec->catfile($fallbackdirname, $constscfname);
  1420.   my $xsfallback = File::Spec->catfile($fallbackdirname, $constsxsfname);
  1421.   WriteConstants ( C_FILE =>       $cfallback,
  1422.                    XS_FILE =>      $xsfallback,
  1423.                    DEFAULT_TYPE => $opt_t,
  1424.                    NAME =>         $module,
  1425.                    NAMES =>        \@const_names,
  1426.                  );
  1427.   print XS "#include \"$constscfname\"\n";
  1428. }
  1429.  
  1430.  
  1431. my $prefix = defined $opt_p ? "PREFIX = $opt_p" : '';
  1432.  
  1433. # Now switch from C to XS by issuing the first MODULE declaration:
  1434. print XS <<"END";
  1435.  
  1436. MODULE = $module        PACKAGE = $module        $prefix
  1437.  
  1438. END
  1439.  
  1440. # If a constant() function was #included then output a corresponding
  1441. # XS declaration:
  1442. print XS "INCLUDE: $constsxsfname\n" unless $opt_c;
  1443.  
  1444. print XS <<"END" if $opt_g;
  1445.  
  1446. BOOT:
  1447. {
  1448.     MY_CXT_INIT;
  1449.     /* If any of the fields in the my_cxt_t struct need
  1450.        to be initialised, do it here.
  1451.      */
  1452. }
  1453.  
  1454. END
  1455.  
  1456. foreach (sort keys %const_xsub) {
  1457.     print XS <<"END";
  1458. char *
  1459. $_()
  1460.  
  1461.     CODE:
  1462. #ifdef $_
  1463.     RETVAL = $_;
  1464. #else
  1465.     croak("Your vendor has not defined the $module macro $_");
  1466. #endif
  1467.  
  1468.     OUTPUT:
  1469.     RETVAL
  1470.  
  1471. END
  1472. }
  1473.  
  1474. my %seen_decl;
  1475. my %typemap;
  1476.  
  1477. sub print_decl {
  1478.   my $fh = shift;
  1479.   my $decl = shift;
  1480.   my ($type, $name, $args) = @$decl;
  1481.   return if $seen_decl{$name}++; # Need to do the same for docs as well?
  1482.  
  1483.   my @argnames = map {$_->[1]} @$args;
  1484.   my @argtypes = map { normalize_type( $_->[0], 1 ) } @$args;
  1485.   if ($opt_k) {
  1486.     s/^\s*const\b\s*// for @argtypes;
  1487.   }
  1488.   my @argarrays = map { $_->[4] || '' } @$args;
  1489.   my $numargs = @$args;
  1490.   if ($numargs and $argtypes[-1] eq '...') {
  1491.     $numargs--;
  1492.     $argnames[-1] = '...';
  1493.   }
  1494.   local $" = ', ';
  1495.   $type = normalize_type($type, 1);
  1496.  
  1497.   print $fh <<"EOP";
  1498.  
  1499. $type
  1500. $name(@argnames)
  1501. EOP
  1502.  
  1503.   for my $arg (0 .. $numargs - 1) {
  1504.     print $fh <<"EOP";
  1505.     $argtypes[$arg]    $argnames[$arg]$argarrays[$arg]
  1506. EOP
  1507.   }
  1508. }
  1509.  
  1510. sub print_tievar_subs {
  1511.   my($fh, $name, $type) = @_;
  1512.   print $fh <<END;
  1513. I32
  1514. _get_$name(IV index, SV *sv) {
  1515.     dSP;
  1516.     PUSHMARK(SP);
  1517.     XPUSHs(sv);
  1518.     PUTBACK;
  1519.     (void)call_pv("$module\::_get_$name", G_DISCARD);
  1520.     return (I32)0;
  1521. }
  1522.  
  1523. I32
  1524. _set_$name(IV index, SV *sv) {
  1525.     dSP;
  1526.     PUSHMARK(SP);
  1527.     XPUSHs(sv);
  1528.     PUTBACK;
  1529.     (void)call_pv("$module\::_set_$name", G_DISCARD);
  1530.     return (I32)0;
  1531. }
  1532.  
  1533. END
  1534. }
  1535.  
  1536. sub print_tievar_xsubs {
  1537.   my($fh, $name, $type) = @_;
  1538.   print $fh <<END;
  1539. void
  1540. _tievar_$name(sv)
  1541.     SV* sv
  1542.     PREINIT:
  1543.     struct ufuncs uf;
  1544.     CODE:
  1545.     uf.uf_val = &_get_$name;
  1546.     uf.uf_set = &_set_$name;
  1547.     uf.uf_index = (IV)&_get_$name;
  1548.     sv_magic(sv, 0, 'U', (char*)&uf, sizeof(uf));
  1549.  
  1550. void
  1551. _get_$name(THIS)
  1552.     $type THIS = NO_INIT
  1553.     CODE:
  1554.     THIS = $name;
  1555.     OUTPUT:
  1556.     SETMAGIC: DISABLE
  1557.     THIS
  1558.  
  1559. void
  1560. _set_$name(THIS)
  1561.     $type THIS
  1562.     CODE:
  1563.     $name = THIS;
  1564.  
  1565. END
  1566. }
  1567.  
  1568. sub print_accessors {
  1569.   my($fh, $name, $struct) = @_;
  1570.   return unless defined $struct && $name !~ /\s|_ANON/;
  1571.   $name = normalize_type($name);
  1572.   my $ptrname = normalize_type("$name *");
  1573.   print $fh <<"EOF";
  1574.  
  1575. MODULE = $module        PACKAGE = ${name}        $prefix
  1576.  
  1577. $name *
  1578. _to_ptr(THIS)
  1579.     $name THIS = NO_INIT
  1580.     PROTOTYPE: \$
  1581.     CODE:
  1582.     if (sv_derived_from(ST(0), "$name")) {
  1583.         STRLEN len;
  1584.         char *s = SvPV((SV*)SvRV(ST(0)), len);
  1585.         if (len != sizeof(THIS))
  1586.         croak("Size \%d of packed data != expected \%d",
  1587.             len, sizeof(THIS));
  1588.         RETVAL = ($name *)s;
  1589.     }
  1590.     else
  1591.         croak("THIS is not of type $name");
  1592.     OUTPUT:
  1593.     RETVAL
  1594.  
  1595. $name
  1596. new(CLASS)
  1597.     char *CLASS = NO_INIT
  1598.     PROTOTYPE: \$
  1599.     CODE:
  1600.     Zero((void*)&RETVAL, sizeof(RETVAL), char);
  1601.     OUTPUT:
  1602.     RETVAL
  1603.  
  1604. MODULE = $module        PACKAGE = ${name}Ptr        $prefix
  1605.  
  1606. EOF
  1607.   my @items = @$struct;
  1608.   while (@items) {
  1609.     my $item = shift @items;
  1610.     if ($item->[0] =~ /_ANON/) {
  1611.       if (defined $item->[2]) {
  1612.     push @items, map [
  1613.       @$_[0, 1], "$item->[2]_$_->[2]", "$item->[2].$_->[2]",
  1614.     ], @{ $structs{$item->[0]} };
  1615.       } else {
  1616.     push @items, @{ $structs{$item->[0]} };
  1617.       }
  1618.     } else {
  1619.       my $type = normalize_type($item->[0]);
  1620.       my $ttype = $structs{$type} ? normalize_type("$type *") : $type;
  1621.       print $fh <<"EOF";
  1622. $ttype
  1623. $item->[2](THIS, __value = NO_INIT)
  1624.     $ptrname THIS
  1625.     $type __value
  1626.     PROTOTYPE: \$;\$
  1627.     CODE:
  1628.     if (items > 1)
  1629.         THIS->$item->[-1] = __value;
  1630.     RETVAL = @{[
  1631.         $type eq $ttype ? "THIS->$item->[-1]" : "&(THIS->$item->[-1])"
  1632.     ]};
  1633.     OUTPUT:
  1634.     RETVAL
  1635.  
  1636. EOF
  1637.     }
  1638.   }
  1639. }
  1640.  
  1641. sub accessor_docs {
  1642.   my($name, $struct) = @_;
  1643.   return unless defined $struct && $name !~ /\s|_ANON/;
  1644.   $name = normalize_type($name);
  1645.   my $ptrname = $name . 'Ptr';
  1646.   my @items = @$struct;
  1647.   my @list;
  1648.   while (@items) {
  1649.     my $item = shift @items;
  1650.     if ($item->[0] =~ /_ANON/) {
  1651.       if (defined $item->[2]) {
  1652.     push @items, map [
  1653.       @$_[0, 1], "$item->[2]_$_->[2]", "$item->[2].$_->[2]",
  1654.     ], @{ $structs{$item->[0]} };
  1655.       } else {
  1656.     push @items, @{ $structs{$item->[0]} };
  1657.       }
  1658.     } else {
  1659.       push @list, $item->[2];
  1660.     }
  1661.   }
  1662.   my $methods = (join '(...)>, C<', @list) . '(...)';
  1663.  
  1664.   my $pod = <<"EOF";
  1665. #
  1666. #=head2 Object and class methods for C<$name>/C<$ptrname>
  1667. #
  1668. #The principal Perl representation of a C object of type C<$name> is an
  1669. #object of class C<$ptrname> which is a reference to an integer
  1670. #representation of a C pointer.  To create such an object, one may use
  1671. #a combination
  1672. #
  1673. #  my \$buffer = $name->new();
  1674. #  my \$obj = \$buffer->_to_ptr();
  1675. #
  1676. #This exersizes the following two methods, and an additional class
  1677. #C<$name>, the internal representation of which is a reference to a
  1678. #packed string with the C structure.  Keep in mind that \$buffer should
  1679. #better survive longer than \$obj.
  1680. #
  1681. #=over
  1682. #
  1683. #=item C<\$object_of_type_$name-E<gt>_to_ptr()>
  1684. #
  1685. #Converts an object of type C<$name> to an object of type C<$ptrname>.
  1686. #
  1687. #=item C<$name-E<gt>new()>
  1688. #
  1689. #Creates an empty object of type C<$name>.  The corresponding packed
  1690. #string is zeroed out.
  1691. #
  1692. #=item C<$methods>
  1693. #
  1694. #return the current value of the corresponding element if called
  1695. #without additional arguments.  Set the element to the supplied value
  1696. #(and return the new value) if called with an additional argument.
  1697. #
  1698. #Applicable to objects of type C<$ptrname>.
  1699. #
  1700. #=back
  1701. #
  1702. EOF
  1703.   $pod =~ s/^\#//gm;
  1704.   return $pod;
  1705. }
  1706.  
  1707. # Should be called before any actual call to normalize_type().
  1708. sub get_typemap {
  1709.   # We do not want to read ./typemap by obvios reasons.
  1710.   my @tm =  qw(../../../typemap ../../typemap ../typemap);
  1711.   my $stdtypemap =  "$Config::Config{privlib}/ExtUtils/typemap";
  1712.   unshift @tm, $stdtypemap;
  1713.   my $proto_re = "[" . quotemeta('\$%&*@;') . "]" ;
  1714.  
  1715.   # Start with useful default values
  1716.   $typemap{float} = 'T_NV';
  1717.  
  1718.   foreach my $typemap (@tm) {
  1719.     next unless -e $typemap ;
  1720.     # skip directories, binary files etc.
  1721.     warn " Scanning $typemap\n";
  1722.     warn("Warning: ignoring non-text typemap file '$typemap'\n"), next
  1723.       unless -T $typemap ;
  1724.     open(TYPEMAP, $typemap)
  1725.       or warn ("Warning: could not open typemap file '$typemap': $!\n"), next;
  1726.     my $mode = 'Typemap';
  1727.     while (<TYPEMAP>) {
  1728.       next if /^\s*\#/;
  1729.       if (/^INPUT\s*$/)   { $mode = 'Input'; next; }
  1730.       elsif (/^OUTPUT\s*$/)  { $mode = 'Output'; next; }
  1731.       elsif (/^TYPEMAP\s*$/) { $mode = 'Typemap'; next; }
  1732.       elsif ($mode eq 'Typemap') {
  1733.     next if /^\s*($|\#)/ ;
  1734.     my ($type, $image);
  1735.     if ( ($type, $image) =
  1736.          /^\s*(.*?\S)\s+(\S+)\s*($proto_re*)\s*$/o
  1737.          # This may reference undefined functions:
  1738.          and not ($image eq 'T_PACKED' and $typemap eq $stdtypemap)) {
  1739.       $typemap{normalize_type($type)} = $image;
  1740.     }
  1741.       }
  1742.     }
  1743.     close(TYPEMAP) or die "Cannot close $typemap: $!";
  1744.   }
  1745.   %std_types = %types_seen;
  1746.   %types_seen = ();
  1747. }
  1748.  
  1749.  
  1750. sub normalize_type {        # Second arg: do not strip const's before \*
  1751.   my $type = shift;
  1752.   my $do_keep_deep_const = shift;
  1753.   # If $do_keep_deep_const this is heuristical only
  1754.   my $keep_deep_const = ($do_keep_deep_const ? '\b(?![^(,)]*\*)' : '');
  1755.   my $ignore_mods
  1756.     = "(?:\\b(?:(?:__const__|const)$keep_deep_const|static|inline|__inline__)\\b\\s*)*";
  1757.   if ($do_keep_deep_const) {    # Keep different compiled /RExen/o separately!
  1758.     $type =~ s/$ignore_mods//go;
  1759.   }
  1760.   else {
  1761.     $type =~ s/$ignore_mods//go;
  1762.   }
  1763.   $type =~ s/([^\s\w])/ $1 /g;
  1764.   $type =~ s/\s+$//;
  1765.   $type =~ s/^\s+//;
  1766.   $type =~ s/\s+/ /g;
  1767.   $type =~ s/\* (?=\*)/*/g;
  1768.   $type =~ s/\. \. \./.../g;
  1769.   $type =~ s/ ,/,/g;
  1770.   $types_seen{$type}++
  1771.     unless $type eq '...' or $type eq 'void' or $std_types{$type};
  1772.   $type;
  1773. }
  1774.  
  1775. my $need_opaque;
  1776.  
  1777. sub assign_typemap_entry {
  1778.   my $type = shift;
  1779.   my $otype = $type;
  1780.   my $entry;
  1781.   if ($tmask and $type =~ /$tmask/) {
  1782.     print "Type $type matches -o mask\n" if $opt_d;
  1783.     $entry = (td_is_struct($type) ? "T_OPAQUE_STRUCT" : "T_PTROBJ");
  1784.   }
  1785.   elsif ($typedef_rex and $type =~ s/($typedef_rex)/$typedefs_pre{$1}/go) {
  1786.     $type = normalize_type $type;
  1787.     print "Type mutation via typedefs: $otype ==> $type\n" if $opt_d;
  1788.     $entry = assign_typemap_entry($type);
  1789.   }
  1790.   # XXX good do better if our UV happens to be long long
  1791.   return "T_NV" if $type =~ /^(unsigned\s+)?long\s+(long|double)\z/;
  1792.   $entry ||= $typemap{$otype}
  1793.     || (td_is_struct($type) ? "T_OPAQUE_STRUCT" : "T_PTROBJ");
  1794.   $typemap{$otype} = $entry;
  1795.   $need_opaque = 1 if $entry eq "T_OPAQUE_STRUCT";
  1796.   return $entry;
  1797. }
  1798.  
  1799. for (@vdecls) {
  1800.   print_tievar_xsubs(\*XS, $_, $vdecl_hash{$_});
  1801. }
  1802.  
  1803. if ($opt_x) {
  1804.   for my $decl (@$fdecls_parsed) { print_decl(\*XS, $decl) }
  1805.   if ($opt_a) {
  1806.     while (my($name, $struct) = each %structs) {
  1807.       print_accessors(\*XS, $name, $struct);
  1808.     }
  1809.   }
  1810. }
  1811.  
  1812. close XS;
  1813.  
  1814. if (%types_seen) {
  1815.   my $type;
  1816.   warn "Writing $ext$modpname/typemap\n";
  1817.   open TM, ">typemap" or die "Cannot open typemap file for write: $!";
  1818.  
  1819.   for $type (sort keys %types_seen) {
  1820.     my $entry = assign_typemap_entry $type;
  1821.     print TM $type, "\t" x (5 - int((length $type)/8)), "\t$entry\n"
  1822.   }
  1823.  
  1824.   print TM <<'EOP' if $need_opaque; # Older Perls do not have correct entry
  1825. #############################################################################
  1826. INPUT
  1827. T_OPAQUE_STRUCT
  1828.     if (sv_derived_from($arg, \"${ntype}\")) {
  1829.         STRLEN len;
  1830.         char  *s = SvPV((SV*)SvRV($arg), len);
  1831.  
  1832.         if (len != sizeof($var))
  1833.         croak(\"Size %d of packed data != expected %d\",
  1834.             len, sizeof($var));
  1835.         $var = *($type *)s;
  1836.     }
  1837.     else
  1838.         croak(\"$var is not of type ${ntype}\")
  1839. #############################################################################
  1840. OUTPUT
  1841. T_OPAQUE_STRUCT
  1842.     sv_setref_pvn($arg, \"${ntype}\", (char *)&$var, sizeof($var));
  1843. EOP
  1844.  
  1845.   close TM or die "Cannot close typemap file for write: $!";
  1846. }
  1847.  
  1848. } # if( ! $opt_X )
  1849.  
  1850. warn "Writing $ext$modpname/Makefile.PL\n";
  1851. open(PL, ">Makefile.PL") || die "Can't create $ext$modpname/Makefile.PL: $!\n";
  1852.  
  1853. my $prereq_pm;
  1854.  
  1855. if ( $compat_version < 5.00702 and $new_test )
  1856. {
  1857.   $prereq_pm = q%'Test::More'  =>  0%;
  1858. }
  1859. else
  1860. {
  1861.   $prereq_pm = '';
  1862. }
  1863.  
  1864. print PL <<"END";
  1865. use $compat_version;
  1866. use ExtUtils::MakeMaker;
  1867. # See lib/ExtUtils/MakeMaker.pm for details of how to influence
  1868. # the contents of the Makefile that is written.
  1869. WriteMakefile(
  1870.     NAME              => '$module',
  1871.     VERSION_FROM      => '$modpmname', # finds \$VERSION
  1872.     PREREQ_PM         => {$prereq_pm}, # e.g., Module::Name => 1.1
  1873.     (\$] >= 5.005 ?     ## Add these new keywords supported since 5.005
  1874.       (ABSTRACT_FROM  => '$modpmname', # retrieve abstract from module
  1875.        AUTHOR         => '$author <$email>') : ()),
  1876. END
  1877. if (!$opt_X) { # print C stuff, unless XS is disabled
  1878.   $opt_F = '' unless defined $opt_F;
  1879.   my $I = (((glob '*.h') || (glob '*.hh')) ? '-I.' : '');
  1880.   my $Ihelp = ($I ? '-I. ' : '');
  1881.   my $Icomment = ($I ? '' : <<EOC);
  1882.     # Insert -I. if you add *.h files later:
  1883. EOC
  1884.  
  1885.   print PL <<END;
  1886.     LIBS              => ['$extralibs'], # e.g., '-lm'
  1887.     DEFINE            => '$opt_F', # e.g., '-DHAVE_SOMETHING'
  1888. $Icomment    INC               => '$I', # e.g., '${Ihelp}-I/usr/include/other'
  1889. END
  1890.  
  1891.   my $C = grep {$_ ne "$modfname.c"}
  1892.     (glob '*.c'), (glob '*.cc'), (glob '*.C');
  1893.   my $Cpre = ($C ? '' : '# ');
  1894.   my $Ccomment = ($C ? '' : <<EOC);
  1895.     # Un-comment this if you add C files to link with later:
  1896. EOC
  1897.  
  1898.   print PL <<END;
  1899. $Ccomment    ${Cpre}OBJECT            => '\$(O_FILES)', # link all the C files too
  1900. END
  1901. } # ' # Grr
  1902. print PL ");\n";
  1903. if (!$opt_c) {
  1904.   my $generate_code =
  1905.     WriteMakefileSnippet ( C_FILE =>       $constscfname,
  1906.                            XS_FILE =>      $constsxsfname,
  1907.                            DEFAULT_TYPE => $opt_t,
  1908.                            NAME =>         $module,
  1909.                            NAMES =>        \@const_names,
  1910.                  );
  1911.   print PL <<"END";
  1912. if  (eval {require ExtUtils::Constant; 1}) {
  1913.   # If you edit these definitions to change the constants used by this module,
  1914.   # you will need to use the generated $constscfname and $constsxsfname
  1915.   # files to replace their "fallback" counterparts before distributing your
  1916.   # changes.
  1917. $generate_code
  1918. }
  1919. else {
  1920.   use File::Copy;
  1921.   use File::Spec;
  1922.   foreach my \$file ('$constscfname', '$constsxsfname') {
  1923.     my \$fallback = File::Spec->catfile('$fallbackdirname', \$file);
  1924.     copy (\$fallback, \$file) or die "Can't copy \$fallback to \$file: \$!";
  1925.   }
  1926. }
  1927. END
  1928.  
  1929.   eval $generate_code;
  1930.   if ($@) {
  1931.     warn <<"EOM";
  1932. Attempting to test constant code in $ext$modpname/Makefile.PL:
  1933. $generate_code
  1934. __END__
  1935. gave unexpected error $@
  1936. Please report the circumstances of this bug in h2xs version $H2XS_VERSION
  1937. using the perlbug script.
  1938. EOM
  1939.   } else {
  1940.     my $fail;
  1941.  
  1942.     foreach my $file ($constscfname, $constsxsfname) {
  1943.       my $fallback = File::Spec->catfile($fallbackdirname, $file);
  1944.       if (compare($file, $fallback)) {
  1945.         warn << "EOM";
  1946. Files "$ext$modpname/$fallbackdirname/$file" and "$ext$modpname/$file" differ.
  1947. EOM
  1948.         $fail++;
  1949.       }
  1950.     }
  1951.     if ($fail) {
  1952.       warn fill ('','', <<"EOM") . "\n";
  1953. It appears that the code in $ext$modpname/Makefile.PL does not autogenerate
  1954. the files $ext$modpname/$constscfname and $ext$modpname/$constsxsfname
  1955. correctly.
  1956.  
  1957. Please report the circumstances of this bug in h2xs version $H2XS_VERSION
  1958. using the perlbug script.
  1959. EOM
  1960.     } else {
  1961.       unlink $constscfname, $constsxsfname;
  1962.     }
  1963.   }
  1964. }
  1965. close(PL) || die "Can't close $ext$modpname/Makefile.PL: $!\n";
  1966.  
  1967. # Create a simple README since this is a CPAN requirement
  1968. # and it doesnt hurt to have one
  1969. warn "Writing $ext$modpname/README\n";
  1970. open(RM, ">README") || die "Can't create $ext$modpname/README:$!\n";
  1971. my $thisyear = (gmtime)[5] + 1900;
  1972. my $rmhead = "$modpname version $TEMPLATE_VERSION";
  1973. my $rmheadeq = "=" x length($rmhead);
  1974.  
  1975. my $rm_prereq;
  1976.  
  1977. if ( $compat_version < 5.00702 and $new_test )
  1978. {
  1979.    $rm_prereq = 'Test::More';
  1980. }
  1981. else
  1982. {
  1983.    $rm_prereq = 'blah blah blah';
  1984. }
  1985.  
  1986. print RM <<_RMEND_;
  1987. $rmhead
  1988. $rmheadeq
  1989.  
  1990. The README is used to introduce the module and provide instructions on
  1991. how to install the module, any machine dependencies it may have (for
  1992. example C compilers and installed libraries) and any other information
  1993. that should be provided before the module is installed.
  1994.  
  1995. A README file is required for CPAN modules since CPAN extracts the
  1996. README file from a module distribution so that people browsing the
  1997. archive can use it get an idea of the modules uses. It is usually a
  1998. good idea to provide version information here so that people can
  1999. decide whether fixes for the module are worth downloading.
  2000.  
  2001. INSTALLATION
  2002.  
  2003. To install this module type the following:
  2004.  
  2005.    perl Makefile.PL
  2006.    make
  2007.    make test
  2008.    make install
  2009.  
  2010. DEPENDENCIES
  2011.  
  2012. This module requires these other modules and libraries:
  2013.  
  2014.   $rm_prereq
  2015.  
  2016. COPYRIGHT AND LICENCE
  2017.  
  2018. Put the correct copyright and licence information here.
  2019.  
  2020. $licence
  2021.  
  2022. _RMEND_
  2023. close(RM) || die "Can't close $ext$modpname/README: $!\n";
  2024.  
  2025. my $testdir  = "t";
  2026. my $testfile = "$testdir/$modpname.t";
  2027. unless (-d "$testdir") {
  2028.   mkdir "$testdir" or die "Cannot mkdir $testdir: $!\n";
  2029. }
  2030. warn "Writing $ext$modpname/$testfile\n";
  2031. my $tests = @const_names ? 2 : 1;
  2032.  
  2033. open EX, ">$testfile" or die "Can't create $ext$modpname/$testfile: $!\n";
  2034.  
  2035. print EX <<_END_;
  2036. # Before `make install' is performed this script should be runnable with
  2037. # `make test'. After `make install' it should work as `perl $modpname.t'
  2038.  
  2039. #########################
  2040.  
  2041. # change 'tests => $tests' to 'tests => last_test_to_print';
  2042.  
  2043. _END_
  2044.  
  2045. my $test_mod = 'Test::More';
  2046.  
  2047. if ( $old_test or ($compat_version < 5.007 and not $new_test ))
  2048. {
  2049.   my $test_mod = 'Test';
  2050.  
  2051.   print EX <<_END_;
  2052. use Test;
  2053. BEGIN { plan tests => $tests };
  2054. use $module;
  2055. ok(1); # If we made it this far, we're ok.
  2056.  
  2057. _END_
  2058.  
  2059.    if (@const_names) {
  2060.      my $const_names = join " ", @const_names;
  2061.      print EX <<'_END_';
  2062.  
  2063. my $fail;
  2064. foreach my $constname (qw(
  2065. _END_
  2066.  
  2067.      print EX wrap ("\t", "\t", $const_names);
  2068.      print EX (")) {\n");
  2069.  
  2070.      print EX <<_END_;
  2071.   next if (eval "my \\\$a = \$constname; 1");
  2072.   if (\$\@ =~ /^Your vendor has not defined $module macro \$constname/) {
  2073.     print "# pass: \$\@";
  2074.   } else {
  2075.     print "# fail: \$\@";
  2076.     \$fail = 1;
  2077.   }
  2078. }
  2079. if (\$fail) {
  2080.   print "not ok 2\\n";
  2081. } else {
  2082.   print "ok 2\\n";
  2083. }
  2084.  
  2085. _END_
  2086.   }
  2087. }
  2088. else
  2089. {
  2090.   print EX <<_END_;
  2091. use Test::More tests => $tests;
  2092. BEGIN { use_ok('$module') };
  2093.  
  2094. _END_
  2095.  
  2096.    if (@const_names) {
  2097.      my $const_names = join " ", @const_names;
  2098.      print EX <<'_END_';
  2099.  
  2100. my $fail = 0;
  2101. foreach my $constname (qw(
  2102. _END_
  2103.  
  2104.      print EX wrap ("\t", "\t", $const_names);
  2105.      print EX (")) {\n");
  2106.  
  2107.      print EX <<_END_;
  2108.   next if (eval "my \\\$a = \$constname; 1");
  2109.   if (\$\@ =~ /^Your vendor has not defined $module macro \$constname/) {
  2110.     print "# pass: \$\@";
  2111.   } else {
  2112.     print "# fail: \$\@";
  2113.     \$fail = 1;
  2114.   }
  2115.  
  2116. }
  2117.  
  2118. ok( \$fail == 0 , 'Constants' );
  2119. _END_
  2120.   }
  2121. }
  2122.  
  2123. print EX <<_END_;
  2124. #########################
  2125.  
  2126. # Insert your test code below, the $test_mod module is use()ed here so read
  2127. # its man page ( perldoc $test_mod ) for help writing this test script.
  2128.  
  2129. _END_
  2130.  
  2131. close(EX) || die "Can't close $ext$modpname/$testfile: $!\n";
  2132.  
  2133. unless ($opt_C) {
  2134.   warn "Writing $ext$modpname/Changes\n";
  2135.   $" = ' ';
  2136.   open(EX, ">Changes") || die "Can't create $ext$modpname/Changes: $!\n";
  2137.   @ARGS = map {/[\s\"\'\`\$*?^|&<>\[\]\{\}\(\)]/ ? "'$_'" : $_} @ARGS;
  2138.   print EX <<EOP;
  2139. Revision history for Perl extension $module.
  2140.  
  2141. $TEMPLATE_VERSION  @{[scalar localtime]}
  2142. \t- original version; created by h2xs $H2XS_VERSION with options
  2143. \t\t@ARGS
  2144.  
  2145. EOP
  2146.   close(EX) || die "Can't close $ext$modpname/Changes: $!\n";
  2147. }
  2148.  
  2149. warn "Writing $ext$modpname/MANIFEST\n";
  2150. open(MANI,'>MANIFEST') or die "Can't create MANIFEST: $!";
  2151. my @files = grep { -f } (<*>, <t/*>, <$fallbackdirname/*>, <$modpmdir/*>);
  2152. if (!@files) {
  2153.   eval {opendir(D,'.');};
  2154.   unless ($@) { @files = readdir(D); closedir(D); }
  2155. }
  2156. if (!@files) { @files = map {chomp && $_} `ls`; }
  2157. if ($^O eq 'VMS') {
  2158.   foreach (@files) {
  2159.     # Clip trailing '.' for portability -- non-VMS OSs don't expect it
  2160.     s%\.$%%;
  2161.     # Fix up for case-sensitive file systems
  2162.     s/$modfname/$modfname/i && next;
  2163.     $_ = "\U$_" if $_ eq 'manifest' or $_ eq 'changes';
  2164.     $_ = 'Makefile.PL' if $_ eq 'makefile.pl';
  2165.   }
  2166. }
  2167. print MANI join("\n",@files), "\n";
  2168. close MANI;
  2169.