如何将环境从 Python Web 应用程序传递到 Perl 程序?
如何设置 Perl 的 %ENV 以将 Perl 脚本引入到我的 Web 应用程序的上下文中?
我有一个网站,用不同于 Perl 的语言 (Python) 编写。 但是我需要使用 Perl 应用程序,它由 .pl 文件组成:
#!/usr/bin/env perl
"$ENV{DOCUMENT_ROOT}/foo/bar.pm" =~ /^(.+)$/;
require $1;
my $BAR = new BAR(
user => 'foo',
);
print $bar->get_content;
... 和模块 bar.pm,它依赖于 "$ENV{HTTP_HOST}"
, "$ ENV{REQUEST_URI}"
, “$ENV{REMOTE_ADDR}”
和 “$ENV{DOCUMENT_ROOT}”
。
我应该如何设置这个哈希值? 这是我第一次使用 Perl,所以我可能会错过一些非常明显的东西:)
How do I set Perl's %ENV to introduce a Perl script into the context of my web application?
I have a website, written in a language different from Perl (Python). However I need to use a Perl application, which consists of a .pl file:
#!/usr/bin/env perl
"$ENV{DOCUMENT_ROOT}/foo/bar.pm" =~ /^(.+)$/;
require $1;
my $BAR = new BAR(
user => 'foo',
);
print $bar->get_content;
... and a module bar.pm, which relies on "$ENV{HTTP_HOST}"
, "$ENV{REQUEST_URI}"
,"$ENV{REMOTE_ADDR}"
and "$ENV{DOCUMENT_ROOT}"
.
How should I set this hash? This is my very first experience with Perl, so I may be missing something really obvious here :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您从 Python 代码生成 Perl 进程(而不是“直接从 Web 服务器”),则有多种方法可以从 Python 父进程环境设置子进程环境,具体取决于您使用的子进程环境。 “产卵”。
例如,如果您使用的是
subprocess.Popen
,则可以将env=
参数集传递给您想要的字典,如 文档 解释:If you're spawning that Perl process from your Python code (as opposed to "directly from the webserver"), there are several ways to set the child process environment from the Python parent process environment, depending on what you're using for the "spawning".
For example, if you're using
subprocess.Popen
, you can pass anenv=
argument set to the dictionary you desire, as the docs explain:Perl 的特殊
%ENV
哈希是环境的接口。 (在幕后,它根据需要调用getenv
和putenv
。)例如:
您的 Web 服务器应该设置这些环境变量。
Perl's special
%ENV
hash is the interface to the environment. (Under the hood, it callsgetenv
andputenv
as appropriate.)For example:
Your web server ought to be setting these environment variables.