使用 HTTP::Server::Simple 实现轻量级 HTTP 服务器

在Perl中,HTTP::Server::Simple 模块提供了一种轻量级的方式来实现HTTP服务器。该模块简单易用,适合快速开发和测试HTTP服务。本文将详细介绍如何使用 HTTP::Server::Simple 模块创建和配置一个轻量级HTTP服务器。

安装 HTTP::Server::Simple

首先,需要确保安装了 HTTP::Server::Simple 模块。如果尚未安装,可以使用以下命令通过CPAN进行安装:

复制代码
cpan HTTP::Server::Simple
​

或者,如果你使用的是 cpanm,可以通过以下命令安装:

复制代码
cpanm HTTP::Server::Simple
​

创建简单的 HTTP 服务器

以下示例展示了如何创建一个最简单的HTTP服务器,该服务器在本地端口8080上运行,并返回一个简单的"Hello, World!"消息。

复制代码
use strict;
use warnings;
use HTTP::Server::Simple::CGI;

# 创建一个简单的服务器类,继承自HTTP::Server::Simple::CGI
{
    package MyWebServer;
    use base qw(HTTP::Server::Simple::CGI);

    sub handle_request {
        my ($self, $cgi) = @_;
        print "HTTP/1.0 200 OK\r\n";
        print $cgi->header,
              $cgi->start_html('Hello'),
              $cgi->h1('Hello, World!'),
              $cgi->end_html;
    }
}

# 实例化并启动服务器
my $server = MyWebServer->new(8080);
print "Server is running on http://localhost:8080\n";
$server->run();
​

以上代码创建了一个继承自 HTTP::Server::Simple::CGI 的简单服务器类 MyWebServer ,并重写了 handle_request 方法来处理请求。

扩展服务器功能

可以通过扩展 handle_request 方法来增加服务器的功能。例如,解析请求路径并返回不同的内容:

复制代码
use strict;
use warnings;
use HTTP::Server::Simple::CGI;

{
    package MyWebServer;
    use base qw(HTTP::Server::Simple::CGI);

    sub handle_request {
        my ($self, $cgi) = @_;
        my $path = $cgi->path_info;

        if ($path eq '/hello') {
            print "HTTP/1.0 200 OK\r\n";
            print $cgi->header,
                  $cgi->start_html('Hello'),
                  $cgi->h1('Hello, World!'),
                  $cgi->end_html;
        } elsif ($path eq '/goodbye') {
            print "HTTP/1.0 200 OK\r\n";
            print $cgi->header,
                  $cgi->start_html('Goodbye'),
                  $cgi->h1('Goodbye, World!'),
                  $cgi->end_html;
        } else {
            print "HTTP/1.0 404 Not Found\r\n";
            print $cgi->header,
                  $cgi->start_html('Not Found'),
                  $cgi->h1('404 - Not Found'),
                  $cgi->end_html;
        }
    }
}

my $server = MyWebServer->new(8080);
print "Server is running on http://localhost:8080\n";
$server->run();
​

在这个示例中,服务器根据请求路径返回不同的内容。对于 /hello路径,返回"Hello, World!"消息;对于 /goodbye路径,返回"Goodbye, World!"消息;对于其他路径,返回404错误。

添加日志记录

为了便于调试和监控,可以添加日志记录功能,记录每个请求的信息:

复制代码
use strict;
use warnings;
use HTTP::Server::Simple::CGI;
use POSIX qw(strftime);

{
    package MyWebServer;
    use base qw(HTTP::Server::Simple::CGI);

    sub handle_request {
        my ($self, $cgi) = @_;
        my $path = $cgi->path_info;

        # 记录请求信息
        my $log_entry = strftime("[%Y-%m-%d %H:%M:%S]", localtime) . " - $path\n";
        open my $log, '>>', 'server.log' or die "Cannot open log file: $!";
        print $log $log_entry;
        close $log;

        if ($path eq '/hello') {
            print "HTTP/1.0 200 OK\r\n";
            print $cgi->header,
                  $cgi->start_html('Hello'),
                  $cgi->h1('Hello, World!'),
                  $cgi->end_html;
        } elsif ($path eq '/goodbye') {
            print "HTTP/1.0 200 OK\r\n";
            print $cgi->header,
                  $cgi->start_html('Goodbye'),
                  $cgi->h1('Goodbye, World!'),
                  $cgi->end_html;
        } else {
            print "HTTP/1.0 404 Not Found\r\n";
            print $cgi->header,
                  $cgi->start_html('Not Found'),
                  $cgi->h1('404 - Not Found'),
                  $cgi->end_html;
        }
    }
}

my $server = MyWebServer->new(8080);
print "Server is running on http://localhost:8080\n";
$server->run();
​

此代码段通过将每个请求的信息记录到 server.log 文件中,帮助开发者了解服务器的运行情况和请求历史。

相关推荐
Xの哲學20 小时前
Linux io_uring 深度剖析: 重新定义高性能I/O的架构革命
linux·服务器·网络·算法·边缘计算
cly120 小时前
Ansible自动化(十四):Roles(角色)
服务器·自动化·ansible
Nobody__120 小时前
解决多台服务器 UID/GID 做对齐后,文件系统元数据未更新的情况
运维·服务器
霸气十足+拼命+追梦少年21 小时前
服务器挂载U盘或硬盘
运维·服务器
小杰帅气1 天前
进程优先级与切换调度
linux·运维·服务器
码农学院1 天前
使用腾讯翻译文本
服务器·数据库·c#
华纳云IDC服务商1 天前
DNS负载均衡能自动避开故障服务器吗?
运维·服务器·负载均衡
奋斗的阿狸_19861 天前
键盘组合键监听与 xterm 唤醒程序
linux·运维·服务器
小张成长计划..1 天前
【linux】2:linux权限的概念
linux·运维·服务器
ben9518chen1 天前
Linux操作系统基本使用
linux·运维·服务器