Mod Wombat

lua-users home
wiki

ModWombat 是一个 Apache 模块,允许您使用 Lua 编写网页脚本。它仅适用于 Apache 2.3+(计划在 Apache 2.4 下以 mod_lua 的名称发布 [1]),并提供了一些选项用于重用 LuaStates?、缓存编译后的脚本等。

以下是关于对 mod_wombat 进行改进的一些想法。这些想法来自 Brian Akins。

// Ability for other modules to call lua without worrying about caching,
// compiling, etc.  i.e. something like:
APR_DECLARE_OPTIONAL_FN(apr_status_t, lua_request_register, (apr_pool_t
*pool, lua_request_t **new, const char *file));
APR_DECLARE_OPTIONAL_FN(apr_status_t, lua_request_run, (request_rec * r,
lua_request_t *run, const char *function, apr_status_t *rc));

理论上,这种通用的“框架”将在 mod_wombat 内部使用。

-每个线程的 vm。一个 httpd 线程为每个文件有一个专用的 lua vm。

(我们做了这两件事^^。Brian M. 有我们非常修改过的 mod_wombat 版本。如果有兴趣,我可以在这里发布它)

支持在 httpd.conf 中使用 Lua。也就是说,我希望能够在配置中使用“简单”的 lua,而不是必须使用单独的文件。

<Lua my_cool_code>
require 'string'
require 'apache2'
function simple_redirect(r)
    if string.match(r.headers_in['User-Agent'], 'mozilla') then
        r.headers_out['Location'] = 'http://somecoolmozillasite.com/stuff'
        return apache2.HTTP_MOVED_TEMPORARILY
    end 
end
</Lua>

<Location /my_ie_only_app>
   LuaHook fixups my_cool_code:simple_redirect
</Location>

(不好的例子,但你明白了)

能够在 Lua 中创建“真正的”模块

function register_hooks(p)
    apache2.hook_handler(my_handler, NULL, NULL, apache2.HOOK_MIDDLE)
end

apache2.module(
    apache2.STANDARD20_MODULE_STUFF,
    create_dir_cfg,
    merge_dir_cfg,
    create_svr_cfg,
    merge_svr_cfg,
    cmd_table,
    register_hooks
)

模块加载是我认为会很棘手的地方。

对于真正有雄心壮志的人,我希望能够通过 lua 配置 apache

httpd.load_module('mime_module', 'modules/mod_mime.so')
v = apache2.server.new()
v:document_root = '/opt/apache/htdocs'
mod_mime:types_config = '/etc/mime.types'
mod_env.set_env('X-Lua', 'is cool')

不正确,但类似这样的东西...


RecentChanges · preferences
edit · history
最后编辑于 2009 年 5 月 18 日凌晨 1:37 GMT (diff)