6 import java.util.function.*;
7 import java.util.concurrent.*;
8 import java.util.logging.*;
11 import java.nio.channels.*;
13 public class EventServer implements Runnable {
14 private static final double timeout = 5;
15 private static final Logger log = Logger.getLogger("jagi.server");
16 private final ServerSocketChannel sk;
17 private final Function handler;
18 private final Driver ev = Driver.get();
19 private final ExecutorService handlers = new ThreadPoolExecutor(0, Runtime.getRuntime().availableProcessors() * 2,
20 5, TimeUnit.SECONDS, new LinkedBlockingQueue<Runnable>(64),
21 tgt -> new Thread(tgt, "Request handler thread"));
23 public EventServer(ServerSocketChannel sk, Function handler) {
25 this.handler = handler;
28 public static class Request {
29 public final Map<Object, Object> env;
30 public final SocketChannel sk;
32 public Request(Map<Object, Object> env, SocketChannel sk) {
38 ArrayList<Object> cleanup = new ArrayList<>((Collection<?>)env.get("jagi.cleanup"));
40 RuntimeException ce = null;
41 for(Object obj : cleanup) {
42 if(obj instanceof AutoCloseable) {
44 ((AutoCloseable)obj).close();
45 } catch(Exception e) {
47 ce = new RuntimeException("error(s) occurred during cleanup");
57 protected void error(Request req, Throwable error) {
58 log.log(Level.WARNING, "uncaught exception while handling request", error);
61 public static abstract class ChainWatcher implements Watcher {
62 private Runnable then;
63 public ChainWatcher then(Runnable then) {this.then = then; return(this);}
71 public static class BufferedOutput extends ChainWatcher {
72 public final SocketChannel sk;
73 public final ByteBuffer buf;
74 private double lastwrite;
76 public BufferedOutput(SocketChannel sk, ByteBuffer buf) {
81 public void added(Driver d) {lastwrite = d.time();}
82 public SelectableChannel channel() {return(sk);}
83 public int events() {return((buf.remaining() > 0) ? SelectionKey.OP_WRITE : -1);}
84 public double timeout() {return(lastwrite + timeout);}
86 public void handle(int events) throws IOException {
87 double now = Driver.current().time();
88 if((events & SelectionKey.OP_WRITE) != 0) {
92 if(now > lastwrite + timeout)
93 buf.position(buf.limit());
97 public static class TransferOutput extends ChainWatcher {
98 public final SocketChannel sk;
99 public final ReadableByteChannel in;
100 private final ByteBuffer buf;
101 private boolean eof = false;
102 private double lastwrite;
104 public TransferOutput(SocketChannel sk, ReadableByteChannel in) {
107 buf = ByteBuffer.allocate(65536);
111 public void added(Driver d) {lastwrite = d.time();}
112 public SelectableChannel channel() {return(sk);}
113 public int events() {return((eof && (buf.remaining() == 0)) ? -1 : SelectionKey.OP_WRITE);}
114 public double timeout() {return(lastwrite + timeout);}
116 public void handle(int events) throws IOException {
117 if(!eof && (buf.remaining() == 0)) {
119 while(buf.remaining() > 0) {
120 if(in.read(buf) < 0) {
127 double now = Driver.current().time();
128 if((events & SelectionKey.OP_WRITE) != 0) {
129 if(sk.write(buf) > 0)
132 if(now > lastwrite + timeout) {
134 buf.position(buf.limit());
138 public void close() {
141 } catch(IOException e) {
142 log.log(Level.WARNING, "failed to close transfer channel: " + in, e);
149 public static class TransferInput extends ChainWatcher {
150 public final SocketChannel sk;
151 public final WritableByteChannel out;
152 private final ByteBuffer buf;
153 private final long max;
154 private boolean eof = false;
155 private double lastread;
156 private long cur = 0;
158 public TransferInput(SocketChannel sk, WritableByteChannel out, long max) {
162 buf = ByteBuffer.allocate(65536);
166 public void added(Driver d) {lastread = d.time();}
167 public SelectableChannel channel() {return(sk);}
168 public int events() {return(eof ? -1 : SelectionKey.OP_READ);}
169 public double timeout() {return(lastread + timeout);}
171 public void handle(int events) throws IOException {
172 double now = Driver.current().time();
173 if((events & SelectionKey.OP_READ) != 0) {
175 if(buf.remaining() > max - cur)
176 buf.limit(buf.position() + (int)Math.min(max - cur, Integer.MAX_VALUE));
177 int rv = sk.read(buf);
182 if((cur += rv) >= max)
186 while(buf.remaining() > 0)
189 if(now > lastread + timeout) {
191 buf.position(buf.limit());
195 public void close() {
198 } catch(IOException e) {
199 log.log(Level.WARNING, "failed to close transfer channel: " + out, e);
206 protected void respond(Request req, String status, Map resp) {
207 Object output = resp.get("jagi.output");
208 ByteArrayOutputStream buf = new ByteArrayOutputStream();
210 Writer head = new OutputStreamWriter(buf, Utils.UTF8);
211 head.write("Status: ");
214 for(Iterator it = resp.entrySet().iterator(); it.hasNext();) {
215 Map.Entry ent = (Map.Entry)it.next();
216 Object val = ent.getValue();
217 if((ent.getKey() instanceof String) && (val != null)) {
218 String key = (String)ent.getKey();
219 if(key.startsWith("http.")) {
220 String nm = key.substring(5);
221 if(nm.equalsIgnoreCase("status"))
223 if(val instanceof Collection) {
224 for(Object part : (Collection)val) {
227 head.write(part.toString());
233 head.write(val.toString());
241 } catch(IOException e) {
242 throw(new RuntimeException("cannot happen"));
246 out = new BufferedOutput(req.sk, ByteBuffer.allocate(0));
247 } else if(output instanceof byte[]) {
248 out = new BufferedOutput(req.sk, ByteBuffer.wrap((byte[])output));
249 } else if(output instanceof ByteBuffer) {
250 out = new BufferedOutput(req.sk, (ByteBuffer)output);
251 } else if(output instanceof String) {
252 out = new BufferedOutput(req.sk, ByteBuffer.wrap(((String)output).getBytes(Utils.UTF8)));
253 } else if(output instanceof CharSequence) {
254 out = new BufferedOutput(req.sk, Utils.UTF8.encode(CharBuffer.wrap((CharSequence)output)));
255 } else if(output instanceof InputStream) {
256 out = new TransferOutput(req.sk, Channels.newChannel((InputStream)output));
257 } else if(output instanceof ReadableByteChannel) {
258 out = new TransferOutput(req.sk, (ReadableByteChannel)output);
260 throw(new IllegalArgumentException("response-body: " + output));
262 out.then(() -> submit(req::close));
263 ev.add(new BufferedOutput(req.sk, ByteBuffer.wrap(buf.toByteArray())).then(() -> ev.add(out)));
266 @SuppressWarnings("unchecked")
267 protected void handle(Request req, Function handler) {
268 boolean handoff = false;
270 Throwable error = null;
272 Map resp = (Map)handler.apply(req.env);
274 if((st = (String)resp.get("jagi.status")) != null) {
275 Function next = (Function)resp.get("jagi.next");
278 Object sink = resp.get("jagi.input-sink");
279 Object clen = req.env.get("HTTP_CONTENT_LENGTH");
281 if(clen instanceof String) {
283 max = Long.parseLong((String)clen);
284 } catch(NumberFormatException e) {
287 if(sink instanceof WritableByteChannel) {
288 ev.add(new TransferInput(req.sk, (WritableByteChannel)sink, max).then(() -> submit(() -> handle(req, next))));
289 } else if(sink instanceof OutputStream) {
290 ev.add(new TransferInput(req.sk, Channels.newChannel((OutputStream)sink), max).then(() -> submit(() -> handle(req, next))));
292 throw(new IllegalArgumentException("input-sink: " + sink));
297 submit(() -> handle(req, next));
301 throw(new IllegalArgumentException("jagi.status: " + st));
303 } else if((st = (String)resp.get("http.status")) != null) {
304 respond(req, st, resp);
307 throw(new IllegalArgumentException("neither http.status nor jagi.status set"));
309 } catch(Throwable t) {
316 } catch(Throwable ce) {
320 error.addSuppressed(ce);
325 } catch(Throwable t) {
330 protected void submit(Runnable task) {
331 handlers.submit(task);
334 class Client implements Watcher {
335 final SocketChannel sk;
337 boolean eof = false, handoff = false;
339 ByteBuffer head = null;
340 Map<Object, Object> env = null;
343 Client(SocketChannel sk) {
347 public void added(Driver d) {lastread = d.time();}
348 public SelectableChannel channel() {return(sk);}
349 public double timeout() {return(lastread + timeout);}
350 public int events() {
354 return(SelectionKey.OP_READ);
358 boolean readhead() throws IOException {
360 ByteBuffer buf = ByteBuffer.allocate(1);
363 int rv = sk.read(buf);
370 lastread = Driver.current().time();
372 if((c >= '0') && (c <= '9')) {
373 headlen = (headlen * 10) + (c - '0');
374 } else if(c == ':') {
375 head = ByteBuffer.allocate(headlen + 1);
385 if(head.remaining() == 0) {
386 if(head.get(head.limit() - 1) != ',') {
387 /* Unterminated netstring */
391 head.limit(head.limit() - 1);
392 env = Jagi.mkenv(Scgi.splithead(head), sk);
395 int rv = sk.read(head);
405 public void handle(int events) throws IOException {
406 if((events & SelectionKey.OP_READ) != 0) {
407 if((env == null) && !readhead())
409 req = new Request(env, sk);
412 if(Driver.current().time() > (lastread + timeout))
416 public void close() {
418 submit(() -> EventServer.this.handle(req, handler));
422 } catch(IOException e) {
428 class Accepter implements Watcher {
429 boolean closed = false;
431 public SelectableChannel channel() {return(sk);}
432 public int events() {return(SelectionKey.OP_ACCEPT);}
434 public void handle(int events) throws IOException {
435 if((events & SelectionKey.OP_ACCEPT) != 0)
436 Driver.current().add(new Client(sk.accept()));
439 public void close() {
448 Accepter main = new Accepter();
452 while(!main.closed) {
456 } catch(InterruptedException e) {
461 } catch(IOException e) {
462 throw(new RuntimeException(e));