如何检测 Perl 中的 Web 脚本是否使用 ModPerl::Registry (mod_perl 处理程序)运行?

发布于 2024-09-09 02:57:56 字数 232 浏览 3 评论 0原文

是否可以检测在 mod_perl 下运行的 Web 应用程序是否使用 ModPerl::注册表

我想编写在 ModPerl::Registry (或类似的处理程序)下运行的脚本,但也可以充当 mod_perl 响应处理程序。

Is it possible in to detect in web app run under mod_perl if it is run using ModPerl::Registry?

I want to write script which would run under ModPerl::Registry (or similar handler), but can function also as mod_perl response handler.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

很快妥协 2024-09-16 02:57:56

ModPerl::Registry 进行了精心设计,将您的代码与系统中的其他所有内容隔离开来,其中一部分是将其编译到 ModPerl::ROOT 下的包中。

当在列表上下文中使用指定要返回的帧数的参数进行调用时,caller< /code>返回

<前><代码># 0 1 2 3 4
($package、$filename、$line、$subroutine、$hasargs、
# 5 6 7 8 9 10
$wantarray、$evaltext、$is_require、$hints、$bitmask、$hinthash)
= 来电者($i);

其中 $subroutine 值是完全限定名称。

ModPerl::Registry 将整个程序包装在上述人工包中名为 handler 的子程序中,因此在主程序中,使用类似于以下的测试

my $name = (caller 0)[3];
if ($name =~ /^ModPerl::ROOT::/) {
  # run using ModPerl::Registry
  ...
}

ModPerl::Registry does an elaborate dance to isolate your code from everything else in the system, and part of that is compiling it into a package beneath ModPerl::ROOT.

When called in list context with an argument specifying the number of frames to go back, caller returns

#  0         1          2      3            4
($package, $filename, $line, $subroutine, $hasargs,
#  5          6          7            8       9         10
$wantarray, $evaltext, $is_require, $hints, $bitmask, $hinthash)
 = caller($i); 

where the $subroutine value is a fully-qualified name.

ModPerl::Registry wraps your entire program in a sub named handler in the aforementioned artificial package, so from your main program, use a test similar to

my $name = (caller 0)[3];
if ($name =~ /^ModPerl::ROOT::/) {
  # run using ModPerl::Registry
  ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文