Made thread management more predictable.
[jsvc.git] / src / dolda / jsvc / j2ee / Servlet.java
CommitLineData
78f5d120
FT
1package dolda.jsvc.j2ee;
2
3import dolda.jsvc.*;
104fa785
FT
4import java.lang.reflect.*;
5import java.util.*;
78f5d120
FT
6import java.io.*;
7import javax.servlet.http.*;
104fa785 8import javax.servlet.*;
78f5d120
FT
9
10public class Servlet extends HttpServlet {
c9837b5e 11 private ThreadContext tg;
104fa785
FT
12
13 public void init() throws ServletException {
104fa785
FT
14 Properties sprop = new Properties();
15 try {
16 InputStream pi = Servlet.class.getClassLoader().getResourceAsStream("jsvc.properties");
17 try {
18 sprop.load(pi);
19 } finally {
20 pi.close();
21 }
22 } catch(IOException e) {
23 throw(new Error(e));
24 }
25 String clnm = (String)sprop.get("jsvc.bootstrap");
26 if(clnm == null)
27 throw(new ServletException("No JSvc bootstrapper specified"));
c9837b5e 28 Class<?> bc;
104fa785 29 try {
c9837b5e 30 bc = Class.forName(clnm);
104fa785
FT
31 } catch(ClassNotFoundException e) {
32 throw(new ServletException("Invalid JSvc bootstrapper specified", e));
104fa785 33 }
c9837b5e 34 tg = new ThreadContext(null, "JSvc service", bc);
7114c38b
FT
35 ServletContext ctx = getServletContext();
36 ctx.setAttribute("jsvc.starttime", System.currentTimeMillis());
104fa785 37 }
78f5d120 38
104fa785 39 public void destroy() {
c9837b5e 40 tg.shutdown();
78f5d120
FT
41 }
42
43 public void service(HttpServletRequest req, HttpServletResponse resp) {
44 try {
45 req.setCharacterEncoding("UTF-8");
46 resp.setCharacterEncoding("UTF-8");
47 } catch(UnsupportedEncodingException e) {
48 throw(new Error(e));
49 }
50 Request rr = new J2eeRequest(getServletConfig(), req, resp);
c9837b5e 51 RequestThread w = tg.respond(rr);
104fa785
FT
52 w.start();
53 try {
54 w.join();
55 } catch(InterruptedException e) {
56 w.interrupt();
57 return;
58 }
78f5d120
FT
59 }
60}