view web/src/luan/modules/web/LuanServlet.java @ 400:8f1be9704726

change LuanState.newStandard() to newInstance() which doesn't preload anything
author Franklin Schmidt <fschmidt@gmail.com>
date Tue, 28 Apr 2015 13:12:17 -0600
parents 199eb7f1b828
children f86bf532f87c
line wrap: on
line source

package luan.modules.web;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import luan.LuanState;
import luan.LuanException;


public class LuanServlet extends HttpServlet {
	protected final String uriPrefix;
	protected final LuanState luan;

	public LuanServlet(String uriPrefix,LuanState luan) {
		this.uriPrefix = uriPrefix;
		this.luan = luan;
	}

	public LuanServlet(String uriPrefix) {
		this(uriPrefix,LuanState.newInstance());
	}

	protected void service(HttpServletRequest request,HttpServletResponse response)
		throws IOException
	{
		String path = request.getRequestURI();
		if( !path.endsWith(".luan") )
			throw new RuntimeException("'"+path+"' doesn't end with '.luan'");
		String uri = uriPrefix + path.substring(0,path.length()-5);
//System.out.println("qqqqqqqqqqqqqqqqqqq "+uri);
		try {
			if( !HttpServicer.service(luan,request,response,uri) )
				response.sendError(HttpServletResponse.SC_NOT_FOUND);
		} catch(LuanException e) {
			throw new RuntimeException(e);
		}
	}

}