1. NAME

h2xs - convert .h C header files to Perl extensions

2. SYNOPSIS

h2xs [OPTIONS ...] [headerfile ... [extra_libraries]]

h2xs -h|-?|--help

3. DESCRIPTION

h2xs builds a Perl extension from C header files. The extension will include functions which can be used to retrieve the value of any #define statement which was in the C header files.

The module_name will be used for the name of the extension. If module_name is not supplied then the name of the first header file will be used, with the first character capitalized.

If the extension might need extra libraries, they should be included here. The extension Makefile.PL will take care of checking whether the libraries actually exist and how they should be loaded. The extra libraries should be specified in the form -lm -lposix, etc, just as on the cc command line. By default, the Makefile.PL will search through the library path determined by Configure. That path can be augmented by including arguments of the form -L/another/library/path in the extra-libraries argument.

In spite of its name, h2xs may also be used to create a skeleton pure Perl module. See the -X option.

4. OPTIONS

-A, --omit-autoload 5 Omit all autoload facilities. This is the same as -c but also removes the \f(CW\*(C`use AutoLoader\*(C'\fR statement from the .pm file.

-B, --beta-version 5 Use an alpha/beta style version number. Causes version number to be \*(L"0.00_01\*(R" unless -v is specified.

-C, --omit-changes 5 Omits creation of the Changes file, and adds a HISTORY section to the POD template.

-F, --cpp-flags=addflags 5 Additional flags to specify to C preprocessor when scanning header for function declarations. Writes these options in the generated Makefile.PL too.

-M, --func-mask=regular expression 5 selects functions/macros to process.

-O, --overwrite-ok 5 Allows a pre-existing extension directory to be overwritten.

-P, --omit-pod 5 Omit the autogenerated stub POD section.

-X, --omit-XS 5 Omit the XS portion. Used to generate a skeleton pure Perl module. \f(CW\*(C`-c\*(C'\fR and \f(CW\*(C`-f\*(C'\fR are implicitly enabled.

-a, --gen-accessors 5 Generate an accessor method for each element of structs and unions. The generated methods are named after the element name; will return the current value of the element if called without additional arguments; and will set the element to the supplied value (and return the new value) if called with an additional argument. Embedded structures and unions are returned as a pointer rather than the complete structure, to facilitate chained calls. .Sp These methods all apply to the Ptr type for the structure; additionally two methods are constructed for the structure type itself, \f(CW\*(C`_to_ptr\*(C'\fR which returns a Ptr type pointing to the same structure, and a \f(CW\*(C`new\*(C'\fR method to construct and return a new structure, initialised to zeroes.

-b, --compat-version=version 5 Generates a .pm file which is backwards compatible with the specified perl version. .Sp For versions < 5.6.0, the changes are. - no use of 'our' (uses 'use vars' instead) - no 'use warnings' .Sp Specifying a compatibility version higher than the version of perl you are using to run h2xs will have no effect. If unspecified h2xs will default to compatibility with the version of perl you are using to run h2xs.

-c, --omit-constant 5 Omit \f(CW\*(C`constant()\*(C'\fR from the .xs file and corresponding specialised \f(CW\*(C`AUTOLOAD\*(C'\fR from the .pm file.

-d, --debugging 5 Turn on debugging messages.

-e, --omit-enums=[regular expression] 5 If regular expression is not given, skip all constants that are defined in a C enumeration. Otherwise skip only those constants that are defined in an enum whose name matches regular expression. .Sp Since regular expression is optional, make sure that this switch is followed by at least one other switch if you omit regular expression and have some pending arguments such as header-file names. This is ok: .Sp h2xs -e -n Module::Foo foo.h

.Sp This is not ok: .Sp h2xs -n Module::Foo -e foo.h

.Sp In the latter, foo.h is taken as regular expression.

-f, --force 5 Allows an extension to be created for a header even if that header is not found in standard include directories.

-g, --global 5 Include code for safely storing static data in the .xs file. Extensions that do no make use of static data can ignore this option.

-h, -?, --help 5 Print the usage, help and version for this h2xs and exit.

-k, --omit-const-func 5 For function arguments declared as \f(CW\*(C`const\*(C'\fR, omit the const attribute in the generated XS code.

-m, --gen-tied-var 5 Experimental: for each variable declared in the header file(s), declare a perl variable of the same name magically tied to the C variable.

-n, --name=module_name 5 Specifies a name to be used for the extension, e.g., -n RPC::DCE

-o, --opaque-re=regular expression 5 Use \*(L"opaque\*(R" data type for the C types matched by the regular expression, even if these types are \f(CW\*(C`typedef\*(C'\fR-equivalent to types from typemaps. Should not be used without -x. .Sp This may be useful since, say, types which are \f(CW\*(C`typedef\*(C'\fR-equivalent to integers may represent OS-related handles, and one may want to work with these handles in OO-way, as in \f(CW\*(C`$handle->do_something()\*(C'\fR. Use \f(CW\*(C`-o .\*(C'\fR if you want to handle all the \f(CW\*(C`typedef\*(C'\fRed types as opaque types. .Sp The type-to-match is whitewashed (except for commas, which have no whitespace before them, and multiple \f(CW\*(C`*\*(C'\fR which have no whitespace between them).

-p, --remove-prefix=prefix 5 Specify a prefix which should be removed from the Perl function names, e.g., -p sec_rgy_ This sets up the XS PREFIX keyword and removes the prefix from functions that are autoloaded via the \f(CW\*(C`constant()\*(C'\fR mechanism.

-s, --const-subs=sub1,sub2 5 Create a perl subroutine for the specified macros rather than autoload with the constant() subroutine. These macros are assumed to have a return type of char *, e.g., -s sec_rgy_wildcard_name,sec_rgy_wildcard_sid.

-t, --default-type=type 5 Specify the internal type that the constant() mechanism uses for macros. The default is IV (signed integer). Currently all macros found during the header scanning process will be assumed to have this type. Future versions of \f(CW\*(C`h2xs\*(C'\fR may gain the ability to make educated guesses.

--use-new-tests 5 When --compat-version (-b) is present the generated tests will use \f(CW\*(C`Test::More\*(C'\fR rather than \f(CW\*(C`Test\*(C'\fR which is the default for versions before 5.7.2 . \f(CW\*(C`Test::More\*(C'\fR will be added to PREREQ_PM in the generated \f(CW\*(C`Makefile.PL\*(C'\fR.

--use-old-tests 5 Will force the generation of test code that uses the older \f(CW\*(C`Test\*(C'\fR module.

--skip-exporter 5 Do not use \f(CW\*(C`Exporter\*(C'\fR and/or export any symbol.

--skip-ppport 5 Do not use \f(CW\*(C`Devel::PPPort\*(C'\fR: no portability to older version.

--skip-autoloader 5 Do not use the module \f(CW\*(C`AutoLoader\*(C'\fR; but keep the constant() function and \f(CW\*(C`sub AUTOLOAD\*(C'\fR for constants.

--skip-strict 5 Do not use the pragma \f(CW\*(C`strict\*(C'\fR.

--skip-warnings 5 Do not use the pragma \f(CW\*(C`warnings\*(C'\fR.

-v, --version=version 5 Specify a version number for this extension. This version number is added to the templates. The default is 0.01, or 0.00_01 if \f(CW\*(C`-B\*(C'\fR is specified. The version specified should be numeric.

-x, --autogen-xsubs 5 Automatically generate XSUBs basing on function declarations in the header file. The package \f(CW\*(C`C::Scan\*(C'\fR should be installed. If this option is specified, the name of the header file may look like \f(CW\*(C`NAME1,NAME2\*(C'\fR. In this case NAME1 is used instead of the specified string, but XSUBs are emitted only for the declarations included from file NAME2. .Sp Note that some types of arguments/return-values for functions may result in XSUB-declarations/typemap-entries which need hand-editing. Such may be objects which cannot be converted from/to a pointer (like \f(CW\*(C`long long\*(C'\fR), pointers to functions, or arrays. See also the section on "LIMITATIONS of -x".

5. EXAMPLES

# Default behavior, extension is Rusers h2xs rpcsvc/rusers # Same, but extension is RUSERS h2xs -n RUSERS rpcsvc/rusers # Extension is rpcsvc::rusers. Still finds <rpcsvc/rusers.h> h2xs rpcsvc::rusers # Extension is ONC::RPC. Still finds <rpcsvc/rusers.h> h2xs -n ONC::RPC rpcsvc/rusers # Without constant() or AUTOLOAD h2xs -c rpcsvc/rusers # Creates templates for an extension named RPC h2xs -cfn RPC # Extension is ONC::RPC. h2xs -cfn ONC::RPC # Extension is a pure Perl module with no XS code. h2xs -X My::Module # Extension is Lib::Foo which works at least with Perl5.005_03. # Constants are created for all #defines and enums h2xs can find # in foo.h. h2xs -b 5.5.3 -n Lib::Foo foo.h # Extension is Lib::Foo which works at least with Perl5.005_03. # Constants are created for all #defines but only for enums # whose names do not start with \*(Aqbar_\*(Aq. h2xs -b 5.5.3 -e \*(Aq^bar_\*(Aq -n Lib::Foo foo.h # Makefile.PL will look for library -lrpc in # additional directory /opt/net/lib h2xs rpcsvc/rusers -L/opt/net/lib -lrpc # Extension is DCE::rgynbase # prefix "sec_rgy_" is dropped from perl function names h2xs -n DCE::rgynbase -p sec_rgy_ dce/rgynbase # Extension is DCE::rgynbase # prefix "sec_rgy_" is dropped from perl function names # subroutines are created for sec_rgy_wildcard_name and # sec_rgy_wildcard_sid h2xs -n DCE::rgynbase -p sec_rgy_ \ -s sec_rgy_wildcard_name,sec_rgy_wildcard_sid dce/rgynbase # Make XS without defines in perl.h, but with function declarations # visible from perl.h. Name of the extension is perl1. # When scanning perl.h, define -DEXT=extern -DdEXT= -DINIT(x)= # Extra backslashes below because the string is passed to shell. # Note that a directory with perl header files would # be added automatically to include path. h2xs -xAn perl1 -F "-DEXT=extern -DdEXT= -DINIT\(x\)=" perl.h # Same with function declaration in proto.h as visible from perl.h. h2xs -xAn perl2 perl.h,proto.h # Same but select only functions which match /^av_/ h2xs -M \*(Aq^av_\*(Aq -xAn perl2 perl.h,proto.h # Same but treat SV* etc as "opaque" types h2xs -o \*(Aq^[S]V \*$\*(Aq -M \*(Aq^av_\*(Aq -xAn perl2 perl.h,proto.h

5.1. Extension based on \fI.h\fP and \fI.c\fP files

Suppose that you have some C files implementing some functionality, and the corresponding header files. How to create an extension which makes this functionality accessible in Perl? The example below assumes that the header files are interface_simple.h and interface_hairy.h, and you want the perl module be named as \f(CW\*(C`Ext::Ension\*(C'\fR. If you need some preprocessor directives and/or linking with external libraries, see the flags \f(CW\*(C`-F\*(C'\fR, \f(CW\*(C`-L\*(C'\fR and \f(CW\*(C`-l\*(C'\fR in \*(L"OPTIONS\*(R".

Find the directory name 4 Start with a dummy run of h2xs: .Sp h2xs -Afn Ext::Ension

.Sp The only purpose of this step is to create the needed directories, and let you know the names of these directories. From the output you can see that the directory for the extension is Ext/Ension.

Copy C files 4 Copy your header files and C files to this directory Ext/Ension.

Create the extension 4 Run h2xs, overwriting older autogenerated files: .Sp h2xs -Oxan Ext::Ension interface_simple.h interface_hairy.h

.Sp h2xs looks for header files after changing to the extension directory, so it will find your header files OK.

Archive and test 4 As usual, run .Sp cd Ext/Ension perl Makefile.PL make dist make make test

Hints 4 It is important to do \f(CW\*(C`make dist\*(C'\fR as early as possible. This way you can easily merge (1) your changes to autogenerated files if you decide to edit your \f(CW\*(C`.h\*(C'\fR files and rerun h2xs. .Sp Do not forget to edit the documentation in the generated .pm file. .Sp Consider the autogenerated files as skeletons only, you may invent better interfaces than what h2xs could guess. .Sp Consider this section as a guideline only, some other options of h2xs may better suit your needs.

6. ENVIRONMENT

No environment variables are used.

7. AUTHOR

Larry Wall and others

8. SEE ALSO

perl, perlxstut, ExtUtils::MakeMaker, and AutoLoader.

9. DIAGNOSTICS

The usual warnings if it cannot read or write the files involved.

10. LIMITATIONS of \fB-x\fP

h2xs would not distinguish whether an argument to a C function which is of the form, say, \f(CW\*(C`int *\*(C'\fR, is an input, output, or input/output parameter. In particular, argument declarations of the form

int foo(n) int *n

should be better rewritten as

int foo(n) int &n

if \f(CW\*(C`n\*(C'\fR is an input parameter.

Additionally, h2xs has no facilities to intuit that a function

int foo(addr,l) char *addr int l

takes a pair of address and length of data at this address, so it is better to rewrite this function as

int foo(sv) SV *addr PREINIT: STRLEN len; char *s; CODE: s = SvPV(sv,len); RETVAL = foo(s, len); OUTPUT: RETVAL

or alternately

static int my_foo(SV *sv) { STRLEN len; char *s = SvPV(sv,len); return foo(s, len); } MODULE = foo PACKAGE = foo PREFIX = my_ int foo(sv) SV *sv

See perlxs and perlxstut for additional details.