view web/src/luan/modules/web/LuanServlet.java @ 399:199eb7f1b828

add LuanServlet
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 27 Apr 2015 16:59:35 -0600
parents
children 8f1be9704726
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.newStandard());
	}

	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);
		}
	}

}