Mercurial Hosting > luan
view src/luan/modules/http/HttpServicer.java @ 1193:9f522cfe0c30
add request to error log
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Mon, 26 Feb 2018 15:43:32 -0700 |
parents | 794ddcfbee20 |
children | 354e661dee7f |
line wrap: on
line source
package luan.modules.http; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import luan.webserver.Request; import luan.webserver.Response; import luan.LuanState; import luan.LuanFunction; import luan.LuanException; import luan.LuanTable; import luan.LuanCloner; import luan.modules.PackageLuan; public final class HttpServicer { private static final Logger logger = LoggerFactory.getLogger(HttpServicer.class); public static Response service(LuanState luan,Request request,String modName) throws LuanException { LuanFunction fn; synchronized(luan) { PackageLuan.enableLoad(luan,"luan:http/Http.luan",modName); LuanTable module = (LuanTable)PackageLuan.require(luan,"luan:http/Http.luan"); Object mod = PackageLuan.load(luan,modName); if( mod.equals(Boolean.FALSE) ) return null; if( !(mod instanceof LuanFunction) ) throw new LuanException( "module '"+modName+"' must return a function" ); LuanCloner cloner = new LuanCloner(LuanCloner.Type.INCREMENTAL); luan = (LuanState)cloner.clone(luan); fn = (LuanFunction)cloner.get(mod); } LuanTable module = (LuanTable)PackageLuan.require(luan,"luan:http/Http.luan"); // request LuanFunction newRequestFn = (LuanFunction)module.rawGet("new_request"); newRequestFn.call( luan, new Object[]{request} ); // response LuanFunction newResponseFn = (LuanFunction)module.rawGet("new_response"); newResponseFn.call(luan); fn.call(luan); LuanFunction finishFn = (LuanFunction)module.rawGet("finish"); Response response = (Response)finishFn.call(luan); return response; } }