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

📄 util.pm

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 PM
字号:
# # /*#  * *********** WARNING **************#  * This file generated by ModPerl::WrapXS/0.01#  * Any changes made here will be lost#  * ***********************************#  * 01: lib/ModPerl/Code.pm:708#  * 02: lib/ModPerl/WrapXS.pm:624#  * 03: lib/ModPerl/WrapXS.pm:1173#  * 04: Makefile.PL:423#  * 05: Makefile.PL:325#  * 06: Makefile.PL:56#  */# package ModPerl::Util;use strict;use warnings FATAL => 'all';use Apache2::XSLoader ();our $VERSION = '2.000002';Apache2::XSLoader::load __PACKAGE__;#Extra stuffour $DEFAULT_UNLOAD_METHOD ||= "unload_package_pp";sub unload_package {    goto &$DEFAULT_UNLOAD_METHOD;}sub unload_package_pp {    my $package = shift;    no strict 'refs';    my $tab = \%{ $package . '::' };    # below we assign to a symbol first before undef'ing it, to avoid    # nuking aliases. If we undef directly we may undef not only the    # alias but the original function as well    for (keys %$tab) {        #Skip sub stashes        next if /::$/;        my $fullname = join '::', $package, $_;        # code/hash/array/scalar might be imported make sure the gv        # does not point elsewhere before undefing each        if (%$fullname) {            *{$fullname} = {};            undef %$fullname;        }        if (@$fullname) {            *{$fullname} = [];            undef @$fullname;        }        if ($$fullname) {            my $tmp; # argh, no such thing as an anonymous scalar            *{$fullname} = \$tmp;            undef $$fullname;        }        if (defined &$fullname) {            no warnings;            local $^W = 0;            if (defined(my $p = prototype $fullname)) {                *{$fullname} = eval "sub ($p) {}";            }            else {                *{$fullname} = sub {};            }            undef &$fullname;        }        if (*{$fullname}{IO}) {            if (fileno $fullname) {                close $fullname;            }        }    }    #Wipe from %INC    $package =~ s[::][/]g;    $package .= '.pm';    delete $INC{$package};}1;__END__=head1 NAMEModPerl::Util - Helper mod_perl Functions=head1 Synopsis  use ModPerl::Util;    # e.g. PerlResponseHandler  $callback = ModPerl::Util::current_callback;    # exit w/o killing the interpreter  ModPerl::Util::exit();    # untaint a string (do not use it! see the doc)  ModPerl::Util::untaint($string);    # removes a stash (.so, %INC{$stash}, etc.) as best as it can  ModPerl::Util::unload_package($stash);    # current perl's address (0x92ac760 or 0x0 under non-threaded perl)  ModPerl::Util::current_perl_id();=head1 DescriptionC<ModPerl::Util> provides mod_perl utilities API.=head1 APIC<ModPerl::Util> provides the following functions and/or methods:=head2 C<current_callback>Returns the currently running callback name,e.g. C<'PerlResponseHandler'>.  $callback = ModPerl::Util::current_callback();=over 4=item ret: C<$callback> ( string )=item since: 2.0.00=back=head2 C<current_perl_id>Return the memory address of the perl interpreter  $perl_id = ModPerl::Util::current_perl_id();=over 4=item ret: C<$perl_id> ( string )Under threaded perl returns something like: C<0x92ac760>Under non-thread perl returns C<0x0>=item since: 2.0.00=backMainly useful for debugging applications running under threaded-perl.=head2 C<exit>Terminate the request, but not the current process (or not the currentPerl interpreter with threaded mpms).  ModPerl::Util::exit($status);=over 4=item opt arg1: C<$status> ( integer )The exit status, which as of this writing is ignored. (it's acceptedto be compatible with the core C<exit> function.)=item ret: no return value=item since: 2.0.00=backNormally you will use the plain C<exit()> in your code. You don't needto use C<ModPerl::Util::exit> explicitly, since mod_perl overridesC<exit()> by setting C<CORE::GLOBAL::exit> toC<ModPerl::Util::exit>. Only if you redefine C<CORE::GLOBAL::exit>once mod_perl is running, you may want to use this function.The original C<exit()> is still available via C<CORE::exit()>.C<ModPerl::Util::exit> is implemented as a special C<die()> call,therefore if you call it inside C<eval BLOCK> or C<eval "STRING">,while an exception is being thrown, it is caught by C<eval>. Forexample:  exit;  print "Still running";will not print anything. But:  eval {     exit;  }  print "Still running";will print I<Still running>. So you either need to check whether L<theexception|docs::2.0::api::APR::Error> is specific to C<exit> and callC<exit()> again:  use ModPerl::Const -compile => 'EXIT';  eval {     exit;  }  exit if $@ && ref $@ eq 'APR::Error' && $@ == ModPerl::EXIT;  print "Still running";or use C<CORE::exit()>:  eval {     CORE::exit;  }  print "Still running";and nothing will be printed. The problem with the latter is thecurrent process (or a Perl Interpreter) will be killed; something thatyou really want to avoid under mod_perl.=head2 C<unload_package>Unloads a stash from the current Perl interpreter in the safest waypossible.  ModPerl::Util::unload_package($stash);=over 4=item arg1: C<$stash> ( string )The Perl stash to unload. e.g. C<MyApache2::MyData>.=item ret: no return value=item since: 2.0.00=backUnloading a Perl stash (package) is a complicated business. Thisfunction tries very hard to do the right thing. After calling thisfunction, it should be safe to C<use()> a new version of the modulethat loads the wiped package.References to stash elements (functions, variables, etc.) taken fromoutside the unloaded package will still be valid.This function may wipe off things loaded by other modules, if thelatter have inserted things into the C<$stash> it was told to unload.If a stash had a corresponding XS shared object (.so) loaded it willbe unloaded as well.If the stash had a corresponding entry in C<%INC>, it will be removedfrom there.C<unload_package()> takes care to leave sub-stashes intact whiledeleting the requested stash. So for example if C<CGI> andC<CGI::Carp> are loaded, calling C<unload_package('CGI')> won't affectC<CGI::Carp>.=head2 C<untaint>Untaint the variable, by turning its tainted SV flag off (usedinternally).  ModPerl::Util::untaint($tainted_var);=over 4=item arg1: C<$tainted_var> (scalar)=item ret: no return valueC<$tainted_var> is untainted.=item since: 2.0.00=backDo not use this function unless you know what you are doing. To learnhow to properly untaint variables refer to the I<perlsec> manpage.=head1 See AlsoL<mod_perl 2.0 documentation|docs::2.0::index>.=head1 Copyrightmod_perl 2.0 and its core modules are copyrighted underThe Apache Software License, Version 2.0.=head1 AuthorsL<The mod_perl development team and numerouscontributors|about::contributors::people>.=cut

⌨️ 快捷键说明

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