⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 h2xs.1

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 1
📖 第 1 页 / 共 2 页
字号:
This may be useful since, say, types which are \f(CW\*(C`typedef\*(C'\fR\-equivalentto integers may represent OS-related handles, and one may want to workwith 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 opaquetypes..SpThe type-to-match is whitewashed (except for commas, which have nowhitespace before them, and multiple \f(CW\*(C`*\*(C'\fR which have no whitespacebetween them)..IP "\fB\-p\fR, \fB\-\-remove\-prefix\fR=\fIprefix\fR" 5.IX Item "-p, --remove-prefix=prefix"Specify a prefix which should be removed from the Perl function names,e.g., \-p\ sec_rgy_ This sets up the \s-1XS\s0 \fB\s-1PREFIX\s0\fR keyword and removesthe prefix from functions that are autoloaded via the \f(CW\*(C`constant()\*(C'\fRmechanism..IP "\fB\-s\fR, \fB\-\-const\-subs\fR=\fIsub1,sub2\fR" 5.IX Item "-s, --const-subs=sub1,sub2"Create a perl subroutine for the specified macros rather than autoloadwith the \fIconstant()\fR subroutine.  These macros are assumed to have areturn type of \fBchar *\fR, e.g.,\&\-s\ sec_rgy_wildcard_name,sec_rgy_wildcard_sid..IP "\fB\-t\fR, \fB\-\-default\-type\fR=\fItype\fR" 5.IX Item "-t, --default-type=type"Specify the internal type that the \fIconstant()\fR mechanism uses for macros.The default is \s-1IV\s0 (signed integer).  Currently all macros found during theheader scanning process will be assumed to have this type.  Future versionsof \f(CW\*(C`h2xs\*(C'\fR may gain the ability to make educated guesses..IP "\fB\-\-use\-new\-tests\fR" 5.IX Item "--use-new-tests"When \fB\-\-compat\-version\fR (\fB\-b\fR) 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 before5.7.2 .   \f(CW\*(C`Test::More\*(C'\fR will be added to \s-1PREREQ_PM\s0 in the generated\&\f(CW\*(C`Makefile.PL\*(C'\fR..IP "\fB\-\-use\-old\-tests\fR" 5.IX Item "--use-old-tests"Will force the generation of test code that uses the older \f(CW\*(C`Test\*(C'\fR module..IP "\fB\-\-skip\-exporter\fR" 5.IX Item "--skip-exporter"Do not use \f(CW\*(C`Exporter\*(C'\fR and/or export any symbol..IP "\fB\-\-skip\-ppport\fR" 5.IX Item "--skip-ppport"Do not use \f(CW\*(C`Devel::PPPort\*(C'\fR: no portability to older version..IP "\fB\-\-skip\-autoloader\fR" 5.IX Item "--skip-autoloader"Do not use the module \f(CW\*(C`AutoLoader\*(C'\fR; but keep the \fIconstant()\fR functionand \f(CW\*(C`sub AUTOLOAD\*(C'\fR for constants..IP "\fB\-\-skip\-strict\fR" 5.IX Item "--skip-strict"Do not use the pragma \f(CW\*(C`strict\*(C'\fR..IP "\fB\-\-skip\-warnings\fR" 5.IX Item "--skip-warnings"Do not use the pragma \f(CW\*(C`warnings\*(C'\fR..IP "\fB\-v\fR, \fB\-\-version\fR=\fIversion\fR" 5.IX Item "-v, --version=version"Specify a version number for this extension.  This version number is addedto 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..IP "\fB\-x\fR, \fB\-\-autogen\-xsubs\fR" 5.IX Item "-x, --autogen-xsubs"Automatically generate XSUBs basing on function declarations in theheader file.  The package \f(CW\*(C`C::Scan\*(C'\fR should be installed. If thisoption is specified, the name of the header file may look like\&\f(CW\*(C`NAME1,NAME2\*(C'\fR. In this case \s-1NAME1\s0 is used instead of the specifiedstring, but XSUBs are emitted only for the declarations included fromfile \s-1NAME2\s0..SpNote that some types of arguments/return\-values for functions mayresult in XSUB\-declarations/typemap\-entries which needhand-editing. Such may be objects which cannot be converted from/to apointer (like \f(CW\*(C`long long\*(C'\fR), pointers to functions, or arrays.  Seealso the section on "\s-1LIMITATIONS\s0 of \fB\-x\fR"..SH "EXAMPLES".IX Header "EXAMPLES".Vb 2\&    # 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_ \e\&    \-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\e(x\e)=" 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 \e*$\*(Aq \-M \*(Aq^av_\*(Aq \-xAn perl2 perl.h,proto.h.Ve.Sh "Extension based on \fI.h\fP and \fI.c\fP files".IX Subsection "Extension based on .h and .c files"Suppose that you have some C files implementing some functionality,and the corresponding header files.  How to create an extension whichmakes this functionality accessible in Perl?  The example belowassumes that the header files are \fIinterface_simple.h\fR and\&\fIinterface_hairy.h\fR, and you want the perl module be named as\&\f(CW\*(C`Ext::Ension\*(C'\fR.  If you need some preprocessor directives and/orlinking with external libraries, see the flags \f(CW\*(C`\-F\*(C'\fR, \f(CW\*(C`\-L\*(C'\fR and \f(CW\*(C`\-l\*(C'\fRin \*(L"\s-1OPTIONS\s0\*(R"..IP "Find the directory name" 4.IX Item "Find the directory name"Start with a dummy run of h2xs:.Sp.Vb 1\&  h2xs \-Afn Ext::Ension.Ve.SpThe only purpose of this step is to create the needed directories, andlet you know the names of these directories.  From the output you cansee that the directory for the extension is \fIExt/Ension\fR..IP "Copy C files" 4.IX Item "Copy C files"Copy your header files and C files to this directory \fIExt/Ension\fR..IP "Create the extension" 4.IX Item "Create the extension"Run h2xs, overwriting older autogenerated files:.Sp.Vb 1\&  h2xs \-Oxan Ext::Ension interface_simple.h interface_hairy.h.Ve.Sph2xs looks for header files \fIafter\fR changing to the extensiondirectory, so it will find your header files \s-1OK\s0..IP "Archive and test" 4.IX Item "Archive and test"As usual, run.Sp.Vb 5\&  cd Ext/Ension\&  perl Makefile.PL\&  make dist\&  make\&  make test.Ve.IP "Hints" 4.IX Item "Hints"It is important to do \f(CW\*(C`make dist\*(C'\fR as early as possible.  This way youcan easily \fImerge\fR\|(1) your changes to autogenerated files if you decideto edit your \f(CW\*(C`.h\*(C'\fR files and rerun h2xs..SpDo not forget to edit the documentation in the generated \fI.pm\fR file..SpConsider the autogenerated files as skeletons only, you may inventbetter interfaces than what h2xs could guess..SpConsider this section as a guideline only, some other options of h2xsmay better suit your needs..SH "ENVIRONMENT".IX Header "ENVIRONMENT"No environment variables are used..SH "AUTHOR".IX Header "AUTHOR"Larry Wall and others.SH "SEE ALSO".IX Header "SEE ALSO"perl, perlxstut, ExtUtils::MakeMaker, and AutoLoader..SH "DIAGNOSTICS".IX Header "DIAGNOSTICS"The usual warnings if it cannot read or write the files involved..SH "LIMITATIONS of \fB\-x\fP".IX Header "LIMITATIONS of -x"\&\fIh2xs\fR would not distinguish whether an argument to a C functionwhich is of the form, say, \f(CW\*(C`int *\*(C'\fR, is an input, output, orinput/output parameter.  In particular, argument declarations of theform.PP.Vb 3\&    int\&    foo(n)\&        int *n.Ve.PPshould be better rewritten as.PP.Vb 3\&    int\&    foo(n)\&        int &n.Ve.PPif \f(CW\*(C`n\*(C'\fR is an input parameter..PPAdditionally, \fIh2xs\fR has no facilities to intuit that a function.PP.Vb 4\&   int\&   foo(addr,l)\&        char *addr\&        int   l.Ve.PPtakes a pair of address and length of data at this address, so it is betterto rewrite this function as.PP.Vb 11\&    int\&    foo(sv)\&            SV *addr\&        PREINIT:\&            STRLEN len;\&            char *s;\&        CODE:\&            s = SvPV(sv,len);\&            RETVAL = foo(s, len);\&        OUTPUT:\&            RETVAL.Ve.PPor alternately.PP.Vb 5\&    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.Ve.PPSee perlxs and perlxstut for additional details.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -