Erlang - Web编程



在 Erlang 中,inets 库 可用于构建 Erlang 中的 Web 服务器。让我们看看 Erlang 中可用于 Web 编程的一些函数。可以实现 HTTP 服务器,也称为 httpd,来处理 HTTP 请求。

服务器实现了众多功能,例如:

  • 安全套接字层 (SSL)
  • Erlang 脚本接口 (ESI)
  • 通用网关接口 (CGI)
  • 用户身份验证(使用 Mnesia、Dets 或纯文本数据库)
  • 通用日志文件格式(带或不带 disk_log(3) 支持)
  • URL 别名
  • 操作映射
  • 目录列表

第一步是通过命令启动 Web 库。

inets:start()

下一步是实现 inets 库的启动函数,以便可以实现 Web 服务器。

以下是创建 Erlang 中的 Web 服务器进程的示例。

例如

-module(helloworld). 
-export([start/0]). 

start() ->
   inets:start(), 
   Pid = inets:start(httpd, [{port, 8081}, {server_name,"httpd_test"}, 
   {server_root,"D://tmp"},{document_root,"D://tmp/htdocs"},
   {bind_address, "localhost"}]), io:fwrite("~p",[Pid]).

关于上述程序,需要注意以下几点。

  • 端口号必须唯一,并且不能被任何其他程序使用。httpd 服务 将在此端口号上启动。

  • server_rootdocument_root 是必填参数。

输出

以下是上述程序的输出。

{ok,<0.42.0>}

要在 Erlang 中实现Hello world Web 服务器,请执行以下步骤:

步骤 1 - 实现以下代码:

-module(helloworld). 
-export([start/0,service/3]). 

start() ->
   inets:start(httpd, [ 
      {modules, [ 
         mod_alias, 
         mod_auth, 
         mod_esi, 
         mod_actions, 
         mod_cgi, 
         mod_dir,
         mod_get, 
         mod_head, 
         mod_log, 
         mod_disk_log 
      ]}, 
      
      {port,8081}, 
      {server_name,"helloworld"}, 
      {server_root,"D://tmp"}, 
      {document_root,"D://tmp/htdocs"}, 
      {erl_script_alias, {"/erl", [helloworld]}}, 
      {error_log, "error.log"}, 
      {security_log, "security.log"}, 
      {transfer_log, "transfer.log"}, 
      
      {mime_types,[ 
         {"html","text/html"}, {"css","text/css"}, {"js","application/x-javascript"} ]} 
   ]). 
         
service(SessionID, _Env, _Input) -> mod_esi:deliver(SessionID, [ 
   "Content-Type: text/html\r\n\r\n", "<html><body>Hello, World!</body></html>" ]).

步骤 2 - 如下运行代码。编译上述文件,然后在erl中运行以下命令。

c(helloworld).

您将获得以下输出。

{ok,helloworld}

下一个命令是:

inets:start().

您将获得以下输出。

ok

下一个命令是:

helloworld:start().

您将获得以下输出。

{ok,<0.50.0>}

步骤 3 - 您现在可以访问 url - https://127.0.0.1:8081/erl/hello_world:service

广告