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